bootstrap.css 132 KB

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