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