bootstrap(1).css 143 KB

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