bootstrap.css 129 KB

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