bootstrap.css 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202
  1. /*!
  2. * Bootstrap v3.3.6 (http://getbootstrap.com)
  3. * Copyright 2011-2015 Twitter, Inc.
  4. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  5. */
  6. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  7. html {
  8. font-family: sans-serif;
  9. -webkit-text-size-adjust: 100%;
  10. -ms-text-size-adjust: 100%;
  11. }
  12. body {
  13. margin: 0;
  14. }
  15. article,
  16. aside,
  17. details,
  18. figcaption,
  19. figure,
  20. footer,
  21. header,
  22. hgroup,
  23. main,
  24. menu,
  25. nav,
  26. section,
  27. summary {
  28. display: block;
  29. }
  30. audio,
  31. canvas,
  32. progress,
  33. video {
  34. display: inline-block;
  35. vertical-align: baseline;
  36. }
  37. audio:not([controls]) {
  38. display: none;
  39. height: 0;
  40. }
  41. [hidden],
  42. template {
  43. display: none;
  44. }
  45. a {
  46. background-color: transparent;
  47. }
  48. a:active,
  49. a:hover {
  50. outline: 0;
  51. }
  52. abbr[title] {
  53. border-bottom: 1px dotted;
  54. }
  55. b,
  56. strong {
  57. font-weight: bold;
  58. }
  59. dfn {
  60. font-style: italic;
  61. }
  62. h1 {
  63. margin: .67em 0;
  64. font-size: 2em;
  65. }
  66. mark {
  67. color: #000;
  68. background: #ff0;
  69. }
  70. small {
  71. font-size: 80%;
  72. }
  73. sub,
  74. sup {
  75. position: relative;
  76. font-size: 75%;
  77. line-height: 0;
  78. vertical-align: baseline;
  79. }
  80. sup {
  81. top: -.5em;
  82. }
  83. sub {
  84. bottom: -.25em;
  85. }
  86. img {
  87. border: 0;
  88. }
  89. svg:not(:root) {
  90. overflow: hidden;
  91. }
  92. figure {
  93. margin: 1em 40px;
  94. }
  95. hr {
  96. height: 0;
  97. -webkit-box-sizing: content-box;
  98. -moz-box-sizing: content-box;
  99. box-sizing: content-box;
  100. }
  101. pre {
  102. overflow: auto;
  103. }
  104. code,
  105. kbd,
  106. pre,
  107. samp {
  108. font-family: monospace, monospace;
  109. font-size: 1em;
  110. }
  111. button,
  112. input,
  113. optgroup,
  114. select,
  115. textarea {
  116. margin: 0;
  117. font: inherit;
  118. color: inherit;
  119. }
  120. button {
  121. overflow: visible;
  122. }
  123. button,
  124. select {
  125. text-transform: none;
  126. }
  127. button,
  128. html input[type="button"],
  129. input[type="reset"],
  130. input[type="submit"] {
  131. -webkit-appearance: button;
  132. cursor: pointer;
  133. }
  134. button[disabled],
  135. html input[disabled] {
  136. cursor: default;
  137. }
  138. button::-moz-focus-inner,
  139. input::-moz-focus-inner {
  140. padding: 0;
  141. border: 0;
  142. }
  143. input {
  144. line-height: normal;
  145. }
  146. input[type="checkbox"],
  147. input[type="radio"] {
  148. -webkit-box-sizing: border-box;
  149. -moz-box-sizing: border-box;
  150. box-sizing: border-box;
  151. padding: 0;
  152. }
  153. input[type="number"]::-webkit-inner-spin-button,
  154. input[type="number"]::-webkit-outer-spin-button {
  155. height: auto;
  156. }
  157. input[type="search"] {
  158. -webkit-box-sizing: content-box;
  159. -moz-box-sizing: content-box;
  160. box-sizing: content-box;
  161. -webkit-appearance: textfield;
  162. }
  163. input[type="search"]::-webkit-search-cancel-button,
  164. input[type="search"]::-webkit-search-decoration {
  165. -webkit-appearance: none;
  166. }
  167. fieldset {
  168. padding: .35em .625em .75em;
  169. margin: 0 2px;
  170. border: 1px solid #c0c0c0;
  171. }
  172. legend {
  173. padding: 0;
  174. border: 0;
  175. }
  176. textarea {
  177. overflow: auto;
  178. }
  179. optgroup {
  180. font-weight: bold;
  181. }
  182. table {
  183. border-spacing: 0;
  184. border-collapse: collapse;
  185. }
  186. td,
  187. th {
  188. padding: 0;
  189. }
  190. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  191. @media print {
  192. *,
  193. *:before,
  194. *:after {
  195. color: #000 !important;
  196. text-shadow: none !important;
  197. background: transparent !important;
  198. -webkit-box-shadow: none !important;
  199. box-shadow: none !important;
  200. }
  201. a,
  202. a:visited {
  203. text-decoration: underline;
  204. }
  205. a[href]:after {
  206. content: " (" attr(href) ")";
  207. }
  208. abbr[title]:after {
  209. content: " (" attr(title) ")";
  210. }
  211. a[href^="#"]:after,
  212. a[href^="javascript:"]:after {
  213. content: "";
  214. }
  215. pre,
  216. blockquote {
  217. border: 1px solid #999;
  218. page-break-inside: avoid;
  219. }
  220. thead {
  221. display: table-header-group;
  222. }
  223. tr,
  224. img {
  225. page-break-inside: avoid;
  226. }
  227. img {
  228. max-width: 100% !important;
  229. }
  230. p,
  231. h2,
  232. h3 {
  233. orphans: 3;
  234. widows: 3;
  235. }
  236. h2,
  237. h3 {
  238. page-break-after: avoid;
  239. }
  240. .navbar {
  241. display: none;
  242. }
  243. .btn > .caret,
  244. .dropup > .btn > .caret {
  245. border-top-color: #000 !important;
  246. }
  247. .label {
  248. border: 1px solid #000;
  249. }
  250. .table {
  251. border-collapse: collapse !important;
  252. }
  253. .table td,
  254. .table th {
  255. background-color: #fff !important;
  256. }
  257. .table-bordered th,
  258. .table-bordered td {
  259. border: 1px solid #ddd !important;
  260. }
  261. }
  262. @font-face {
  263. font-family: 'Glyphicons Halflings';
  264. src: url('../fonts/glyphicons-halflings-regular.eot');
  265. src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  266. }
  267. .glyphicon {
  268. position: relative;
  269. top: 1px;
  270. display: inline-block;
  271. font-family: 'Glyphicons Halflings';
  272. font-style: normal;
  273. font-weight: normal;
  274. line-height: 1;
  275. -webkit-font-smoothing: antialiased;
  276. -moz-osx-font-smoothing: grayscale;
  277. }
  278. .glyphicon-asterisk:before {
  279. content: "\002a";
  280. }
  281. .glyphicon-plus:before {
  282. content: "\002b";
  283. }
  284. .glyphicon-euro:before,
  285. .glyphicon-eur:before {
  286. content: "\20ac";
  287. }
  288. .glyphicon-minus:before {
  289. content: "\2212";
  290. }
  291. .glyphicon-cloud:before {
  292. content: "\2601";
  293. }
  294. .glyphicon-envelope:before {
  295. content: "\2709";
  296. }
  297. .glyphicon-pencil:before {
  298. content: "\270f";
  299. }
  300. .glyphicon-glass:before {
  301. content: "\e001";
  302. }
  303. .glyphicon-music:before {
  304. content: "\e002";
  305. }
  306. .glyphicon-search:before {
  307. content: "\e003";
  308. }
  309. .glyphicon-heart:before {
  310. content: "\e005";
  311. }
  312. .glyphicon-star:before {
  313. content: "\e006";
  314. }
  315. .glyphicon-star-empty:before {
  316. content: "\e007";
  317. }
  318. .glyphicon-user:before {
  319. content: "\e008";
  320. }
  321. .glyphicon-film:before {
  322. content: "\e009";
  323. }
  324. .glyphicon-th-large:before {
  325. content: "\e010";
  326. }
  327. .glyphicon-th:before {
  328. content: "\e011";
  329. }
  330. .glyphicon-th-list:before {
  331. content: "\e012";
  332. }
  333. .glyphicon-ok:before {
  334. content: "\e013";
  335. }
  336. .glyphicon-remove:before {
  337. content: "\e014";
  338. }
  339. .glyphicon-zoom-in:before {
  340. content: "\e015";
  341. }
  342. .glyphicon-zoom-out:before {
  343. content: "\e016";
  344. }
  345. .glyphicon-off:before {
  346. content: "\e017";
  347. }
  348. .glyphicon-signal:before {
  349. content: "\e018";
  350. }
  351. .glyphicon-cog:before {
  352. content: "\e019";
  353. }
  354. .glyphicon-trash:before {
  355. content: "\e020";
  356. }
  357. .glyphicon-home:before {
  358. content: "\e021";
  359. }
  360. .glyphicon-file:before {
  361. content: "\e022";
  362. }
  363. .glyphicon-time:before {
  364. content: "\e023";
  365. }
  366. .glyphicon-road:before {
  367. content: "\e024";
  368. }
  369. .glyphicon-download-alt:before {
  370. content: "\e025";
  371. }
  372. .glyphicon-download:before {
  373. content: "\e026";
  374. }
  375. .glyphicon-upload:before {
  376. content: "\e027";
  377. }
  378. .glyphicon-inbox:before {
  379. content: "\e028";
  380. }
  381. .glyphicon-play-circle:before {
  382. content: "\e029";
  383. }
  384. .glyphicon-repeat:before {
  385. content: "\e030";
  386. }
  387. .glyphicon-refresh:before {
  388. content: "\e031";
  389. }
  390. .glyphicon-list-alt:before {
  391. content: "\e032";
  392. }
  393. .glyphicon-lock:before {
  394. content: "\e033";
  395. }
  396. .glyphicon-flag:before {
  397. content: "\e034";
  398. }
  399. .glyphicon-headphones:before {
  400. content: "\e035";
  401. }
  402. .glyphicon-volume-off:before {
  403. content: "\e036";
  404. }
  405. .glyphicon-volume-down:before {
  406. content: "\e037";
  407. }
  408. .glyphicon-volume-up:before {
  409. content: "\e038";
  410. }
  411. .glyphicon-qrcode:before {
  412. content: "\e039";
  413. }
  414. .glyphicon-barcode:before {
  415. content: "\e040";
  416. }
  417. .glyphicon-tag:before {
  418. content: "\e041";
  419. }
  420. .glyphicon-tags:before {
  421. content: "\e042";
  422. }
  423. .glyphicon-book:before {
  424. content: "\e043";
  425. }
  426. .glyphicon-bookmark:before {
  427. content: "\e044";
  428. }
  429. .glyphicon-print:before {
  430. content: "\e045";
  431. }
  432. .glyphicon-camera:before {
  433. content: "\e046";
  434. }
  435. .glyphicon-font:before {
  436. content: "\e047";
  437. }
  438. .glyphicon-bold:before {
  439. content: "\e048";
  440. }
  441. .glyphicon-italic:before {
  442. content: "\e049";
  443. }
  444. .glyphicon-text-height:before {
  445. content: "\e050";
  446. }
  447. .glyphicon-text-width:before {
  448. content: "\e051";
  449. }
  450. .glyphicon-align-left:before {
  451. content: "\e052";
  452. }
  453. .glyphicon-align-center:before {
  454. content: "\e053";
  455. }
  456. .glyphicon-align-right:before {
  457. content: "\e054";
  458. }
  459. .glyphicon-align-justify:before {
  460. content: "\e055";
  461. }
  462. .glyphicon-list:before {
  463. content: "\e056";
  464. }
  465. .glyphicon-indent-left:before {
  466. content: "\e057";
  467. }
  468. .glyphicon-indent-right:before {
  469. content: "\e058";
  470. }
  471. .glyphicon-facetime-video:before {
  472. content: "\e059";
  473. }
  474. .glyphicon-picture:before {
  475. content: "\e060";
  476. }
  477. .glyphicon-map-marker:before {
  478. content: "\e062";
  479. }
  480. .glyphicon-adjust:before {
  481. content: "\e063";
  482. }
  483. .glyphicon-tint:before {
  484. content: "\e064";
  485. }
  486. .glyphicon-edit:before {
  487. content: "\e065";
  488. }
  489. .glyphicon-share:before {
  490. content: "\e066";
  491. }
  492. .glyphicon-check:before {
  493. content: "\e067";
  494. }
  495. .glyphicon-move:before {
  496. content: "\e068";
  497. }
  498. .glyphicon-step-backward:before {
  499. content: "\e069";
  500. }
  501. .glyphicon-fast-backward:before {
  502. content: "\e070";
  503. }
  504. .glyphicon-backward:before {
  505. content: "\e071";
  506. }
  507. .glyphicon-play:before {
  508. content: "\e072";
  509. }
  510. .glyphicon-pause:before {
  511. content: "\e073";
  512. }
  513. .glyphicon-stop:before {
  514. content: "\e074";
  515. }
  516. .glyphicon-forward:before {
  517. content: "\e075";
  518. }
  519. .glyphicon-fast-forward:before {
  520. content: "\e076";
  521. }
  522. .glyphicon-step-forward:before {
  523. content: "\e077";
  524. }
  525. .glyphicon-eject:before {
  526. content: "\e078";
  527. }
  528. .glyphicon-chevron-left:before {
  529. content: "\e079";
  530. }
  531. .glyphicon-chevron-right:before {
  532. content: "\e080";
  533. }
  534. .glyphicon-plus-sign:before {
  535. content: "\e081";
  536. }
  537. .glyphicon-minus-sign:before {
  538. content: "\e082";
  539. }
  540. .glyphicon-remove-sign:before {
  541. content: "\e083";
  542. }
  543. .glyphicon-ok-sign:before {
  544. content: "\e084";
  545. }
  546. .glyphicon-question-sign:before {
  547. content: "\e085";
  548. }
  549. .glyphicon-info-sign:before {
  550. content: "\e086";
  551. }
  552. .glyphicon-screenshot:before {
  553. content: "\e087";
  554. }
  555. .glyphicon-remove-circle:before {
  556. content: "\e088";
  557. }
  558. .glyphicon-ok-circle:before {
  559. content: "\e089";
  560. }
  561. .glyphicon-ban-circle:before {
  562. content: "\e090";
  563. }
  564. .glyphicon-arrow-left:before {
  565. content: "\e091";
  566. }
  567. .glyphicon-arrow-right:before {
  568. content: "\e092";
  569. }
  570. .glyphicon-arrow-up:before {
  571. content: "\e093";
  572. }
  573. .glyphicon-arrow-down:before {
  574. content: "\e094";
  575. }
  576. .glyphicon-share-alt:before {
  577. content: "\e095";
  578. }
  579. .glyphicon-resize-full:before {
  580. content: "\e096";
  581. }
  582. .glyphicon-resize-small:before {
  583. content: "\e097";
  584. }
  585. .glyphicon-exclamation-sign:before {
  586. content: "\e101";
  587. }
  588. .glyphicon-gift:before {
  589. content: "\e102";
  590. }
  591. .glyphicon-leaf:before {
  592. content: "\e103";
  593. }
  594. .glyphicon-fire:before {
  595. content: "\e104";
  596. }
  597. .glyphicon-eye-open:before {
  598. content: "\e105";
  599. }
  600. .glyphicon-eye-close:before {
  601. content: "\e106";
  602. }
  603. .glyphicon-warning-sign:before {
  604. content: "\e107";
  605. }
  606. .glyphicon-plane:before {
  607. content: "\e108";
  608. }
  609. .glyphicon-calendar:before {
  610. content: "\e109";
  611. }
  612. .glyphicon-random:before {
  613. content: "\e110";
  614. }
  615. .glyphicon-comment:before {
  616. content: "\e111";
  617. }
  618. .glyphicon-magnet:before {
  619. content: "\e112";
  620. }
  621. .glyphicon-chevron-up:before {
  622. content: "\e113";
  623. }
  624. .glyphicon-chevron-down:before {
  625. content: "\e114";
  626. }
  627. .glyphicon-retweet:before {
  628. content: "\e115";
  629. }
  630. .glyphicon-shopping-cart:before {
  631. content: "\e116";
  632. }
  633. .glyphicon-folder-close:before {
  634. content: "\e117";
  635. }
  636. .glyphicon-folder-open:before {
  637. content: "\e118";
  638. }
  639. .glyphicon-resize-vertical:before {
  640. content: "\e119";
  641. }
  642. .glyphicon-resize-horizontal:before {
  643. content: "\e120";
  644. }
  645. .glyphicon-hdd:before {
  646. content: "\e121";
  647. }
  648. .glyphicon-bullhorn:before {
  649. content: "\e122";
  650. }
  651. .glyphicon-bell:before {
  652. content: "\e123";
  653. }
  654. .glyphicon-certificate:before {
  655. content: "\e124";
  656. }
  657. .glyphicon-thumbs-up:before {
  658. content: "\e125";
  659. }
  660. .glyphicon-thumbs-down:before {
  661. content: "\e126";
  662. }
  663. .glyphicon-hand-right:before {
  664. content: "\e127";
  665. }
  666. .glyphicon-hand-left:before {
  667. content: "\e128";
  668. }
  669. .glyphicon-hand-up:before {
  670. content: "\e129";
  671. }
  672. .glyphicon-hand-down:before {
  673. content: "\e130";
  674. }
  675. .glyphicon-circle-arrow-right:before {
  676. content: "\e131";
  677. }
  678. .glyphicon-circle-arrow-left:before {
  679. content: "\e132";
  680. }
  681. .glyphicon-circle-arrow-up:before {
  682. content: "\e133";
  683. }
  684. .glyphicon-circle-arrow-down:before {
  685. content: "\e134";
  686. }
  687. .glyphicon-globe:before {
  688. content: "\e135";
  689. }
  690. .glyphicon-wrench:before {
  691. content: "\e136";
  692. }
  693. .glyphicon-tasks:before {
  694. content: "\e137";
  695. }
  696. .glyphicon-filter:before {
  697. content: "\e138";
  698. }
  699. .glyphicon-briefcase:before {
  700. content: "\e139";
  701. }
  702. .glyphicon-fullscreen:before {
  703. content: "\e140";
  704. }
  705. .glyphicon-dashboard:before {
  706. content: "\e141";
  707. }
  708. .glyphicon-paperclip:before {
  709. content: "\e142";
  710. }
  711. .glyphicon-heart-empty:before {
  712. content: "\e143";
  713. }
  714. .glyphicon-link:before {
  715. content: "\e144";
  716. }
  717. .glyphicon-phone:before {
  718. content: "\e145";
  719. }
  720. .glyphicon-pushpin:before {
  721. content: "\e146";
  722. }
  723. .glyphicon-usd:before {
  724. content: "\e148";
  725. }
  726. .glyphicon-gbp:before {
  727. content: "\e149";
  728. }
  729. .glyphicon-sort:before {
  730. content: "\e150";
  731. }
  732. .glyphicon-sort-by-alphabet:before {
  733. content: "\e151";
  734. }
  735. .glyphicon-sort-by-alphabet-alt:before {
  736. content: "\e152";
  737. }
  738. .glyphicon-sort-by-order:before {
  739. content: "\e153";
  740. }
  741. .glyphicon-sort-by-order-alt:before {
  742. content: "\e154";
  743. }
  744. .glyphicon-sort-by-attributes:before {
  745. content: "\e155";
  746. }
  747. .glyphicon-sort-by-attributes-alt:before {
  748. content: "\e156";
  749. }
  750. .glyphicon-unchecked:before {
  751. content: "\e157";
  752. }
  753. .glyphicon-expand:before {
  754. content: "\e158";
  755. }
  756. .glyphicon-collapse-down:before {
  757. content: "\e159";
  758. }
  759. .glyphicon-collapse-up:before {
  760. content: "\e160";
  761. }
  762. .glyphicon-log-in:before {
  763. content: "\e161";
  764. }
  765. .glyphicon-flash:before {
  766. content: "\e162";
  767. }
  768. .glyphicon-log-out:before {
  769. content: "\e163";
  770. }
  771. .glyphicon-new-window:before {
  772. content: "\e164";
  773. }
  774. .glyphicon-record:before {
  775. content: "\e165";
  776. }
  777. .glyphicon-save:before {
  778. content: "\e166";
  779. }
  780. .glyphicon-open:before {
  781. content: "\e167";
  782. }
  783. .glyphicon-saved:before {
  784. content: "\e168";
  785. }
  786. .glyphicon-import:before {
  787. content: "\e169";
  788. }
  789. .glyphicon-export:before {
  790. content: "\e170";
  791. }
  792. .glyphicon-send:before {
  793. content: "\e171";
  794. }
  795. .glyphicon-floppy-disk:before {
  796. content: "\e172";
  797. }
  798. .glyphicon-floppy-saved:before {
  799. content: "\e173";
  800. }
  801. .glyphicon-floppy-remove:before {
  802. content: "\e174";
  803. }
  804. .glyphicon-floppy-save:before {
  805. content: "\e175";
  806. }
  807. .glyphicon-floppy-open:before {
  808. content: "\e176";
  809. }
  810. .glyphicon-credit-card:before {
  811. content: "\e177";
  812. }
  813. .glyphicon-transfer:before {
  814. content: "\e178";
  815. }
  816. .glyphicon-cutlery:before {
  817. content: "\e179";
  818. }
  819. .glyphicon-header:before {
  820. content: "\e180";
  821. }
  822. .glyphicon-compressed:before {
  823. content: "\e181";
  824. }
  825. .glyphicon-earphone:before {
  826. content: "\e182";
  827. }
  828. .glyphicon-phone-alt:before {
  829. content: "\e183";
  830. }
  831. .glyphicon-tower:before {
  832. content: "\e184";
  833. }
  834. .glyphicon-stats:before {
  835. content: "\e185";
  836. }
  837. .glyphicon-sd-video:before {
  838. content: "\e186";
  839. }
  840. .glyphicon-hd-video:before {
  841. content: "\e187";
  842. }
  843. .glyphicon-subtitles:before {
  844. content: "\e188";
  845. }
  846. .glyphicon-sound-stereo:before {
  847. content: "\e189";
  848. }
  849. .glyphicon-sound-dolby:before {
  850. content: "\e190";
  851. }
  852. .glyphicon-sound-5-1:before {
  853. content: "\e191";
  854. }
  855. .glyphicon-sound-6-1:before {
  856. content: "\e192";
  857. }
  858. .glyphicon-sound-7-1:before {
  859. content: "\e193";
  860. }
  861. .glyphicon-copyright-mark:before {
  862. content: "\e194";
  863. }
  864. .glyphicon-registration-mark:before {
  865. content: "\e195";
  866. }
  867. .glyphicon-cloud-download:before {
  868. content: "\e197";
  869. }
  870. .glyphicon-cloud-upload:before {
  871. content: "\e198";
  872. }
  873. .glyphicon-tree-conifer:before {
  874. content: "\e199";
  875. }
  876. .glyphicon-tree-deciduous:before {
  877. content: "\e200";
  878. }
  879. .glyphicon-cd:before {
  880. content: "\e201";
  881. }
  882. .glyphicon-save-file:before {
  883. content: "\e202";
  884. }
  885. .glyphicon-open-file:before {
  886. content: "\e203";
  887. }
  888. .glyphicon-level-up:before {
  889. content: "\e204";
  890. }
  891. .glyphicon-copy:before {
  892. content: "\e205";
  893. }
  894. .glyphicon-paste:before {
  895. content: "\e206";
  896. }
  897. .glyphicon-alert:before {
  898. content: "\e209";
  899. }
  900. .glyphicon-equalizer:before {
  901. content: "\e210";
  902. }
  903. .glyphicon-king:before {
  904. content: "\e211";
  905. }
  906. .glyphicon-queen:before {
  907. content: "\e212";
  908. }
  909. .glyphicon-pawn:before {
  910. content: "\e213";
  911. }
  912. .glyphicon-bishop:before {
  913. content: "\e214";
  914. }
  915. .glyphicon-knight:before {
  916. content: "\e215";
  917. }
  918. .glyphicon-baby-formula:before {
  919. content: "\e216";
  920. }
  921. .glyphicon-tent:before {
  922. content: "\26fa";
  923. }
  924. .glyphicon-blackboard:before {
  925. content: "\e218";
  926. }
  927. .glyphicon-bed:before {
  928. content: "\e219";
  929. }
  930. .glyphicon-apple:before {
  931. content: "\f8ff";
  932. }
  933. .glyphicon-erase:before {
  934. content: "\e221";
  935. }
  936. .glyphicon-hourglass:before {
  937. content: "\231b";
  938. }
  939. .glyphicon-lamp:before {
  940. content: "\e223";
  941. }
  942. .glyphicon-duplicate:before {
  943. content: "\e224";
  944. }
  945. .glyphicon-piggy-bank:before {
  946. content: "\e225";
  947. }
  948. .glyphicon-scissors:before {
  949. content: "\e226";
  950. }
  951. .glyphicon-bitcoin:before {
  952. content: "\e227";
  953. }
  954. .glyphicon-btc:before {
  955. content: "\e227";
  956. }
  957. .glyphicon-xbt:before {
  958. content: "\e227";
  959. }
  960. .glyphicon-yen:before {
  961. content: "\00a5";
  962. }
  963. .glyphicon-jpy:before {
  964. content: "\00a5";
  965. }
  966. .glyphicon-ruble:before {
  967. content: "\20bd";
  968. }
  969. .glyphicon-rub:before {
  970. content: "\20bd";
  971. }
  972. .glyphicon-scale:before {
  973. content: "\e230";
  974. }
  975. .glyphicon-ice-lolly:before {
  976. content: "\e231";
  977. }
  978. .glyphicon-ice-lolly-tasted:before {
  979. content: "\e232";
  980. }
  981. .glyphicon-education:before {
  982. content: "\e233";
  983. }
  984. .glyphicon-option-horizontal:before {
  985. content: "\e234";
  986. }
  987. .glyphicon-option-vertical:before {
  988. content: "\e235";
  989. }
  990. .glyphicon-menu-hamburger:before {
  991. content: "\e236";
  992. }
  993. .glyphicon-modal-window:before {
  994. content: "\e237";
  995. }
  996. .glyphicon-oil:before {
  997. content: "\e238";
  998. }
  999. .glyphicon-grain:before {
  1000. content: "\e239";
  1001. }
  1002. .glyphicon-sunglasses:before {
  1003. content: "\e240";
  1004. }
  1005. .glyphicon-text-size:before {
  1006. content: "\e241";
  1007. }
  1008. .glyphicon-text-color:before {
  1009. content: "\e242";
  1010. }
  1011. .glyphicon-text-background:before {
  1012. content: "\e243";
  1013. }
  1014. .glyphicon-object-align-top:before {
  1015. content: "\e244";
  1016. }
  1017. .glyphicon-object-align-bottom:before {
  1018. content: "\e245";
  1019. }
  1020. .glyphicon-object-align-horizontal:before {
  1021. content: "\e246";
  1022. }
  1023. .glyphicon-object-align-left:before {
  1024. content: "\e247";
  1025. }
  1026. .glyphicon-object-align-vertical:before {
  1027. content: "\e248";
  1028. }
  1029. .glyphicon-object-align-right:before {
  1030. content: "\e249";
  1031. }
  1032. .glyphicon-triangle-right:before {
  1033. content: "\e250";
  1034. }
  1035. .glyphicon-triangle-left:before {
  1036. content: "\e251";
  1037. }
  1038. .glyphicon-triangle-bottom:before {
  1039. content: "\e252";
  1040. }
  1041. .glyphicon-triangle-top:before {
  1042. content: "\e253";
  1043. }
  1044. .glyphicon-console:before {
  1045. content: "\e254";
  1046. }
  1047. .glyphicon-superscript:before {
  1048. content: "\e255";
  1049. }
  1050. .glyphicon-subscript:before {
  1051. content: "\e256";
  1052. }
  1053. .glyphicon-menu-left:before {
  1054. content: "\e257";
  1055. }
  1056. .glyphicon-menu-right:before {
  1057. content: "\e258";
  1058. }
  1059. .glyphicon-menu-down:before {
  1060. content: "\e259";
  1061. }
  1062. .glyphicon-menu-up:before {
  1063. content: "\e260";
  1064. }
  1065. * {
  1066. -webkit-box-sizing: border-box;
  1067. -moz-box-sizing: border-box;
  1068. box-sizing: border-box;
  1069. }
  1070. *:before,
  1071. *:after {
  1072. -webkit-box-sizing: border-box;
  1073. -moz-box-sizing: border-box;
  1074. box-sizing: border-box;
  1075. }
  1076. html {
  1077. font-size: 10px;
  1078. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1079. }
  1080. body {
  1081. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1082. font-size: 14px;
  1083. line-height: 1.42857143;
  1084. color: #333;
  1085. background-color: #fff;
  1086. }
  1087. input,
  1088. button,
  1089. select,
  1090. textarea {
  1091. font-family: inherit;
  1092. font-size: inherit;
  1093. line-height: inherit;
  1094. }
  1095. a {
  1096. color: #337ab7;
  1097. text-decoration: none;
  1098. }
  1099. a:hover,
  1100. a:focus {
  1101. color: #23527c;
  1102. text-decoration: underline;
  1103. }
  1104. a:focus {
  1105. outline: thin dotted;
  1106. outline: 5px auto -webkit-focus-ring-color;
  1107. outline-offset: -2px;
  1108. }
  1109. figure {
  1110. margin: 0;
  1111. }
  1112. img {
  1113. vertical-align: middle;
  1114. }
  1115. .img-responsive,
  1116. .thumbnail > img,
  1117. .thumbnail a > img,
  1118. .carousel-inner > .item > img,
  1119. .carousel-inner > .item > a > img {
  1120. display: block;
  1121. max-width: 100%;
  1122. height: auto;
  1123. }
  1124. .img-rounded {
  1125. border-radius: 6px;
  1126. }
  1127. .img-thumbnail {
  1128. display: inline-block;
  1129. max-width: 100%;
  1130. height: auto;
  1131. padding: 4px;
  1132. line-height: 1.42857143;
  1133. background-color: #fff;
  1134. border: 1px solid #ddd;
  1135. border-radius: 4px;
  1136. -webkit-transition: all .2s ease-in-out;
  1137. -o-transition: all .2s ease-in-out;
  1138. transition: all .2s ease-in-out;
  1139. }
  1140. .img-circle {
  1141. border-radius: 50%;
  1142. }
  1143. hr {
  1144. margin-top: 20px;
  1145. margin-bottom: 20px;
  1146. border: 0;
  1147. border-top: 1px solid #eee;
  1148. }
  1149. .sr-only {
  1150. position: absolute;
  1151. width: 1px;
  1152. height: 1px;
  1153. padding: 0;
  1154. margin: -1px;
  1155. overflow: hidden;
  1156. clip: rect(0, 0, 0, 0);
  1157. border: 0;
  1158. }
  1159. .sr-only-focusable:active,
  1160. .sr-only-focusable:focus {
  1161. position: static;
  1162. width: auto;
  1163. height: auto;
  1164. margin: 0;
  1165. overflow: visible;
  1166. clip: auto;
  1167. }
  1168. [role="button"] {
  1169. cursor: pointer;
  1170. }
  1171. h1,
  1172. h2,
  1173. h3,
  1174. h4,
  1175. h5,
  1176. h6,
  1177. .h1,
  1178. .h2,
  1179. .h3,
  1180. .h4,
  1181. .h5,
  1182. .h6 {
  1183. font-family: inherit;
  1184. font-weight: 500;
  1185. line-height: 1.1;
  1186. color: inherit;
  1187. }
  1188. h1 small,
  1189. h2 small,
  1190. h3 small,
  1191. h4 small,
  1192. h5 small,
  1193. h6 small,
  1194. .h1 small,
  1195. .h2 small,
  1196. .h3 small,
  1197. .h4 small,
  1198. .h5 small,
  1199. .h6 small,
  1200. h1 .small,
  1201. h2 .small,
  1202. h3 .small,
  1203. h4 .small,
  1204. h5 .small,
  1205. h6 .small,
  1206. .h1 .small,
  1207. .h2 .small,
  1208. .h3 .small,
  1209. .h4 .small,
  1210. .h5 .small,
  1211. .h6 .small {
  1212. font-weight: normal;
  1213. line-height: 1;
  1214. color: #777;
  1215. }
  1216. h1,
  1217. .h1,
  1218. h2,
  1219. .h2,
  1220. h3,
  1221. .h3 {
  1222. margin-top: 20px;
  1223. margin-bottom: 10px;
  1224. }
  1225. h1 small,
  1226. .h1 small,
  1227. h2 small,
  1228. .h2 small,
  1229. h3 small,
  1230. .h3 small,
  1231. h1 .small,
  1232. .h1 .small,
  1233. h2 .small,
  1234. .h2 .small,
  1235. h3 .small,
  1236. .h3 .small {
  1237. font-size: 65%;
  1238. }
  1239. h4,
  1240. .h4,
  1241. h5,
  1242. .h5,
  1243. h6,
  1244. .h6 {
  1245. margin-top: 10px;
  1246. margin-bottom: 10px;
  1247. }
  1248. h4 small,
  1249. .h4 small,
  1250. h5 small,
  1251. .h5 small,
  1252. h6 small,
  1253. .h6 small,
  1254. h4 .small,
  1255. .h4 .small,
  1256. h5 .small,
  1257. .h5 .small,
  1258. h6 .small,
  1259. .h6 .small {
  1260. font-size: 75%;
  1261. }
  1262. h1,
  1263. .h1 {
  1264. font-size: 36px;
  1265. }
  1266. h2,
  1267. .h2 {
  1268. font-size: 30px;
  1269. }
  1270. h3,
  1271. .h3 {
  1272. font-size: 24px;
  1273. }
  1274. h4,
  1275. .h4 {
  1276. font-size: 18px;
  1277. }
  1278. h5,
  1279. .h5 {
  1280. font-size: 14px;
  1281. }
  1282. h6,
  1283. .h6 {
  1284. font-size: 12px;
  1285. }
  1286. p {
  1287. margin: 0 0 10px;
  1288. }
  1289. .lead {
  1290. margin-bottom: 20px;
  1291. font-size: 16px;
  1292. font-weight: 300;
  1293. line-height: 1.4;
  1294. }
  1295. @media (min-width: 768px) {
  1296. .lead {
  1297. font-size: 21px;
  1298. }
  1299. }
  1300. small,
  1301. .small {
  1302. font-size: 85%;
  1303. }
  1304. mark,
  1305. .mark {
  1306. padding: .2em;
  1307. background-color: #fcf8e3;
  1308. }
  1309. .text-left {
  1310. text-align: left;
  1311. }
  1312. .text-right {
  1313. text-align: right;
  1314. }
  1315. .text-center {
  1316. text-align: center;
  1317. }
  1318. .text-justify {
  1319. text-align: justify;
  1320. }
  1321. .text-nowrap {
  1322. white-space: nowrap;
  1323. }
  1324. .text-lowercase {
  1325. text-transform: lowercase;
  1326. }
  1327. .text-uppercase {
  1328. text-transform: uppercase;
  1329. }
  1330. .text-capitalize {
  1331. text-transform: capitalize;
  1332. }
  1333. .text-muted {
  1334. color: #777;
  1335. }
  1336. .text-primary {
  1337. color: #337ab7;
  1338. }
  1339. a.text-primary:hover,
  1340. a.text-primary:focus {
  1341. color: #286090;
  1342. }
  1343. .text-success {
  1344. color: #3c763d;
  1345. }
  1346. a.text-success:hover,
  1347. a.text-success:focus {
  1348. color: #2b542c;
  1349. }
  1350. .text-info {
  1351. color: #31708f;
  1352. }
  1353. a.text-info:hover,
  1354. a.text-info:focus {
  1355. color: #245269;
  1356. }
  1357. .text-warning {
  1358. color: #8a6d3b;
  1359. }
  1360. a.text-warning:hover,
  1361. a.text-warning:focus {
  1362. color: #66512c;
  1363. }
  1364. .text-danger {
  1365. color: #a94442;
  1366. }
  1367. a.text-danger:hover,
  1368. a.text-danger:focus {
  1369. color: #843534;
  1370. }
  1371. .bg-primary {
  1372. color: #fff;
  1373. background-color: #337ab7;
  1374. }
  1375. a.bg-primary:hover,
  1376. a.bg-primary:focus {
  1377. background-color: #286090;
  1378. }
  1379. .bg-success {
  1380. background-color: #dff0d8;
  1381. }
  1382. a.bg-success:hover,
  1383. a.bg-success:focus {
  1384. background-color: #c1e2b3;
  1385. }
  1386. .bg-info {
  1387. background-color: #d9edf7;
  1388. }
  1389. a.bg-info:hover,
  1390. a.bg-info:focus {
  1391. background-color: #afd9ee;
  1392. }
  1393. .bg-warning {
  1394. background-color: #fcf8e3;
  1395. }
  1396. a.bg-warning:hover,
  1397. a.bg-warning:focus {
  1398. background-color: #f7ecb5;
  1399. }
  1400. .bg-danger {
  1401. background-color: #f2dede;
  1402. }
  1403. a.bg-danger:hover,
  1404. a.bg-danger:focus {
  1405. background-color: #e4b9b9;
  1406. }
  1407. .page-header {
  1408. padding-bottom: 9px;
  1409. margin: 40px 0 20px;
  1410. border-bottom: 1px solid #eee;
  1411. }
  1412. ul,
  1413. ol {
  1414. margin-top: 0;
  1415. margin-bottom: 10px;
  1416. }
  1417. ul ul,
  1418. ol ul,
  1419. ul ol,
  1420. ol ol {
  1421. margin-bottom: 0;
  1422. }
  1423. .list-unstyled {
  1424. padding-left: 0;
  1425. list-style: none;
  1426. }
  1427. .list-inline {
  1428. padding-left: 0;
  1429. margin-left: -5px;
  1430. list-style: none;
  1431. }
  1432. .list-inline > li {
  1433. display: inline-block;
  1434. padding-right: 5px;
  1435. padding-left: 5px;
  1436. }
  1437. dl {
  1438. margin-top: 0;
  1439. margin-bottom: 20px;
  1440. }
  1441. dt,
  1442. dd {
  1443. line-height: 1.42857143;
  1444. }
  1445. dt {
  1446. font-weight: bold;
  1447. }
  1448. dd {
  1449. margin-left: 0;
  1450. }
  1451. @media (min-width: 768px) {
  1452. .dl-horizontal dt {
  1453. float: left;
  1454. width: 160px;
  1455. overflow: hidden;
  1456. clear: left;
  1457. text-align: right;
  1458. text-overflow: ellipsis;
  1459. white-space: nowrap;
  1460. }
  1461. .dl-horizontal dd {
  1462. margin-left: 180px;
  1463. }
  1464. }
  1465. abbr[title],
  1466. abbr[data-original-title] {
  1467. cursor: help;
  1468. border-bottom: 1px dotted #777;
  1469. }
  1470. .initialism {
  1471. font-size: 90%;
  1472. text-transform: uppercase;
  1473. }
  1474. blockquote {
  1475. padding: 10px 20px;
  1476. margin: 0 0 20px;
  1477. font-size: 17.5px;
  1478. border-left: 5px solid #eee;
  1479. }
  1480. blockquote p:last-child,
  1481. blockquote ul:last-child,
  1482. blockquote ol:last-child {
  1483. margin-bottom: 0;
  1484. }
  1485. blockquote footer,
  1486. blockquote small,
  1487. blockquote .small {
  1488. display: block;
  1489. font-size: 80%;
  1490. line-height: 1.42857143;
  1491. color: #777;
  1492. }
  1493. blockquote footer:before,
  1494. blockquote small:before,
  1495. blockquote .small:before {
  1496. content: '\2014 \00A0';
  1497. }
  1498. .blockquote-reverse,
  1499. blockquote.pull-right {
  1500. padding-right: 15px;
  1501. padding-left: 0;
  1502. text-align: right;
  1503. border-right: 5px solid #eee;
  1504. border-left: 0;
  1505. }
  1506. .blockquote-reverse footer:before,
  1507. blockquote.pull-right footer:before,
  1508. .blockquote-reverse small:before,
  1509. blockquote.pull-right small:before,
  1510. .blockquote-reverse .small:before,
  1511. blockquote.pull-right .small:before {
  1512. content: '';
  1513. }
  1514. .blockquote-reverse footer:after,
  1515. blockquote.pull-right footer:after,
  1516. .blockquote-reverse small:after,
  1517. blockquote.pull-right small:after,
  1518. .blockquote-reverse .small:after,
  1519. blockquote.pull-right .small:after {
  1520. content: '\00A0 \2014';
  1521. }
  1522. address {
  1523. margin-bottom: 20px;
  1524. font-style: normal;
  1525. line-height: 1.42857143;
  1526. }
  1527. code,
  1528. kbd,
  1529. pre,
  1530. samp {
  1531. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1532. }
  1533. code {
  1534. padding: 2px 4px;
  1535. font-size: 90%;
  1536. color: #c7254e;
  1537. background-color: #f9f2f4;
  1538. border-radius: 4px;
  1539. }
  1540. kbd {
  1541. padding: 2px 4px;
  1542. font-size: 90%;
  1543. color: #fff;
  1544. background-color: #333;
  1545. border-radius: 3px;
  1546. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
  1547. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
  1548. }
  1549. kbd kbd {
  1550. padding: 0;
  1551. font-size: 100%;
  1552. font-weight: bold;
  1553. -webkit-box-shadow: none;
  1554. box-shadow: none;
  1555. }
  1556. pre {
  1557. display: block;
  1558. padding: 9.5px;
  1559. margin: 0 0 10px;
  1560. font-size: 13px;
  1561. line-height: 1.42857143;
  1562. color: #333;
  1563. word-break: break-all;
  1564. word-wrap: break-word;
  1565. background-color: #f5f5f5;
  1566. border: 1px solid #ccc;
  1567. border-radius: 4px;
  1568. }
  1569. pre code {
  1570. padding: 0;
  1571. font-size: inherit;
  1572. color: inherit;
  1573. white-space: pre-wrap;
  1574. background-color: transparent;
  1575. border-radius: 0;
  1576. }
  1577. .pre-scrollable {
  1578. max-height: 340px;
  1579. overflow-y: scroll;
  1580. }
  1581. .container {
  1582. padding-right: 15px;
  1583. padding-left: 15px;
  1584. margin-right: auto;
  1585. margin-left: auto;
  1586. }
  1587. @media (min-width: 768px) {
  1588. .container {
  1589. width: 750px;
  1590. }
  1591. }
  1592. @media (min-width: 992px) {
  1593. .container {
  1594. width: 970px;
  1595. }
  1596. }
  1597. @media (min-width: 1200px) {
  1598. .container {
  1599. width: 1170px;
  1600. }
  1601. }
  1602. .container-fluid {
  1603. padding-right: 15px;
  1604. padding-left: 15px;
  1605. margin-right: auto;
  1606. margin-left: auto;
  1607. }
  1608. .row {
  1609. margin-right: -15px;
  1610. margin-left: -15px;
  1611. }
  1612. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  1613. position: relative;
  1614. min-height: 1px;
  1615. padding-right: 15px;
  1616. padding-left: 15px;
  1617. }
  1618. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  1619. float: left;
  1620. }
  1621. .col-xs-12 {
  1622. width: 100%;
  1623. }
  1624. .col-xs-11 {
  1625. width: 91.66666667%;
  1626. }
  1627. .col-xs-10 {
  1628. width: 83.33333333%;
  1629. }
  1630. .col-xs-9 {
  1631. width: 75%;
  1632. }
  1633. .col-xs-8 {
  1634. width: 66.66666667%;
  1635. }
  1636. .col-xs-7 {
  1637. width: 58.33333333%;
  1638. }
  1639. .col-xs-6 {
  1640. width: 50%;
  1641. }
  1642. .col-xs-5 {
  1643. width: 41.66666667%;
  1644. }
  1645. .col-xs-4 {
  1646. width: 33.33333333%;
  1647. }
  1648. .col-xs-3 {
  1649. width: 25%;
  1650. }
  1651. .col-xs-2 {
  1652. width: 16.66666667%;
  1653. }
  1654. .col-xs-1 {
  1655. width: 8.33333333%;
  1656. }
  1657. .col-xs-pull-12 {
  1658. right: 100%;
  1659. }
  1660. .col-xs-pull-11 {
  1661. right: 91.66666667%;
  1662. }
  1663. .col-xs-pull-10 {
  1664. right: 83.33333333%;
  1665. }
  1666. .col-xs-pull-9 {
  1667. right: 75%;
  1668. }
  1669. .col-xs-pull-8 {
  1670. right: 66.66666667%;
  1671. }
  1672. .col-xs-pull-7 {
  1673. right: 58.33333333%;
  1674. }
  1675. .col-xs-pull-6 {
  1676. right: 50%;
  1677. }
  1678. .col-xs-pull-5 {
  1679. right: 41.66666667%;
  1680. }
  1681. .col-xs-pull-4 {
  1682. right: 33.33333333%;
  1683. }
  1684. .col-xs-pull-3 {
  1685. right: 25%;
  1686. }
  1687. .col-xs-pull-2 {
  1688. right: 16.66666667%;
  1689. }
  1690. .col-xs-pull-1 {
  1691. right: 8.33333333%;
  1692. }
  1693. .col-xs-pull-0 {
  1694. right: auto;
  1695. }
  1696. .col-xs-push-12 {
  1697. left: 100%;
  1698. }
  1699. .col-xs-push-11 {
  1700. left: 91.66666667%;
  1701. }
  1702. .col-xs-push-10 {
  1703. left: 83.33333333%;
  1704. }
  1705. .col-xs-push-9 {
  1706. left: 75%;
  1707. }
  1708. .col-xs-push-8 {
  1709. left: 66.66666667%;
  1710. }
  1711. .col-xs-push-7 {
  1712. left: 58.33333333%;
  1713. }
  1714. .col-xs-push-6 {
  1715. left: 50%;
  1716. }
  1717. .col-xs-push-5 {
  1718. left: 41.66666667%;
  1719. }
  1720. .col-xs-push-4 {
  1721. left: 33.33333333%;
  1722. }
  1723. .col-xs-push-3 {
  1724. left: 25%;
  1725. }
  1726. .col-xs-push-2 {
  1727. left: 16.66666667%;
  1728. }
  1729. .col-xs-push-1 {
  1730. left: 8.33333333%;
  1731. }
  1732. .col-xs-push-0 {
  1733. left: auto;
  1734. }
  1735. .col-xs-offset-12 {
  1736. margin-left: 100%;
  1737. }
  1738. .col-xs-offset-11 {
  1739. margin-left: 91.66666667%;
  1740. }
  1741. .col-xs-offset-10 {
  1742. margin-left: 83.33333333%;
  1743. }
  1744. .col-xs-offset-9 {
  1745. margin-left: 75%;
  1746. }
  1747. .col-xs-offset-8 {
  1748. margin-left: 66.66666667%;
  1749. }
  1750. .col-xs-offset-7 {
  1751. margin-left: 58.33333333%;
  1752. }
  1753. .col-xs-offset-6 {
  1754. margin-left: 50%;
  1755. }
  1756. .col-xs-offset-5 {
  1757. margin-left: 41.66666667%;
  1758. }
  1759. .col-xs-offset-4 {
  1760. margin-left: 33.33333333%;
  1761. }
  1762. .col-xs-offset-3 {
  1763. margin-left: 25%;
  1764. }
  1765. .col-xs-offset-2 {
  1766. margin-left: 16.66666667%;
  1767. }
  1768. .col-xs-offset-1 {
  1769. margin-left: 8.33333333%;
  1770. }
  1771. .col-xs-offset-0 {
  1772. margin-left: 0;
  1773. }
  1774. @media (min-width: 768px) {
  1775. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  1776. float: left;
  1777. }
  1778. .col-sm-12 {
  1779. width: 100%;
  1780. }
  1781. .col-sm-11 {
  1782. width: 91.66666667%;
  1783. }
  1784. .col-sm-10 {
  1785. width: 83.33333333%;
  1786. }
  1787. .col-sm-9 {
  1788. width: 75%;
  1789. }
  1790. .col-sm-8 {
  1791. width: 66.66666667%;
  1792. }
  1793. .col-sm-7 {
  1794. width: 58.33333333%;
  1795. }
  1796. .col-sm-6 {
  1797. width: 50%;
  1798. }
  1799. .col-sm-5 {
  1800. width: 41.66666667%;
  1801. }
  1802. .col-sm-4 {
  1803. width: 33.33333333%;
  1804. }
  1805. .col-sm-3 {
  1806. width: 25%;
  1807. }
  1808. .col-sm-2 {
  1809. width: 16.66666667%;
  1810. }
  1811. .col-sm-1 {
  1812. width: 8.33333333%;
  1813. }
  1814. .col-sm-pull-12 {
  1815. right: 100%;
  1816. }
  1817. .col-sm-pull-11 {
  1818. right: 91.66666667%;
  1819. }
  1820. .col-sm-pull-10 {
  1821. right: 83.33333333%;
  1822. }
  1823. .col-sm-pull-9 {
  1824. right: 75%;
  1825. }
  1826. .col-sm-pull-8 {
  1827. right: 66.66666667%;
  1828. }
  1829. .col-sm-pull-7 {
  1830. right: 58.33333333%;
  1831. }
  1832. .col-sm-pull-6 {
  1833. right: 50%;
  1834. }
  1835. .col-sm-pull-5 {
  1836. right: 41.66666667%;
  1837. }
  1838. .col-sm-pull-4 {
  1839. right: 33.33333333%;
  1840. }
  1841. .col-sm-pull-3 {
  1842. right: 25%;
  1843. }
  1844. .col-sm-pull-2 {
  1845. right: 16.66666667%;
  1846. }
  1847. .col-sm-pull-1 {
  1848. right: 8.33333333%;
  1849. }
  1850. .col-sm-pull-0 {
  1851. right: auto;
  1852. }
  1853. .col-sm-push-12 {
  1854. left: 100%;
  1855. }
  1856. .col-sm-push-11 {
  1857. left: 91.66666667%;
  1858. }
  1859. .col-sm-push-10 {
  1860. left: 83.33333333%;
  1861. }
  1862. .col-sm-push-9 {
  1863. left: 75%;
  1864. }
  1865. .col-sm-push-8 {
  1866. left: 66.66666667%;
  1867. }
  1868. .col-sm-push-7 {
  1869. left: 58.33333333%;
  1870. }
  1871. .col-sm-push-6 {
  1872. left: 50%;
  1873. }
  1874. .col-sm-push-5 {
  1875. left: 41.66666667%;
  1876. }
  1877. .col-sm-push-4 {
  1878. left: 33.33333333%;
  1879. }
  1880. .col-sm-push-3 {
  1881. left: 25%;
  1882. }
  1883. .col-sm-push-2 {
  1884. left: 16.66666667%;
  1885. }
  1886. .col-sm-push-1 {
  1887. left: 8.33333333%;
  1888. }
  1889. .col-sm-push-0 {
  1890. left: auto;
  1891. }
  1892. .col-sm-offset-12 {
  1893. margin-left: 100%;
  1894. }
  1895. .col-sm-offset-11 {
  1896. margin-left: 91.66666667%;
  1897. }
  1898. .col-sm-offset-10 {
  1899. margin-left: 83.33333333%;
  1900. }
  1901. .col-sm-offset-9 {
  1902. margin-left: 75%;
  1903. }
  1904. .col-sm-offset-8 {
  1905. margin-left: 66.66666667%;
  1906. }
  1907. .col-sm-offset-7 {
  1908. margin-left: 58.33333333%;
  1909. }
  1910. .col-sm-offset-6 {
  1911. margin-left: 50%;
  1912. }
  1913. .col-sm-offset-5 {
  1914. margin-left: 41.66666667%;
  1915. }
  1916. .col-sm-offset-4 {
  1917. margin-left: 33.33333333%;
  1918. }
  1919. .col-sm-offset-3 {
  1920. margin-left: 25%;
  1921. }
  1922. .col-sm-offset-2 {
  1923. margin-left: 16.66666667%;
  1924. }
  1925. .col-sm-offset-1 {
  1926. margin-left: 8.33333333%;
  1927. }
  1928. .col-sm-offset-0 {
  1929. margin-left: 0;
  1930. }
  1931. }
  1932. @media (min-width: 992px) {
  1933. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  1934. float: left;
  1935. }
  1936. .col-md-12 {
  1937. width: 100%;
  1938. }
  1939. .col-md-11 {
  1940. width: 91.66666667%;
  1941. }
  1942. .col-md-10 {
  1943. width: 83.33333333%;
  1944. }
  1945. .col-md-9 {
  1946. width: 75%;
  1947. }
  1948. .col-md-8 {
  1949. width: 66.66666667%;
  1950. }
  1951. .col-md-7 {
  1952. width: 58.33333333%;
  1953. }
  1954. .col-md-6 {
  1955. width: 50%;
  1956. }
  1957. .col-md-5 {
  1958. width: 41.66666667%;
  1959. }
  1960. .col-md-4 {
  1961. width: 33.33333333%;
  1962. }
  1963. .col-md-3 {
  1964. width: 25%;
  1965. }
  1966. .col-md-2 {
  1967. width: 16.66666667%;
  1968. }
  1969. .col-md-1 {
  1970. width: 8.33333333%;
  1971. }
  1972. .col-md-pull-12 {
  1973. right: 100%;
  1974. }
  1975. .col-md-pull-11 {
  1976. right: 91.66666667%;
  1977. }
  1978. .col-md-pull-10 {
  1979. right: 83.33333333%;
  1980. }
  1981. .col-md-pull-9 {
  1982. right: 75%;
  1983. }
  1984. .col-md-pull-8 {
  1985. right: 66.66666667%;
  1986. }
  1987. .col-md-pull-7 {
  1988. right: 58.33333333%;
  1989. }
  1990. .col-md-pull-6 {
  1991. right: 50%;
  1992. }
  1993. .col-md-pull-5 {
  1994. right: 41.66666667%;
  1995. }
  1996. .col-md-pull-4 {
  1997. right: 33.33333333%;
  1998. }
  1999. .col-md-pull-3 {
  2000. right: 25%;
  2001. }
  2002. .col-md-pull-2 {
  2003. right: 16.66666667%;
  2004. }
  2005. .col-md-pull-1 {
  2006. right: 8.33333333%;
  2007. }
  2008. .col-md-pull-0 {
  2009. right: auto;
  2010. }
  2011. .col-md-push-12 {
  2012. left: 100%;
  2013. }
  2014. .col-md-push-11 {
  2015. left: 91.66666667%;
  2016. }
  2017. .col-md-push-10 {
  2018. left: 83.33333333%;
  2019. }
  2020. .col-md-push-9 {
  2021. left: 75%;
  2022. }
  2023. .col-md-push-8 {
  2024. left: 66.66666667%;
  2025. }
  2026. .col-md-push-7 {
  2027. left: 58.33333333%;
  2028. }
  2029. .col-md-push-6 {
  2030. left: 50%;
  2031. }
  2032. .col-md-push-5 {
  2033. left: 41.66666667%;
  2034. }
  2035. .col-md-push-4 {
  2036. left: 33.33333333%;
  2037. }
  2038. .col-md-push-3 {
  2039. left: 25%;
  2040. }
  2041. .col-md-push-2 {
  2042. left: 16.66666667%;
  2043. }
  2044. .col-md-push-1 {
  2045. left: 8.33333333%;
  2046. }
  2047. .col-md-push-0 {
  2048. left: auto;
  2049. }
  2050. .col-md-offset-12 {
  2051. margin-left: 100%;
  2052. }
  2053. .col-md-offset-11 {
  2054. margin-left: 91.66666667%;
  2055. }
  2056. .col-md-offset-10 {
  2057. margin-left: 83.33333333%;
  2058. }
  2059. .col-md-offset-9 {
  2060. margin-left: 75%;
  2061. }
  2062. .col-md-offset-8 {
  2063. margin-left: 66.66666667%;
  2064. }
  2065. .col-md-offset-7 {
  2066. margin-left: 58.33333333%;
  2067. }
  2068. .col-md-offset-6 {
  2069. margin-left: 50%;
  2070. }
  2071. .col-md-offset-5 {
  2072. margin-left: 41.66666667%;
  2073. }
  2074. .col-md-offset-4 {
  2075. margin-left: 33.33333333%;
  2076. }
  2077. .col-md-offset-3 {
  2078. margin-left: 25%;
  2079. }
  2080. .col-md-offset-2 {
  2081. margin-left: 16.66666667%;
  2082. }
  2083. .col-md-offset-1 {
  2084. margin-left: 8.33333333%;
  2085. }
  2086. .col-md-offset-0 {
  2087. margin-left: 0;
  2088. }
  2089. }
  2090. @media (min-width: 1200px) {
  2091. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  2092. float: left;
  2093. }
  2094. .col-lg-12 {
  2095. width: 100%;
  2096. }
  2097. .col-lg-11 {
  2098. width: 91.66666667%;
  2099. }
  2100. .col-lg-10 {
  2101. width: 83.33333333%;
  2102. }
  2103. .col-lg-9 {
  2104. width: 75%;
  2105. }
  2106. .col-lg-8 {
  2107. width: 66.66666667%;
  2108. }
  2109. .col-lg-7 {
  2110. width: 58.33333333%;
  2111. }
  2112. .col-lg-6 {
  2113. width: 50%;
  2114. }
  2115. .col-lg-5 {
  2116. width: 41.66666667%;
  2117. }
  2118. .col-lg-4 {
  2119. width: 33.33333333%;
  2120. }
  2121. .col-lg-3 {
  2122. width: 25%;
  2123. }
  2124. .col-lg-2 {
  2125. width: 16.66666667%;
  2126. }
  2127. .col-lg-1 {
  2128. width: 8.33333333%;
  2129. }
  2130. .col-lg-pull-12 {
  2131. right: 100%;
  2132. }
  2133. .col-lg-pull-11 {
  2134. right: 91.66666667%;
  2135. }
  2136. .col-lg-pull-10 {
  2137. right: 83.33333333%;
  2138. }
  2139. .col-lg-pull-9 {
  2140. right: 75%;
  2141. }
  2142. .col-lg-pull-8 {
  2143. right: 66.66666667%;
  2144. }
  2145. .col-lg-pull-7 {
  2146. right: 58.33333333%;
  2147. }
  2148. .col-lg-pull-6 {
  2149. right: 50%;
  2150. }
  2151. .col-lg-pull-5 {
  2152. right: 41.66666667%;
  2153. }
  2154. .col-lg-pull-4 {
  2155. right: 33.33333333%;
  2156. }
  2157. .col-lg-pull-3 {
  2158. right: 25%;
  2159. }
  2160. .col-lg-pull-2 {
  2161. right: 16.66666667%;
  2162. }
  2163. .col-lg-pull-1 {
  2164. right: 8.33333333%;
  2165. }
  2166. .col-lg-pull-0 {
  2167. right: auto;
  2168. }
  2169. .col-lg-push-12 {
  2170. left: 100%;
  2171. }
  2172. .col-lg-push-11 {
  2173. left: 91.66666667%;
  2174. }
  2175. .col-lg-push-10 {
  2176. left: 83.33333333%;
  2177. }
  2178. .col-lg-push-9 {
  2179. left: 75%;
  2180. }
  2181. .col-lg-push-8 {
  2182. left: 66.66666667%;
  2183. }
  2184. .col-lg-push-7 {
  2185. left: 58.33333333%;
  2186. }
  2187. .col-lg-push-6 {
  2188. left: 50%;
  2189. }
  2190. .col-lg-push-5 {
  2191. left: 41.66666667%;
  2192. }
  2193. .col-lg-push-4 {
  2194. left: 33.33333333%;
  2195. }
  2196. .col-lg-push-3 {
  2197. left: 25%;
  2198. }
  2199. .col-lg-push-2 {
  2200. left: 16.66666667%;
  2201. }
  2202. .col-lg-push-1 {
  2203. left: 8.33333333%;
  2204. }
  2205. .col-lg-push-0 {
  2206. left: auto;
  2207. }
  2208. .col-lg-offset-12 {
  2209. margin-left: 100%;
  2210. }
  2211. .col-lg-offset-11 {
  2212. margin-left: 91.66666667%;
  2213. }
  2214. .col-lg-offset-10 {
  2215. margin-left: 83.33333333%;
  2216. }
  2217. .col-lg-offset-9 {
  2218. margin-left: 75%;
  2219. }
  2220. .col-lg-offset-8 {
  2221. margin-left: 66.66666667%;
  2222. }
  2223. .col-lg-offset-7 {
  2224. margin-left: 58.33333333%;
  2225. }
  2226. .col-lg-offset-6 {
  2227. margin-left: 50%;
  2228. }
  2229. .col-lg-offset-5 {
  2230. margin-left: 41.66666667%;
  2231. }
  2232. .col-lg-offset-4 {
  2233. margin-left: 33.33333333%;
  2234. }
  2235. .col-lg-offset-3 {
  2236. margin-left: 25%;
  2237. }
  2238. .col-lg-offset-2 {
  2239. margin-left: 16.66666667%;
  2240. }
  2241. .col-lg-offset-1 {
  2242. margin-left: 8.33333333%;
  2243. }
  2244. .col-lg-offset-0 {
  2245. margin-left: 0;
  2246. }
  2247. }
  2248. table {
  2249. background-color: transparent;
  2250. }
  2251. caption {
  2252. padding-top: 8px;
  2253. padding-bottom: 8px;
  2254. color: #777;
  2255. text-align: left;
  2256. }
  2257. th {
  2258. text-align: left;
  2259. }
  2260. .table {
  2261. width: 100%;
  2262. max-width: 100%;
  2263. margin-bottom: 20px;
  2264. }
  2265. .table > thead > tr > th,
  2266. .table > tbody > tr > th,
  2267. .table > tfoot > tr > th,
  2268. .table > thead > tr > td,
  2269. .table > tbody > tr > td,
  2270. .table > tfoot > tr > td {
  2271. padding: 8px;
  2272. line-height: 1.42857143;
  2273. vertical-align: top;
  2274. border-top: 1px solid #ddd;
  2275. }
  2276. .table > thead > tr > th {
  2277. vertical-align: bottom;
  2278. border-bottom: 2px solid #ddd;
  2279. }
  2280. .table > caption + thead > tr:first-child > th,
  2281. .table > colgroup + thead > tr:first-child > th,
  2282. .table > thead:first-child > tr:first-child > th,
  2283. .table > caption + thead > tr:first-child > td,
  2284. .table > colgroup + thead > tr:first-child > td,
  2285. .table > thead:first-child > tr:first-child > td {
  2286. border-top: 0;
  2287. }
  2288. .table > tbody + tbody {
  2289. border-top: 2px solid #ddd;
  2290. }
  2291. .table .table {
  2292. background-color: #fff;
  2293. }
  2294. .table-condensed > thead > tr > th,
  2295. .table-condensed > tbody > tr > th,
  2296. .table-condensed > tfoot > tr > th,
  2297. .table-condensed > thead > tr > td,
  2298. .table-condensed > tbody > tr > td,
  2299. .table-condensed > tfoot > tr > td {
  2300. padding: 5px;
  2301. }
  2302. .table-bordered {
  2303. border: 1px solid #ddd;
  2304. }
  2305. .table-bordered > thead > tr > th,
  2306. .table-bordered > tbody > tr > th,
  2307. .table-bordered > tfoot > tr > th,
  2308. .table-bordered > thead > tr > td,
  2309. .table-bordered > tbody > tr > td,
  2310. .table-bordered > tfoot > tr > td {
  2311. border: 1px solid #ddd;
  2312. }
  2313. .table-bordered > thead > tr > th,
  2314. .table-bordered > thead > tr > td {
  2315. border-bottom-width: 2px;
  2316. }
  2317. .table-striped > tbody > tr:nth-of-type(odd) {
  2318. background-color: #f9f9f9;
  2319. }
  2320. .table-hover > tbody > tr:hover {
  2321. background-color: #f5f5f5;
  2322. }
  2323. table col[class*="col-"] {
  2324. position: static;
  2325. display: table-column;
  2326. float: none;
  2327. }
  2328. table td[class*="col-"],
  2329. table th[class*="col-"] {
  2330. position: static;
  2331. display: table-cell;
  2332. float: none;
  2333. }
  2334. .table > thead > tr > td.active,
  2335. .table > tbody > tr > td.active,
  2336. .table > tfoot > tr > td.active,
  2337. .table > thead > tr > th.active,
  2338. .table > tbody > tr > th.active,
  2339. .table > tfoot > tr > th.active,
  2340. .table > thead > tr.active > td,
  2341. .table > tbody > tr.active > td,
  2342. .table > tfoot > tr.active > td,
  2343. .table > thead > tr.active > th,
  2344. .table > tbody > tr.active > th,
  2345. .table > tfoot > tr.active > th {
  2346. background-color: #f5f5f5;
  2347. }
  2348. .table-hover > tbody > tr > td.active:hover,
  2349. .table-hover > tbody > tr > th.active:hover,
  2350. .table-hover > tbody > tr.active:hover > td,
  2351. .table-hover > tbody > tr:hover > .active,
  2352. .table-hover > tbody > tr.active:hover > th {
  2353. background-color: #e8e8e8;
  2354. }
  2355. .table > thead > tr > td.success,
  2356. .table > tbody > tr > td.success,
  2357. .table > tfoot > tr > td.success,
  2358. .table > thead > tr > th.success,
  2359. .table > tbody > tr > th.success,
  2360. .table > tfoot > tr > th.success,
  2361. .table > thead > tr.success > td,
  2362. .table > tbody > tr.success > td,
  2363. .table > tfoot > tr.success > td,
  2364. .table > thead > tr.success > th,
  2365. .table > tbody > tr.success > th,
  2366. .table > tfoot > tr.success > th {
  2367. background-color: #dff0d8;
  2368. }
  2369. .table-hover > tbody > tr > td.success:hover,
  2370. .table-hover > tbody > tr > th.success:hover,
  2371. .table-hover > tbody > tr.success:hover > td,
  2372. .table-hover > tbody > tr:hover > .success,
  2373. .table-hover > tbody > tr.success:hover > th {
  2374. background-color: #d0e9c6;
  2375. }
  2376. .table > thead > tr > td.info,
  2377. .table > tbody > tr > td.info,
  2378. .table > tfoot > tr > td.info,
  2379. .table > thead > tr > th.info,
  2380. .table > tbody > tr > th.info,
  2381. .table > tfoot > tr > th.info,
  2382. .table > thead > tr.info > td,
  2383. .table > tbody > tr.info > td,
  2384. .table > tfoot > tr.info > td,
  2385. .table > thead > tr.info > th,
  2386. .table > tbody > tr.info > th,
  2387. .table > tfoot > tr.info > th {
  2388. background-color: #d9edf7;
  2389. }
  2390. .table-hover > tbody > tr > td.info:hover,
  2391. .table-hover > tbody > tr > th.info:hover,
  2392. .table-hover > tbody > tr.info:hover > td,
  2393. .table-hover > tbody > tr:hover > .info,
  2394. .table-hover > tbody > tr.info:hover > th {
  2395. background-color: #c4e3f3;
  2396. }
  2397. .table > thead > tr > td.warning,
  2398. .table > tbody > tr > td.warning,
  2399. .table > tfoot > tr > td.warning,
  2400. .table > thead > tr > th.warning,
  2401. .table > tbody > tr > th.warning,
  2402. .table > tfoot > tr > th.warning,
  2403. .table > thead > tr.warning > td,
  2404. .table > tbody > tr.warning > td,
  2405. .table > tfoot > tr.warning > td,
  2406. .table > thead > tr.warning > th,
  2407. .table > tbody > tr.warning > th,
  2408. .table > tfoot > tr.warning > th {
  2409. background-color: #fcf8e3;
  2410. }
  2411. .table-hover > tbody > tr > td.warning:hover,
  2412. .table-hover > tbody > tr > th.warning:hover,
  2413. .table-hover > tbody > tr.warning:hover > td,
  2414. .table-hover > tbody > tr:hover > .warning,
  2415. .table-hover > tbody > tr.warning:hover > th {
  2416. background-color: #faf2cc;
  2417. }
  2418. .table > thead > tr > td.danger,
  2419. .table > tbody > tr > td.danger,
  2420. .table > tfoot > tr > td.danger,
  2421. .table > thead > tr > th.danger,
  2422. .table > tbody > tr > th.danger,
  2423. .table > tfoot > tr > th.danger,
  2424. .table > thead > tr.danger > td,
  2425. .table > tbody > tr.danger > td,
  2426. .table > tfoot > tr.danger > td,
  2427. .table > thead > tr.danger > th,
  2428. .table > tbody > tr.danger > th,
  2429. .table > tfoot > tr.danger > th {
  2430. background-color: #f2dede;
  2431. }
  2432. .table-hover > tbody > tr > td.danger:hover,
  2433. .table-hover > tbody > tr > th.danger:hover,
  2434. .table-hover > tbody > tr.danger:hover > td,
  2435. .table-hover > tbody > tr:hover > .danger,
  2436. .table-hover > tbody > tr.danger:hover > th {
  2437. background-color: #ebcccc;
  2438. }
  2439. .table-responsive {
  2440. min-height: .01%;
  2441. overflow-x: auto;
  2442. }
  2443. @media screen and (max-width: 767px) {
  2444. .table-responsive {
  2445. width: 100%;
  2446. margin-bottom: 15px;
  2447. overflow-y: hidden;
  2448. -ms-overflow-style: -ms-autohiding-scrollbar;
  2449. border: 1px solid #ddd;
  2450. }
  2451. .table-responsive > .table {
  2452. margin-bottom: 0;
  2453. }
  2454. .table-responsive > .table > thead > tr > th,
  2455. .table-responsive > .table > tbody > tr > th,
  2456. .table-responsive > .table > tfoot > tr > th,
  2457. .table-responsive > .table > thead > tr > td,
  2458. .table-responsive > .table > tbody > tr > td,
  2459. .table-responsive > .table > tfoot > tr > td {
  2460. white-space: nowrap;
  2461. }
  2462. .table-responsive > .table-bordered {
  2463. border: 0;
  2464. }
  2465. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2466. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2467. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2468. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2469. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2470. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2471. border-left: 0;
  2472. }
  2473. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2474. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2475. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2476. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2477. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2478. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2479. border-right: 0;
  2480. }
  2481. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2482. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2483. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2484. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2485. border-bottom: 0;
  2486. }
  2487. }
  2488. fieldset {
  2489. min-width: 0;
  2490. padding: 0;
  2491. margin: 0;
  2492. border: 0;
  2493. }
  2494. legend {
  2495. display: block;
  2496. width: 100%;
  2497. padding: 0;
  2498. margin-bottom: 20px;
  2499. font-size: 21px;
  2500. line-height: inherit;
  2501. color: #333;
  2502. border: 0;
  2503. border-bottom: 1px solid #e5e5e5;
  2504. }
  2505. label {
  2506. display: inline-block;
  2507. max-width: 100%;
  2508. margin-bottom: 5px;
  2509. font-weight: bold;
  2510. }
  2511. input[type="search"] {
  2512. -webkit-box-sizing: border-box;
  2513. -moz-box-sizing: border-box;
  2514. box-sizing: border-box;
  2515. }
  2516. input[type="radio"],
  2517. input[type="checkbox"] {
  2518. margin: 4px 0 0;
  2519. margin-top: 1px \9;
  2520. line-height: normal;
  2521. }
  2522. input[type="file"] {
  2523. display: block;
  2524. }
  2525. input[type="range"] {
  2526. display: block;
  2527. width: 100%;
  2528. }
  2529. select[multiple],
  2530. select[size] {
  2531. height: auto;
  2532. }
  2533. input[type="file"]:focus,
  2534. input[type="radio"]:focus,
  2535. input[type="checkbox"]:focus {
  2536. outline: thin dotted;
  2537. outline: 5px auto -webkit-focus-ring-color;
  2538. outline-offset: -2px;
  2539. }
  2540. output {
  2541. display: block;
  2542. padding-top: 7px;
  2543. font-size: 14px;
  2544. line-height: 1.42857143;
  2545. color: #555;
  2546. }
  2547. .form-control {
  2548. display: block;
  2549. width: 100%;
  2550. height: 34px;
  2551. padding: 6px 12px;
  2552. font-size: 14px;
  2553. line-height: 1.42857143;
  2554. color: #555;
  2555. background-color: #fff;
  2556. background-image: none;
  2557. border: 1px solid #ccc;
  2558. border-radius: 4px;
  2559. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2560. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2561. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  2562. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2563. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2564. }
  2565. .form-control:focus {
  2566. border-color: #66afe9;
  2567. outline: 0;
  2568. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  2569. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
  2570. }
  2571. .form-control::-moz-placeholder {
  2572. color: #999;
  2573. opacity: 1;
  2574. }
  2575. .form-control:-ms-input-placeholder {
  2576. color: #999;
  2577. }
  2578. .form-control::-webkit-input-placeholder {
  2579. color: #999;
  2580. }
  2581. .form-control::-ms-expand {
  2582. background-color: transparent;
  2583. border: 0;
  2584. }
  2585. .form-control[disabled],
  2586. .form-control[readonly],
  2587. fieldset[disabled] .form-control {
  2588. background-color: #eee;
  2589. opacity: 1;
  2590. }
  2591. .form-control[disabled],
  2592. fieldset[disabled] .form-control {
  2593. cursor: not-allowed;
  2594. }
  2595. textarea.form-control {
  2596. height: auto;
  2597. }
  2598. input[type="search"] {
  2599. -webkit-appearance: none;
  2600. }
  2601. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2602. input[type="date"].form-control,
  2603. input[type="time"].form-control,
  2604. input[type="datetime-local"].form-control,
  2605. input[type="month"].form-control {
  2606. line-height: 34px;
  2607. }
  2608. input[type="date"].input-sm,
  2609. input[type="time"].input-sm,
  2610. input[type="datetime-local"].input-sm,
  2611. input[type="month"].input-sm,
  2612. .input-group-sm input[type="date"],
  2613. .input-group-sm input[type="time"],
  2614. .input-group-sm input[type="datetime-local"],
  2615. .input-group-sm input[type="month"] {
  2616. line-height: 30px;
  2617. }
  2618. input[type="date"].input-lg,
  2619. input[type="time"].input-lg,
  2620. input[type="datetime-local"].input-lg,
  2621. input[type="month"].input-lg,
  2622. .input-group-lg input[type="date"],
  2623. .input-group-lg input[type="time"],
  2624. .input-group-lg input[type="datetime-local"],
  2625. .input-group-lg input[type="month"] {
  2626. line-height: 46px;
  2627. }
  2628. }
  2629. .form-group {
  2630. margin-bottom: 15px;
  2631. }
  2632. .radio,
  2633. .checkbox {
  2634. position: relative;
  2635. display: block;
  2636. margin-top: 10px;
  2637. margin-bottom: 10px;
  2638. }
  2639. .radio label,
  2640. .checkbox label {
  2641. min-height: 20px;
  2642. padding-left: 20px;
  2643. margin-bottom: 0;
  2644. font-weight: normal;
  2645. cursor: pointer;
  2646. }
  2647. .radio input[type="radio"],
  2648. .radio-inline input[type="radio"],
  2649. .checkbox input[type="checkbox"],
  2650. .checkbox-inline input[type="checkbox"] {
  2651. position: absolute;
  2652. margin-top: 4px \9;
  2653. margin-left: -20px;
  2654. }
  2655. .radio + .radio,
  2656. .checkbox + .checkbox {
  2657. margin-top: -5px;
  2658. }
  2659. .radio-inline,
  2660. .checkbox-inline {
  2661. position: relative;
  2662. display: inline-block;
  2663. padding-left: 20px;
  2664. margin-bottom: 0;
  2665. font-weight: normal;
  2666. vertical-align: middle;
  2667. cursor: pointer;
  2668. }
  2669. .radio-inline + .radio-inline,
  2670. .checkbox-inline + .checkbox-inline {
  2671. margin-top: 0;
  2672. margin-left: 10px;
  2673. }
  2674. input[type="radio"][disabled],
  2675. input[type="checkbox"][disabled],
  2676. input[type="radio"].disabled,
  2677. input[type="checkbox"].disabled,
  2678. fieldset[disabled] input[type="radio"],
  2679. fieldset[disabled] input[type="checkbox"] {
  2680. cursor: not-allowed;
  2681. }
  2682. .radio-inline.disabled,
  2683. .checkbox-inline.disabled,
  2684. fieldset[disabled] .radio-inline,
  2685. fieldset[disabled] .checkbox-inline {
  2686. cursor: not-allowed;
  2687. }
  2688. .radio.disabled label,
  2689. .checkbox.disabled label,
  2690. fieldset[disabled] .radio label,
  2691. fieldset[disabled] .checkbox label {
  2692. cursor: not-allowed;
  2693. }
  2694. .form-control-static {
  2695. min-height: 34px;
  2696. padding-top: 7px;
  2697. padding-bottom: 7px;
  2698. margin-bottom: 0;
  2699. }
  2700. .form-control-static.input-lg,
  2701. .form-control-static.input-sm {
  2702. padding-right: 0;
  2703. padding-left: 0;
  2704. }
  2705. .input-sm {
  2706. height: 30px;
  2707. padding: 5px 10px;
  2708. font-size: 12px;
  2709. line-height: 1.5;
  2710. border-radius: 3px;
  2711. }
  2712. select.input-sm {
  2713. height: 30px;
  2714. line-height: 30px;
  2715. }
  2716. textarea.input-sm,
  2717. select[multiple].input-sm {
  2718. height: auto;
  2719. }
  2720. .form-group-sm .form-control {
  2721. height: 30px;
  2722. padding: 5px 10px;
  2723. font-size: 12px;
  2724. line-height: 1.5;
  2725. border-radius: 3px;
  2726. }
  2727. .form-group-sm select.form-control {
  2728. height: 30px;
  2729. line-height: 30px;
  2730. }
  2731. .form-group-sm textarea.form-control,
  2732. .form-group-sm select[multiple].form-control {
  2733. height: auto;
  2734. }
  2735. .form-group-sm .form-control-static {
  2736. height: 30px;
  2737. min-height: 32px;
  2738. padding: 6px 10px;
  2739. font-size: 12px;
  2740. line-height: 1.5;
  2741. }
  2742. .input-lg {
  2743. height: 46px;
  2744. padding: 10px 16px;
  2745. font-size: 18px;
  2746. line-height: 1.3333333;
  2747. border-radius: 6px;
  2748. }
  2749. select.input-lg {
  2750. height: 46px;
  2751. line-height: 46px;
  2752. }
  2753. textarea.input-lg,
  2754. select[multiple].input-lg {
  2755. height: auto;
  2756. }
  2757. .form-group-lg .form-control {
  2758. height: 46px;
  2759. padding: 10px 16px;
  2760. font-size: 18px;
  2761. line-height: 1.3333333;
  2762. border-radius: 6px;
  2763. }
  2764. .form-group-lg select.form-control {
  2765. height: 46px;
  2766. line-height: 46px;
  2767. }
  2768. .form-group-lg textarea.form-control,
  2769. .form-group-lg select[multiple].form-control {
  2770. height: auto;
  2771. }
  2772. .form-group-lg .form-control-static {
  2773. height: 46px;
  2774. min-height: 38px;
  2775. padding: 11px 16px;
  2776. font-size: 18px;
  2777. line-height: 1.3333333;
  2778. }
  2779. .has-feedback {
  2780. position: relative;
  2781. }
  2782. .has-feedback .form-control {
  2783. padding-right: 42.5px;
  2784. }
  2785. .form-control-feedback {
  2786. position: absolute;
  2787. top: 0;
  2788. right: 0;
  2789. z-index: 2;
  2790. display: block;
  2791. width: 34px;
  2792. height: 34px;
  2793. line-height: 34px;
  2794. text-align: center;
  2795. pointer-events: none;
  2796. }
  2797. .input-lg + .form-control-feedback,
  2798. .input-group-lg + .form-control-feedback,
  2799. .form-group-lg .form-control + .form-control-feedback {
  2800. width: 46px;
  2801. height: 46px;
  2802. line-height: 46px;
  2803. }
  2804. .input-sm + .form-control-feedback,
  2805. .input-group-sm + .form-control-feedback,
  2806. .form-group-sm .form-control + .form-control-feedback {
  2807. width: 30px;
  2808. height: 30px;
  2809. line-height: 30px;
  2810. }
  2811. .has-success .help-block,
  2812. .has-success .control-label,
  2813. .has-success .radio,
  2814. .has-success .checkbox,
  2815. .has-success .radio-inline,
  2816. .has-success .checkbox-inline,
  2817. .has-success.radio label,
  2818. .has-success.checkbox label,
  2819. .has-success.radio-inline label,
  2820. .has-success.checkbox-inline label {
  2821. color: #3c763d;
  2822. }
  2823. .has-success .form-control {
  2824. border-color: #3c763d;
  2825. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2826. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2827. }
  2828. .has-success .form-control:focus {
  2829. border-color: #2b542c;
  2830. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
  2831. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
  2832. }
  2833. .has-success .input-group-addon {
  2834. color: #3c763d;
  2835. background-color: #dff0d8;
  2836. border-color: #3c763d;
  2837. }
  2838. .has-success .form-control-feedback {
  2839. color: #3c763d;
  2840. }
  2841. .has-warning .help-block,
  2842. .has-warning .control-label,
  2843. .has-warning .radio,
  2844. .has-warning .checkbox,
  2845. .has-warning .radio-inline,
  2846. .has-warning .checkbox-inline,
  2847. .has-warning.radio label,
  2848. .has-warning.checkbox label,
  2849. .has-warning.radio-inline label,
  2850. .has-warning.checkbox-inline label {
  2851. color: #8a6d3b;
  2852. }
  2853. .has-warning .form-control {
  2854. border-color: #8a6d3b;
  2855. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2856. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2857. }
  2858. .has-warning .form-control:focus {
  2859. border-color: #66512c;
  2860. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
  2861. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
  2862. }
  2863. .has-warning .input-group-addon {
  2864. color: #8a6d3b;
  2865. background-color: #fcf8e3;
  2866. border-color: #8a6d3b;
  2867. }
  2868. .has-warning .form-control-feedback {
  2869. color: #8a6d3b;
  2870. }
  2871. .has-error .help-block,
  2872. .has-error .control-label,
  2873. .has-error .radio,
  2874. .has-error .checkbox,
  2875. .has-error .radio-inline,
  2876. .has-error .checkbox-inline,
  2877. .has-error.radio label,
  2878. .has-error.checkbox label,
  2879. .has-error.radio-inline label,
  2880. .has-error.checkbox-inline label {
  2881. color: #a94442;
  2882. }
  2883. .has-error .form-control {
  2884. border-color: #a94442;
  2885. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2886. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  2887. }
  2888. .has-error .form-control:focus {
  2889. border-color: #843534;
  2890. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
  2891. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
  2892. }
  2893. .has-error .input-group-addon {
  2894. color: #a94442;
  2895. background-color: #f2dede;
  2896. border-color: #a94442;
  2897. }
  2898. .has-error .form-control-feedback {
  2899. color: #a94442;
  2900. }
  2901. .has-feedback label ~ .form-control-feedback {
  2902. top: 25px;
  2903. }
  2904. .has-feedback label.sr-only ~ .form-control-feedback {
  2905. top: 0;
  2906. }
  2907. .help-block {
  2908. display: block;
  2909. margin-top: 5px;
  2910. margin-bottom: 10px;
  2911. color: #737373;
  2912. }
  2913. @media (min-width: 768px) {
  2914. .form-inline .form-group {
  2915. display: inline-block;
  2916. margin-bottom: 0;
  2917. vertical-align: middle;
  2918. }
  2919. .form-inline .form-control {
  2920. display: inline-block;
  2921. width: auto;
  2922. vertical-align: middle;
  2923. }
  2924. .form-inline .form-control-static {
  2925. display: inline-block;
  2926. }
  2927. .form-inline .input-group {
  2928. display: inline-table;
  2929. vertical-align: middle;
  2930. }
  2931. .form-inline .input-group .input-group-addon,
  2932. .form-inline .input-group .input-group-btn,
  2933. .form-inline .input-group .form-control {
  2934. width: auto;
  2935. }
  2936. .form-inline .input-group > .form-control {
  2937. width: 100%;
  2938. }
  2939. .form-inline .control-label {
  2940. margin-bottom: 0;
  2941. vertical-align: middle;
  2942. }
  2943. .form-inline .radio,
  2944. .form-inline .checkbox {
  2945. display: inline-block;
  2946. margin-top: 0;
  2947. margin-bottom: 0;
  2948. vertical-align: middle;
  2949. }
  2950. .form-inline .radio label,
  2951. .form-inline .checkbox label {
  2952. padding-left: 0;
  2953. }
  2954. .form-inline .radio input[type="radio"],
  2955. .form-inline .checkbox input[type="checkbox"] {
  2956. position: relative;
  2957. margin-left: 0;
  2958. }
  2959. .form-inline .has-feedback .form-control-feedback {
  2960. top: 0;
  2961. }
  2962. }
  2963. .form-horizontal .radio,
  2964. .form-horizontal .checkbox,
  2965. .form-horizontal .radio-inline,
  2966. .form-horizontal .checkbox-inline {
  2967. padding-top: 7px;
  2968. margin-top: 0;
  2969. margin-bottom: 0;
  2970. }
  2971. .form-horizontal .radio,
  2972. .form-horizontal .checkbox {
  2973. min-height: 27px;
  2974. }
  2975. .form-horizontal .form-group {
  2976. margin-right: -15px;
  2977. margin-left: -15px;
  2978. }
  2979. @media (min-width: 768px) {
  2980. .form-horizontal .control-label {
  2981. padding-top: 7px;
  2982. margin-bottom: 0;
  2983. text-align: right;
  2984. }
  2985. }
  2986. .form-horizontal .has-feedback .form-control-feedback {
  2987. right: 15px;
  2988. }
  2989. @media (min-width: 768px) {
  2990. .form-horizontal .form-group-lg .control-label {
  2991. padding-top: 11px;
  2992. font-size: 18px;
  2993. }
  2994. }
  2995. @media (min-width: 768px) {
  2996. .form-horizontal .form-group-sm .control-label {
  2997. padding-top: 6px;
  2998. font-size: 12px;
  2999. }
  3000. }
  3001. .btn {
  3002. display: inline-block;
  3003. padding: 6px 12px;
  3004. margin-bottom: 0;
  3005. font-size: 14px;
  3006. font-weight: normal;
  3007. line-height: 1.42857143;
  3008. text-align: center;
  3009. white-space: nowrap;
  3010. vertical-align: middle;
  3011. -ms-touch-action: manipulation;
  3012. touch-action: manipulation;
  3013. cursor: pointer;
  3014. -webkit-user-select: none;
  3015. -moz-user-select: none;
  3016. -ms-user-select: none;
  3017. user-select: none;
  3018. background-image: none;
  3019. border: 1px solid transparent;
  3020. border-radius: 4px;
  3021. }
  3022. .btn:focus,
  3023. .btn:active:focus,
  3024. .btn.active:focus,
  3025. .btn.focus,
  3026. .btn:active.focus,
  3027. .btn.active.focus {
  3028. outline: thin dotted;
  3029. outline: 5px auto -webkit-focus-ring-color;
  3030. outline-offset: -2px;
  3031. }
  3032. .btn:hover,
  3033. .btn:focus,
  3034. .btn.focus {
  3035. color: #333;
  3036. text-decoration: none;
  3037. }
  3038. .btn:active,
  3039. .btn.active {
  3040. background-image: none;
  3041. outline: 0;
  3042. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3043. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3044. }
  3045. .btn.disabled,
  3046. .btn[disabled],
  3047. fieldset[disabled] .btn {
  3048. cursor: not-allowed;
  3049. filter: alpha(opacity=65);
  3050. -webkit-box-shadow: none;
  3051. box-shadow: none;
  3052. opacity: .65;
  3053. }
  3054. a.btn.disabled,
  3055. fieldset[disabled] a.btn {
  3056. pointer-events: none;
  3057. }
  3058. .btn-default {
  3059. color: #333;
  3060. background-color: #fff;
  3061. border-color: #ccc;
  3062. }
  3063. .btn-default:focus,
  3064. .btn-default.focus {
  3065. color: #333;
  3066. background-color: #e6e6e6;
  3067. border-color: #8c8c8c;
  3068. }
  3069. .btn-default:hover {
  3070. color: #333;
  3071. background-color: #e6e6e6;
  3072. border-color: #adadad;
  3073. }
  3074. .btn-default:active,
  3075. .btn-default.active,
  3076. .open > .dropdown-toggle.btn-default {
  3077. color: #333;
  3078. background-color: #e6e6e6;
  3079. border-color: #adadad;
  3080. }
  3081. .btn-default:active:hover,
  3082. .btn-default.active:hover,
  3083. .open > .dropdown-toggle.btn-default:hover,
  3084. .btn-default:active:focus,
  3085. .btn-default.active:focus,
  3086. .open > .dropdown-toggle.btn-default:focus,
  3087. .btn-default:active.focus,
  3088. .btn-default.active.focus,
  3089. .open > .dropdown-toggle.btn-default.focus {
  3090. color: #333;
  3091. background-color: #d4d4d4;
  3092. border-color: #8c8c8c;
  3093. }
  3094. .btn-default:active,
  3095. .btn-default.active,
  3096. .open > .dropdown-toggle.btn-default {
  3097. background-image: none;
  3098. }
  3099. .btn-default.disabled:hover,
  3100. .btn-default[disabled]:hover,
  3101. fieldset[disabled] .btn-default:hover,
  3102. .btn-default.disabled:focus,
  3103. .btn-default[disabled]:focus,
  3104. fieldset[disabled] .btn-default:focus,
  3105. .btn-default.disabled.focus,
  3106. .btn-default[disabled].focus,
  3107. fieldset[disabled] .btn-default.focus {
  3108. background-color: #fff;
  3109. border-color: #ccc;
  3110. }
  3111. .btn-default .badge {
  3112. color: #fff;
  3113. background-color: #333;
  3114. }
  3115. .btn-primary {
  3116. color: #fff;
  3117. background-color: #337ab7;
  3118. border-color: #2e6da4;
  3119. }
  3120. .btn-primary:focus,
  3121. .btn-primary.focus {
  3122. color: #fff;
  3123. background-color: #286090;
  3124. border-color: #122b40;
  3125. }
  3126. .btn-primary:hover {
  3127. color: #fff;
  3128. background-color: #286090;
  3129. border-color: #204d74;
  3130. }
  3131. .btn-primary:active,
  3132. .btn-primary.active,
  3133. .open > .dropdown-toggle.btn-primary {
  3134. color: #fff;
  3135. background-color: #286090;
  3136. border-color: #204d74;
  3137. }
  3138. .btn-primary:active:hover,
  3139. .btn-primary.active:hover,
  3140. .open > .dropdown-toggle.btn-primary:hover,
  3141. .btn-primary:active:focus,
  3142. .btn-primary.active:focus,
  3143. .open > .dropdown-toggle.btn-primary:focus,
  3144. .btn-primary:active.focus,
  3145. .btn-primary.active.focus,
  3146. .open > .dropdown-toggle.btn-primary.focus {
  3147. color: #fff;
  3148. background-color: #204d74;
  3149. border-color: #122b40;
  3150. }
  3151. .btn-primary:active,
  3152. .btn-primary.active,
  3153. .open > .dropdown-toggle.btn-primary {
  3154. background-image: none;
  3155. }
  3156. .btn-primary.disabled:hover,
  3157. .btn-primary[disabled]:hover,
  3158. fieldset[disabled] .btn-primary:hover,
  3159. .btn-primary.disabled:focus,
  3160. .btn-primary[disabled]:focus,
  3161. fieldset[disabled] .btn-primary:focus,
  3162. .btn-primary.disabled.focus,
  3163. .btn-primary[disabled].focus,
  3164. fieldset[disabled] .btn-primary.focus {
  3165. background-color: #337ab7;
  3166. border-color: #2e6da4;
  3167. }
  3168. .btn-primary .badge {
  3169. color: #337ab7;
  3170. background-color: #fff;
  3171. }
  3172. .btn-success {
  3173. color: #fff;
  3174. background-color: #5cb85c;
  3175. border-color: #4cae4c;
  3176. }
  3177. .btn-success:focus,
  3178. .btn-success.focus {
  3179. color: #fff;
  3180. background-color: #449d44;
  3181. border-color: #255625;
  3182. }
  3183. .btn-success:hover {
  3184. color: #fff;
  3185. background-color: #449d44;
  3186. border-color: #398439;
  3187. }
  3188. .btn-success:active,
  3189. .btn-success.active,
  3190. .open > .dropdown-toggle.btn-success {
  3191. color: #fff;
  3192. background-color: #449d44;
  3193. border-color: #398439;
  3194. }
  3195. .btn-success:active:hover,
  3196. .btn-success.active:hover,
  3197. .open > .dropdown-toggle.btn-success:hover,
  3198. .btn-success:active:focus,
  3199. .btn-success.active:focus,
  3200. .open > .dropdown-toggle.btn-success:focus,
  3201. .btn-success:active.focus,
  3202. .btn-success.active.focus,
  3203. .open > .dropdown-toggle.btn-success.focus {
  3204. color: #fff;
  3205. background-color: #398439;
  3206. border-color: #255625;
  3207. }
  3208. .btn-success:active,
  3209. .btn-success.active,
  3210. .open > .dropdown-toggle.btn-success {
  3211. background-image: none;
  3212. }
  3213. .btn-success.disabled:hover,
  3214. .btn-success[disabled]:hover,
  3215. fieldset[disabled] .btn-success:hover,
  3216. .btn-success.disabled:focus,
  3217. .btn-success[disabled]:focus,
  3218. fieldset[disabled] .btn-success:focus,
  3219. .btn-success.disabled.focus,
  3220. .btn-success[disabled].focus,
  3221. fieldset[disabled] .btn-success.focus {
  3222. background-color: #5cb85c;
  3223. border-color: #4cae4c;
  3224. }
  3225. .btn-success .badge {
  3226. color: #5cb85c;
  3227. background-color: #fff;
  3228. }
  3229. .btn-info {
  3230. color: #fff;
  3231. background-color: #5bc0de;
  3232. border-color: #46b8da;
  3233. }
  3234. .btn-info:focus,
  3235. .btn-info.focus {
  3236. color: #fff;
  3237. background-color: #31b0d5;
  3238. border-color: #1b6d85;
  3239. }
  3240. .btn-info:hover {
  3241. color: #fff;
  3242. background-color: #31b0d5;
  3243. border-color: #269abc;
  3244. }
  3245. .btn-info:active,
  3246. .btn-info.active,
  3247. .open > .dropdown-toggle.btn-info {
  3248. color: #fff;
  3249. background-color: #31b0d5;
  3250. border-color: #269abc;
  3251. }
  3252. .btn-info:active:hover,
  3253. .btn-info.active:hover,
  3254. .open > .dropdown-toggle.btn-info:hover,
  3255. .btn-info:active:focus,
  3256. .btn-info.active:focus,
  3257. .open > .dropdown-toggle.btn-info:focus,
  3258. .btn-info:active.focus,
  3259. .btn-info.active.focus,
  3260. .open > .dropdown-toggle.btn-info.focus {
  3261. color: #fff;
  3262. background-color: #269abc;
  3263. border-color: #1b6d85;
  3264. }
  3265. .btn-info:active,
  3266. .btn-info.active,
  3267. .open > .dropdown-toggle.btn-info {
  3268. background-image: none;
  3269. }
  3270. .btn-info.disabled:hover,
  3271. .btn-info[disabled]:hover,
  3272. fieldset[disabled] .btn-info:hover,
  3273. .btn-info.disabled:focus,
  3274. .btn-info[disabled]:focus,
  3275. fieldset[disabled] .btn-info:focus,
  3276. .btn-info.disabled.focus,
  3277. .btn-info[disabled].focus,
  3278. fieldset[disabled] .btn-info.focus {
  3279. background-color: #5bc0de;
  3280. border-color: #46b8da;
  3281. }
  3282. .btn-info .badge {
  3283. color: #5bc0de;
  3284. background-color: #fff;
  3285. }
  3286. .btn-warning {
  3287. color: #fff;
  3288. background-color: #f0ad4e;
  3289. border-color: #eea236;
  3290. }
  3291. .btn-warning:focus,
  3292. .btn-warning.focus {
  3293. color: #fff;
  3294. background-color: #ec971f;
  3295. border-color: #985f0d;
  3296. }
  3297. .btn-warning:hover {
  3298. color: #fff;
  3299. background-color: #ec971f;
  3300. border-color: #d58512;
  3301. }
  3302. .btn-warning:active,
  3303. .btn-warning.active,
  3304. .open > .dropdown-toggle.btn-warning {
  3305. color: #fff;
  3306. background-color: #ec971f;
  3307. border-color: #d58512;
  3308. }
  3309. .btn-warning:active:hover,
  3310. .btn-warning.active:hover,
  3311. .open > .dropdown-toggle.btn-warning:hover,
  3312. .btn-warning:active:focus,
  3313. .btn-warning.active:focus,
  3314. .open > .dropdown-toggle.btn-warning:focus,
  3315. .btn-warning:active.focus,
  3316. .btn-warning.active.focus,
  3317. .open > .dropdown-toggle.btn-warning.focus {
  3318. color: #fff;
  3319. background-color: #d58512;
  3320. border-color: #985f0d;
  3321. }
  3322. .btn-warning:active,
  3323. .btn-warning.active,
  3324. .open > .dropdown-toggle.btn-warning {
  3325. background-image: none;
  3326. }
  3327. .btn-warning.disabled:hover,
  3328. .btn-warning[disabled]:hover,
  3329. fieldset[disabled] .btn-warning:hover,
  3330. .btn-warning.disabled:focus,
  3331. .btn-warning[disabled]:focus,
  3332. fieldset[disabled] .btn-warning:focus,
  3333. .btn-warning.disabled.focus,
  3334. .btn-warning[disabled].focus,
  3335. fieldset[disabled] .btn-warning.focus {
  3336. background-color: #f0ad4e;
  3337. border-color: #eea236;
  3338. }
  3339. .btn-warning .badge {
  3340. color: #f0ad4e;
  3341. background-color: #fff;
  3342. }
  3343. .btn-danger {
  3344. color: #fff;
  3345. background-color: #d9534f;
  3346. border-color: #d43f3a;
  3347. }
  3348. .btn-danger:focus,
  3349. .btn-danger.focus {
  3350. color: #fff;
  3351. background-color: #c9302c;
  3352. border-color: #761c19;
  3353. }
  3354. .btn-danger:hover {
  3355. color: #fff;
  3356. background-color: #c9302c;
  3357. border-color: #ac2925;
  3358. }
  3359. .btn-danger:active,
  3360. .btn-danger.active,
  3361. .open > .dropdown-toggle.btn-danger {
  3362. color: #fff;
  3363. background-color: #c9302c;
  3364. border-color: #ac2925;
  3365. }
  3366. .btn-danger:active:hover,
  3367. .btn-danger.active:hover,
  3368. .open > .dropdown-toggle.btn-danger:hover,
  3369. .btn-danger:active:focus,
  3370. .btn-danger.active:focus,
  3371. .open > .dropdown-toggle.btn-danger:focus,
  3372. .btn-danger:active.focus,
  3373. .btn-danger.active.focus,
  3374. .open > .dropdown-toggle.btn-danger.focus {
  3375. color: #fff;
  3376. background-color: #ac2925;
  3377. border-color: #761c19;
  3378. }
  3379. .btn-danger:active,
  3380. .btn-danger.active,
  3381. .open > .dropdown-toggle.btn-danger {
  3382. background-image: none;
  3383. }
  3384. .btn-danger.disabled:hover,
  3385. .btn-danger[disabled]:hover,
  3386. fieldset[disabled] .btn-danger:hover,
  3387. .btn-danger.disabled:focus,
  3388. .btn-danger[disabled]:focus,
  3389. fieldset[disabled] .btn-danger:focus,
  3390. .btn-danger.disabled.focus,
  3391. .btn-danger[disabled].focus,
  3392. fieldset[disabled] .btn-danger.focus {
  3393. background-color: #d9534f;
  3394. border-color: #d43f3a;
  3395. }
  3396. .btn-danger .badge {
  3397. color: #d9534f;
  3398. background-color: #fff;
  3399. }
  3400. .btn-link {
  3401. font-weight: normal;
  3402. color: #337ab7;
  3403. border-radius: 0;
  3404. }
  3405. .btn-link,
  3406. .btn-link:active,
  3407. .btn-link.active,
  3408. .btn-link[disabled],
  3409. fieldset[disabled] .btn-link {
  3410. background-color: transparent;
  3411. -webkit-box-shadow: none;
  3412. box-shadow: none;
  3413. }
  3414. .btn-link,
  3415. .btn-link:hover,
  3416. .btn-link:focus,
  3417. .btn-link:active {
  3418. border-color: transparent;
  3419. }
  3420. .btn-link:hover,
  3421. .btn-link:focus {
  3422. color: #23527c;
  3423. text-decoration: underline;
  3424. background-color: transparent;
  3425. }
  3426. .btn-link[disabled]:hover,
  3427. fieldset[disabled] .btn-link:hover,
  3428. .btn-link[disabled]:focus,
  3429. fieldset[disabled] .btn-link:focus {
  3430. color: #777;
  3431. text-decoration: none;
  3432. }
  3433. .btn-lg,
  3434. .btn-group-lg > .btn {
  3435. padding: 10px 16px;
  3436. font-size: 18px;
  3437. line-height: 1.3333333;
  3438. border-radius: 6px;
  3439. }
  3440. .btn-sm,
  3441. .btn-group-sm > .btn {
  3442. padding: 5px 10px;
  3443. font-size: 12px;
  3444. line-height: 1.5;
  3445. border-radius: 3px;
  3446. }
  3447. .btn-xs,
  3448. .btn-group-xs > .btn {
  3449. padding: 1px 5px;
  3450. font-size: 12px;
  3451. line-height: 1.5;
  3452. border-radius: 3px;
  3453. }
  3454. .btn-block {
  3455. display: block;
  3456. width: 100%;
  3457. }
  3458. .btn-block + .btn-block {
  3459. margin-top: 5px;
  3460. }
  3461. input[type="submit"].btn-block,
  3462. input[type="reset"].btn-block,
  3463. input[type="button"].btn-block {
  3464. width: 100%;
  3465. }
  3466. .fade {
  3467. opacity: 0;
  3468. -webkit-transition: opacity .15s linear;
  3469. -o-transition: opacity .15s linear;
  3470. transition: opacity .15s linear;
  3471. }
  3472. .fade.in {
  3473. opacity: 1;
  3474. }
  3475. .collapse {
  3476. display: none;
  3477. }
  3478. .collapse.in {
  3479. display: block;
  3480. }
  3481. tr.collapse.in {
  3482. display: table-row;
  3483. }
  3484. tbody.collapse.in {
  3485. display: table-row-group;
  3486. }
  3487. .collapsing {
  3488. position: relative;
  3489. height: 0;
  3490. overflow: hidden;
  3491. -webkit-transition-timing-function: ease;
  3492. -o-transition-timing-function: ease;
  3493. transition-timing-function: ease;
  3494. -webkit-transition-duration: .35s;
  3495. -o-transition-duration: .35s;
  3496. transition-duration: .35s;
  3497. -webkit-transition-property: height, visibility;
  3498. -o-transition-property: height, visibility;
  3499. transition-property: height, visibility;
  3500. }
  3501. .caret {
  3502. display: inline-block;
  3503. width: 0;
  3504. height: 0;
  3505. margin-left: 2px;
  3506. vertical-align: middle;
  3507. border-top: 4px dashed;
  3508. border-top: 4px solid \9;
  3509. border-right: 4px solid transparent;
  3510. border-left: 4px solid transparent;
  3511. }
  3512. .dropup,
  3513. .dropdown {
  3514. position: relative;
  3515. }
  3516. .dropdown-toggle:focus {
  3517. outline: 0;
  3518. }
  3519. .dropdown-menu {
  3520. position: absolute;
  3521. top: 100%;
  3522. left: 0;
  3523. z-index: 1000;
  3524. display: none;
  3525. float: left;
  3526. min-width: 160px;
  3527. padding: 5px 0;
  3528. margin: 2px 0 0;
  3529. font-size: 14px;
  3530. text-align: left;
  3531. list-style: none;
  3532. background-color: #fff;
  3533. -webkit-background-clip: padding-box;
  3534. background-clip: padding-box;
  3535. border: 1px solid #ccc;
  3536. border: 1px solid rgba(0, 0, 0, .15);
  3537. border-radius: 4px;
  3538. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  3539. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  3540. }
  3541. .dropdown-menu.pull-right {
  3542. right: 0;
  3543. left: auto;
  3544. }
  3545. .dropdown-menu .divider {
  3546. height: 1px;
  3547. margin: 9px 0;
  3548. overflow: hidden;
  3549. background-color: #e5e5e5;
  3550. }
  3551. .dropdown-menu > li > a {
  3552. display: block;
  3553. padding: 3px 20px;
  3554. clear: both;
  3555. font-weight: normal;
  3556. line-height: 1.42857143;
  3557. color: #333;
  3558. white-space: nowrap;
  3559. }
  3560. .dropdown-menu > li > a:hover,
  3561. .dropdown-menu > li > a:focus {
  3562. color: #262626;
  3563. text-decoration: none;
  3564. background-color: #f5f5f5;
  3565. }
  3566. .dropdown-menu > .active > a,
  3567. .dropdown-menu > .active > a:hover,
  3568. .dropdown-menu > .active > a:focus {
  3569. color: #fff;
  3570. text-decoration: none;
  3571. background-color: #337ab7;
  3572. outline: 0;
  3573. }
  3574. .dropdown-menu > .disabled > a,
  3575. .dropdown-menu > .disabled > a:hover,
  3576. .dropdown-menu > .disabled > a:focus {
  3577. color: #777;
  3578. }
  3579. .dropdown-menu > .disabled > a:hover,
  3580. .dropdown-menu > .disabled > a:focus {
  3581. text-decoration: none;
  3582. cursor: not-allowed;
  3583. background-color: transparent;
  3584. background-image: none;
  3585. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  3586. }
  3587. .open > .dropdown-menu {
  3588. display: block;
  3589. }
  3590. .open > a {
  3591. outline: 0;
  3592. }
  3593. .dropdown-menu-right {
  3594. right: 0;
  3595. left: auto;
  3596. }
  3597. .dropdown-menu-left {
  3598. right: auto;
  3599. left: 0;
  3600. }
  3601. .dropdown-header {
  3602. display: block;
  3603. padding: 3px 20px;
  3604. font-size: 12px;
  3605. line-height: 1.42857143;
  3606. color: #777;
  3607. white-space: nowrap;
  3608. }
  3609. .dropdown-backdrop {
  3610. position: fixed;
  3611. top: 0;
  3612. right: 0;
  3613. bottom: 0;
  3614. left: 0;
  3615. z-index: 990;
  3616. }
  3617. .pull-right > .dropdown-menu {
  3618. right: 0;
  3619. left: auto;
  3620. }
  3621. .dropup .caret,
  3622. .navbar-fixed-bottom .dropdown .caret {
  3623. content: "";
  3624. border-top: 0;
  3625. border-bottom: 4px dashed;
  3626. border-bottom: 4px solid \9;
  3627. }
  3628. .dropup .dropdown-menu,
  3629. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3630. top: auto;
  3631. bottom: 100%;
  3632. margin-bottom: 2px;
  3633. }
  3634. @media (min-width: 768px) {
  3635. .navbar-right .dropdown-menu {
  3636. right: 0;
  3637. left: auto;
  3638. }
  3639. .navbar-right .dropdown-menu-left {
  3640. right: auto;
  3641. left: 0;
  3642. }
  3643. }
  3644. .btn-group,
  3645. .btn-group-vertical {
  3646. position: relative;
  3647. display: inline-block;
  3648. vertical-align: middle;
  3649. }
  3650. .btn-group > .btn,
  3651. .btn-group-vertical > .btn {
  3652. position: relative;
  3653. float: left;
  3654. }
  3655. .btn-group > .btn:hover,
  3656. .btn-group-vertical > .btn:hover,
  3657. .btn-group > .btn:focus,
  3658. .btn-group-vertical > .btn:focus,
  3659. .btn-group > .btn:active,
  3660. .btn-group-vertical > .btn:active,
  3661. .btn-group > .btn.active,
  3662. .btn-group-vertical > .btn.active {
  3663. z-index: 2;
  3664. }
  3665. .btn-group .btn + .btn,
  3666. .btn-group .btn + .btn-group,
  3667. .btn-group .btn-group + .btn,
  3668. .btn-group .btn-group + .btn-group {
  3669. margin-left: -1px;
  3670. }
  3671. .btn-toolbar {
  3672. margin-left: -5px;
  3673. }
  3674. .btn-toolbar .btn,
  3675. .btn-toolbar .btn-group,
  3676. .btn-toolbar .input-group {
  3677. float: left;
  3678. }
  3679. .btn-toolbar > .btn,
  3680. .btn-toolbar > .btn-group,
  3681. .btn-toolbar > .input-group {
  3682. margin-left: 5px;
  3683. }
  3684. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3685. border-radius: 0;
  3686. }
  3687. .btn-group > .btn:first-child {
  3688. margin-left: 0;
  3689. }
  3690. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3691. border-top-right-radius: 0;
  3692. border-bottom-right-radius: 0;
  3693. }
  3694. .btn-group > .btn:last-child:not(:first-child),
  3695. .btn-group > .dropdown-toggle:not(:first-child) {
  3696. border-top-left-radius: 0;
  3697. border-bottom-left-radius: 0;
  3698. }
  3699. .btn-group > .btn-group {
  3700. float: left;
  3701. }
  3702. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3703. border-radius: 0;
  3704. }
  3705. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3706. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3707. border-top-right-radius: 0;
  3708. border-bottom-right-radius: 0;
  3709. }
  3710. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3711. border-top-left-radius: 0;
  3712. border-bottom-left-radius: 0;
  3713. }
  3714. .btn-group .dropdown-toggle:active,
  3715. .btn-group.open .dropdown-toggle {
  3716. outline: 0;
  3717. }
  3718. .btn-group > .btn + .dropdown-toggle {
  3719. padding-right: 8px;
  3720. padding-left: 8px;
  3721. }
  3722. .btn-group > .btn-lg + .dropdown-toggle {
  3723. padding-right: 12px;
  3724. padding-left: 12px;
  3725. }
  3726. .btn-group.open .dropdown-toggle {
  3727. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3728. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  3729. }
  3730. .btn-group.open .dropdown-toggle.btn-link {
  3731. -webkit-box-shadow: none;
  3732. box-shadow: none;
  3733. }
  3734. .btn .caret {
  3735. margin-left: 0;
  3736. }
  3737. .btn-lg .caret {
  3738. border-width: 5px 5px 0;
  3739. border-bottom-width: 0;
  3740. }
  3741. .dropup .btn-lg .caret {
  3742. border-width: 0 5px 5px;
  3743. }
  3744. .btn-group-vertical > .btn,
  3745. .btn-group-vertical > .btn-group,
  3746. .btn-group-vertical > .btn-group > .btn {
  3747. display: block;
  3748. float: none;
  3749. width: 100%;
  3750. max-width: 100%;
  3751. }
  3752. .btn-group-vertical > .btn-group > .btn {
  3753. float: none;
  3754. }
  3755. .btn-group-vertical > .btn + .btn,
  3756. .btn-group-vertical > .btn + .btn-group,
  3757. .btn-group-vertical > .btn-group + .btn,
  3758. .btn-group-vertical > .btn-group + .btn-group {
  3759. margin-top: -1px;
  3760. margin-left: 0;
  3761. }
  3762. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3763. border-radius: 0;
  3764. }
  3765. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3766. border-top-left-radius: 4px;
  3767. border-top-right-radius: 4px;
  3768. border-bottom-right-radius: 0;
  3769. border-bottom-left-radius: 0;
  3770. }
  3771. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3772. border-top-left-radius: 0;
  3773. border-top-right-radius: 0;
  3774. border-bottom-right-radius: 4px;
  3775. border-bottom-left-radius: 4px;
  3776. }
  3777. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3778. border-radius: 0;
  3779. }
  3780. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3781. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3782. border-bottom-right-radius: 0;
  3783. border-bottom-left-radius: 0;
  3784. }
  3785. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3786. border-top-left-radius: 0;
  3787. border-top-right-radius: 0;
  3788. }
  3789. .btn-group-justified {
  3790. display: table;
  3791. width: 100%;
  3792. table-layout: fixed;
  3793. border-collapse: separate;
  3794. }
  3795. .btn-group-justified > .btn,
  3796. .btn-group-justified > .btn-group {
  3797. display: table-cell;
  3798. float: none;
  3799. width: 1%;
  3800. }
  3801. .btn-group-justified > .btn-group .btn {
  3802. width: 100%;
  3803. }
  3804. .btn-group-justified > .btn-group .dropdown-menu {
  3805. left: auto;
  3806. }
  3807. [data-toggle="buttons"] > .btn input[type="radio"],
  3808. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3809. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3810. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3811. position: absolute;
  3812. clip: rect(0, 0, 0, 0);
  3813. pointer-events: none;
  3814. }
  3815. .input-group {
  3816. position: relative;
  3817. display: table;
  3818. border-collapse: separate;
  3819. }
  3820. .input-group[class*="col-"] {
  3821. float: none;
  3822. padding-right: 0;
  3823. padding-left: 0;
  3824. }
  3825. .input-group .form-control {
  3826. position: relative;
  3827. z-index: 2;
  3828. float: left;
  3829. width: 100%;
  3830. margin-bottom: 0;
  3831. }
  3832. .input-group .form-control:focus {
  3833. z-index: 3;
  3834. }
  3835. .input-group-lg > .form-control,
  3836. .input-group-lg > .input-group-addon,
  3837. .input-group-lg > .input-group-btn > .btn {
  3838. height: 46px;
  3839. padding: 10px 16px;
  3840. font-size: 18px;
  3841. line-height: 1.3333333;
  3842. border-radius: 6px;
  3843. }
  3844. select.input-group-lg > .form-control,
  3845. select.input-group-lg > .input-group-addon,
  3846. select.input-group-lg > .input-group-btn > .btn {
  3847. height: 46px;
  3848. line-height: 46px;
  3849. }
  3850. textarea.input-group-lg > .form-control,
  3851. textarea.input-group-lg > .input-group-addon,
  3852. textarea.input-group-lg > .input-group-btn > .btn,
  3853. select[multiple].input-group-lg > .form-control,
  3854. select[multiple].input-group-lg > .input-group-addon,
  3855. select[multiple].input-group-lg > .input-group-btn > .btn {
  3856. height: auto;
  3857. }
  3858. .input-group-sm > .form-control,
  3859. .input-group-sm > .input-group-addon,
  3860. .input-group-sm > .input-group-btn > .btn {
  3861. height: 30px;
  3862. padding: 5px 10px;
  3863. font-size: 12px;
  3864. line-height: 1.5;
  3865. border-radius: 3px;
  3866. }
  3867. select.input-group-sm > .form-control,
  3868. select.input-group-sm > .input-group-addon,
  3869. select.input-group-sm > .input-group-btn > .btn {
  3870. height: 30px;
  3871. line-height: 30px;
  3872. }
  3873. textarea.input-group-sm > .form-control,
  3874. textarea.input-group-sm > .input-group-addon,
  3875. textarea.input-group-sm > .input-group-btn > .btn,
  3876. select[multiple].input-group-sm > .form-control,
  3877. select[multiple].input-group-sm > .input-group-addon,
  3878. select[multiple].input-group-sm > .input-group-btn > .btn {
  3879. height: auto;
  3880. }
  3881. .input-group-addon,
  3882. .input-group-btn,
  3883. .input-group .form-control {
  3884. display: table-cell;
  3885. }
  3886. .input-group-addon:not(:first-child):not(:last-child),
  3887. .input-group-btn:not(:first-child):not(:last-child),
  3888. .input-group .form-control:not(:first-child):not(:last-child) {
  3889. border-radius: 0;
  3890. }
  3891. .input-group-addon,
  3892. .input-group-btn {
  3893. width: 1%;
  3894. white-space: nowrap;
  3895. vertical-align: middle;
  3896. }
  3897. .input-group-addon {
  3898. padding: 6px 12px;
  3899. font-size: 14px;
  3900. font-weight: normal;
  3901. line-height: 1;
  3902. color: #555;
  3903. text-align: center;
  3904. background-color: #eee;
  3905. border: 1px solid #ccc;
  3906. border-radius: 4px;
  3907. width:30px;
  3908. }
  3909. .input-group-addon.input-sm {
  3910. padding: 5px 10px;
  3911. font-size: 12px;
  3912. border-radius: 3px;
  3913. }
  3914. .input-group-addon.input-lg {
  3915. padding: 10px 16px;
  3916. font-size: 18px;
  3917. border-radius: 6px;
  3918. }
  3919. .input-group-addon input[type="radio"],
  3920. .input-group-addon input[type="checkbox"] {
  3921. margin-top: 0;
  3922. }
  3923. .input-group .form-control:first-child,
  3924. .input-group-addon:first-child,
  3925. .input-group-btn:first-child > .btn,
  3926. .input-group-btn:first-child > .btn-group > .btn,
  3927. .input-group-btn:first-child > .dropdown-toggle,
  3928. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3929. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3930. border-top-right-radius: 0;
  3931. border-bottom-right-radius: 0;
  3932. }
  3933. .input-group-addon:first-child {
  3934. border-right: 0;
  3935. }
  3936. .input-group .form-control:last-child,
  3937. .input-group-addon:last-child,
  3938. .input-group-btn:last-child > .btn,
  3939. .input-group-btn:last-child > .btn-group > .btn,
  3940. .input-group-btn:last-child > .dropdown-toggle,
  3941. .input-group-btn:first-child > .btn:not(:first-child),
  3942. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3943. border-top-left-radius: 0;
  3944. border-bottom-left-radius: 0;
  3945. }
  3946. .input-group-addon:last-child {
  3947. border-left: 0;
  3948. }
  3949. .input-group-btn {
  3950. position: relative;
  3951. font-size: 0;
  3952. white-space: nowrap;
  3953. }
  3954. .input-group-btn > .btn {
  3955. position: relative;
  3956. }
  3957. .input-group-btn > .btn + .btn {
  3958. margin-left: -1px;
  3959. }
  3960. .input-group-btn > .btn:hover,
  3961. .input-group-btn > .btn:focus,
  3962. .input-group-btn > .btn:active {
  3963. z-index: 2;
  3964. }
  3965. .input-group-btn:first-child > .btn,
  3966. .input-group-btn:first-child > .btn-group {
  3967. margin-right: -1px;
  3968. }
  3969. .input-group-btn:last-child > .btn,
  3970. .input-group-btn:last-child > .btn-group {
  3971. z-index: 2;
  3972. margin-left: -1px;
  3973. }
  3974. .nav {
  3975. padding-left: 0;
  3976. margin-bottom: 0;
  3977. list-style: none;
  3978. }
  3979. .nav > li {
  3980. position: relative;
  3981. display: block;
  3982. }
  3983. .nav > li > a {
  3984. position: relative;
  3985. display: block;
  3986. padding: 10px 15px;
  3987. }
  3988. .nav > li > a:hover,
  3989. .nav > li > a:focus {
  3990. text-decoration: none;
  3991. background-color: #eee;
  3992. }
  3993. .nav > li.disabled > a {
  3994. color: #777;
  3995. }
  3996. .nav > li.disabled > a:hover,
  3997. .nav > li.disabled > a:focus {
  3998. color: #777;
  3999. text-decoration: none;
  4000. cursor: not-allowed;
  4001. background-color: transparent;
  4002. }
  4003. .nav .open > a,
  4004. .nav .open > a:hover,
  4005. .nav .open > a:focus {
  4006. background-color: #eee;
  4007. border-color: #337ab7;
  4008. }
  4009. .nav .nav-divider {
  4010. height: 1px;
  4011. margin: 9px 0;
  4012. overflow: hidden;
  4013. background-color: #e5e5e5;
  4014. }
  4015. .nav > li > a > img {
  4016. max-width: none;
  4017. }
  4018. .nav-tabs {
  4019. border-bottom: 1px solid #ddd;
  4020. }
  4021. .nav-tabs > li {
  4022. float: left;
  4023. margin-bottom: -1px;
  4024. }
  4025. .nav-tabs > li > a {
  4026. margin-right: 2px;
  4027. line-height: 1.42857143;
  4028. border: 1px solid transparent;
  4029. border-radius: 4px 4px 0 0;
  4030. }
  4031. .nav-tabs > li > a:hover {
  4032. border-color: #eee #eee #ddd;
  4033. }
  4034. .nav-tabs > li.active > a,
  4035. .nav-tabs > li.active > a:hover,
  4036. .nav-tabs > li.active > a:focus {
  4037. color: #555;
  4038. cursor: default;
  4039. background-color: #fff;
  4040. border: 1px solid #ddd;
  4041. border-bottom-color: transparent;
  4042. }
  4043. .nav-tabs.nav-justified {
  4044. width: 100%;
  4045. border-bottom: 0;
  4046. }
  4047. .nav-tabs.nav-justified > li {
  4048. float: none;
  4049. }
  4050. .nav-tabs.nav-justified > li > a {
  4051. margin-bottom: 5px;
  4052. text-align: center;
  4053. }
  4054. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4055. top: auto;
  4056. left: auto;
  4057. }
  4058. @media (min-width: 768px) {
  4059. .nav-tabs.nav-justified > li {
  4060. display: table-cell;
  4061. width: 1%;
  4062. }
  4063. .nav-tabs.nav-justified > li > a {
  4064. margin-bottom: 0;
  4065. }
  4066. }
  4067. .nav-tabs.nav-justified > li > a {
  4068. margin-right: 0;
  4069. border-radius: 4px;
  4070. }
  4071. .nav-tabs.nav-justified > .active > a,
  4072. .nav-tabs.nav-justified > .active > a:hover,
  4073. .nav-tabs.nav-justified > .active > a:focus {
  4074. border: 1px solid #ddd;
  4075. }
  4076. @media (min-width: 768px) {
  4077. .nav-tabs.nav-justified > li > a {
  4078. border-bottom: 1px solid #ddd;
  4079. border-radius: 4px 4px 0 0;
  4080. }
  4081. .nav-tabs.nav-justified > .active > a,
  4082. .nav-tabs.nav-justified > .active > a:hover,
  4083. .nav-tabs.nav-justified > .active > a:focus {
  4084. border-bottom-color: #fff;
  4085. }
  4086. }
  4087. .nav-pills > li {
  4088. float: left;
  4089. }
  4090. .nav-pills > li > a {
  4091. border-radius: 4px;
  4092. }
  4093. .nav-pills > li + li {
  4094. margin-left: 2px;
  4095. }
  4096. .nav-pills > li.active > a,
  4097. .nav-pills > li.active > a:hover,
  4098. .nav-pills > li.active > a:focus {
  4099. color: #fff;
  4100. background-color: #337ab7;
  4101. }
  4102. .nav-stacked > li {
  4103. float: none;
  4104. }
  4105. .nav-stacked > li + li {
  4106. margin-top: 2px;
  4107. margin-left: 0;
  4108. }
  4109. .nav-justified {
  4110. width: 100%;
  4111. }
  4112. .nav-justified > li {
  4113. float: none;
  4114. }
  4115. .nav-justified > li > a {
  4116. margin-bottom: 5px;
  4117. text-align: center;
  4118. }
  4119. .nav-justified > .dropdown .dropdown-menu {
  4120. top: auto;
  4121. left: auto;
  4122. }
  4123. @media (min-width: 768px) {
  4124. .nav-justified > li {
  4125. display: table-cell;
  4126. width: 1%;
  4127. }
  4128. .nav-justified > li > a {
  4129. margin-bottom: 0;
  4130. }
  4131. }
  4132. .nav-tabs-justified {
  4133. border-bottom: 0;
  4134. }
  4135. .nav-tabs-justified > li > a {
  4136. margin-right: 0;
  4137. border-radius: 4px;
  4138. }
  4139. .nav-tabs-justified > .active > a,
  4140. .nav-tabs-justified > .active > a:hover,
  4141. .nav-tabs-justified > .active > a:focus {
  4142. border: 1px solid #ddd;
  4143. }
  4144. @media (min-width: 768px) {
  4145. .nav-tabs-justified > li > a {
  4146. border-bottom: 1px solid #ddd;
  4147. border-radius: 4px 4px 0 0;
  4148. }
  4149. .nav-tabs-justified > .active > a,
  4150. .nav-tabs-justified > .active > a:hover,
  4151. .nav-tabs-justified > .active > a:focus {
  4152. border-bottom-color: #fff;
  4153. }
  4154. }
  4155. .tab-content > .tab-pane {
  4156. display: none;
  4157. }
  4158. .tab-content > .active {
  4159. display: block;
  4160. }
  4161. .nav-tabs .dropdown-menu {
  4162. margin-top: -1px;
  4163. border-top-left-radius: 0;
  4164. border-top-right-radius: 0;
  4165. }
  4166. .navbar {
  4167. position: relative;
  4168. min-height: 50px;
  4169. margin-bottom: 20px;
  4170. border: 1px solid transparent;
  4171. }
  4172. @media (min-width: 768px) {
  4173. .navbar {
  4174. border-radius: 4px;
  4175. }
  4176. }
  4177. @media (min-width: 768px) {
  4178. .navbar-header {
  4179. float: left;
  4180. }
  4181. }
  4182. .navbar-collapse {
  4183. padding-right: 15px;
  4184. padding-left: 15px;
  4185. overflow-x: visible;
  4186. -webkit-overflow-scrolling: touch;
  4187. border-top: 1px solid transparent;
  4188. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  4189. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  4190. }
  4191. .navbar-collapse.in {
  4192. overflow-y: auto;
  4193. }
  4194. @media (min-width: 768px) {
  4195. .navbar-collapse {
  4196. width: auto;
  4197. border-top: 0;
  4198. -webkit-box-shadow: none;
  4199. box-shadow: none;
  4200. }
  4201. .navbar-collapse.collapse {
  4202. display: block !important;
  4203. height: auto !important;
  4204. padding-bottom: 0;
  4205. overflow: visible !important;
  4206. }
  4207. .navbar-collapse.in {
  4208. overflow-y: visible;
  4209. }
  4210. .navbar-fixed-top .navbar-collapse,
  4211. .navbar-static-top .navbar-collapse,
  4212. .navbar-fixed-bottom .navbar-collapse {
  4213. padding-right: 0;
  4214. padding-left: 0;
  4215. }
  4216. }
  4217. .navbar-fixed-top .navbar-collapse,
  4218. .navbar-fixed-bottom .navbar-collapse {
  4219. max-height: 340px;
  4220. }
  4221. @media (max-device-width: 480px) and (orientation: landscape) {
  4222. .navbar-fixed-top .navbar-collapse,
  4223. .navbar-fixed-bottom .navbar-collapse {
  4224. max-height: 200px;
  4225. }
  4226. }
  4227. .container > .navbar-header,
  4228. .container-fluid > .navbar-header,
  4229. .container > .navbar-collapse,
  4230. .container-fluid > .navbar-collapse {
  4231. margin-right: -15px;
  4232. margin-left: -15px;
  4233. }
  4234. @media (min-width: 768px) {
  4235. .container > .navbar-header,
  4236. .container-fluid > .navbar-header,
  4237. .container > .navbar-collapse,
  4238. .container-fluid > .navbar-collapse {
  4239. margin-right: 0;
  4240. margin-left: 0;
  4241. }
  4242. }
  4243. .navbar-static-top {
  4244. z-index: 1000;
  4245. border-width: 0 0 1px;
  4246. }
  4247. @media (min-width: 768px) {
  4248. .navbar-static-top {
  4249. border-radius: 0;
  4250. }
  4251. }
  4252. .navbar-fixed-top,
  4253. .navbar-fixed-bottom {
  4254. position: fixed;
  4255. right: 0;
  4256. left: 0;
  4257. z-index: 1030;
  4258. }
  4259. @media (min-width: 768px) {
  4260. .navbar-fixed-top,
  4261. .navbar-fixed-bottom {
  4262. border-radius: 0;
  4263. }
  4264. }
  4265. .navbar-fixed-top {
  4266. top: 0;
  4267. border-width: 0 0 1px;
  4268. }
  4269. .navbar-fixed-bottom {
  4270. bottom: 0;
  4271. margin-bottom: 0;
  4272. border-width: 1px 0 0;
  4273. }
  4274. .navbar-brand {
  4275. float: left;
  4276. height: 50px;
  4277. padding: 15px 15px;
  4278. font-size: 18px;
  4279. line-height: 20px;
  4280. }
  4281. .navbar-brand:hover,
  4282. .navbar-brand:focus {
  4283. text-decoration: none;
  4284. }
  4285. .navbar-brand > img {
  4286. display: block;
  4287. }
  4288. @media (min-width: 768px) {
  4289. .navbar > .container .navbar-brand,
  4290. .navbar > .container-fluid .navbar-brand {
  4291. margin-left: -15px;
  4292. }
  4293. }
  4294. .navbar-toggle {
  4295. position: relative;
  4296. float: right;
  4297. padding: 9px 10px;
  4298. margin-top: 8px;
  4299. margin-right: 15px;
  4300. margin-bottom: 8px;
  4301. background-color: transparent;
  4302. background-image: none;
  4303. border: 1px solid transparent;
  4304. border-radius: 4px;
  4305. }
  4306. .navbar-toggle:focus {
  4307. outline: 0;
  4308. }
  4309. .navbar-toggle .icon-bar {
  4310. display: block;
  4311. width: 22px;
  4312. height: 2px;
  4313. border-radius: 1px;
  4314. }
  4315. .navbar-toggle .icon-bar + .icon-bar {
  4316. margin-top: 4px;
  4317. }
  4318. @media (min-width: 768px) {
  4319. .navbar-toggle {
  4320. display: none;
  4321. }
  4322. }
  4323. .navbar-nav {
  4324. margin: 7.5px -15px;
  4325. }
  4326. .navbar-nav > li > a {
  4327. padding-top: 10px;
  4328. padding-bottom: 10px;
  4329. line-height: 20px;
  4330. }
  4331. @media (max-width: 767px) {
  4332. .navbar-nav .open .dropdown-menu {
  4333. position: static;
  4334. float: none;
  4335. width: auto;
  4336. margin-top: 0;
  4337. background-color: transparent;
  4338. border: 0;
  4339. -webkit-box-shadow: none;
  4340. box-shadow: none;
  4341. }
  4342. .navbar-nav .open .dropdown-menu > li > a,
  4343. .navbar-nav .open .dropdown-menu .dropdown-header {
  4344. padding: 5px 15px 5px 25px;
  4345. }
  4346. .navbar-nav .open .dropdown-menu > li > a {
  4347. line-height: 20px;
  4348. }
  4349. .navbar-nav .open .dropdown-menu > li > a:hover,
  4350. .navbar-nav .open .dropdown-menu > li > a:focus {
  4351. background-image: none;
  4352. }
  4353. }
  4354. @media (min-width: 768px) {
  4355. .navbar-nav {
  4356. float: left;
  4357. margin: 0;
  4358. }
  4359. .navbar-nav > li {
  4360. float: left;
  4361. }
  4362. .navbar-nav > li > a {
  4363. padding-top: 15px;
  4364. padding-bottom: 15px;
  4365. }
  4366. }
  4367. .navbar-form {
  4368. padding: 10px 15px;
  4369. margin-top: 8px;
  4370. margin-right: -15px;
  4371. margin-bottom: 8px;
  4372. margin-left: -15px;
  4373. border-top: 1px solid transparent;
  4374. border-bottom: 1px solid transparent;
  4375. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  4376. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
  4377. }
  4378. @media (min-width: 768px) {
  4379. .navbar-form .form-group {
  4380. display: inline-block;
  4381. margin-bottom: 0;
  4382. vertical-align: middle;
  4383. }
  4384. .navbar-form .form-control {
  4385. display: inline-block;
  4386. width: auto;
  4387. vertical-align: middle;
  4388. }
  4389. .navbar-form .form-control-static {
  4390. display: inline-block;
  4391. }
  4392. .navbar-form .input-group {
  4393. display: inline-table;
  4394. vertical-align: middle;
  4395. }
  4396. .navbar-form .input-group .input-group-addon,
  4397. .navbar-form .input-group .input-group-btn,
  4398. .navbar-form .input-group .form-control {
  4399. width: auto;
  4400. }
  4401. .navbar-form .input-group > .form-control {
  4402. width: 100%;
  4403. }
  4404. .navbar-form .control-label {
  4405. margin-bottom: 0;
  4406. vertical-align: middle;
  4407. }
  4408. .navbar-form .radio,
  4409. .navbar-form .checkbox {
  4410. display: inline-block;
  4411. margin-top: 0;
  4412. margin-bottom: 0;
  4413. vertical-align: middle;
  4414. }
  4415. .navbar-form .radio label,
  4416. .navbar-form .checkbox label {
  4417. padding-left: 0;
  4418. }
  4419. .navbar-form .radio input[type="radio"],
  4420. .navbar-form .checkbox input[type="checkbox"] {
  4421. position: relative;
  4422. margin-left: 0;
  4423. }
  4424. .navbar-form .has-feedback .form-control-feedback {
  4425. top: 0;
  4426. }
  4427. }
  4428. @media (max-width: 767px) {
  4429. .navbar-form .form-group {
  4430. margin-bottom: 5px;
  4431. }
  4432. .navbar-form .form-group:last-child {
  4433. margin-bottom: 0;
  4434. }
  4435. }
  4436. @media (min-width: 768px) {
  4437. .navbar-form {
  4438. width: auto;
  4439. padding-top: 0;
  4440. padding-bottom: 0;
  4441. margin-right: 0;
  4442. margin-left: 0;
  4443. border: 0;
  4444. -webkit-box-shadow: none;
  4445. box-shadow: none;
  4446. }
  4447. }
  4448. .navbar-nav > li > .dropdown-menu {
  4449. margin-top: 0;
  4450. border-top-left-radius: 0;
  4451. border-top-right-radius: 0;
  4452. }
  4453. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4454. margin-bottom: 0;
  4455. border-top-left-radius: 4px;
  4456. border-top-right-radius: 4px;
  4457. border-bottom-right-radius: 0;
  4458. border-bottom-left-radius: 0;
  4459. }
  4460. .navbar-btn {
  4461. margin-top: 8px;
  4462. margin-bottom: 8px;
  4463. }
  4464. .navbar-btn.btn-sm {
  4465. margin-top: 10px;
  4466. margin-bottom: 10px;
  4467. }
  4468. .navbar-btn.btn-xs {
  4469. margin-top: 14px;
  4470. margin-bottom: 14px;
  4471. }
  4472. .navbar-text {
  4473. margin-top: 15px;
  4474. margin-bottom: 15px;
  4475. }
  4476. @media (min-width: 768px) {
  4477. .navbar-text {
  4478. float: left;
  4479. margin-right: 15px;
  4480. margin-left: 15px;
  4481. }
  4482. }
  4483. @media (min-width: 768px) {
  4484. .navbar-left {
  4485. float: left !important;
  4486. }
  4487. .navbar-right {
  4488. float: right !important;
  4489. margin-right: -15px;
  4490. }
  4491. .navbar-right ~ .navbar-right {
  4492. margin-right: 0;
  4493. }
  4494. }
  4495. .navbar-default {
  4496. background-color: #f8f8f8;
  4497. border-color: #e7e7e7;
  4498. }
  4499. .navbar-default .navbar-brand {
  4500. color: #777;
  4501. }
  4502. .navbar-default .navbar-brand:hover,
  4503. .navbar-default .navbar-brand:focus {
  4504. color: #5e5e5e;
  4505. background-color: transparent;
  4506. }
  4507. .navbar-default .navbar-text {
  4508. color: #777;
  4509. }
  4510. .navbar-default .navbar-nav > li > a {
  4511. color: #777;
  4512. }
  4513. .navbar-default .navbar-nav > li > a:hover,
  4514. .navbar-default .navbar-nav > li > a:focus {
  4515. color: #333;
  4516. background-color: transparent;
  4517. }
  4518. .navbar-default .navbar-nav > .active > a,
  4519. .navbar-default .navbar-nav > .active > a:hover,
  4520. .navbar-default .navbar-nav > .active > a:focus {
  4521. color: #555;
  4522. background-color: #e7e7e7;
  4523. }
  4524. .navbar-default .navbar-nav > .disabled > a,
  4525. .navbar-default .navbar-nav > .disabled > a:hover,
  4526. .navbar-default .navbar-nav > .disabled > a:focus {
  4527. color: #ccc;
  4528. background-color: transparent;
  4529. }
  4530. .navbar-default .navbar-toggle {
  4531. border-color: #ddd;
  4532. }
  4533. .navbar-default .navbar-toggle:hover,
  4534. .navbar-default .navbar-toggle:focus {
  4535. background-color: #ddd;
  4536. }
  4537. .navbar-default .navbar-toggle .icon-bar {
  4538. background-color: #888;
  4539. }
  4540. .navbar-default .navbar-collapse,
  4541. .navbar-default .navbar-form {
  4542. border-color: #e7e7e7;
  4543. }
  4544. .navbar-default .navbar-nav > .open > a,
  4545. .navbar-default .navbar-nav > .open > a:hover,
  4546. .navbar-default .navbar-nav > .open > a:focus {
  4547. color: #555;
  4548. background-color: #e7e7e7;
  4549. }
  4550. @media (max-width: 767px) {
  4551. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4552. color: #777;
  4553. }
  4554. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4555. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4556. color: #333;
  4557. background-color: transparent;
  4558. }
  4559. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4560. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4561. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4562. color: #555;
  4563. background-color: #e7e7e7;
  4564. }
  4565. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4566. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4567. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4568. color: #ccc;
  4569. background-color: transparent;
  4570. }
  4571. }
  4572. .navbar-default .navbar-link {
  4573. color: #777;
  4574. }
  4575. .navbar-default .navbar-link:hover {
  4576. color: #333;
  4577. }
  4578. .navbar-default .btn-link {
  4579. color: #777;
  4580. }
  4581. .navbar-default .btn-link:hover,
  4582. .navbar-default .btn-link:focus {
  4583. color: #333;
  4584. }
  4585. .navbar-default .btn-link[disabled]:hover,
  4586. fieldset[disabled] .navbar-default .btn-link:hover,
  4587. .navbar-default .btn-link[disabled]:focus,
  4588. fieldset[disabled] .navbar-default .btn-link:focus {
  4589. color: #ccc;
  4590. }
  4591. .navbar-inverse {
  4592. background-color: #222;
  4593. border-color: #080808;
  4594. }
  4595. .navbar-inverse .navbar-brand {
  4596. color: #9d9d9d;
  4597. }
  4598. .navbar-inverse .navbar-brand:hover,
  4599. .navbar-inverse .navbar-brand:focus {
  4600. color: #fff;
  4601. background-color: transparent;
  4602. }
  4603. .navbar-inverse .navbar-text {
  4604. color: #9d9d9d;
  4605. }
  4606. .navbar-inverse .navbar-nav > li > a {
  4607. color: #9d9d9d;
  4608. }
  4609. .navbar-inverse .navbar-nav > li > a:hover,
  4610. .navbar-inverse .navbar-nav > li > a:focus {
  4611. color: #fff;
  4612. background-color: transparent;
  4613. }
  4614. .navbar-inverse .navbar-nav > .active > a,
  4615. .navbar-inverse .navbar-nav > .active > a:hover,
  4616. .navbar-inverse .navbar-nav > .active > a:focus {
  4617. color: #fff;
  4618. background-color: #080808;
  4619. }
  4620. .navbar-inverse .navbar-nav > .disabled > a,
  4621. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4622. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4623. color: #444;
  4624. background-color: transparent;
  4625. }
  4626. .navbar-inverse .navbar-toggle {
  4627. border-color: #333;
  4628. }
  4629. .navbar-inverse .navbar-toggle:hover,
  4630. .navbar-inverse .navbar-toggle:focus {
  4631. background-color: #333;
  4632. }
  4633. .navbar-inverse .navbar-toggle .icon-bar {
  4634. background-color: #fff;
  4635. }
  4636. .navbar-inverse .navbar-collapse,
  4637. .navbar-inverse .navbar-form {
  4638. border-color: #101010;
  4639. }
  4640. .navbar-inverse .navbar-nav > .open > a,
  4641. .navbar-inverse .navbar-nav > .open > a:hover,
  4642. .navbar-inverse .navbar-nav > .open > a:focus {
  4643. color: #fff;
  4644. background-color: #080808;
  4645. }
  4646. @media (max-width: 767px) {
  4647. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4648. border-color: #080808;
  4649. }
  4650. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4651. background-color: #080808;
  4652. }
  4653. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4654. color: #9d9d9d;
  4655. }
  4656. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4657. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4658. color: #fff;
  4659. background-color: transparent;
  4660. }
  4661. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4662. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4663. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4664. color: #fff;
  4665. background-color: #080808;
  4666. }
  4667. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4668. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4669. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4670. color: #444;
  4671. background-color: transparent;
  4672. }
  4673. }
  4674. .navbar-inverse .navbar-link {
  4675. color: #9d9d9d;
  4676. }
  4677. .navbar-inverse .navbar-link:hover {
  4678. color: #fff;
  4679. }
  4680. .navbar-inverse .btn-link {
  4681. color: #9d9d9d;
  4682. }
  4683. .navbar-inverse .btn-link:hover,
  4684. .navbar-inverse .btn-link:focus {
  4685. color: #fff;
  4686. }
  4687. .navbar-inverse .btn-link[disabled]:hover,
  4688. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4689. .navbar-inverse .btn-link[disabled]:focus,
  4690. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4691. color: #444;
  4692. }
  4693. .breadcrumb {
  4694. padding: 8px 15px;
  4695. margin-bottom: 20px;
  4696. list-style: none;
  4697. background-color: #f5f5f5;
  4698. border-radius: 4px;
  4699. }
  4700. .breadcrumb > li {
  4701. display: inline-block;
  4702. }
  4703. .breadcrumb > li + li:before {
  4704. padding: 0 5px;
  4705. color: #ccc;
  4706. content: "/\00a0";
  4707. }
  4708. .breadcrumb > .active {
  4709. color: #777;
  4710. }
  4711. .pagination {
  4712. display: inline-block;
  4713. padding-left: 0;
  4714. margin: 20px 0;
  4715. border-radius: 4px;
  4716. }
  4717. .pagination > li {
  4718. display: inline;
  4719. }
  4720. .pagination > li > a,
  4721. .pagination > li > span {
  4722. position: relative;
  4723. float: left;
  4724. padding: 6px 12px;
  4725. margin-left: -1px;
  4726. line-height: 1.42857143;
  4727. color: #337ab7;
  4728. text-decoration: none;
  4729. background-color: #fff;
  4730. border: 1px solid #ddd;
  4731. }
  4732. .pagination > li:first-child > a,
  4733. .pagination > li:first-child > span {
  4734. margin-left: 0;
  4735. border-top-left-radius: 4px;
  4736. border-bottom-left-radius: 4px;
  4737. }
  4738. .pagination > li:last-child > a,
  4739. .pagination > li:last-child > span {
  4740. border-top-right-radius: 4px;
  4741. border-bottom-right-radius: 4px;
  4742. }
  4743. .pagination > li > a:hover,
  4744. .pagination > li > span:hover,
  4745. .pagination > li > a:focus,
  4746. .pagination > li > span:focus {
  4747. z-index: 2;
  4748. color: #23527c;
  4749. background-color: #eee;
  4750. border-color: #ddd;
  4751. }
  4752. .pagination > .active > a,
  4753. .pagination > .active > span,
  4754. .pagination > .active > a:hover,
  4755. .pagination > .active > span:hover,
  4756. .pagination > .active > a:focus,
  4757. .pagination > .active > span:focus {
  4758. z-index: 3;
  4759. color: #fff;
  4760. cursor: default;
  4761. background-color: #337ab7;
  4762. border-color: #337ab7;
  4763. }
  4764. .pagination > .disabled > span,
  4765. .pagination > .disabled > span:hover,
  4766. .pagination > .disabled > span:focus,
  4767. .pagination > .disabled > a,
  4768. .pagination > .disabled > a:hover,
  4769. .pagination > .disabled > a:focus {
  4770. color: #777;
  4771. cursor: not-allowed;
  4772. background-color: #fff;
  4773. border-color: #ddd;
  4774. }
  4775. .pagination-lg > li > a,
  4776. .pagination-lg > li > span {
  4777. padding: 10px 16px;
  4778. font-size: 18px;
  4779. line-height: 1.3333333;
  4780. }
  4781. .pagination-lg > li:first-child > a,
  4782. .pagination-lg > li:first-child > span {
  4783. border-top-left-radius: 6px;
  4784. border-bottom-left-radius: 6px;
  4785. }
  4786. .pagination-lg > li:last-child > a,
  4787. .pagination-lg > li:last-child > span {
  4788. border-top-right-radius: 6px;
  4789. border-bottom-right-radius: 6px;
  4790. }
  4791. .pagination-sm > li > a,
  4792. .pagination-sm > li > span {
  4793. padding: 5px 10px;
  4794. font-size: 12px;
  4795. line-height: 1.5;
  4796. }
  4797. .pagination-sm > li:first-child > a,
  4798. .pagination-sm > li:first-child > span {
  4799. border-top-left-radius: 3px;
  4800. border-bottom-left-radius: 3px;
  4801. }
  4802. .pagination-sm > li:last-child > a,
  4803. .pagination-sm > li:last-child > span {
  4804. border-top-right-radius: 3px;
  4805. border-bottom-right-radius: 3px;
  4806. }
  4807. .pager {
  4808. padding-left: 0;
  4809. margin: 20px 0;
  4810. text-align: center;
  4811. list-style: none;
  4812. }
  4813. .pager li {
  4814. display: inline;
  4815. }
  4816. .pager li > a,
  4817. .pager li > span {
  4818. display: inline-block;
  4819. padding: 5px 14px;
  4820. background-color: #fff;
  4821. border: 1px solid #ddd;
  4822. border-radius: 15px;
  4823. }
  4824. .pager li > a:hover,
  4825. .pager li > a:focus {
  4826. text-decoration: none;
  4827. background-color: #eee;
  4828. }
  4829. .pager .next > a,
  4830. .pager .next > span {
  4831. float: right;
  4832. }
  4833. .pager .previous > a,
  4834. .pager .previous > span {
  4835. float: left;
  4836. }
  4837. .pager .disabled > a,
  4838. .pager .disabled > a:hover,
  4839. .pager .disabled > a:focus,
  4840. .pager .disabled > span {
  4841. color: #777;
  4842. cursor: not-allowed;
  4843. background-color: #fff;
  4844. }
  4845. .label {
  4846. display: inline;
  4847. padding: .2em .6em .3em;
  4848. font-size: 75%;
  4849. font-weight: bold;
  4850. line-height: 1;
  4851. color: #fff;
  4852. text-align: center;
  4853. white-space: nowrap;
  4854. vertical-align: baseline;
  4855. border-radius: .25em;
  4856. }
  4857. a.label:hover,
  4858. a.label:focus {
  4859. color: #fff;
  4860. text-decoration: none;
  4861. cursor: pointer;
  4862. }
  4863. .label:empty {
  4864. display: none;
  4865. }
  4866. .btn .label {
  4867. position: relative;
  4868. top: -1px;
  4869. }
  4870. .label-default {
  4871. background-color: #777;
  4872. }
  4873. .label-default[href]:hover,
  4874. .label-default[href]:focus {
  4875. background-color: #5e5e5e;
  4876. }
  4877. .label-primary {
  4878. background-color: #337ab7;
  4879. }
  4880. .label-primary[href]:hover,
  4881. .label-primary[href]:focus {
  4882. background-color: #286090;
  4883. }
  4884. .label-success {
  4885. background-color: #5cb85c;
  4886. }
  4887. .label-success[href]:hover,
  4888. .label-success[href]:focus {
  4889. background-color: #449d44;
  4890. }
  4891. .label-info {
  4892. background-color: #5bc0de;
  4893. }
  4894. .label-info[href]:hover,
  4895. .label-info[href]:focus {
  4896. background-color: #31b0d5;
  4897. }
  4898. .label-warning {
  4899. background-color: #f0ad4e;
  4900. }
  4901. .label-warning[href]:hover,
  4902. .label-warning[href]:focus {
  4903. background-color: #ec971f;
  4904. }
  4905. .label-danger {
  4906. background-color: #d9534f;
  4907. }
  4908. .label-danger[href]:hover,
  4909. .label-danger[href]:focus {
  4910. background-color: #c9302c;
  4911. }
  4912. .badge {
  4913. display: inline-block;
  4914. min-width: 10px;
  4915. padding: 3px 7px;
  4916. font-size: 12px;
  4917. font-weight: bold;
  4918. line-height: 1;
  4919. color: #fff;
  4920. text-align: center;
  4921. white-space: nowrap;
  4922. vertical-align: middle;
  4923. background-color: #777;
  4924. border-radius: 10px;
  4925. }
  4926. .badge:empty {
  4927. display: none;
  4928. }
  4929. .btn .badge {
  4930. position: relative;
  4931. top: -1px;
  4932. }
  4933. .btn-xs .badge,
  4934. .btn-group-xs > .btn .badge {
  4935. top: 0;
  4936. padding: 1px 5px;
  4937. }
  4938. a.badge:hover,
  4939. a.badge:focus {
  4940. color: #fff;
  4941. text-decoration: none;
  4942. cursor: pointer;
  4943. }
  4944. .list-group-item.active > .badge,
  4945. .nav-pills > .active > a > .badge {
  4946. color: #337ab7;
  4947. background-color: #fff;
  4948. }
  4949. .list-group-item > .badge {
  4950. float: right;
  4951. }
  4952. .list-group-item > .badge + .badge {
  4953. margin-right: 5px;
  4954. }
  4955. .nav-pills > li > a > .badge {
  4956. margin-left: 3px;
  4957. }
  4958. .jumbotron {
  4959. padding-top: 30px;
  4960. padding-bottom: 30px;
  4961. margin-bottom: 30px;
  4962. color: inherit;
  4963. background-color: #eee;
  4964. }
  4965. .jumbotron h1,
  4966. .jumbotron .h1 {
  4967. color: inherit;
  4968. }
  4969. .jumbotron p {
  4970. margin-bottom: 15px;
  4971. font-size: 21px;
  4972. font-weight: 200;
  4973. }
  4974. .jumbotron > hr {
  4975. border-top-color: #d5d5d5;
  4976. }
  4977. .container .jumbotron,
  4978. .container-fluid .jumbotron {
  4979. padding-right: 15px;
  4980. padding-left: 15px;
  4981. border-radius: 6px;
  4982. }
  4983. .jumbotron .container {
  4984. max-width: 100%;
  4985. }
  4986. @media screen and (min-width: 768px) {
  4987. .jumbotron {
  4988. padding-top: 48px;
  4989. padding-bottom: 48px;
  4990. }
  4991. .container .jumbotron,
  4992. .container-fluid .jumbotron {
  4993. padding-right: 60px;
  4994. padding-left: 60px;
  4995. }
  4996. .jumbotron h1,
  4997. .jumbotron .h1 {
  4998. font-size: 63px;
  4999. }
  5000. }
  5001. .thumbnail {
  5002. display: block;
  5003. padding: 4px;
  5004. margin-bottom: 20px;
  5005. line-height: 1.42857143;
  5006. background-color: #fff;
  5007. border: 1px solid #ddd;
  5008. border-radius: 4px;
  5009. -webkit-transition: border .2s ease-in-out;
  5010. -o-transition: border .2s ease-in-out;
  5011. transition: border .2s ease-in-out;
  5012. }
  5013. .thumbnail > img,
  5014. .thumbnail a > img {
  5015. margin-right: auto;
  5016. margin-left: auto;
  5017. }
  5018. a.thumbnail:hover,
  5019. a.thumbnail:focus,
  5020. a.thumbnail.active {
  5021. border-color: #337ab7;
  5022. }
  5023. .thumbnail .caption {
  5024. padding: 9px;
  5025. color: #333;
  5026. }
  5027. .alert {
  5028. padding: 15px;
  5029. margin-bottom: 20px;
  5030. border: 1px solid transparent;
  5031. border-radius: 4px;
  5032. }
  5033. .alert h4 {
  5034. margin-top: 0;
  5035. color: inherit;
  5036. }
  5037. .alert .alert-link {
  5038. font-weight: bold;
  5039. }
  5040. .alert > p,
  5041. .alert > ul {
  5042. margin-bottom: 0;
  5043. }
  5044. .alert > p + p {
  5045. margin-top: 5px;
  5046. }
  5047. .alert-dismissable,
  5048. .alert-dismissible {
  5049. padding-right: 35px;
  5050. }
  5051. .alert-dismissable .close,
  5052. .alert-dismissible .close {
  5053. position: relative;
  5054. top: -2px;
  5055. right: -21px;
  5056. color: inherit;
  5057. }
  5058. .alert-success {
  5059. color: #3c763d;
  5060. background-color: #dff0d8;
  5061. border-color: #d6e9c6;
  5062. }
  5063. .alert-success hr {
  5064. border-top-color: #c9e2b3;
  5065. }
  5066. .alert-success .alert-link {
  5067. color: #2b542c;
  5068. }
  5069. .alert-info {
  5070. color: #31708f;
  5071. background-color: #d9edf7;
  5072. border-color: #bce8f1;
  5073. }
  5074. .alert-info hr {
  5075. border-top-color: #a6e1ec;
  5076. }
  5077. .alert-info .alert-link {
  5078. color: #245269;
  5079. }
  5080. .alert-warning {
  5081. color: #8a6d3b;
  5082. background-color: #fcf8e3;
  5083. border-color: #faebcc;
  5084. }
  5085. .alert-warning hr {
  5086. border-top-color: #f7e1b5;
  5087. }
  5088. .alert-warning .alert-link {
  5089. color: #66512c;
  5090. }
  5091. .alert-danger {
  5092. color: #a94442;
  5093. background-color: #f2dede;
  5094. border-color: #ebccd1;
  5095. }
  5096. .alert-danger hr {
  5097. border-top-color: #e4b9c0;
  5098. }
  5099. .alert-danger .alert-link {
  5100. color: #843534;
  5101. }
  5102. @-webkit-keyframes progress-bar-stripes {
  5103. from {
  5104. background-position: 40px 0;
  5105. }
  5106. to {
  5107. background-position: 0 0;
  5108. }
  5109. }
  5110. @-o-keyframes progress-bar-stripes {
  5111. from {
  5112. background-position: 40px 0;
  5113. }
  5114. to {
  5115. background-position: 0 0;
  5116. }
  5117. }
  5118. @keyframes progress-bar-stripes {
  5119. from {
  5120. background-position: 40px 0;
  5121. }
  5122. to {
  5123. background-position: 0 0;
  5124. }
  5125. }
  5126. .progress {
  5127. height: 20px;
  5128. margin-bottom: 20px;
  5129. overflow: hidden;
  5130. background-color: #f5f5f5;
  5131. border-radius: 4px;
  5132. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  5133. box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  5134. }
  5135. .progress-bar {
  5136. float: left;
  5137. width: 0;
  5138. height: 100%;
  5139. font-size: 12px;
  5140. line-height: 20px;
  5141. color: #fff;
  5142. text-align: center;
  5143. background-color: #337ab7;
  5144. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  5145. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  5146. -webkit-transition: width .6s ease;
  5147. -o-transition: width .6s ease;
  5148. transition: width .6s ease;
  5149. }
  5150. .progress-striped .progress-bar,
  5151. .progress-bar-striped {
  5152. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5153. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5154. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5155. -webkit-background-size: 40px 40px;
  5156. background-size: 40px 40px;
  5157. }
  5158. .progress.active .progress-bar,
  5159. .progress-bar.active {
  5160. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5161. -o-animation: progress-bar-stripes 2s linear infinite;
  5162. animation: progress-bar-stripes 2s linear infinite;
  5163. }
  5164. .progress-bar-success {
  5165. background-color: #5cb85c;
  5166. }
  5167. .progress-striped .progress-bar-success {
  5168. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5169. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5170. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5171. }
  5172. .progress-bar-info {
  5173. background-color: #5bc0de;
  5174. }
  5175. .progress-striped .progress-bar-info {
  5176. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5177. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5178. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5179. }
  5180. .progress-bar-warning {
  5181. background-color: #f0ad4e;
  5182. }
  5183. .progress-striped .progress-bar-warning {
  5184. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5185. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5186. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5187. }
  5188. .progress-bar-danger {
  5189. background-color: #d9534f;
  5190. }
  5191. .progress-striped .progress-bar-danger {
  5192. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5193. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5194. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  5195. }
  5196. .media {
  5197. margin-top: 15px;
  5198. }
  5199. .media:first-child {
  5200. margin-top: 0;
  5201. }
  5202. .media,
  5203. .media-body {
  5204. overflow: hidden;
  5205. zoom: 1;
  5206. }
  5207. .media-body {
  5208. width: 10000px;
  5209. }
  5210. .media-object {
  5211. display: block;
  5212. }
  5213. .media-object.img-thumbnail {
  5214. max-width: none;
  5215. }
  5216. .media-right,
  5217. .media > .pull-right {
  5218. padding-left: 10px;
  5219. }
  5220. .media-left,
  5221. .media > .pull-left {
  5222. padding-right: 10px;
  5223. }
  5224. .media-left,
  5225. .media-right,
  5226. .media-body {
  5227. display: table-cell;
  5228. vertical-align: top;
  5229. }
  5230. .media-middle {
  5231. vertical-align: middle;
  5232. }
  5233. .media-bottom {
  5234. vertical-align: bottom;
  5235. }
  5236. .media-heading {
  5237. margin-top: 0;
  5238. margin-bottom: 5px;
  5239. }
  5240. .media-list {
  5241. padding-left: 0;
  5242. list-style: none;
  5243. }
  5244. .list-group {
  5245. padding-left: 0;
  5246. margin-bottom: 20px;
  5247. }
  5248. .list-group-item {
  5249. position: relative;
  5250. display: block;
  5251. padding: 10px 15px;
  5252. margin-bottom: -1px;
  5253. background-color: #fff;
  5254. border: 1px solid #ddd;
  5255. }
  5256. .list-group-item:first-child {
  5257. border-top-left-radius: 4px;
  5258. border-top-right-radius: 4px;
  5259. }
  5260. .list-group-item:last-child {
  5261. margin-bottom: 0;
  5262. border-bottom-right-radius: 4px;
  5263. border-bottom-left-radius: 4px;
  5264. }
  5265. a.list-group-item,
  5266. button.list-group-item {
  5267. color: #555;
  5268. }
  5269. a.list-group-item .list-group-item-heading,
  5270. button.list-group-item .list-group-item-heading {
  5271. color: #333;
  5272. }
  5273. a.list-group-item:hover,
  5274. button.list-group-item:hover,
  5275. a.list-group-item:focus,
  5276. button.list-group-item:focus {
  5277. color: #555;
  5278. text-decoration: none;
  5279. background-color: #f5f5f5;
  5280. }
  5281. button.list-group-item {
  5282. width: 100%;
  5283. text-align: left;
  5284. }
  5285. .list-group-item.disabled,
  5286. .list-group-item.disabled:hover,
  5287. .list-group-item.disabled:focus {
  5288. color: #777;
  5289. cursor: not-allowed;
  5290. background-color: #eee;
  5291. }
  5292. .list-group-item.disabled .list-group-item-heading,
  5293. .list-group-item.disabled:hover .list-group-item-heading,
  5294. .list-group-item.disabled:focus .list-group-item-heading {
  5295. color: inherit;
  5296. }
  5297. .list-group-item.disabled .list-group-item-text,
  5298. .list-group-item.disabled:hover .list-group-item-text,
  5299. .list-group-item.disabled:focus .list-group-item-text {
  5300. color: #777;
  5301. }
  5302. .list-group-item.active,
  5303. .list-group-item.active:hover,
  5304. .list-group-item.active:focus {
  5305. z-index: 2;
  5306. color: #fff;
  5307. background-color: #337ab7;
  5308. border-color: #337ab7;
  5309. }
  5310. .list-group-item.active .list-group-item-heading,
  5311. .list-group-item.active:hover .list-group-item-heading,
  5312. .list-group-item.active:focus .list-group-item-heading,
  5313. .list-group-item.active .list-group-item-heading > small,
  5314. .list-group-item.active:hover .list-group-item-heading > small,
  5315. .list-group-item.active:focus .list-group-item-heading > small,
  5316. .list-group-item.active .list-group-item-heading > .small,
  5317. .list-group-item.active:hover .list-group-item-heading > .small,
  5318. .list-group-item.active:focus .list-group-item-heading > .small {
  5319. color: inherit;
  5320. }
  5321. .list-group-item.active .list-group-item-text,
  5322. .list-group-item.active:hover .list-group-item-text,
  5323. .list-group-item.active:focus .list-group-item-text {
  5324. color: #c7ddef;
  5325. }
  5326. .list-group-item-success {
  5327. color: #3c763d;
  5328. background-color: #dff0d8;
  5329. }
  5330. a.list-group-item-success,
  5331. button.list-group-item-success {
  5332. color: #3c763d;
  5333. }
  5334. a.list-group-item-success .list-group-item-heading,
  5335. button.list-group-item-success .list-group-item-heading {
  5336. color: inherit;
  5337. }
  5338. a.list-group-item-success:hover,
  5339. button.list-group-item-success:hover,
  5340. a.list-group-item-success:focus,
  5341. button.list-group-item-success:focus {
  5342. color: #3c763d;
  5343. background-color: #d0e9c6;
  5344. }
  5345. a.list-group-item-success.active,
  5346. button.list-group-item-success.active,
  5347. a.list-group-item-success.active:hover,
  5348. button.list-group-item-success.active:hover,
  5349. a.list-group-item-success.active:focus,
  5350. button.list-group-item-success.active:focus {
  5351. color: #fff;
  5352. background-color: #3c763d;
  5353. border-color: #3c763d;
  5354. }
  5355. .list-group-item-info {
  5356. color: #31708f;
  5357. background-color: #d9edf7;
  5358. }
  5359. a.list-group-item-info,
  5360. button.list-group-item-info {
  5361. color: #31708f;
  5362. }
  5363. a.list-group-item-info .list-group-item-heading,
  5364. button.list-group-item-info .list-group-item-heading {
  5365. color: inherit;
  5366. }
  5367. a.list-group-item-info:hover,
  5368. button.list-group-item-info:hover,
  5369. a.list-group-item-info:focus,
  5370. button.list-group-item-info:focus {
  5371. color: #31708f;
  5372. background-color: #c4e3f3;
  5373. }
  5374. a.list-group-item-info.active,
  5375. button.list-group-item-info.active,
  5376. a.list-group-item-info.active:hover,
  5377. button.list-group-item-info.active:hover,
  5378. a.list-group-item-info.active:focus,
  5379. button.list-group-item-info.active:focus {
  5380. color: #fff;
  5381. background-color: #31708f;
  5382. border-color: #31708f;
  5383. }
  5384. .list-group-item-warning {
  5385. color: #8a6d3b;
  5386. background-color: #fcf8e3;
  5387. }
  5388. a.list-group-item-warning,
  5389. button.list-group-item-warning {
  5390. color: #8a6d3b;
  5391. }
  5392. a.list-group-item-warning .list-group-item-heading,
  5393. button.list-group-item-warning .list-group-item-heading {
  5394. color: inherit;
  5395. }
  5396. a.list-group-item-warning:hover,
  5397. button.list-group-item-warning:hover,
  5398. a.list-group-item-warning:focus,
  5399. button.list-group-item-warning:focus {
  5400. color: #8a6d3b;
  5401. background-color: #faf2cc;
  5402. }
  5403. a.list-group-item-warning.active,
  5404. button.list-group-item-warning.active,
  5405. a.list-group-item-warning.active:hover,
  5406. button.list-group-item-warning.active:hover,
  5407. a.list-group-item-warning.active:focus,
  5408. button.list-group-item-warning.active:focus {
  5409. color: #fff;
  5410. background-color: #8a6d3b;
  5411. border-color: #8a6d3b;
  5412. }
  5413. .list-group-item-danger {
  5414. color: #a94442;
  5415. background-color: #f2dede;
  5416. }
  5417. a.list-group-item-danger,
  5418. button.list-group-item-danger {
  5419. color: #a94442;
  5420. }
  5421. a.list-group-item-danger .list-group-item-heading,
  5422. button.list-group-item-danger .list-group-item-heading {
  5423. color: inherit;
  5424. }
  5425. a.list-group-item-danger:hover,
  5426. button.list-group-item-danger:hover,
  5427. a.list-group-item-danger:focus,
  5428. button.list-group-item-danger:focus {
  5429. color: #a94442;
  5430. background-color: #ebcccc;
  5431. }
  5432. a.list-group-item-danger.active,
  5433. button.list-group-item-danger.active,
  5434. a.list-group-item-danger.active:hover,
  5435. button.list-group-item-danger.active:hover,
  5436. a.list-group-item-danger.active:focus,
  5437. button.list-group-item-danger.active:focus {
  5438. color: #fff;
  5439. background-color: #a94442;
  5440. border-color: #a94442;
  5441. }
  5442. .list-group-item-heading {
  5443. margin-top: 0;
  5444. margin-bottom: 5px;
  5445. }
  5446. .list-group-item-text {
  5447. margin-bottom: 0;
  5448. line-height: 1.3;
  5449. }
  5450. .panel {
  5451. margin-bottom: 20px;
  5452. background-color: #fff;
  5453. border: 1px solid transparent;
  5454. border-radius: 4px;
  5455. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  5456. box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  5457. }
  5458. .panel-body {
  5459. padding: 15px;
  5460. }
  5461. .panel-heading {
  5462. padding: 10px 15px;
  5463. border-bottom: 1px solid transparent;
  5464. border-top-left-radius: 3px;
  5465. border-top-right-radius: 3px;
  5466. }
  5467. .panel-heading > .dropdown .dropdown-toggle {
  5468. color: inherit;
  5469. }
  5470. .panel-title {
  5471. margin-top: 0;
  5472. margin-bottom: 0;
  5473. font-size: 16px;
  5474. color: inherit;
  5475. }
  5476. .panel-title > a,
  5477. .panel-title > small,
  5478. .panel-title > .small,
  5479. .panel-title > small > a,
  5480. .panel-title > .small > a {
  5481. color: inherit;
  5482. }
  5483. .panel-footer {
  5484. padding: 10px 15px;
  5485. background-color: #f5f5f5;
  5486. border-top: 1px solid #ddd;
  5487. border-bottom-right-radius: 3px;
  5488. border-bottom-left-radius: 3px;
  5489. }
  5490. .panel > .list-group,
  5491. .panel > .panel-collapse > .list-group {
  5492. margin-bottom: 0;
  5493. }
  5494. .panel > .list-group .list-group-item,
  5495. .panel > .panel-collapse > .list-group .list-group-item {
  5496. border-width: 1px 0;
  5497. border-radius: 0;
  5498. }
  5499. .panel > .list-group:first-child .list-group-item:first-child,
  5500. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5501. border-top: 0;
  5502. border-top-left-radius: 3px;
  5503. border-top-right-radius: 3px;
  5504. }
  5505. .panel > .list-group:last-child .list-group-item:last-child,
  5506. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5507. border-bottom: 0;
  5508. border-bottom-right-radius: 3px;
  5509. border-bottom-left-radius: 3px;
  5510. }
  5511. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5512. border-top-left-radius: 0;
  5513. border-top-right-radius: 0;
  5514. }
  5515. .panel-heading + .list-group .list-group-item:first-child {
  5516. border-top-width: 0;
  5517. }
  5518. .list-group + .panel-footer {
  5519. border-top-width: 0;
  5520. }
  5521. .panel > .table,
  5522. .panel > .table-responsive > .table,
  5523. .panel > .panel-collapse > .table {
  5524. margin-bottom: 0;
  5525. }
  5526. .panel > .table caption,
  5527. .panel > .table-responsive > .table caption,
  5528. .panel > .panel-collapse > .table caption {
  5529. padding-right: 15px;
  5530. padding-left: 15px;
  5531. }
  5532. .panel > .table:first-child,
  5533. .panel > .table-responsive:first-child > .table:first-child {
  5534. border-top-left-radius: 3px;
  5535. border-top-right-radius: 3px;
  5536. }
  5537. .panel > .table:first-child > thead:first-child > tr:first-child,
  5538. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5539. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5540. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5541. border-top-left-radius: 3px;
  5542. border-top-right-radius: 3px;
  5543. }
  5544. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5545. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5546. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5547. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5548. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5549. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5550. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5551. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5552. border-top-left-radius: 3px;
  5553. }
  5554. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5555. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5556. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5557. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5558. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5559. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5560. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5561. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5562. border-top-right-radius: 3px;
  5563. }
  5564. .panel > .table:last-child,
  5565. .panel > .table-responsive:last-child > .table:last-child {
  5566. border-bottom-right-radius: 3px;
  5567. border-bottom-left-radius: 3px;
  5568. }
  5569. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5570. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5571. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5572. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5573. border-bottom-right-radius: 3px;
  5574. border-bottom-left-radius: 3px;
  5575. }
  5576. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5577. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5578. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5579. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5580. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5581. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5582. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5583. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5584. border-bottom-left-radius: 3px;
  5585. }
  5586. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5587. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5588. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5589. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5590. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5591. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5592. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5593. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5594. border-bottom-right-radius: 3px;
  5595. }
  5596. .panel > .panel-body + .table,
  5597. .panel > .panel-body + .table-responsive,
  5598. .panel > .table + .panel-body,
  5599. .panel > .table-responsive + .panel-body {
  5600. border-top: 1px solid #ddd;
  5601. }
  5602. .panel > .table > tbody:first-child > tr:first-child th,
  5603. .panel > .table > tbody:first-child > tr:first-child td {
  5604. border-top: 0;
  5605. }
  5606. .panel > .table-bordered,
  5607. .panel > .table-responsive > .table-bordered {
  5608. border: 0;
  5609. }
  5610. .panel > .table-bordered > thead > tr > th:first-child,
  5611. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5612. .panel > .table-bordered > tbody > tr > th:first-child,
  5613. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5614. .panel > .table-bordered > tfoot > tr > th:first-child,
  5615. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5616. .panel > .table-bordered > thead > tr > td:first-child,
  5617. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5618. .panel > .table-bordered > tbody > tr > td:first-child,
  5619. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5620. .panel > .table-bordered > tfoot > tr > td:first-child,
  5621. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5622. border-left: 0;
  5623. }
  5624. .panel > .table-bordered > thead > tr > th:last-child,
  5625. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5626. .panel > .table-bordered > tbody > tr > th:last-child,
  5627. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5628. .panel > .table-bordered > tfoot > tr > th:last-child,
  5629. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5630. .panel > .table-bordered > thead > tr > td:last-child,
  5631. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5632. .panel > .table-bordered > tbody > tr > td:last-child,
  5633. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5634. .panel > .table-bordered > tfoot > tr > td:last-child,
  5635. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5636. border-right: 0;
  5637. }
  5638. .panel > .table-bordered > thead > tr:first-child > td,
  5639. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5640. .panel > .table-bordered > tbody > tr:first-child > td,
  5641. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5642. .panel > .table-bordered > thead > tr:first-child > th,
  5643. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5644. .panel > .table-bordered > tbody > tr:first-child > th,
  5645. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5646. border-bottom: 0;
  5647. }
  5648. .panel > .table-bordered > tbody > tr:last-child > td,
  5649. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5650. .panel > .table-bordered > tfoot > tr:last-child > td,
  5651. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5652. .panel > .table-bordered > tbody > tr:last-child > th,
  5653. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5654. .panel > .table-bordered > tfoot > tr:last-child > th,
  5655. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5656. border-bottom: 0;
  5657. }
  5658. .panel > .table-responsive {
  5659. margin-bottom: 0;
  5660. border: 0;
  5661. }
  5662. .panel-group {
  5663. margin-bottom: 20px;
  5664. }
  5665. .panel-group .panel {
  5666. margin-bottom: 0;
  5667. border-radius: 4px;
  5668. }
  5669. .panel-group .panel + .panel {
  5670. margin-top: 5px;
  5671. }
  5672. .panel-group .panel-heading {
  5673. border-bottom: 0;
  5674. }
  5675. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5676. .panel-group .panel-heading + .panel-collapse > .list-group {
  5677. border-top: 1px solid #ddd;
  5678. }
  5679. .panel-group .panel-footer {
  5680. border-top: 0;
  5681. }
  5682. .panel-group .panel-footer + .panel-collapse .panel-body {
  5683. border-bottom: 1px solid #ddd;
  5684. }
  5685. .panel-default {
  5686. border-color: #ddd;
  5687. }
  5688. .panel-default > .panel-heading {
  5689. color: #333;
  5690. background-color: #f5f5f5;
  5691. border-color: #ddd;
  5692. }
  5693. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5694. border-top-color: #ddd;
  5695. }
  5696. .panel-default > .panel-heading .badge {
  5697. color: #f5f5f5;
  5698. background-color: #333;
  5699. }
  5700. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5701. border-bottom-color: #ddd;
  5702. }
  5703. .panel-primary {
  5704. border-color: #337ab7;
  5705. }
  5706. .panel-primary > .panel-heading {
  5707. color: #fff;
  5708. background-color: #337ab7;
  5709. border-color: #337ab7;
  5710. }
  5711. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5712. border-top-color: #337ab7;
  5713. }
  5714. .panel-primary > .panel-heading .badge {
  5715. color: #337ab7;
  5716. background-color: #fff;
  5717. }
  5718. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5719. border-bottom-color: #337ab7;
  5720. }
  5721. .panel-success {
  5722. border-color: #d6e9c6;
  5723. }
  5724. .panel-success > .panel-heading {
  5725. color: #3c763d;
  5726. background-color: #dff0d8;
  5727. border-color: #d6e9c6;
  5728. }
  5729. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5730. border-top-color: #d6e9c6;
  5731. }
  5732. .panel-success > .panel-heading .badge {
  5733. color: #dff0d8;
  5734. background-color: #3c763d;
  5735. }
  5736. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5737. border-bottom-color: #d6e9c6;
  5738. }
  5739. .panel-info {
  5740. border-color: #bce8f1;
  5741. }
  5742. .panel-info > .panel-heading {
  5743. color: #31708f;
  5744. background-color: #d9edf7;
  5745. border-color: #bce8f1;
  5746. }
  5747. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5748. border-top-color: #bce8f1;
  5749. }
  5750. .panel-info > .panel-heading .badge {
  5751. color: #d9edf7;
  5752. background-color: #31708f;
  5753. }
  5754. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5755. border-bottom-color: #bce8f1;
  5756. }
  5757. .panel-warning {
  5758. border-color: #faebcc;
  5759. }
  5760. .panel-warning > .panel-heading {
  5761. color: #8a6d3b;
  5762. background-color: #fcf8e3;
  5763. border-color: #faebcc;
  5764. }
  5765. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5766. border-top-color: #faebcc;
  5767. }
  5768. .panel-warning > .panel-heading .badge {
  5769. color: #fcf8e3;
  5770. background-color: #8a6d3b;
  5771. }
  5772. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5773. border-bottom-color: #faebcc;
  5774. }
  5775. .panel-danger {
  5776. border-color: #ebccd1;
  5777. }
  5778. .panel-danger > .panel-heading {
  5779. color: #a94442;
  5780. background-color: #f2dede;
  5781. border-color: #ebccd1;
  5782. }
  5783. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5784. border-top-color: #ebccd1;
  5785. }
  5786. .panel-danger > .panel-heading .badge {
  5787. color: #f2dede;
  5788. background-color: #a94442;
  5789. }
  5790. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5791. border-bottom-color: #ebccd1;
  5792. }
  5793. .embed-responsive {
  5794. position: relative;
  5795. display: block;
  5796. height: 0;
  5797. padding: 0;
  5798. overflow: hidden;
  5799. }
  5800. .embed-responsive .embed-responsive-item,
  5801. .embed-responsive iframe,
  5802. .embed-responsive embed,
  5803. .embed-responsive object,
  5804. .embed-responsive video {
  5805. position: absolute;
  5806. top: 0;
  5807. bottom: 0;
  5808. left: 0;
  5809. width: 100%;
  5810. height: 100%;
  5811. border: 0;
  5812. }
  5813. .embed-responsive-16by9 {
  5814. padding-bottom: 56.25%;
  5815. }
  5816. .embed-responsive-4by3 {
  5817. padding-bottom: 75%;
  5818. }
  5819. .well {
  5820. min-height: 20px;
  5821. padding: 19px;
  5822. margin-bottom: 20px;
  5823. background-color: #f5f5f5;
  5824. border: 1px solid #e3e3e3;
  5825. border-radius: 4px;
  5826. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  5827. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  5828. }
  5829. .well blockquote {
  5830. border-color: #ddd;
  5831. border-color: rgba(0, 0, 0, .15);
  5832. }
  5833. .well-lg {
  5834. padding: 24px;
  5835. border-radius: 6px;
  5836. }
  5837. .well-sm {
  5838. padding: 9px;
  5839. border-radius: 3px;
  5840. }
  5841. .close {
  5842. float: right;
  5843. font-size: 21px;
  5844. font-weight: bold;
  5845. line-height: 1;
  5846. color: #000;
  5847. text-shadow: 0 1px 0 #fff;
  5848. filter: alpha(opacity=20);
  5849. opacity: .2;
  5850. }
  5851. .close:hover,
  5852. .close:focus {
  5853. color: #000;
  5854. text-decoration: none;
  5855. cursor: pointer;
  5856. filter: alpha(opacity=50);
  5857. opacity: .5;
  5858. }
  5859. button.close {
  5860. -webkit-appearance: none;
  5861. padding: 0;
  5862. cursor: pointer;
  5863. background: transparent;
  5864. border: 0;
  5865. }
  5866. .modal-open {
  5867. overflow: hidden;
  5868. }
  5869. .modal {
  5870. position: fixed;
  5871. top: 0;
  5872. right: 0;
  5873. bottom: 0;
  5874. left: 0;
  5875. z-index: 1050;
  5876. display: none;
  5877. overflow: hidden;
  5878. -webkit-overflow-scrolling: touch;
  5879. outline: 0;
  5880. }
  5881. .modal.fade .modal-dialog {
  5882. -webkit-transition: -webkit-transform .3s ease-out;
  5883. -o-transition: -o-transform .3s ease-out;
  5884. transition: transform .3s ease-out;
  5885. -webkit-transform: translate(0, -25%);
  5886. -ms-transform: translate(0, -25%);
  5887. -o-transform: translate(0, -25%);
  5888. transform: translate(0, -25%);
  5889. }
  5890. .modal.in .modal-dialog {
  5891. -webkit-transform: translate(0, 0);
  5892. -ms-transform: translate(0, 0);
  5893. -o-transform: translate(0, 0);
  5894. transform: translate(0, 0);
  5895. }
  5896. .modal-open .modal {
  5897. overflow-x: hidden;
  5898. overflow-y: auto;
  5899. }
  5900. .modal-dialog {
  5901. position: relative;
  5902. width: auto;
  5903. margin: 10px;
  5904. }
  5905. .modal-content {
  5906. position: relative;
  5907. background-color: #fff;
  5908. -webkit-background-clip: padding-box;
  5909. background-clip: padding-box;
  5910. border: 1px solid #999;
  5911. border: 1px solid rgba(0, 0, 0, .2);
  5912. border-radius: 6px;
  5913. outline: 0;
  5914. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  5915. box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
  5916. }
  5917. .modal-backdrop {
  5918. position: fixed;
  5919. top: 0;
  5920. right: 0;
  5921. bottom: 0;
  5922. left: 0;
  5923. z-index: 1040;
  5924. background-color: #000;
  5925. }
  5926. .modal-backdrop.fade {
  5927. filter: alpha(opacity=0);
  5928. opacity: 0;
  5929. }
  5930. .modal-backdrop.in {
  5931. filter: alpha(opacity=50);
  5932. opacity: .5;
  5933. }
  5934. .modal-header {
  5935. padding: 15px;
  5936. border-bottom: 1px solid #e5e5e5;
  5937. }
  5938. .modal-header .close {
  5939. margin-top: -2px;
  5940. }
  5941. .modal-title {
  5942. margin: 0;
  5943. line-height: 1.42857143;
  5944. }
  5945. .modal-body {
  5946. position: relative;
  5947. padding: 15px;
  5948. }
  5949. .modal-footer {
  5950. padding: 15px;
  5951. text-align: right;
  5952. border-top: 1px solid #e5e5e5;
  5953. }
  5954. .modal-footer .btn + .btn {
  5955. margin-bottom: 0;
  5956. margin-left: 5px;
  5957. }
  5958. .modal-footer .btn-group .btn + .btn {
  5959. margin-left: -1px;
  5960. }
  5961. .modal-footer .btn-block + .btn-block {
  5962. margin-left: 0;
  5963. }
  5964. .modal-scrollbar-measure {
  5965. position: absolute;
  5966. top: -9999px;
  5967. width: 50px;
  5968. height: 50px;
  5969. overflow: scroll;
  5970. }
  5971. @media (min-width: 768px) {
  5972. .modal-dialog {
  5973. width: 600px;
  5974. margin: 30px auto;
  5975. }
  5976. .modal-content {
  5977. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  5978. box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  5979. }
  5980. .modal-sm {
  5981. width: 300px;
  5982. }
  5983. }
  5984. @media (min-width: 992px) {
  5985. .modal-lg {
  5986. width: 900px;
  5987. }
  5988. }
  5989. .tooltip {
  5990. position: absolute;
  5991. z-index: 1070;
  5992. display: block;
  5993. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5994. font-size: 12px;
  5995. font-style: normal;
  5996. font-weight: normal;
  5997. line-height: 1.42857143;
  5998. text-align: left;
  5999. text-align: start;
  6000. text-decoration: none;
  6001. text-shadow: none;
  6002. text-transform: none;
  6003. letter-spacing: normal;
  6004. word-break: normal;
  6005. word-spacing: normal;
  6006. word-wrap: normal;
  6007. white-space: normal;
  6008. filter: alpha(opacity=0);
  6009. opacity: 0;
  6010. line-break: auto;
  6011. }
  6012. .tooltip.in {
  6013. filter: alpha(opacity=90);
  6014. opacity: .9;
  6015. }
  6016. .tooltip.top {
  6017. padding: 5px 0;
  6018. margin-top: -3px;
  6019. }
  6020. .tooltip.right {
  6021. padding: 0 5px;
  6022. margin-left: 3px;
  6023. }
  6024. .tooltip.bottom {
  6025. padding: 5px 0;
  6026. margin-top: 3px;
  6027. }
  6028. .tooltip.left {
  6029. padding: 0 5px;
  6030. margin-left: -3px;
  6031. }
  6032. .tooltip-inner {
  6033. max-width: 200px;
  6034. padding: 3px 8px;
  6035. color: #fff;
  6036. text-align: center;
  6037. background-color: #000;
  6038. border-radius: 4px;
  6039. }
  6040. .tooltip-arrow {
  6041. position: absolute;
  6042. width: 0;
  6043. height: 0;
  6044. border-color: transparent;
  6045. border-style: solid;
  6046. }
  6047. .tooltip.top .tooltip-arrow {
  6048. bottom: 0;
  6049. left: 50%;
  6050. margin-left: -5px;
  6051. border-width: 5px 5px 0;
  6052. border-top-color: #000;
  6053. }
  6054. .tooltip.top-left .tooltip-arrow {
  6055. right: 5px;
  6056. bottom: 0;
  6057. margin-bottom: -5px;
  6058. border-width: 5px 5px 0;
  6059. border-top-color: #000;
  6060. }
  6061. .tooltip.top-right .tooltip-arrow {
  6062. bottom: 0;
  6063. left: 5px;
  6064. margin-bottom: -5px;
  6065. border-width: 5px 5px 0;
  6066. border-top-color: #000;
  6067. }
  6068. .tooltip.right .tooltip-arrow {
  6069. top: 50%;
  6070. left: 0;
  6071. margin-top: -5px;
  6072. border-width: 5px 5px 5px 0;
  6073. border-right-color: #000;
  6074. }
  6075. .tooltip.left .tooltip-arrow {
  6076. top: 50%;
  6077. right: 0;
  6078. margin-top: -5px;
  6079. border-width: 5px 0 5px 5px;
  6080. border-left-color: #000;
  6081. }
  6082. .tooltip.bottom .tooltip-arrow {
  6083. top: 0;
  6084. left: 50%;
  6085. margin-left: -5px;
  6086. border-width: 0 5px 5px;
  6087. border-bottom-color: #000;
  6088. }
  6089. .tooltip.bottom-left .tooltip-arrow {
  6090. top: 0;
  6091. right: 5px;
  6092. margin-top: -5px;
  6093. border-width: 0 5px 5px;
  6094. border-bottom-color: #000;
  6095. }
  6096. .tooltip.bottom-right .tooltip-arrow {
  6097. top: 0;
  6098. left: 5px;
  6099. margin-top: -5px;
  6100. border-width: 0 5px 5px;
  6101. border-bottom-color: #000;
  6102. }
  6103. .popover {
  6104. position: absolute;
  6105. top: 0;
  6106. left: 0;
  6107. z-index: 1060;
  6108. display: none;
  6109. max-width: 276px;
  6110. padding: 1px;
  6111. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6112. font-size: 14px;
  6113. font-style: normal;
  6114. font-weight: normal;
  6115. line-height: 1.42857143;
  6116. text-align: left;
  6117. text-align: start;
  6118. text-decoration: none;
  6119. text-shadow: none;
  6120. text-transform: none;
  6121. letter-spacing: normal;
  6122. word-break: normal;
  6123. word-spacing: normal;
  6124. word-wrap: normal;
  6125. white-space: normal;
  6126. background-color: #fff;
  6127. -webkit-background-clip: padding-box;
  6128. background-clip: padding-box;
  6129. border: 1px solid #ccc;
  6130. border: 1px solid rgba(0, 0, 0, .2);
  6131. border-radius: 6px;
  6132. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  6133. box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  6134. line-break: auto;
  6135. }
  6136. .popover.top {
  6137. margin-top: -10px;
  6138. }
  6139. .popover.right {
  6140. margin-left: 10px;
  6141. }
  6142. .popover.bottom {
  6143. margin-top: 10px;
  6144. }
  6145. .popover.left {
  6146. margin-left: -10px;
  6147. }
  6148. .popover-title {
  6149. padding: 8px 14px;
  6150. margin: 0;
  6151. font-size: 14px;
  6152. background-color: #f7f7f7;
  6153. border-bottom: 1px solid #ebebeb;
  6154. border-radius: 5px 5px 0 0;
  6155. }
  6156. .popover-content {
  6157. padding: 9px 14px;
  6158. }
  6159. .popover > .arrow,
  6160. .popover > .arrow:after {
  6161. position: absolute;
  6162. display: block;
  6163. width: 0;
  6164. height: 0;
  6165. border-color: transparent;
  6166. border-style: solid;
  6167. }
  6168. .popover > .arrow {
  6169. border-width: 11px;
  6170. }
  6171. .popover > .arrow:after {
  6172. content: "";
  6173. border-width: 10px;
  6174. }
  6175. .popover.top > .arrow {
  6176. bottom: -11px;
  6177. left: 50%;
  6178. margin-left: -11px;
  6179. border-top-color: #999;
  6180. border-top-color: rgba(0, 0, 0, .25);
  6181. border-bottom-width: 0;
  6182. }
  6183. .popover.top > .arrow:after {
  6184. bottom: 1px;
  6185. margin-left: -10px;
  6186. content: " ";
  6187. border-top-color: #fff;
  6188. border-bottom-width: 0;
  6189. }
  6190. .popover.right > .arrow {
  6191. top: 50%;
  6192. left: -11px;
  6193. margin-top: -11px;
  6194. border-right-color: #999;
  6195. border-right-color: rgba(0, 0, 0, .25);
  6196. border-left-width: 0;
  6197. }
  6198. .popover.right > .arrow:after {
  6199. bottom: -10px;
  6200. left: 1px;
  6201. content: " ";
  6202. border-right-color: #fff;
  6203. border-left-width: 0;
  6204. }
  6205. .popover.bottom > .arrow {
  6206. top: -11px;
  6207. left: 50%;
  6208. margin-left: -11px;
  6209. border-top-width: 0;
  6210. border-bottom-color: #999;
  6211. border-bottom-color: rgba(0, 0, 0, .25);
  6212. }
  6213. .popover.bottom > .arrow:after {
  6214. top: 1px;
  6215. margin-left: -10px;
  6216. content: " ";
  6217. border-top-width: 0;
  6218. border-bottom-color: #fff;
  6219. }
  6220. .popover.left > .arrow {
  6221. top: 50%;
  6222. right: -11px;
  6223. margin-top: -11px;
  6224. border-right-width: 0;
  6225. border-left-color: #999;
  6226. border-left-color: rgba(0, 0, 0, .25);
  6227. }
  6228. .popover.left > .arrow:after {
  6229. right: 1px;
  6230. bottom: -10px;
  6231. content: " ";
  6232. border-right-width: 0;
  6233. border-left-color: #fff;
  6234. }
  6235. .carousel {
  6236. position: relative;
  6237. }
  6238. .carousel-inner {
  6239. position: relative;
  6240. width: 100%;
  6241. overflow: hidden;
  6242. }
  6243. .carousel-inner > .item {
  6244. position: relative;
  6245. display: none;
  6246. -webkit-transition: .6s ease-in-out left;
  6247. -o-transition: .6s ease-in-out left;
  6248. transition: .6s ease-in-out left;
  6249. }
  6250. .carousel-inner > .item > img,
  6251. .carousel-inner > .item > a > img {
  6252. line-height: 1;
  6253. }
  6254. @media all and (transform-3d), (-webkit-transform-3d) {
  6255. .carousel-inner > .item {
  6256. -webkit-transition: -webkit-transform .6s ease-in-out;
  6257. -o-transition: -o-transform .6s ease-in-out;
  6258. transition: transform .6s ease-in-out;
  6259. -webkit-backface-visibility: hidden;
  6260. backface-visibility: hidden;
  6261. -webkit-perspective: 1000px;
  6262. perspective: 1000px;
  6263. }
  6264. .carousel-inner > .item.next,
  6265. .carousel-inner > .item.active.right {
  6266. left: 0;
  6267. -webkit-transform: translate3d(100%, 0, 0);
  6268. transform: translate3d(100%, 0, 0);
  6269. }
  6270. .carousel-inner > .item.prev,
  6271. .carousel-inner > .item.active.left {
  6272. left: 0;
  6273. -webkit-transform: translate3d(-100%, 0, 0);
  6274. transform: translate3d(-100%, 0, 0);
  6275. }
  6276. .carousel-inner > .item.next.left,
  6277. .carousel-inner > .item.prev.right,
  6278. .carousel-inner > .item.active {
  6279. left: 0;
  6280. -webkit-transform: translate3d(0, 0, 0);
  6281. transform: translate3d(0, 0, 0);
  6282. }
  6283. }
  6284. .carousel-inner > .active,
  6285. .carousel-inner > .next,
  6286. .carousel-inner > .prev {
  6287. display: block;
  6288. }
  6289. .carousel-inner > .active {
  6290. left: 0;
  6291. }
  6292. .carousel-inner > .next,
  6293. .carousel-inner > .prev {
  6294. position: absolute;
  6295. top: 0;
  6296. width: 100%;
  6297. }
  6298. .carousel-inner > .next {
  6299. left: 100%;
  6300. }
  6301. .carousel-inner > .prev {
  6302. left: -100%;
  6303. }
  6304. .carousel-inner > .next.left,
  6305. .carousel-inner > .prev.right {
  6306. left: 0;
  6307. }
  6308. .carousel-inner > .active.left {
  6309. left: -100%;
  6310. }
  6311. .carousel-inner > .active.right {
  6312. left: 100%;
  6313. }
  6314. .carousel-control {
  6315. position: absolute;
  6316. top: 0;
  6317. bottom: 0;
  6318. left: 0;
  6319. width: 15%;
  6320. font-size: 20px;
  6321. color: #fff;
  6322. text-align: center;
  6323. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  6324. background-color: rgba(0, 0, 0, 0);
  6325. filter: alpha(opacity=50);
  6326. opacity: .5;
  6327. }
  6328. .carousel-control.left {
  6329. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6330. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6331. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
  6332. background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  6333. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6334. background-repeat: repeat-x;
  6335. }
  6336. .carousel-control.right {
  6337. right: 0;
  6338. left: auto;
  6339. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6340. background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6341. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
  6342. background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  6343. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6344. background-repeat: repeat-x;
  6345. }
  6346. .carousel-control:hover,
  6347. .carousel-control:focus {
  6348. color: #fff;
  6349. text-decoration: none;
  6350. filter: alpha(opacity=90);
  6351. outline: 0;
  6352. opacity: .9;
  6353. }
  6354. .carousel-control .icon-prev,
  6355. .carousel-control .icon-next,
  6356. .carousel-control .glyphicon-chevron-left,
  6357. .carousel-control .glyphicon-chevron-right {
  6358. position: absolute;
  6359. top: 50%;
  6360. z-index: 5;
  6361. display: inline-block;
  6362. margin-top: -10px;
  6363. }
  6364. .carousel-control .icon-prev,
  6365. .carousel-control .glyphicon-chevron-left {
  6366. left: 50%;
  6367. margin-left: -10px;
  6368. }
  6369. .carousel-control .icon-next,
  6370. .carousel-control .glyphicon-chevron-right {
  6371. right: 50%;
  6372. margin-right: -10px;
  6373. }
  6374. .carousel-control .icon-prev,
  6375. .carousel-control .icon-next {
  6376. width: 20px;
  6377. height: 20px;
  6378. font-family: serif;
  6379. line-height: 1;
  6380. }
  6381. .carousel-control .icon-prev:before {
  6382. content: '\2039';
  6383. }
  6384. .carousel-control .icon-next:before {
  6385. content: '\203a';
  6386. }
  6387. .carousel-indicators {
  6388. position: absolute;
  6389. bottom: 10px;
  6390. left: 50%;
  6391. z-index: 15;
  6392. width: 60%;
  6393. padding-left: 0;
  6394. margin-left: -30%;
  6395. text-align: center;
  6396. list-style: none;
  6397. }
  6398. .carousel-indicators li {
  6399. display: inline-block;
  6400. width: 10px;
  6401. height: 10px;
  6402. margin: 1px;
  6403. text-indent: -999px;
  6404. cursor: pointer;
  6405. background-color: #000 \9;
  6406. background-color: rgba(0, 0, 0, 0);
  6407. border: 1px solid #fff;
  6408. border-radius: 10px;
  6409. }
  6410. .carousel-indicators .active {
  6411. width: 12px;
  6412. height: 12px;
  6413. margin: 0;
  6414. background-color: #fff;
  6415. }
  6416. .carousel-caption {
  6417. position: absolute;
  6418. right: 15%;
  6419. bottom: 20px;
  6420. left: 15%;
  6421. z-index: 10;
  6422. padding-top: 20px;
  6423. padding-bottom: 20px;
  6424. color: #fff;
  6425. text-align: center;
  6426. text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  6427. }
  6428. .carousel-caption .btn {
  6429. text-shadow: none;
  6430. }
  6431. @media screen and (min-width: 768px) {
  6432. .carousel-control .glyphicon-chevron-left,
  6433. .carousel-control .glyphicon-chevron-right,
  6434. .carousel-control .icon-prev,
  6435. .carousel-control .icon-next {
  6436. width: 30px;
  6437. height: 30px;
  6438. margin-top: -10px;
  6439. font-size: 30px;
  6440. }
  6441. .carousel-control .glyphicon-chevron-left,
  6442. .carousel-control .icon-prev {
  6443. margin-left: -10px;
  6444. }
  6445. .carousel-control .glyphicon-chevron-right,
  6446. .carousel-control .icon-next {
  6447. margin-right: -10px;
  6448. }
  6449. .carousel-caption {
  6450. right: 20%;
  6451. left: 20%;
  6452. padding-bottom: 30px;
  6453. }
  6454. .carousel-indicators {
  6455. bottom: 20px;
  6456. }
  6457. }
  6458. .clearfix:before,
  6459. .clearfix:after,
  6460. .dl-horizontal dd:before,
  6461. .dl-horizontal dd:after,
  6462. .container:before,
  6463. .container:after,
  6464. .container-fluid:before,
  6465. .container-fluid:after,
  6466. .row:before,
  6467. .row:after,
  6468. .form-horizontal .form-group:before,
  6469. .form-horizontal .form-group:after,
  6470. .btn-toolbar:before,
  6471. .btn-toolbar:after,
  6472. .btn-group-vertical > .btn-group:before,
  6473. .btn-group-vertical > .btn-group:after,
  6474. .nav:before,
  6475. .nav:after,
  6476. .navbar:before,
  6477. .navbar:after,
  6478. .navbar-header:before,
  6479. .navbar-header:after,
  6480. .navbar-collapse:before,
  6481. .navbar-collapse:after,
  6482. .pager:before,
  6483. .pager:after,
  6484. .panel-body:before,
  6485. .panel-body:after,
  6486. .modal-header:before,
  6487. .modal-header:after,
  6488. .modal-footer:before,
  6489. .modal-footer:after {
  6490. display: table;
  6491. content: " ";
  6492. }
  6493. .clearfix:after,
  6494. .dl-horizontal dd:after,
  6495. .container:after,
  6496. .container-fluid:after,
  6497. .row:after,
  6498. .form-horizontal .form-group:after,
  6499. .btn-toolbar:after,
  6500. .btn-group-vertical > .btn-group:after,
  6501. .nav:after,
  6502. .navbar:after,
  6503. .navbar-header:after,
  6504. .navbar-collapse:after,
  6505. .pager:after,
  6506. .panel-body:after,
  6507. .modal-header:after,
  6508. .modal-footer:after {
  6509. clear: both;
  6510. }
  6511. .center-block {
  6512. display: block;
  6513. margin-right: auto;
  6514. margin-left: auto;
  6515. }
  6516. .pull-right {
  6517. float: right !important;
  6518. }
  6519. .pull-left {
  6520. float: left !important;
  6521. }
  6522. .hide {
  6523. display: none !important;
  6524. }
  6525. .show {
  6526. display: block !important;
  6527. }
  6528. .invisible {
  6529. visibility: hidden;
  6530. }
  6531. .text-hide {
  6532. font: 0/0 a;
  6533. color: transparent;
  6534. text-shadow: none;
  6535. background-color: transparent;
  6536. border: 0;
  6537. }
  6538. .hidden {
  6539. display: none !important;
  6540. }
  6541. .affix {
  6542. position: fixed;
  6543. }
  6544. @-ms-viewport {
  6545. width: device-width;
  6546. }
  6547. .visible-xs,
  6548. .visible-sm,
  6549. .visible-md,
  6550. .visible-lg {
  6551. display: none !important;
  6552. }
  6553. .visible-xs-block,
  6554. .visible-xs-inline,
  6555. .visible-xs-inline-block,
  6556. .visible-sm-block,
  6557. .visible-sm-inline,
  6558. .visible-sm-inline-block,
  6559. .visible-md-block,
  6560. .visible-md-inline,
  6561. .visible-md-inline-block,
  6562. .visible-lg-block,
  6563. .visible-lg-inline,
  6564. .visible-lg-inline-block {
  6565. display: none !important;
  6566. }
  6567. @media (max-width: 767px) {
  6568. .visible-xs {
  6569. display: block !important;
  6570. }
  6571. table.visible-xs {
  6572. display: table !important;
  6573. }
  6574. tr.visible-xs {
  6575. display: table-row !important;
  6576. }
  6577. th.visible-xs,
  6578. td.visible-xs {
  6579. display: table-cell !important;
  6580. }
  6581. }
  6582. @media (max-width: 767px) {
  6583. .visible-xs-block {
  6584. display: block !important;
  6585. }
  6586. }
  6587. @media (max-width: 767px) {
  6588. .visible-xs-inline {
  6589. display: inline !important;
  6590. }
  6591. }
  6592. @media (max-width: 767px) {
  6593. .visible-xs-inline-block {
  6594. display: inline-block !important;
  6595. }
  6596. }
  6597. @media (min-width: 768px) and (max-width: 991px) {
  6598. .visible-sm {
  6599. display: block !important;
  6600. }
  6601. table.visible-sm {
  6602. display: table !important;
  6603. }
  6604. tr.visible-sm {
  6605. display: table-row !important;
  6606. }
  6607. th.visible-sm,
  6608. td.visible-sm {
  6609. display: table-cell !important;
  6610. }
  6611. }
  6612. @media (min-width: 768px) and (max-width: 991px) {
  6613. .visible-sm-block {
  6614. display: block !important;
  6615. }
  6616. }
  6617. @media (min-width: 768px) and (max-width: 991px) {
  6618. .visible-sm-inline {
  6619. display: inline !important;
  6620. }
  6621. }
  6622. @media (min-width: 768px) and (max-width: 991px) {
  6623. .visible-sm-inline-block {
  6624. display: inline-block !important;
  6625. }
  6626. }
  6627. @media (min-width: 992px) and (max-width: 1199px) {
  6628. .visible-md {
  6629. display: block !important;
  6630. }
  6631. table.visible-md {
  6632. display: table !important;
  6633. }
  6634. tr.visible-md {
  6635. display: table-row !important;
  6636. }
  6637. th.visible-md,
  6638. td.visible-md {
  6639. display: table-cell !important;
  6640. }
  6641. }
  6642. @media (min-width: 992px) and (max-width: 1199px) {
  6643. .visible-md-block {
  6644. display: block !important;
  6645. }
  6646. }
  6647. @media (min-width: 992px) and (max-width: 1199px) {
  6648. .visible-md-inline {
  6649. display: inline !important;
  6650. }
  6651. }
  6652. @media (min-width: 992px) and (max-width: 1199px) {
  6653. .visible-md-inline-block {
  6654. display: inline-block !important;
  6655. }
  6656. }
  6657. @media (min-width: 1200px) {
  6658. .visible-lg {
  6659. display: block !important;
  6660. }
  6661. table.visible-lg {
  6662. display: table !important;
  6663. }
  6664. tr.visible-lg {
  6665. display: table-row !important;
  6666. }
  6667. th.visible-lg,
  6668. td.visible-lg {
  6669. display: table-cell !important;
  6670. }
  6671. }
  6672. @media (min-width: 1200px) {
  6673. .visible-lg-block {
  6674. display: block !important;
  6675. }
  6676. }
  6677. @media (min-width: 1200px) {
  6678. .visible-lg-inline {
  6679. display: inline !important;
  6680. }
  6681. }
  6682. @media (min-width: 1200px) {
  6683. .visible-lg-inline-block {
  6684. display: inline-block !important;
  6685. }
  6686. }
  6687. @media (max-width: 767px) {
  6688. .hidden-xs {
  6689. display: none !important;
  6690. }
  6691. }
  6692. @media (min-width: 768px) and (max-width: 991px) {
  6693. .hidden-sm {
  6694. display: none !important;
  6695. }
  6696. }
  6697. @media (min-width: 992px) and (max-width: 1199px) {
  6698. .hidden-md {
  6699. display: none !important;
  6700. }
  6701. }
  6702. @media (min-width: 1200px) {
  6703. .hidden-lg {
  6704. display: none !important;
  6705. }
  6706. }
  6707. .visible-print {
  6708. display: none !important;
  6709. }
  6710. @media print {
  6711. .visible-print {
  6712. display: block !important;
  6713. }
  6714. table.visible-print {
  6715. display: table !important;
  6716. }
  6717. tr.visible-print {
  6718. display: table-row !important;
  6719. }
  6720. th.visible-print,
  6721. td.visible-print {
  6722. display: table-cell !important;
  6723. }
  6724. }
  6725. .visible-print-block {
  6726. display: none !important;
  6727. }
  6728. @media print {
  6729. .visible-print-block {
  6730. display: block !important;
  6731. }
  6732. }
  6733. .visible-print-inline {
  6734. display: none !important;
  6735. }
  6736. @media print {
  6737. .visible-print-inline {
  6738. display: inline !important;
  6739. }
  6740. }
  6741. .visible-print-inline-block {
  6742. display: none !important;
  6743. }
  6744. @media print {
  6745. .visible-print-inline-block {
  6746. display: inline-block !important;
  6747. }
  6748. }
  6749. @media print {
  6750. .hidden-print {
  6751. display: none !important;
  6752. }
  6753. }
  6754. /*# sourceMappingURL=bootstrap.css.map */