bootstrap.css 143 KB

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