bootstrap_apply.css 149 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784
  1. @charset "UTF-8";
  2. /*!
  3. * Bootstrap v3.3.5 (http://getbootstrap.com)
  4. * Copyright 2011-2015 Twitter, Inc.
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  6. */
  7. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  8. html {
  9. font-family: sans-serif;
  10. -ms-text-size-adjust: 100%;
  11. -webkit-text-size-adjust: 100%; }
  12. body {
  13. margin: 0; }
  14. article,
  15. aside,
  16. details,
  17. figcaption,
  18. figure,
  19. footer,
  20. header,
  21. main,
  22. menu,
  23. nav,
  24. section,
  25. summary {
  26. display: block; }
  27. audio,
  28. canvas,
  29. progress,
  30. video {
  31. display: inline-block;
  32. vertical-align: baseline; }
  33. audio:not([controls]) {
  34. display: none;
  35. height: 0; }
  36. [hidden],
  37. template {
  38. display: none; }
  39. a {
  40. background-color: transparent; }
  41. a:active,
  42. a:hover {
  43. outline: 0; }
  44. abbr[title] {
  45. border-bottom: 1px dotted; }
  46. b,
  47. strong {
  48. font-weight: bold; }
  49. dfn {
  50. font-style: italic; }
  51. h1 {
  52. font-size: 2em;
  53. margin: 0.67em 0; }
  54. mark {
  55. background: #ff0;
  56. color: #000; }
  57. small {
  58. font-size: 80%; }
  59. sub,
  60. sup {
  61. font-size: 75%;
  62. line-height: 0;
  63. position: relative;
  64. vertical-align: baseline; }
  65. sup {
  66. top: -0.5em; }
  67. sub {
  68. bottom: -0.25em; }
  69. img {
  70. border: 0; }
  71. svg:not(:root) {
  72. overflow: hidden; }
  73. figure {
  74. margin: 1em 40px; }
  75. hr {
  76. box-sizing: content-box;
  77. height: 0; }
  78. pre {
  79. overflow: auto; }
  80. code,
  81. kbd,
  82. pre,
  83. samp {
  84. font-family: monospace, monospace;
  85. font-size: 1em; }
  86. button,
  87. input,
  88. optgroup,
  89. select,
  90. textarea {
  91. color: inherit;
  92. font: inherit;
  93. margin: 0; }
  94. button {
  95. overflow: visible; }
  96. button,
  97. select {
  98. text-transform: none; }
  99. button,
  100. html input[type="button"],
  101. input[type="reset"],
  102. input[type="submit"] {
  103. -webkit-appearance: button;
  104. cursor: pointer; }
  105. button[disabled],
  106. html input[disabled] {
  107. cursor: default; }
  108. button::-moz-focus-inner,
  109. input::-moz-focus-inner {
  110. border: 0;
  111. padding: 0; }
  112. input {
  113. line-height: normal; }
  114. input[type="checkbox"],
  115. input[type="radio"] {
  116. box-sizing: border-box;
  117. padding: 0; }
  118. input[type="number"]::-webkit-inner-spin-button,
  119. input[type="number"]::-webkit-outer-spin-button {
  120. height: auto; }
  121. input[type="search"] {
  122. -webkit-appearance: textfield;
  123. box-sizing: content-box; }
  124. input[type="search"]::-webkit-search-cancel-button,
  125. input[type="search"]::-webkit-search-decoration {
  126. -webkit-appearance: none; }
  127. fieldset {
  128. border: 1px solid #c0c0c0;
  129. margin: 0 2px;
  130. padding: 0.35em 0.625em 0.75em; }
  131. legend {
  132. border: 0;
  133. padding: 0; }
  134. textarea {
  135. overflow: auto; }
  136. optgroup {
  137. font-weight: bold; }
  138. table {
  139. border-collapse: collapse;
  140. border-spacing: 0; }
  141. td,
  142. th {
  143. padding: 0; }
  144. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  145. @media print {
  146. *,
  147. *:before,
  148. *:after {
  149. background: transparent !important;
  150. color: #000 !important;
  151. box-shadow: none !important;
  152. text-shadow: none !important; }
  153. a,
  154. a:visited {
  155. text-decoration: underline; }
  156. a[href]:after {
  157. content: " (" attr(href) ")"; }
  158. abbr[title]:after {
  159. content: " (" attr(title) ")"; }
  160. a[href^="#"]:after,
  161. a[href^="javascript:"]:after {
  162. content: ""; }
  163. pre,
  164. blockquote {
  165. border: 1px solid #999;
  166. page-break-inside: avoid; }
  167. thead {
  168. display: table-header-group; }
  169. tr,
  170. img {
  171. page-break-inside: avoid; }
  172. img {
  173. max-width: 100% !important; }
  174. p,
  175. h2,
  176. h3 {
  177. orphans: 3;
  178. widows: 3; }
  179. h2,
  180. h3 {
  181. page-break-after: avoid; }
  182. .navbar {
  183. display: none; }
  184. .btn > .caret,
  185. .dropup > .btn > .caret {
  186. border-top-color: #000 !important; }
  187. .label {
  188. border: 1px solid #000; }
  189. .table {
  190. border-collapse: collapse !important; }
  191. .table td,
  192. .table th {
  193. background-color: #fff !important; }
  194. .table-bordered th,
  195. .table-bordered td {
  196. border: 1px solid #ddd !important; } }
  197. @font-face {
  198. font-family: 'Glyphicons Halflings';
  199. src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
  200. src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
  201. .glyphicon {
  202. position: relative;
  203. top: 1px;
  204. display: inline-block;
  205. font-family: 'Glyphicons Halflings';
  206. font-style: normal;
  207. font-weight: normal;
  208. line-height: 1;
  209. -webkit-font-smoothing: antialiased;
  210. -moz-osx-font-smoothing: grayscale; }
  211. .glyphicon-asterisk:before {
  212. content: "\2a"; }
  213. .glyphicon-plus:before {
  214. content: "\2b"; }
  215. .glyphicon-euro:before,
  216. .glyphicon-eur:before {
  217. content: "\20ac"; }
  218. .glyphicon-minus:before {
  219. content: "\2212"; }
  220. .glyphicon-cloud:before {
  221. content: "\2601"; }
  222. .glyphicon-envelope:before {
  223. content: "\2709"; }
  224. .glyphicon-pencil:before {
  225. content: "\270f"; }
  226. .glyphicon-glass:before {
  227. content: "\e001"; }
  228. .glyphicon-music:before {
  229. content: "\e002"; }
  230. .glyphicon-search:before {
  231. content: "\e003"; }
  232. .glyphicon-heart:before {
  233. content: "\e005"; }
  234. .glyphicon-star:before {
  235. content: "\e006"; }
  236. .glyphicon-star-empty:before {
  237. content: "\e007"; }
  238. .glyphicon-user:before {
  239. content: "\e008"; }
  240. .glyphicon-film:before {
  241. content: "\e009"; }
  242. .glyphicon-th-large:before {
  243. content: "\e010"; }
  244. .glyphicon-th:before {
  245. content: "\e011"; }
  246. .glyphicon-th-list:before {
  247. content: "\e012"; }
  248. .glyphicon-ok:before {
  249. content: "\e013"; }
  250. .glyphicon-remove:before {
  251. content: "\e014"; }
  252. .glyphicon-zoom-in:before {
  253. content: "\e015"; }
  254. .glyphicon-zoom-out:before {
  255. content: "\e016"; }
  256. .glyphicon-off:before {
  257. content: "\e017"; }
  258. .glyphicon-signal:before {
  259. content: "\e018"; }
  260. .glyphicon-cog:before {
  261. content: "\e019"; }
  262. .glyphicon-trash:before {
  263. content: "\e020"; }
  264. .glyphicon-home:before {
  265. content: "\e021"; }
  266. .glyphicon-file:before {
  267. content: "\e022"; }
  268. .glyphicon-time:before {
  269. content: "\e023"; }
  270. .glyphicon-road:before {
  271. content: "\e024"; }
  272. .glyphicon-download-alt:before {
  273. content: "\e025"; }
  274. .glyphicon-download:before {
  275. content: "\e026"; }
  276. .glyphicon-upload:before {
  277. content: "\e027"; }
  278. .glyphicon-inbox:before {
  279. content: "\e028"; }
  280. .glyphicon-play-circle:before {
  281. content: "\e029"; }
  282. .glyphicon-repeat:before {
  283. content: "\e030"; }
  284. .glyphicon-refresh:before {
  285. content: "\e031"; }
  286. .glyphicon-list-alt:before {
  287. content: "\e032"; }
  288. .glyphicon-lock:before {
  289. content: "\e033"; }
  290. .glyphicon-flag:before {
  291. content: "\e034"; }
  292. .glyphicon-headphones:before {
  293. content: "\e035"; }
  294. .glyphicon-volume-off:before {
  295. content: "\e036"; }
  296. .glyphicon-volume-down:before {
  297. content: "\e037"; }
  298. .glyphicon-volume-up:before {
  299. content: "\e038"; }
  300. .glyphicon-qrcode:before {
  301. content: "\e039"; }
  302. .glyphicon-barcode:before {
  303. content: "\e040"; }
  304. .glyphicon-tag:before {
  305. content: "\e041"; }
  306. .glyphicon-tags:before {
  307. content: "\e042"; }
  308. .glyphicon-book:before {
  309. content: "\e043"; }
  310. .glyphicon-bookmark:before {
  311. content: "\e044"; }
  312. .glyphicon-print:before {
  313. content: "\e045"; }
  314. .glyphicon-camera:before {
  315. content: "\e046"; }
  316. .glyphicon-font:before {
  317. content: "\e047"; }
  318. .glyphicon-bold:before {
  319. content: "\e048"; }
  320. .glyphicon-italic:before {
  321. content: "\e049"; }
  322. .glyphicon-text-height:before {
  323. content: "\e050"; }
  324. .glyphicon-text-width:before {
  325. content: "\e051"; }
  326. .glyphicon-align-left:before {
  327. content: "\e052"; }
  328. .glyphicon-align-center:before {
  329. content: "\e053"; }
  330. .glyphicon-align-right:before {
  331. content: "\e054"; }
  332. .glyphicon-align-justify:before {
  333. content: "\e055"; }
  334. .glyphicon-list:before {
  335. content: "\e056"; }
  336. .glyphicon-indent-left:before {
  337. content: "\e057"; }
  338. .glyphicon-indent-right:before {
  339. content: "\e058"; }
  340. .glyphicon-facetime-video:before {
  341. content: "\e059"; }
  342. .glyphicon-picture:before {
  343. content: "\e060"; }
  344. .glyphicon-map-marker:before {
  345. content: "\e062"; }
  346. .glyphicon-adjust:before {
  347. content: "\e063"; }
  348. .glyphicon-tint:before {
  349. content: "\e064"; }
  350. .glyphicon-edit:before {
  351. content: "\e065"; }
  352. .glyphicon-share:before {
  353. content: "\e066"; }
  354. .glyphicon-check:before {
  355. content: "\e067"; }
  356. .glyphicon-move:before {
  357. content: "\e068"; }
  358. .glyphicon-step-backward:before {
  359. content: "\e069"; }
  360. .glyphicon-fast-backward:before {
  361. content: "\e070"; }
  362. .glyphicon-backward:before {
  363. content: "\e071"; }
  364. .glyphicon-play:before {
  365. content: "\e072"; }
  366. .glyphicon-pause:before {
  367. content: "\e073"; }
  368. .glyphicon-stop:before {
  369. content: "\e074"; }
  370. .glyphicon-forward:before {
  371. content: "\e075"; }
  372. .glyphicon-fast-forward:before {
  373. content: "\e076"; }
  374. .glyphicon-step-forward:before {
  375. content: "\e077"; }
  376. .glyphicon-eject:before {
  377. content: "\e078"; }
  378. .glyphicon-chevron-left:before {
  379. content: "\e079"; }
  380. .glyphicon-chevron-right:before {
  381. content: "\e080"; }
  382. .glyphicon-plus-sign:before {
  383. content: "\e081"; }
  384. .glyphicon-minus-sign:before {
  385. content: "\e082"; }
  386. .glyphicon-remove-sign:before {
  387. content: "\e083"; }
  388. .glyphicon-ok-sign:before {
  389. content: "\e084"; }
  390. .glyphicon-question-sign:before {
  391. content: "\e085"; }
  392. .glyphicon-info-sign:before {
  393. content: "\e086"; }
  394. .glyphicon-screenshot:before {
  395. content: "\e087"; }
  396. .glyphicon-remove-circle:before {
  397. content: "\e088"; }
  398. .glyphicon-ok-circle:before {
  399. content: "\e089"; }
  400. .glyphicon-ban-circle:before {
  401. content: "\e090"; }
  402. .glyphicon-arrow-left:before {
  403. content: "\e091"; }
  404. .glyphicon-arrow-right:before {
  405. content: "\e092"; }
  406. .glyphicon-arrow-up:before {
  407. content: "\e093"; }
  408. .glyphicon-arrow-down:before {
  409. content: "\e094"; }
  410. .glyphicon-share-alt:before {
  411. content: "\e095"; }
  412. .glyphicon-resize-full:before {
  413. content: "\e096"; }
  414. .glyphicon-resize-small:before {
  415. content: "\e097"; }
  416. .glyphicon-exclamation-sign:before {
  417. content: "\e101"; }
  418. .glyphicon-gift:before {
  419. content: "\e102"; }
  420. .glyphicon-leaf:before {
  421. content: "\e103"; }
  422. .glyphicon-fire:before {
  423. content: "\e104"; }
  424. .glyphicon-eye-open:before {
  425. content: "\e105"; }
  426. .glyphicon-eye-close:before {
  427. content: "\e106"; }
  428. .glyphicon-warning-sign:before {
  429. content: "\e107"; }
  430. .glyphicon-plane:before {
  431. content: "\e108"; }
  432. .glyphicon-calendar:before {
  433. content: "\e109"; }
  434. .glyphicon-random:before {
  435. content: "\e110"; }
  436. .glyphicon-comment:before {
  437. content: "\e111"; }
  438. .glyphicon-magnet:before {
  439. content: "\e112"; }
  440. .glyphicon-chevron-up:before {
  441. content: "\e113"; }
  442. .glyphicon-chevron-down:before {
  443. content: "\e114"; }
  444. .glyphicon-retweet:before {
  445. content: "\e115"; }
  446. .glyphicon-shopping-cart:before {
  447. content: "\e116"; }
  448. .glyphicon-folder-close:before {
  449. content: "\e117"; }
  450. .glyphicon-folder-open:before {
  451. content: "\e118"; }
  452. .glyphicon-resize-vertical:before {
  453. content: "\e119"; }
  454. .glyphicon-resize-horizontal:before {
  455. content: "\e120"; }
  456. .glyphicon-hdd:before {
  457. content: "\e121"; }
  458. .glyphicon-bullhorn:before {
  459. content: "\e122"; }
  460. .glyphicon-bell:before {
  461. content: "\e123"; }
  462. .glyphicon-certificate:before {
  463. content: "\e124"; }
  464. .glyphicon-thumbs-up:before {
  465. content: "\e125"; }
  466. .glyphicon-thumbs-down:before {
  467. content: "\e126"; }
  468. .glyphicon-hand-right:before {
  469. content: "\e127"; }
  470. .glyphicon-hand-left:before {
  471. content: "\e128"; }
  472. .glyphicon-hand-up:before {
  473. content: "\e129"; }
  474. .glyphicon-hand-down:before {
  475. content: "\e130"; }
  476. .glyphicon-circle-arrow-right:before {
  477. content: "\e131"; }
  478. .glyphicon-circle-arrow-left:before {
  479. content: "\e132"; }
  480. .glyphicon-circle-arrow-up:before {
  481. content: "\e133"; }
  482. .glyphicon-circle-arrow-down:before {
  483. content: "\e134"; }
  484. .glyphicon-globe:before {
  485. content: "\e135"; }
  486. .glyphicon-wrench:before {
  487. content: "\e136"; }
  488. .glyphicon-tasks:before {
  489. content: "\e137"; }
  490. .glyphicon-filter:before {
  491. content: "\e138"; }
  492. .glyphicon-briefcase:before {
  493. content: "\e139"; }
  494. .glyphicon-fullscreen:before {
  495. content: "\e140"; }
  496. .glyphicon-dashboard:before {
  497. content: "\e141"; }
  498. .glyphicon-paperclip:before {
  499. content: "\e142"; }
  500. .glyphicon-heart-empty:before {
  501. content: "\e143"; }
  502. .glyphicon-link:before {
  503. content: "\e144"; }
  504. .glyphicon-phone:before {
  505. content: "\e145"; }
  506. .glyphicon-pushpin:before {
  507. content: "\e146"; }
  508. .glyphicon-usd:before {
  509. content: "\e148"; }
  510. .glyphicon-gbp:before {
  511. content: "\e149"; }
  512. .glyphicon-sort:before {
  513. content: "\e150"; }
  514. .glyphicon-sort-by-alphabet:before {
  515. content: "\e151"; }
  516. .glyphicon-sort-by-alphabet-alt:before {
  517. content: "\e152"; }
  518. .glyphicon-sort-by-order:before {
  519. content: "\e153"; }
  520. .glyphicon-sort-by-order-alt:before {
  521. content: "\e154"; }
  522. .glyphicon-sort-by-attributes:before {
  523. content: "\e155"; }
  524. .glyphicon-sort-by-attributes-alt:before {
  525. content: "\e156"; }
  526. .glyphicon-unchecked:before {
  527. content: "\e157"; }
  528. .glyphicon-expand:before {
  529. content: "\e158"; }
  530. .glyphicon-collapse-down:before {
  531. content: "\e159"; }
  532. .glyphicon-collapse-up:before {
  533. content: "\e160"; }
  534. .glyphicon-log-in:before {
  535. content: "\e161"; }
  536. .glyphicon-flash:before {
  537. content: "\e162"; }
  538. .glyphicon-log-out:before {
  539. content: "\e163"; }
  540. .glyphicon-new-window:before {
  541. content: "\e164"; }
  542. .glyphicon-record:before {
  543. content: "\e165"; }
  544. .glyphicon-save:before {
  545. content: "\e166"; }
  546. .glyphicon-open:before {
  547. content: "\e167"; }
  548. .glyphicon-saved:before {
  549. content: "\e168"; }
  550. .glyphicon-import:before {
  551. content: "\e169"; }
  552. .glyphicon-export:before {
  553. content: "\e170"; }
  554. .glyphicon-send:before {
  555. content: "\e171"; }
  556. .glyphicon-floppy-disk:before {
  557. content: "\e172"; }
  558. .glyphicon-floppy-saved:before {
  559. content: "\e173"; }
  560. .glyphicon-floppy-remove:before {
  561. content: "\e174"; }
  562. .glyphicon-floppy-save:before {
  563. content: "\e175"; }
  564. .glyphicon-floppy-open:before {
  565. content: "\e176"; }
  566. .glyphicon-credit-card:before {
  567. content: "\e177"; }
  568. .glyphicon-transfer:before {
  569. content: "\e178"; }
  570. .glyphicon-cutlery:before {
  571. content: "\e179"; }
  572. .glyphicon-header:before {
  573. content: "\e180"; }
  574. .glyphicon-compressed:before {
  575. content: "\e181"; }
  576. .glyphicon-earphone:before {
  577. content: "\e182"; }
  578. .glyphicon-phone-alt:before {
  579. content: "\e183"; }
  580. .glyphicon-tower:before {
  581. content: "\e184"; }
  582. .glyphicon-stats:before {
  583. content: "\e185"; }
  584. .glyphicon-sd-video:before {
  585. content: "\e186"; }
  586. .glyphicon-hd-video:before {
  587. content: "\e187"; }
  588. .glyphicon-subtitles:before {
  589. content: "\e188"; }
  590. .glyphicon-sound-stereo:before {
  591. content: "\e189"; }
  592. .glyphicon-sound-dolby:before {
  593. content: "\e190"; }
  594. .glyphicon-sound-5-1:before {
  595. content: "\e191"; }
  596. .glyphicon-sound-6-1:before {
  597. content: "\e192"; }
  598. .glyphicon-sound-7-1:before {
  599. content: "\e193"; }
  600. .glyphicon-copyright-mark:before {
  601. content: "\e194"; }
  602. .glyphicon-registration-mark:before {
  603. content: "\e195"; }
  604. .glyphicon-cloud-download:before {
  605. content: "\e197"; }
  606. .glyphicon-cloud-upload:before {
  607. content: "\e198"; }
  608. .glyphicon-tree-conifer:before {
  609. content: "\e199"; }
  610. .glyphicon-tree-deciduous:before {
  611. content: "\e200"; }
  612. .glyphicon-cd:before {
  613. content: "\e201"; }
  614. .glyphicon-save-file:before {
  615. content: "\e202"; }
  616. .glyphicon-open-file:before {
  617. content: "\e203"; }
  618. .glyphicon-level-up:before {
  619. content: "\e204"; }
  620. .glyphicon-copy:before {
  621. content: "\e205"; }
  622. .glyphicon-paste:before {
  623. content: "\e206"; }
  624. .glyphicon-alert:before {
  625. content: "\e209"; }
  626. .glyphicon-equalizer:before {
  627. content: "\e210"; }
  628. .glyphicon-king:before {
  629. content: "\e211"; }
  630. .glyphicon-queen:before {
  631. content: "\e212"; }
  632. .glyphicon-pawn:before {
  633. content: "\e213"; }
  634. .glyphicon-bishop:before {
  635. content: "\e214"; }
  636. .glyphicon-knight:before {
  637. content: "\e215"; }
  638. .glyphicon-baby-formula:before {
  639. content: "\e216"; }
  640. .glyphicon-tent:before {
  641. content: "\26fa"; }
  642. .glyphicon-blackboard:before {
  643. content: "\e218"; }
  644. .glyphicon-bed:before {
  645. content: "\e219"; }
  646. .glyphicon-apple:before {
  647. content: "\f8ff"; }
  648. .glyphicon-erase:before {
  649. content: "\e221"; }
  650. .glyphicon-hourglass:before {
  651. content: "\231b"; }
  652. .glyphicon-lamp:before {
  653. content: "\e223"; }
  654. .glyphicon-duplicate:before {
  655. content: "\e224"; }
  656. .glyphicon-piggy-bank:before {
  657. content: "\e225"; }
  658. .glyphicon-scissors:before {
  659. content: "\e226"; }
  660. .glyphicon-bitcoin:before {
  661. content: "\e227"; }
  662. .glyphicon-btc:before {
  663. content: "\e227"; }
  664. .glyphicon-xbt:before {
  665. content: "\e227"; }
  666. .glyphicon-yen:before {
  667. content: "\00a5"; }
  668. .glyphicon-jpy:before {
  669. content: "\00a5"; }
  670. .glyphicon-ruble:before {
  671. content: "\20bd"; }
  672. .glyphicon-rub:before {
  673. content: "\20bd"; }
  674. .glyphicon-scale:before {
  675. content: "\e230"; }
  676. .glyphicon-ice-lolly:before {
  677. content: "\e231"; }
  678. .glyphicon-ice-lolly-tasted:before {
  679. content: "\e232"; }
  680. .glyphicon-education:before {
  681. content: "\e233"; }
  682. .glyphicon-option-horizontal:before {
  683. content: "\e234"; }
  684. .glyphicon-option-vertical:before {
  685. content: "\e235"; }
  686. .glyphicon-menu-hamburger:before {
  687. content: "\e236"; }
  688. .glyphicon-modal-window:before {
  689. content: "\e237"; }
  690. .glyphicon-oil:before {
  691. content: "\e238"; }
  692. .glyphicon-grain:before {
  693. content: "\e239"; }
  694. .glyphicon-sunglasses:before {
  695. content: "\e240"; }
  696. .glyphicon-text-size:before {
  697. content: "\e241"; }
  698. .glyphicon-text-color:before {
  699. content: "\e242"; }
  700. .glyphicon-text-background:before {
  701. content: "\e243"; }
  702. .glyphicon-object-align-top:before {
  703. content: "\e244"; }
  704. .glyphicon-object-align-bottom:before {
  705. content: "\e245"; }
  706. .glyphicon-object-align-horizontal:before {
  707. content: "\e246"; }
  708. .glyphicon-object-align-left:before {
  709. content: "\e247"; }
  710. .glyphicon-object-align-vertical:before {
  711. content: "\e248"; }
  712. .glyphicon-object-align-right:before {
  713. content: "\e249"; }
  714. .glyphicon-triangle-right:before {
  715. content: "\e250"; }
  716. .glyphicon-triangle-left:before {
  717. content: "\e251"; }
  718. .glyphicon-triangle-bottom:before {
  719. content: "\e252"; }
  720. .glyphicon-triangle-top:before {
  721. content: "\e253"; }
  722. .glyphicon-console:before {
  723. content: "\e254"; }
  724. .glyphicon-superscript:before {
  725. content: "\e255"; }
  726. .glyphicon-subscript:before {
  727. content: "\e256"; }
  728. .glyphicon-menu-left:before {
  729. content: "\e257"; }
  730. .glyphicon-menu-right:before {
  731. content: "\e258"; }
  732. .glyphicon-menu-down:before {
  733. content: "\e259"; }
  734. .glyphicon-menu-up:before {
  735. content: "\e260"; }
  736. * {
  737. -webkit-box-sizing: border-box;
  738. -moz-box-sizing: border-box;
  739. box-sizing: border-box; }
  740. *:before,
  741. *:after {
  742. -webkit-box-sizing: border-box;
  743. -moz-box-sizing: border-box;
  744. box-sizing: border-box; }
  745. html {
  746. font-size: 10px;
  747. -webkit-tap-highlight-color: transparent; }
  748. body {
  749. font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "黑体", Arial, sans-serif;
  750. font-size: 14px;
  751. line-height: 1.42857;
  752. color: #333333;
  753. background-color: #fff; }
  754. input,
  755. button,
  756. select,
  757. textarea {
  758. font-family: inherit;
  759. font-size: inherit;
  760. line-height: inherit; }
  761. a {
  762. color: #337ab7;
  763. text-decoration: none; }
  764. a:hover, a:focus {
  765. color: #23527c;
  766. text-decoration: underline; }
  767. a:focus {
  768. outline: thin dotted;
  769. outline: 5px auto -webkit-focus-ring-color;
  770. outline-offset: -2px; }
  771. figure {
  772. margin: 0; }
  773. img {
  774. vertical-align: middle; }
  775. .img-responsive {
  776. display: block;
  777. max-width: 100%;
  778. height: auto; }
  779. .img-rounded {
  780. border-radius: 6px; }
  781. .img-thumbnail {
  782. padding: 4px;
  783. line-height: 1.42857;
  784. background-color: #fff;
  785. border: 1px solid #ddd;
  786. border-radius: 4px;
  787. -webkit-transition: all 0.2s ease-in-out;
  788. -o-transition: all 0.2s ease-in-out;
  789. transition: all 0.2s ease-in-out;
  790. display: inline-block;
  791. max-width: 100%;
  792. height: auto; }
  793. .img-circle {
  794. border-radius: 50%; }
  795. hr {
  796. margin-top: 20px;
  797. margin-bottom: 20px;
  798. border: 0;
  799. border-top: 1px solid #eeeeee; }
  800. .sr-only {
  801. position: absolute;
  802. width: 1px;
  803. height: 1px;
  804. margin: -1px;
  805. padding: 0;
  806. overflow: hidden;
  807. clip: rect(0, 0, 0, 0);
  808. border: 0; }
  809. .sr-only-focusable:active, .sr-only-focusable:focus {
  810. position: static;
  811. width: auto;
  812. height: auto;
  813. margin: 0;
  814. overflow: visible;
  815. clip: auto; }
  816. [role="button"] {
  817. cursor: pointer; }
  818. h1, h2, h3, h4, h5, h6,
  819. .h1, .h2, .h3, .h4, .h5, .h6 {
  820. font-family: inherit;
  821. font-weight: 500;
  822. line-height: 1.1;
  823. color: inherit; }
  824. h1 small,
  825. h1 .small, h2 small,
  826. h2 .small, h3 small,
  827. h3 .small, h4 small,
  828. h4 .small, h5 small,
  829. h5 .small, h6 small,
  830. h6 .small,
  831. .h1 small,
  832. .h1 .small, .h2 small,
  833. .h2 .small, .h3 small,
  834. .h3 .small, .h4 small,
  835. .h4 .small, .h5 small,
  836. .h5 .small, .h6 small,
  837. .h6 .small {
  838. font-weight: normal;
  839. line-height: 1;
  840. color: #777777; }
  841. h1, .h1,
  842. h2, .h2,
  843. h3, .h3 {
  844. margin-top: 20px;
  845. margin-bottom: 10px; }
  846. h1 small,
  847. h1 .small, .h1 small,
  848. .h1 .small,
  849. h2 small,
  850. h2 .small, .h2 small,
  851. .h2 .small,
  852. h3 small,
  853. h3 .small, .h3 small,
  854. .h3 .small {
  855. font-size: 65%; }
  856. h4, .h4,
  857. h5, .h5,
  858. h6, .h6 {
  859. margin-top: 10px;
  860. margin-bottom: 10px; }
  861. h4 small,
  862. h4 .small, .h4 small,
  863. .h4 .small,
  864. h5 small,
  865. h5 .small, .h5 small,
  866. .h5 .small,
  867. h6 small,
  868. h6 .small, .h6 small,
  869. .h6 .small {
  870. font-size: 75%; }
  871. h1, .h1 {
  872. font-size: 36px; }
  873. h2, .h2 {
  874. font-size: 30px; }
  875. h3, .h3 {
  876. font-size: 24px; }
  877. h4, .h4 {
  878. font-size: 18px; }
  879. h5, .h5 {
  880. font-size: 14px; }
  881. h6, .h6 {
  882. font-size: 12px; }
  883. p {
  884. margin: 0 0 10px; }
  885. .lead {
  886. margin-bottom: 20px;
  887. font-size: 16px;
  888. font-weight: 300;
  889. line-height: 1.4; }
  890. @media (min-width: 768px) {
  891. .lead {
  892. font-size: 21px; } }
  893. small,
  894. .small {
  895. font-size: 85%; }
  896. mark,
  897. .mark {
  898. background-color: #fcf8e3;
  899. padding: .2em; }
  900. .text-left {
  901. text-align: left; }
  902. .text-right {
  903. text-align: right; }
  904. .text-center {
  905. text-align: center; }
  906. .text-justify {
  907. text-align: justify; }
  908. .text-nowrap {
  909. white-space: nowrap; }
  910. .text-lowercase {
  911. text-transform: lowercase; }
  912. .text-uppercase, .initialism {
  913. text-transform: uppercase; }
  914. .text-capitalize {
  915. text-transform: capitalize; }
  916. .text-muted {
  917. color: #777777; }
  918. .text-primary {
  919. color: #337ab7; }
  920. a.text-primary:hover,
  921. a.text-primary:focus {
  922. color: #286090; }
  923. .text-success {
  924. color: #3c763d; }
  925. a.text-success:hover,
  926. a.text-success:focus {
  927. color: #2b542c; }
  928. .text-info {
  929. color: #31708f; }
  930. a.text-info:hover,
  931. a.text-info:focus {
  932. color: #245269; }
  933. .text-warning {
  934. color: #8a6d3b; }
  935. a.text-warning:hover,
  936. a.text-warning:focus {
  937. color: #66512c; }
  938. .text-danger {
  939. color: #a94442; }
  940. a.text-danger:hover,
  941. a.text-danger:focus {
  942. color: #843534; }
  943. .bg-primary {
  944. color: #fff; }
  945. .bg-primary {
  946. background-color: #337ab7; }
  947. a.bg-primary:hover,
  948. a.bg-primary:focus {
  949. background-color: #286090; }
  950. .bg-success {
  951. background-color: #dff0d8; }
  952. a.bg-success:hover,
  953. a.bg-success:focus {
  954. background-color: #c1e2b3; }
  955. .bg-info {
  956. background-color: #d9edf7; }
  957. a.bg-info:hover,
  958. a.bg-info:focus {
  959. background-color: #afd9ee; }
  960. .bg-warning {
  961. background-color: #fcf8e3; }
  962. a.bg-warning:hover,
  963. a.bg-warning:focus {
  964. background-color: #f7ecb5; }
  965. .bg-danger {
  966. background-color: #f2dede; }
  967. a.bg-danger:hover,
  968. a.bg-danger:focus {
  969. background-color: #e4b9b9; }
  970. .page-header {
  971. padding-bottom: 9px;
  972. margin: 40px 0 20px;
  973. border-bottom: 1px solid #eeeeee; }
  974. ul,
  975. ol {
  976. list-style: none;
  977. padding: 0;
  978. margin-top: 0;
  979. margin-bottom: 10px; }
  980. ul ul,
  981. ul ol,
  982. ol ul,
  983. ol ol {
  984. margin-bottom: 0; }
  985. .list-unstyled {
  986. padding-left: 0;
  987. list-style: none; }
  988. .list-inline {
  989. padding-left: 0;
  990. list-style: none;
  991. margin-left: -5px; }
  992. .list-inline > li {
  993. display: inline-block;
  994. padding-left: 5px;
  995. padding-right: 5px; }
  996. dl {
  997. margin-top: 0;
  998. margin-bottom: 20px; }
  999. dt,
  1000. dd {
  1001. line-height: 1.42857; }
  1002. dt {
  1003. font-weight: bold; }
  1004. dd {
  1005. margin-left: 0; }
  1006. .dl-horizontal dd:before, .dl-horizontal dd:after {
  1007. content: " ";
  1008. display: table; }
  1009. .dl-horizontal dd:after {
  1010. clear: both; }
  1011. @media (min-width: 768px) {
  1012. .dl-horizontal dt {
  1013. float: left;
  1014. clear: left;
  1015. text-align: center;
  1016. overflow: hidden;
  1017. text-overflow: ellipsis;
  1018. white-space: nowrap; }
  1019. .dl-horizontal dd {
  1020. text-align: center; } }
  1021. abbr[title],
  1022. abbr[data-original-title] {
  1023. cursor: help;
  1024. border-bottom: 1px dotted #777777; }
  1025. .initialism {
  1026. font-size: 90%; }
  1027. blockquote {
  1028. padding: 10px 20px;
  1029. margin: 0 0 20px;
  1030. font-size: 17.5px;
  1031. border-left: 5px solid #eeeeee; }
  1032. blockquote p:last-child,
  1033. blockquote ul:last-child,
  1034. blockquote ol:last-child {
  1035. margin-bottom: 0; }
  1036. blockquote footer,
  1037. blockquote small,
  1038. blockquote .small {
  1039. display: block;
  1040. font-size: 80%;
  1041. line-height: 1.42857;
  1042. color: #777777; }
  1043. blockquote footer:before,
  1044. blockquote small:before,
  1045. blockquote .small:before {
  1046. content: '\2014 \00A0'; }
  1047. .blockquote-reverse,
  1048. blockquote.pull-right {
  1049. padding-right: 15px;
  1050. padding-left: 0;
  1051. border-left: 0;
  1052. text-align: right; }
  1053. .blockquote-reverse footer:before,
  1054. .blockquote-reverse small:before,
  1055. .blockquote-reverse .small:before,
  1056. blockquote.pull-right footer:before,
  1057. blockquote.pull-right small:before,
  1058. blockquote.pull-right .small:before {
  1059. content: ''; }
  1060. .blockquote-reverse footer:after,
  1061. .blockquote-reverse small:after,
  1062. .blockquote-reverse .small:after,
  1063. blockquote.pull-right footer:after,
  1064. blockquote.pull-right small:after,
  1065. blockquote.pull-right .small:after {
  1066. content: '\00A0 \2014'; }
  1067. address {
  1068. margin-bottom: 20px;
  1069. font-style: normal;
  1070. line-height: 1.42857; }
  1071. code,
  1072. kbd,
  1073. pre,
  1074. samp {
  1075. font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }
  1076. code {
  1077. padding: 2px 4px;
  1078. font-size: 90%;
  1079. color: #c7254e;
  1080. background-color: #f9f2f4;
  1081. border-radius: 4px; }
  1082. kbd {
  1083. padding: 2px 4px;
  1084. font-size: 90%;
  1085. color: #fff;
  1086. background-color: #333;
  1087. border-radius: 3px;
  1088. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  1089. kbd kbd {
  1090. padding: 0;
  1091. font-size: 100%;
  1092. font-weight: bold;
  1093. box-shadow: none; }
  1094. pre {
  1095. display: block;
  1096. padding: 9.5px;
  1097. margin: 0 0 10px;
  1098. font-size: 13px;
  1099. line-height: 1.42857;
  1100. word-break: break-all;
  1101. word-wrap: break-word;
  1102. color: #333333;
  1103. background-color: #f5f5f5;
  1104. border: 1px solid #ccc;
  1105. border-radius: 4px; }
  1106. pre code {
  1107. padding: 0;
  1108. font-size: inherit;
  1109. color: inherit;
  1110. white-space: pre-wrap;
  1111. background-color: transparent;
  1112. border-radius: 0; }
  1113. .pre-scrollable {
  1114. max-height: 340px;
  1115. overflow-y: scroll; }
  1116. .container {
  1117. margin-right: 15px;
  1118. margin-left: 15px; }
  1119. .container:before, .container:after {
  1120. content: " ";
  1121. display: table; }
  1122. .container:after {
  1123. clear: both; }
  1124. @media (min-width: 768px) {
  1125. .container {
  1126. width: 750px; } }
  1127. @media (min-width: 992px) {
  1128. .container {
  1129. width: 970px; } }
  1130. @media (min-width: 1200px) {
  1131. .container {
  1132. width: 1170px; } }
  1133. .container-fluid {
  1134. margin-right: 15px;
  1135. margin-left: 15px; }
  1136. .container-fluid:before, .container-fluid:after {
  1137. content: " ";
  1138. display: table; }
  1139. .container-fluid:after {
  1140. clear: both; }
  1141. .row {
  1142. margin-left: -15px;
  1143. margin-right: -15px; }
  1144. .row:before, .row:after {
  1145. content: " ";
  1146. display: table; }
  1147. .row:after {
  1148. clear: both; }
  1149. .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 {
  1150. position: relative;
  1151. min-height: 1px; }
  1152. .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 {
  1153. float: left; }
  1154. .col-xs-1 {
  1155. width: 8.33333%; }
  1156. .col-xs-2 {
  1157. width: 16.66667%; }
  1158. .col-xs-3 {
  1159. width: 25%; }
  1160. .col-xs-4 {
  1161. width: 33.33333%; }
  1162. .col-xs-5 {
  1163. width: 41.66667%; }
  1164. .col-xs-6 {
  1165. width: 50%; }
  1166. .col-xs-7 {
  1167. width: 58.33333%; }
  1168. .col-xs-8 {
  1169. width: 66.66667%; }
  1170. .col-xs-9 {
  1171. width: 75%; }
  1172. .col-xs-10 {
  1173. width: 83.33333%; }
  1174. .col-xs-11 {
  1175. width: 91.66667%; }
  1176. .col-xs-12 {
  1177. width: 100%; }
  1178. .col-xs-pull-0 {
  1179. right: auto; }
  1180. .col-xs-pull-1 {
  1181. right: 8.33333%; }
  1182. .col-xs-pull-2 {
  1183. right: 16.66667%; }
  1184. .col-xs-pull-3 {
  1185. right: 25%; }
  1186. .col-xs-pull-4 {
  1187. right: 33.33333%; }
  1188. .col-xs-pull-5 {
  1189. right: 41.66667%; }
  1190. .col-xs-pull-6 {
  1191. right: 50%; }
  1192. .col-xs-pull-7 {
  1193. right: 58.33333%; }
  1194. .col-xs-pull-8 {
  1195. right: 66.66667%; }
  1196. .col-xs-pull-9 {
  1197. right: 75%; }
  1198. .col-xs-pull-10 {
  1199. right: 83.33333%; }
  1200. .col-xs-pull-11 {
  1201. right: 91.66667%; }
  1202. .col-xs-pull-12 {
  1203. right: 100%; }
  1204. .col-xs-push-0 {
  1205. left: auto; }
  1206. .col-xs-push-1 {
  1207. left: 8.33333%; }
  1208. .col-xs-push-2 {
  1209. left: 16.66667%; }
  1210. .col-xs-push-3 {
  1211. left: 25%; }
  1212. .col-xs-push-4 {
  1213. left: 33.33333%; }
  1214. .col-xs-push-5 {
  1215. left: 41.66667%; }
  1216. .col-xs-push-6 {
  1217. left: 50%; }
  1218. .col-xs-push-7 {
  1219. left: 58.33333%; }
  1220. .col-xs-push-8 {
  1221. left: 66.66667%; }
  1222. .col-xs-push-9 {
  1223. left: 75%; }
  1224. .col-xs-push-10 {
  1225. left: 83.33333%; }
  1226. .col-xs-push-11 {
  1227. left: 91.66667%; }
  1228. .col-xs-push-12 {
  1229. left: 100%; }
  1230. .col-xs-offset-0 {
  1231. margin-left: 0%; }
  1232. .col-xs-offset-1 {
  1233. margin-left: 8.33333%; }
  1234. .col-xs-offset-2 {
  1235. margin-left: 16.66667%; }
  1236. .col-xs-offset-3 {
  1237. margin-left: 25%; }
  1238. .col-xs-offset-4 {
  1239. margin-left: 33.33333%; }
  1240. .col-xs-offset-5 {
  1241. margin-left: 41.66667%; }
  1242. .col-xs-offset-6 {
  1243. margin-left: 50%; }
  1244. .col-xs-offset-7 {
  1245. margin-left: 58.33333%; }
  1246. .col-xs-offset-8 {
  1247. margin-left: 66.66667%; }
  1248. .col-xs-offset-9 {
  1249. margin-left: 75%; }
  1250. .col-xs-offset-10 {
  1251. margin-left: 83.33333%; }
  1252. .col-xs-offset-11 {
  1253. margin-left: 91.66667%; }
  1254. .col-xs-offset-12 {
  1255. margin-left: 100%; }
  1256. @media (min-width: 768px) {
  1257. .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 {
  1258. float: left; }
  1259. .col-sm-1 {
  1260. width: 8.33333%; }
  1261. .col-sm-2 {
  1262. width: 16.66667%; }
  1263. .col-sm-3 {
  1264. width: 25%; }
  1265. .col-sm-4 {
  1266. width: 33.33333%; }
  1267. .col-sm-5 {
  1268. width: 41.66667%; }
  1269. .col-sm-6 {
  1270. width: 50%; }
  1271. .col-sm-7 {
  1272. width: 58.33333%; }
  1273. .col-sm-8 {
  1274. width: 66.66667%; }
  1275. .col-sm-9 {
  1276. width: 75%; }
  1277. .col-sm-10 {
  1278. width: 83.33333%; }
  1279. .col-sm-11 {
  1280. width: 91.66667%; }
  1281. .col-sm-12 {
  1282. width: 100%; }
  1283. .col-sm-pull-0 {
  1284. right: auto; }
  1285. .col-sm-pull-1 {
  1286. right: 8.33333%; }
  1287. .col-sm-pull-2 {
  1288. right: 16.66667%; }
  1289. .col-sm-pull-3 {
  1290. right: 25%; }
  1291. .col-sm-pull-4 {
  1292. right: 33.33333%; }
  1293. .col-sm-pull-5 {
  1294. right: 41.66667%; }
  1295. .col-sm-pull-6 {
  1296. right: 50%; }
  1297. .col-sm-pull-7 {
  1298. right: 58.33333%; }
  1299. .col-sm-pull-8 {
  1300. right: 66.66667%; }
  1301. .col-sm-pull-9 {
  1302. right: 75%; }
  1303. .col-sm-pull-10 {
  1304. right: 83.33333%; }
  1305. .col-sm-pull-11 {
  1306. right: 91.66667%; }
  1307. .col-sm-pull-12 {
  1308. right: 100%; }
  1309. .col-sm-push-0 {
  1310. left: auto; }
  1311. .col-sm-push-1 {
  1312. left: 8.33333%; }
  1313. .col-sm-push-2 {
  1314. left: 16.66667%; }
  1315. .col-sm-push-3 {
  1316. left: 25%; }
  1317. .col-sm-push-4 {
  1318. left: 33.33333%; }
  1319. .col-sm-push-5 {
  1320. left: 41.66667%; }
  1321. .col-sm-push-6 {
  1322. left: 50%; }
  1323. .col-sm-push-7 {
  1324. left: 58.33333%; }
  1325. .col-sm-push-8 {
  1326. left: 66.66667%; }
  1327. .col-sm-push-9 {
  1328. left: 75%; }
  1329. .col-sm-push-10 {
  1330. left: 83.33333%; }
  1331. .col-sm-push-11 {
  1332. left: 91.66667%; }
  1333. .col-sm-push-12 {
  1334. left: 100%; }
  1335. .col-sm-offset-0 {
  1336. margin-left: 0%; }
  1337. .col-sm-offset-1 {
  1338. margin-left: 8.33333%; }
  1339. .col-sm-offset-2 {
  1340. margin-left: 16.66667%; }
  1341. .col-sm-offset-3 {
  1342. margin-left: 25%; }
  1343. .col-sm-offset-4 {
  1344. margin-left: 33.33333%; }
  1345. .col-sm-offset-5 {
  1346. margin-left: 41.66667%; }
  1347. .col-sm-offset-6 {
  1348. margin-left: 50%; }
  1349. .col-sm-offset-7 {
  1350. margin-left: 58.33333%; }
  1351. .col-sm-offset-8 {
  1352. margin-left: 66.66667%; }
  1353. .col-sm-offset-9 {
  1354. margin-left: 75%; }
  1355. .col-sm-offset-10 {
  1356. margin-left: 83.33333%; }
  1357. .col-sm-offset-11 {
  1358. margin-left: 91.66667%; }
  1359. .col-sm-offset-12 {
  1360. margin-left: 100%; } }
  1361. @media (min-width: 992px) {
  1362. .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 {
  1363. float: left; }
  1364. .col-md-1 {
  1365. width: 8.33333%; }
  1366. .col-md-2 {
  1367. width: 16.66667%; }
  1368. .col-md-3 {
  1369. width: 25%; }
  1370. .col-md-4 {
  1371. width: 33.33333%; }
  1372. .col-md-5 {
  1373. width: 41.66667%; }
  1374. .col-md-6 {
  1375. width: 50%; }
  1376. .col-md-7 {
  1377. width: 58.33333%; }
  1378. .col-md-8 {
  1379. width: 66.66667%; }
  1380. .col-md-9 {
  1381. width: 75%; }
  1382. .col-md-10 {
  1383. width: 83.33333%; }
  1384. .col-md-11 {
  1385. width: 91.66667%; }
  1386. .col-md-12 {
  1387. width: 100%; }
  1388. .col-md-pull-0 {
  1389. right: auto; }
  1390. .col-md-pull-1 {
  1391. right: 8.33333%; }
  1392. .col-md-pull-2 {
  1393. right: 16.66667%; }
  1394. .col-md-pull-3 {
  1395. right: 25%; }
  1396. .col-md-pull-4 {
  1397. right: 33.33333%; }
  1398. .col-md-pull-5 {
  1399. right: 41.66667%; }
  1400. .col-md-pull-6 {
  1401. right: 50%; }
  1402. .col-md-pull-7 {
  1403. right: 58.33333%; }
  1404. .col-md-pull-8 {
  1405. right: 66.66667%; }
  1406. .col-md-pull-9 {
  1407. right: 75%; }
  1408. .col-md-pull-10 {
  1409. right: 83.33333%; }
  1410. .col-md-pull-11 {
  1411. right: 91.66667%; }
  1412. .col-md-pull-12 {
  1413. right: 100%; }
  1414. .col-md-push-0 {
  1415. left: auto; }
  1416. .col-md-push-1 {
  1417. left: 8.33333%; }
  1418. .col-md-push-2 {
  1419. left: 16.66667%; }
  1420. .col-md-push-3 {
  1421. left: 25%; }
  1422. .col-md-push-4 {
  1423. left: 33.33333%; }
  1424. .col-md-push-5 {
  1425. left: 41.66667%; }
  1426. .col-md-push-6 {
  1427. left: 50%; }
  1428. .col-md-push-7 {
  1429. left: 58.33333%; }
  1430. .col-md-push-8 {
  1431. left: 66.66667%; }
  1432. .col-md-push-9 {
  1433. left: 75%; }
  1434. .col-md-push-10 {
  1435. left: 83.33333%; }
  1436. .col-md-push-11 {
  1437. left: 91.66667%; }
  1438. .col-md-push-12 {
  1439. left: 100%; }
  1440. .col-md-offset-0 {
  1441. margin-left: 0%; }
  1442. .col-md-offset-1 {
  1443. margin-left: 8.33333%; }
  1444. .col-md-offset-2 {
  1445. margin-left: 16.66667%; }
  1446. .col-md-offset-3 {
  1447. margin-left: 25%; }
  1448. .col-md-offset-4 {
  1449. margin-left: 33.33333%; }
  1450. .col-md-offset-5 {
  1451. margin-left: 41.66667%; }
  1452. .col-md-offset-6 {
  1453. margin-left: 50%; }
  1454. .col-md-offset-7 {
  1455. margin-left: 58.33333%; }
  1456. .col-md-offset-8 {
  1457. margin-left: 66.66667%; }
  1458. .col-md-offset-9 {
  1459. margin-left: 75%; }
  1460. .col-md-offset-10 {
  1461. margin-left: 83.33333%; }
  1462. .col-md-offset-11 {
  1463. margin-left: 91.66667%; }
  1464. .col-md-offset-12 {
  1465. margin-left: 100%; } }
  1466. @media (min-width: 1200px) {
  1467. .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 {
  1468. float: left; }
  1469. .col-lg-1 {
  1470. width: 8.33333%; }
  1471. .col-lg-2 {
  1472. width: 16.66667%; }
  1473. .col-lg-3 {
  1474. width: 25%; }
  1475. .col-lg-4 {
  1476. width: 33.33333%; }
  1477. .col-lg-5 {
  1478. width: 41.66667%; }
  1479. .col-lg-6 {
  1480. width: 50%; }
  1481. .col-lg-7 {
  1482. width: 58.33333%; }
  1483. .col-lg-8 {
  1484. width: 66.66667%; }
  1485. .col-lg-9 {
  1486. width: 75%; }
  1487. .col-lg-10 {
  1488. width: 83.33333%; }
  1489. .col-lg-11 {
  1490. width: 91.66667%; }
  1491. .col-lg-12 {
  1492. width: 100%; }
  1493. .col-lg-pull-0 {
  1494. right: auto; }
  1495. .col-lg-pull-1 {
  1496. right: 8.33333%; }
  1497. .col-lg-pull-2 {
  1498. right: 16.66667%; }
  1499. .col-lg-pull-3 {
  1500. right: 25%; }
  1501. .col-lg-pull-4 {
  1502. right: 33.33333%; }
  1503. .col-lg-pull-5 {
  1504. right: 41.66667%; }
  1505. .col-lg-pull-6 {
  1506. right: 50%; }
  1507. .col-lg-pull-7 {
  1508. right: 58.33333%; }
  1509. .col-lg-pull-8 {
  1510. right: 66.66667%; }
  1511. .col-lg-pull-9 {
  1512. right: 75%; }
  1513. .col-lg-pull-10 {
  1514. right: 83.33333%; }
  1515. .col-lg-pull-11 {
  1516. right: 91.66667%; }
  1517. .col-lg-pull-12 {
  1518. right: 100%; }
  1519. .col-lg-push-0 {
  1520. left: auto; }
  1521. .col-lg-push-1 {
  1522. left: 8.33333%; }
  1523. .col-lg-push-2 {
  1524. left: 16.66667%; }
  1525. .col-lg-push-3 {
  1526. left: 25%; }
  1527. .col-lg-push-4 {
  1528. left: 33.33333%; }
  1529. .col-lg-push-5 {
  1530. left: 41.66667%; }
  1531. .col-lg-push-6 {
  1532. left: 50%; }
  1533. .col-lg-push-7 {
  1534. left: 58.33333%; }
  1535. .col-lg-push-8 {
  1536. left: 66.66667%; }
  1537. .col-lg-push-9 {
  1538. left: 75%; }
  1539. .col-lg-push-10 {
  1540. left: 83.33333%; }
  1541. .col-lg-push-11 {
  1542. left: 91.66667%; }
  1543. .col-lg-push-12 {
  1544. left: 100%; }
  1545. .col-lg-offset-0 {
  1546. margin-left: 0%; }
  1547. .col-lg-offset-1 {
  1548. margin-left: 8.33333%; }
  1549. .col-lg-offset-2 {
  1550. margin-left: 16.66667%; }
  1551. .col-lg-offset-3 {
  1552. margin-left: 25%; }
  1553. .col-lg-offset-4 {
  1554. margin-left: 33.33333%; }
  1555. .col-lg-offset-5 {
  1556. margin-left: 41.66667%; }
  1557. .col-lg-offset-6 {
  1558. margin-left: 50%; }
  1559. .col-lg-offset-7 {
  1560. margin-left: 58.33333%; }
  1561. .col-lg-offset-8 {
  1562. margin-left: 66.66667%; }
  1563. .col-lg-offset-9 {
  1564. margin-left: 75%; }
  1565. .col-lg-offset-10 {
  1566. margin-left: 83.33333%; }
  1567. .col-lg-offset-11 {
  1568. margin-left: 91.66667%; }
  1569. .col-lg-offset-12 {
  1570. margin-left: 100%; } }
  1571. table {
  1572. background-color: transparent; }
  1573. caption {
  1574. padding-top: 8px;
  1575. padding-bottom: 8px;
  1576. color: #777777;
  1577. text-align: left; }
  1578. th {
  1579. text-align: left; }
  1580. .table {
  1581. width: 100%;
  1582. max-width: 100%;
  1583. margin-bottom: 20px; }
  1584. .table > thead > tr > th,
  1585. .table > thead > tr > td,
  1586. .table > tbody > tr > th,
  1587. .table > tbody > tr > td,
  1588. .table > tfoot > tr > th,
  1589. .table > tfoot > tr > td {
  1590. padding: 8px;
  1591. line-height: 1.42857;
  1592. vertical-align: top;
  1593. border-top: 1px solid #ddd; }
  1594. .table > thead > tr > th {
  1595. vertical-align: bottom;
  1596. border-bottom: 2px solid #ddd; }
  1597. .table > caption + thead > tr:first-child > th,
  1598. .table > caption + thead > tr:first-child > td,
  1599. .table > colgroup + thead > tr:first-child > th,
  1600. .table > colgroup + thead > tr:first-child > td,
  1601. .table > thead:first-child > tr:first-child > th,
  1602. .table > thead:first-child > tr:first-child > td {
  1603. border-top: 0; }
  1604. .table > tbody + tbody {
  1605. border-top: 2px solid #ddd; }
  1606. .table .table {
  1607. background-color: #fff; }
  1608. .table-condensed > thead > tr > th,
  1609. .table-condensed > thead > tr > td,
  1610. .table-condensed > tbody > tr > th,
  1611. .table-condensed > tbody > tr > td,
  1612. .table-condensed > tfoot > tr > th,
  1613. .table-condensed > tfoot > tr > td {
  1614. padding: 5px; }
  1615. .table-bordered {
  1616. border: 1px solid #ddd; }
  1617. .table-bordered > thead > tr > th,
  1618. .table-bordered > thead > tr > td,
  1619. .table-bordered > tbody > tr > th,
  1620. .table-bordered > tbody > tr > td,
  1621. .table-bordered > tfoot > tr > th,
  1622. .table-bordered > tfoot > tr > td {
  1623. border: 1px solid #ddd; }
  1624. .table-bordered > thead > tr > th,
  1625. .table-bordered > thead > tr > td {
  1626. border-bottom-width: 2px; }
  1627. .table-striped > tbody > tr:nth-of-type(odd) {
  1628. background-color: #f9f9f9; }
  1629. .table-hover > tbody > tr:hover {
  1630. background-color: #f5f5f5; }
  1631. table col[class*="col-"] {
  1632. position: static;
  1633. float: none;
  1634. display: table-column; }
  1635. table td[class*="col-"],
  1636. table th[class*="col-"] {
  1637. position: static;
  1638. float: none;
  1639. display: table-cell; }
  1640. .table > thead > tr > td.active,
  1641. .table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
  1642. .table > tbody > tr > td.active,
  1643. .table > tbody > tr > th.active,
  1644. .table > tbody > tr.active > td,
  1645. .table > tbody > tr.active > th,
  1646. .table > tfoot > tr > td.active,
  1647. .table > tfoot > tr > th.active,
  1648. .table > tfoot > tr.active > td,
  1649. .table > tfoot > tr.active > th {
  1650. background-color: #f5f5f5; }
  1651. .table-hover > tbody > tr > td.active:hover,
  1652. .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  1653. background-color: #e8e8e8; }
  1654. .table > thead > tr > td.success,
  1655. .table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
  1656. .table > tbody > tr > td.success,
  1657. .table > tbody > tr > th.success,
  1658. .table > tbody > tr.success > td,
  1659. .table > tbody > tr.success > th,
  1660. .table > tfoot > tr > td.success,
  1661. .table > tfoot > tr > th.success,
  1662. .table > tfoot > tr.success > td,
  1663. .table > tfoot > tr.success > th {
  1664. background-color: #dff0d8; }
  1665. .table-hover > tbody > tr > td.success:hover,
  1666. .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  1667. background-color: #d0e9c6; }
  1668. .table > thead > tr > td.info,
  1669. .table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
  1670. .table > tbody > tr > td.info,
  1671. .table > tbody > tr > th.info,
  1672. .table > tbody > tr.info > td,
  1673. .table > tbody > tr.info > th,
  1674. .table > tfoot > tr > td.info,
  1675. .table > tfoot > tr > th.info,
  1676. .table > tfoot > tr.info > td,
  1677. .table > tfoot > tr.info > th {
  1678. background-color: #d9edf7; }
  1679. .table-hover > tbody > tr > td.info:hover,
  1680. .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  1681. background-color: #c4e3f3; }
  1682. .table > thead > tr > td.warning,
  1683. .table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
  1684. .table > tbody > tr > td.warning,
  1685. .table > tbody > tr > th.warning,
  1686. .table > tbody > tr.warning > td,
  1687. .table > tbody > tr.warning > th,
  1688. .table > tfoot > tr > td.warning,
  1689. .table > tfoot > tr > th.warning,
  1690. .table > tfoot > tr.warning > td,
  1691. .table > tfoot > tr.warning > th {
  1692. background-color: #fcf8e3; }
  1693. .table-hover > tbody > tr > td.warning:hover,
  1694. .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  1695. background-color: #faf2cc; }
  1696. .table > thead > tr > td.danger,
  1697. .table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
  1698. .table > tbody > tr > td.danger,
  1699. .table > tbody > tr > th.danger,
  1700. .table > tbody > tr.danger > td,
  1701. .table > tbody > tr.danger > th,
  1702. .table > tfoot > tr > td.danger,
  1703. .table > tfoot > tr > th.danger,
  1704. .table > tfoot > tr.danger > td,
  1705. .table > tfoot > tr.danger > th {
  1706. background-color: #f2dede; }
  1707. .table-hover > tbody > tr > td.danger:hover,
  1708. .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  1709. background-color: #ebcccc; }
  1710. .table-responsive {
  1711. overflow-x: auto;
  1712. min-height: 0.01%; }
  1713. @media screen and (max-width: 767px) {
  1714. .table-responsive {
  1715. width: 100%;
  1716. margin-bottom: 15px;
  1717. overflow-y: hidden;
  1718. -ms-overflow-style: -ms-autohiding-scrollbar;
  1719. border: 1px solid #ddd; }
  1720. .table-responsive > .table {
  1721. margin-bottom: 0; }
  1722. .table-responsive > .table > thead > tr > th,
  1723. .table-responsive > .table > thead > tr > td,
  1724. .table-responsive > .table > tbody > tr > th,
  1725. .table-responsive > .table > tbody > tr > td,
  1726. .table-responsive > .table > tfoot > tr > th,
  1727. .table-responsive > .table > tfoot > tr > td {
  1728. white-space: nowrap; }
  1729. .table-responsive > .table-bordered {
  1730. border: 0; }
  1731. .table-responsive > .table-bordered > thead > tr > th:first-child,
  1732. .table-responsive > .table-bordered > thead > tr > td:first-child,
  1733. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  1734. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  1735. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  1736. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  1737. border-left: 0; }
  1738. .table-responsive > .table-bordered > thead > tr > th:last-child,
  1739. .table-responsive > .table-bordered > thead > tr > td:last-child,
  1740. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  1741. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  1742. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  1743. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  1744. border-right: 0; }
  1745. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  1746. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  1747. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  1748. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  1749. border-bottom: 0; } }
  1750. fieldset {
  1751. padding: 0;
  1752. margin: 0;
  1753. border: 0;
  1754. min-width: 0; }
  1755. legend {
  1756. display: block;
  1757. width: 100%;
  1758. padding: 0;
  1759. margin-bottom: 20px;
  1760. font-size: 21px;
  1761. line-height: inherit;
  1762. color: #333333;
  1763. border: 0;
  1764. border-bottom: 1px solid #e5e5e5; }
  1765. label {
  1766. display: inline-block;
  1767. max-width: 100%;
  1768. margin-bottom: 5px; }
  1769. input[type="search"] {
  1770. -webkit-box-sizing: border-box;
  1771. -moz-box-sizing: border-box;
  1772. box-sizing: border-box; }
  1773. input[type="radio"],
  1774. input[type="checkbox"] {
  1775. margin: 4px 0 0;
  1776. margin-top: 1px \9;
  1777. line-height: normal; }
  1778. input[type="file"] {
  1779. display: block; }
  1780. input[type="range"] {
  1781. display: block;
  1782. width: 100%; }
  1783. select[multiple],
  1784. select[size] {
  1785. height: auto; }
  1786. input[type="file"]:focus,
  1787. input[type="radio"]:focus,
  1788. input[type="checkbox"]:focus {
  1789. outline: thin dotted;
  1790. outline: 5px auto -webkit-focus-ring-color;
  1791. outline-offset: -2px; }
  1792. output {
  1793. display: block;
  1794. padding-top: 7px;
  1795. font-size: 14px;
  1796. line-height: 1.42857;
  1797. color: #555555; }
  1798. .form-control {
  1799. display: block;
  1800. width: 100%;
  1801. height: 34px;
  1802. padding: 6px 12px;
  1803. font-size: 14px;
  1804. line-height: 1.42857;
  1805. color: #555555;
  1806. background-color: #fff;
  1807. background-image: none;
  1808. border: 1px solid #ccc;
  1809. border-radius: 4px;
  1810. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1811. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1812. -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  1813. -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  1814. transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  1815. .form-control:focus {
  1816. border-color: #66afe9;
  1817. outline: 0;
  1818. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  1819. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  1820. .form-control::-moz-placeholder {
  1821. color: #999;
  1822. opacity: 1; }
  1823. .form-control:-ms-input-placeholder {
  1824. color: #999; }
  1825. .form-control::-webkit-input-placeholder {
  1826. color: #999; }
  1827. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  1828. background-color: #eeeeee;
  1829. opacity: 1; }
  1830. .form-control[disabled], fieldset[disabled] .form-control {
  1831. cursor: not-allowed; }
  1832. textarea.form-control {
  1833. height: auto; }
  1834. input[type="search"] {
  1835. -webkit-appearance: none; }
  1836. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  1837. input[type="date"].form-control,
  1838. input[type="time"].form-control,
  1839. input[type="datetime-local"].form-control,
  1840. input[type="month"].form-control {
  1841. line-height: 34px; }
  1842. input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  1843. .input-group-sm > input[type="date"].input-group-addon,
  1844. .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"],
  1845. input[type="time"].input-sm,
  1846. .input-group-sm > input[type="time"].form-control,
  1847. .input-group-sm > input[type="time"].input-group-addon,
  1848. .input-group-sm > .input-group-btn > input[type="time"].btn, .input-group-sm
  1849. input[type="time"],
  1850. input[type="datetime-local"].input-sm,
  1851. .input-group-sm > input[type="datetime-local"].form-control,
  1852. .input-group-sm > input[type="datetime-local"].input-group-addon,
  1853. .input-group-sm > .input-group-btn > input[type="datetime-local"].btn, .input-group-sm
  1854. input[type="datetime-local"],
  1855. input[type="month"].input-sm,
  1856. .input-group-sm > input[type="month"].form-control,
  1857. .input-group-sm > input[type="month"].input-group-addon,
  1858. .input-group-sm > .input-group-btn > input[type="month"].btn, .input-group-sm
  1859. input[type="month"] {
  1860. line-height: 30px; }
  1861. input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  1862. .input-group-lg > input[type="date"].input-group-addon,
  1863. .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"],
  1864. input[type="time"].input-lg,
  1865. .input-group-lg > input[type="time"].form-control,
  1866. .input-group-lg > input[type="time"].input-group-addon,
  1867. .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg
  1868. input[type="time"],
  1869. input[type="datetime-local"].input-lg,
  1870. .input-group-lg > input[type="datetime-local"].form-control,
  1871. .input-group-lg > input[type="datetime-local"].input-group-addon,
  1872. .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg
  1873. input[type="datetime-local"],
  1874. input[type="month"].input-lg,
  1875. .input-group-lg > input[type="month"].form-control,
  1876. .input-group-lg > input[type="month"].input-group-addon,
  1877. .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg
  1878. input[type="month"] {
  1879. line-height: 46px; } }
  1880. .form-group {
  1881. margin-bottom: 15px; }
  1882. .radio,
  1883. .checkbox {
  1884. position: relative;
  1885. display: block;
  1886. margin-top: 10px;
  1887. margin-bottom: 10px; }
  1888. .radio label,
  1889. .checkbox label {
  1890. min-height: 20px;
  1891. padding-left: 20px;
  1892. margin-bottom: 0;
  1893. font-weight: normal;
  1894. cursor: pointer; }
  1895. .radio input[type="radio"],
  1896. .radio-inline input[type="radio"],
  1897. .checkbox input[type="checkbox"],
  1898. .checkbox-inline input[type="checkbox"] {
  1899. position: absolute;
  1900. margin-left: -20px;
  1901. margin-top: 4px \9; }
  1902. .radio + .radio,
  1903. .checkbox + .checkbox {
  1904. margin-top: -5px; }
  1905. .radio-inline,
  1906. .checkbox-inline {
  1907. position: relative;
  1908. display: inline-block;
  1909. padding-left: 20px;
  1910. margin-bottom: 0;
  1911. vertical-align: middle;
  1912. font-weight: normal;
  1913. cursor: pointer; }
  1914. .radio-inline + .radio-inline,
  1915. .checkbox-inline + .checkbox-inline {
  1916. margin-top: 0;
  1917. margin-left: 10px; }
  1918. input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
  1919. input[type="checkbox"][disabled],
  1920. input[type="checkbox"].disabled, fieldset[disabled]
  1921. input[type="checkbox"] {
  1922. cursor: not-allowed; }
  1923. .radio-inline.disabled, fieldset[disabled] .radio-inline,
  1924. .checkbox-inline.disabled, fieldset[disabled]
  1925. .checkbox-inline {
  1926. cursor: not-allowed; }
  1927. .radio.disabled label, fieldset[disabled] .radio label,
  1928. .checkbox.disabled label, fieldset[disabled]
  1929. .checkbox label {
  1930. cursor: not-allowed; }
  1931. .form-control-static {
  1932. padding-top: 7px;
  1933. padding-bottom: 7px;
  1934. margin-bottom: 0;
  1935. min-height: 34px; }
  1936. .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
  1937. .input-group-lg > .form-control-static.input-group-addon,
  1938. .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
  1939. .input-group-sm > .form-control-static.input-group-addon,
  1940. .input-group-sm > .input-group-btn > .form-control-static.btn {
  1941. padding-left: 0;
  1942. padding-right: 0; }
  1943. .input-sm, .input-group-sm > .form-control,
  1944. .input-group-sm > .input-group-addon,
  1945. .input-group-sm > .input-group-btn > .btn {
  1946. height: 30px;
  1947. padding: 5px 10px;
  1948. font-size: 12px;
  1949. line-height: 1.5;
  1950. border-radius: 3px; }
  1951. select.input-sm, .input-group-sm > select.form-control,
  1952. .input-group-sm > select.input-group-addon,
  1953. .input-group-sm > .input-group-btn > select.btn {
  1954. height: 30px;
  1955. line-height: 30px; }
  1956. textarea.input-sm, .input-group-sm > textarea.form-control,
  1957. .input-group-sm > textarea.input-group-addon,
  1958. .input-group-sm > .input-group-btn > textarea.btn,
  1959. select[multiple].input-sm,
  1960. .input-group-sm > select[multiple].form-control,
  1961. .input-group-sm > select[multiple].input-group-addon,
  1962. .input-group-sm > .input-group-btn > select[multiple].btn {
  1963. height: auto; }
  1964. .form-group-sm .form-control {
  1965. height: 30px;
  1966. padding: 5px 10px;
  1967. font-size: 12px;
  1968. line-height: 1.5;
  1969. border-radius: 3px; }
  1970. .form-group-sm select.form-control {
  1971. height: 30px;
  1972. line-height: 30px; }
  1973. .form-group-sm textarea.form-control,
  1974. .form-group-sm select[multiple].form-control {
  1975. height: auto; }
  1976. .form-group-sm .form-control-static {
  1977. height: 30px;
  1978. min-height: 32px;
  1979. padding: 6px 10px;
  1980. font-size: 12px;
  1981. line-height: 1.5; }
  1982. .input-lg, .input-group-lg > .form-control,
  1983. .input-group-lg > .input-group-addon,
  1984. .input-group-lg > .input-group-btn > .btn {
  1985. height: 46px;
  1986. padding: 10px 16px;
  1987. font-size: 18px;
  1988. line-height: 1.33333;
  1989. border-radius: 6px; }
  1990. select.input-lg, .input-group-lg > select.form-control,
  1991. .input-group-lg > select.input-group-addon,
  1992. .input-group-lg > .input-group-btn > select.btn {
  1993. height: 46px;
  1994. line-height: 46px; }
  1995. textarea.input-lg, .input-group-lg > textarea.form-control,
  1996. .input-group-lg > textarea.input-group-addon,
  1997. .input-group-lg > .input-group-btn > textarea.btn,
  1998. select[multiple].input-lg,
  1999. .input-group-lg > select[multiple].form-control,
  2000. .input-group-lg > select[multiple].input-group-addon,
  2001. .input-group-lg > .input-group-btn > select[multiple].btn {
  2002. height: auto; }
  2003. .form-group-lg .form-control {
  2004. height: 46px;
  2005. padding: 10px 16px;
  2006. font-size: 18px;
  2007. line-height: 1.33333;
  2008. border-radius: 6px; }
  2009. .form-group-lg select.form-control {
  2010. height: 46px;
  2011. line-height: 46px; }
  2012. .form-group-lg textarea.form-control,
  2013. .form-group-lg select[multiple].form-control {
  2014. height: auto; }
  2015. .form-group-lg .form-control-static {
  2016. height: 46px;
  2017. min-height: 38px;
  2018. padding: 11px 16px;
  2019. font-size: 18px;
  2020. line-height: 1.33333; }
  2021. .has-feedback {
  2022. position: relative; }
  2023. .has-feedback .form-control {
  2024. padding-right: 42.5px; }
  2025. .form-control-feedback {
  2026. position: absolute;
  2027. top: 0;
  2028. right: 0;
  2029. z-index: 2;
  2030. display: block;
  2031. width: 34px;
  2032. height: 34px;
  2033. line-height: 34px;
  2034. text-align: center;
  2035. pointer-events: none; }
  2036. .input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
  2037. .input-group-lg > .input-group-addon + .form-control-feedback,
  2038. .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
  2039. .input-group-lg + .form-control-feedback,
  2040. .form-group-lg .form-control + .form-control-feedback {
  2041. width: 46px;
  2042. height: 46px;
  2043. line-height: 46px; }
  2044. .input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
  2045. .input-group-sm > .input-group-addon + .form-control-feedback,
  2046. .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
  2047. .input-group-sm + .form-control-feedback,
  2048. .form-group-sm .form-control + .form-control-feedback {
  2049. width: 30px;
  2050. height: 30px;
  2051. line-height: 30px; }
  2052. .has-success .help-block,
  2053. .has-success .control-label,
  2054. .has-success .radio,
  2055. .has-success .checkbox,
  2056. .has-success .radio-inline,
  2057. .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  2058. color: #3c763d; }
  2059. .has-success .form-control {
  2060. border-color: #3c763d;
  2061. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2062. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  2063. .has-success .form-control:focus {
  2064. border-color: #2b542c;
  2065. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2066. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
  2067. .has-success .input-group-addon {
  2068. color: #3c763d;
  2069. border-color: #3c763d;
  2070. background-color: #dff0d8; }
  2071. .has-success .form-control-feedback {
  2072. color: #3c763d; }
  2073. .has-warning .help-block,
  2074. .has-warning .control-label,
  2075. .has-warning .radio,
  2076. .has-warning .checkbox,
  2077. .has-warning .radio-inline,
  2078. .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  2079. color: #8a6d3b; }
  2080. .has-warning .form-control {
  2081. border-color: #8a6d3b;
  2082. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2083. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  2084. .has-warning .form-control:focus {
  2085. border-color: #66512c;
  2086. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2087. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
  2088. .has-warning .input-group-addon {
  2089. color: #8a6d3b;
  2090. border-color: #8a6d3b;
  2091. background-color: #fcf8e3; }
  2092. .has-warning .form-control-feedback {
  2093. color: #8a6d3b; }
  2094. .has-error .help-block,
  2095. .has-error .control-label,
  2096. .has-error .radio,
  2097. .has-error .checkbox,
  2098. .has-error .radio-inline,
  2099. .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  2100. color: #a94442; }
  2101. .has-error .form-control {
  2102. border-color: #a94442;
  2103. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2104. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  2105. .has-error .form-control:focus {
  2106. border-color: #843534;
  2107. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2108. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
  2109. .has-error .input-group-addon {
  2110. color: #a94442;
  2111. border-color: #a94442;
  2112. background-color: #f2dede; }
  2113. .has-error .form-control-feedback {
  2114. color: #a94442; }
  2115. .has-feedback label ~ .form-control-feedback {
  2116. top: 25px; }
  2117. .has-feedback label.sr-only ~ .form-control-feedback {
  2118. top: 0; }
  2119. .help-block {
  2120. display: block;
  2121. margin-top: 5px;
  2122. margin-bottom: 10px;
  2123. color: #737373; }
  2124. @media (min-width: 768px) {
  2125. .form-inline .form-group {
  2126. display: inline-block;
  2127. margin-bottom: 0;
  2128. vertical-align: middle; }
  2129. .form-inline .form-control {
  2130. display: inline-block;
  2131. width: auto;
  2132. vertical-align: middle; }
  2133. .form-inline .form-control-static {
  2134. display: inline-block; }
  2135. .form-inline .input-group {
  2136. display: inline-table;
  2137. vertical-align: middle; }
  2138. .form-inline .input-group .input-group-addon,
  2139. .form-inline .input-group .input-group-btn,
  2140. .form-inline .input-group .form-control {
  2141. width: auto; }
  2142. .form-inline .input-group > .form-control {
  2143. width: 100%; }
  2144. .form-inline .control-label {
  2145. margin-bottom: 0;
  2146. vertical-align: middle; }
  2147. .form-inline .radio,
  2148. .form-inline .checkbox {
  2149. display: inline-block;
  2150. margin-top: 0;
  2151. margin-bottom: 0;
  2152. vertical-align: middle; }
  2153. .form-inline .radio label,
  2154. .form-inline .checkbox label {
  2155. padding-left: 0; }
  2156. .form-inline .radio input[type="radio"],
  2157. .form-inline .checkbox input[type="checkbox"] {
  2158. position: relative;
  2159. margin-left: 0; }
  2160. .form-inline .has-feedback .form-control-feedback {
  2161. top: 0; } }
  2162. .form-horizontal .radio,
  2163. .form-horizontal .checkbox,
  2164. .form-horizontal .radio-inline,
  2165. .form-horizontal .checkbox-inline {
  2166. margin-top: 0;
  2167. margin-bottom: 0;
  2168. padding-top: 7px; }
  2169. .form-horizontal .radio,
  2170. .form-horizontal .checkbox {
  2171. min-height: 27px; }
  2172. .form-horizontal .form-group {
  2173. margin-left: -15px;
  2174. margin-right: -15px; }
  2175. .form-horizontal .form-group:before, .form-horizontal .form-group:after {
  2176. content: " ";
  2177. display: table; }
  2178. .form-horizontal .form-group:after {
  2179. clear: both; }
  2180. @media (min-width: 768px) {
  2181. .form-horizontal .control-label {
  2182. text-align: right;
  2183. margin-bottom: 0;
  2184. padding-top: 7px; } }
  2185. .form-horizontal .has-feedback .form-control-feedback {
  2186. right: 15px; }
  2187. @media (min-width: 768px) {
  2188. .form-horizontal .form-group-lg .control-label {
  2189. padding-top: 14.33333px;
  2190. font-size: 18px; } }
  2191. @media (min-width: 768px) {
  2192. .form-horizontal .form-group-sm .control-label {
  2193. padding-top: 6px;
  2194. font-size: 12px; } }
  2195. .btn {
  2196. display: inline-block;
  2197. margin-bottom: 0;
  2198. font-weight: normal;
  2199. text-align: center;
  2200. vertical-align: middle;
  2201. touch-action: manipulation;
  2202. cursor: pointer;
  2203. background-image: none;
  2204. border: 1px solid transparent;
  2205. white-space: nowrap;
  2206. padding: 6px 12px;
  2207. font-size: 14px;
  2208. line-height: 1.42857;
  2209. border-radius: 4px;
  2210. -webkit-user-select: none;
  2211. -moz-user-select: none;
  2212. -ms-user-select: none;
  2213. user-select: none; }
  2214. .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  2215. outline: thin dotted;
  2216. outline: 5px auto -webkit-focus-ring-color;
  2217. outline-offset: -2px; }
  2218. .btn:hover, .btn:focus, .btn.focus {
  2219. color: #333;
  2220. text-decoration: none; }
  2221. .btn:active, .btn.active {
  2222. outline: 0;
  2223. background-image: none;
  2224. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2225. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  2226. .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  2227. cursor: not-allowed;
  2228. opacity: 0.65;
  2229. filter: alpha(opacity=65);
  2230. -webkit-box-shadow: none;
  2231. box-shadow: none; }
  2232. a.btn.disabled, fieldset[disabled] a.btn {
  2233. pointer-events: none; }
  2234. .btn-default {
  2235. color: #333;
  2236. background-color: #fff;
  2237. border-color: #ccc; }
  2238. .btn-default:focus, .btn-default.focus {
  2239. color: #333;
  2240. background-color: #e6e6e6;
  2241. border-color: #8c8c8c; }
  2242. .btn-default:hover {
  2243. color: #333;
  2244. background-color: #e6e6e6;
  2245. border-color: #adadad; }
  2246. .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  2247. color: #333;
  2248. background-color: #e6e6e6;
  2249. border-color: #adadad; }
  2250. .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
  2251. color: #333;
  2252. background-color: #d4d4d4;
  2253. border-color: #8c8c8c; }
  2254. .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  2255. background-image: none; }
  2256. .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  2257. background-color: #fff;
  2258. border-color: #ccc; }
  2259. .btn-default .badge {
  2260. color: #fff;
  2261. background-color: #333; }
  2262. .btn-primary {
  2263. color: #fff;
  2264. background-color: #337ab7;
  2265. border-color: #2e6da4; }
  2266. .btn-primary:focus, .btn-primary.focus {
  2267. color: #fff;
  2268. background-color: #286090;
  2269. border-color: #122b40; }
  2270. .btn-primary:hover {
  2271. color: #fff;
  2272. background-color: #286090;
  2273. border-color: #204d74; }
  2274. .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  2275. color: #fff;
  2276. background-color: #286090;
  2277. border-color: #204d74; }
  2278. .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
  2279. color: #fff;
  2280. background-color: #204d74;
  2281. border-color: #122b40; }
  2282. .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  2283. background-image: none; }
  2284. .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  2285. background-color: #337ab7;
  2286. border-color: #2e6da4; }
  2287. .btn-primary .badge {
  2288. color: #337ab7;
  2289. background-color: #fff; }
  2290. .btn-success {
  2291. color: #fff;
  2292. background-color: #5cb85c;
  2293. border-color: #4cae4c; }
  2294. .btn-success:focus, .btn-success.focus {
  2295. color: #fff;
  2296. background-color: #449d44;
  2297. border-color: #255625; }
  2298. .btn-success:hover {
  2299. color: #fff;
  2300. background-color: #449d44;
  2301. border-color: #398439; }
  2302. .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  2303. color: #fff;
  2304. background-color: #449d44;
  2305. border-color: #398439; }
  2306. .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
  2307. color: #fff;
  2308. background-color: #398439;
  2309. border-color: #255625; }
  2310. .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  2311. background-image: none; }
  2312. .btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  2313. background-color: #5cb85c;
  2314. border-color: #4cae4c; }
  2315. .btn-success .badge {
  2316. color: #5cb85c;
  2317. background-color: #fff; }
  2318. .btn-info {
  2319. color: #fff;
  2320. background-color: #5bc0de;
  2321. border-color: #46b8da; }
  2322. .btn-info:focus, .btn-info.focus {
  2323. color: #fff;
  2324. background-color: #31b0d5;
  2325. border-color: #1b6d85; }
  2326. .btn-info:hover {
  2327. color: #fff;
  2328. background-color: #31b0d5;
  2329. border-color: #269abc; }
  2330. .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  2331. color: #fff;
  2332. background-color: #31b0d5;
  2333. border-color: #269abc; }
  2334. .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
  2335. color: #fff;
  2336. background-color: #269abc;
  2337. border-color: #1b6d85; }
  2338. .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  2339. background-image: none; }
  2340. .btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  2341. background-color: #5bc0de;
  2342. border-color: #46b8da; }
  2343. .btn-info .badge {
  2344. color: #5bc0de;
  2345. background-color: #fff; }
  2346. .btn-warning {
  2347. color: #fff;
  2348. background-color: #f0ad4e;
  2349. border-color: #eea236; }
  2350. .btn-warning:focus, .btn-warning.focus {
  2351. color: #fff;
  2352. background-color: #ec971f;
  2353. border-color: #985f0d; }
  2354. .btn-warning:hover {
  2355. color: #fff;
  2356. background-color: #ec971f;
  2357. border-color: #d58512; }
  2358. .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  2359. color: #fff;
  2360. background-color: #ec971f;
  2361. border-color: #d58512; }
  2362. .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
  2363. color: #fff;
  2364. background-color: #d58512;
  2365. border-color: #985f0d; }
  2366. .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  2367. background-image: none; }
  2368. .btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  2369. background-color: #f0ad4e;
  2370. border-color: #eea236; }
  2371. .btn-warning .badge {
  2372. color: #f0ad4e;
  2373. background-color: #fff; }
  2374. .btn-danger {
  2375. color: #fff;
  2376. background-color: #d9534f;
  2377. border-color: #d43f3a; }
  2378. .btn-danger:focus, .btn-danger.focus {
  2379. color: #fff;
  2380. background-color: #c9302c;
  2381. border-color: #761c19; }
  2382. .btn-danger:hover {
  2383. color: #fff;
  2384. background-color: #c9302c;
  2385. border-color: #ac2925; }
  2386. .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  2387. color: #fff;
  2388. background-color: #c9302c;
  2389. border-color: #ac2925; }
  2390. .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
  2391. color: #fff;
  2392. background-color: #ac2925;
  2393. border-color: #761c19; }
  2394. .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  2395. background-image: none; }
  2396. .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  2397. background-color: #d9534f;
  2398. border-color: #d43f3a; }
  2399. .btn-danger .badge {
  2400. color: #d9534f;
  2401. background-color: #fff; }
  2402. .btn-link {
  2403. color: #337ab7;
  2404. font-weight: normal;
  2405. border-radius: 0; }
  2406. .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  2407. background-color: transparent;
  2408. -webkit-box-shadow: none;
  2409. box-shadow: none; }
  2410. .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  2411. border-color: transparent; }
  2412. .btn-link:hover, .btn-link:focus {
  2413. color: #23527c;
  2414. text-decoration: underline;
  2415. background-color: transparent; }
  2416. .btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  2417. color: #777777;
  2418. text-decoration: none; }
  2419. .btn-lg, .btn-group-lg > .btn {
  2420. padding: 10px 16px;
  2421. font-size: 18px;
  2422. line-height: 1.33333;
  2423. border-radius: 6px; }
  2424. .btn-sm, .btn-group-sm > .btn {
  2425. padding: 5px 10px;
  2426. font-size: 12px;
  2427. line-height: 1.5;
  2428. border-radius: 3px; }
  2429. .btn-xs, .btn-group-xs > .btn {
  2430. padding: 1px 5px;
  2431. font-size: 12px;
  2432. line-height: 1.5;
  2433. border-radius: 3px; }
  2434. .btn-block {
  2435. display: block;
  2436. width: 100%; }
  2437. .btn-block + .btn-block {
  2438. margin-top: 5px; }
  2439. input[type="submit"].btn-block,
  2440. input[type="reset"].btn-block,
  2441. input[type="button"].btn-block {
  2442. width: 100%; }
  2443. .fade {
  2444. opacity: 0;
  2445. -webkit-transition: opacity 0.15s linear;
  2446. -o-transition: opacity 0.15s linear;
  2447. transition: opacity 0.15s linear; }
  2448. .fade.in {
  2449. opacity: 1; }
  2450. .collapse {
  2451. display: none; }
  2452. .collapse.in {
  2453. display: block; }
  2454. tr.collapse.in {
  2455. display: table-row; }
  2456. tbody.collapse.in {
  2457. display: table-row-group; }
  2458. .collapsing {
  2459. position: relative;
  2460. height: 0;
  2461. overflow: hidden;
  2462. -webkit-transition-property: height, visibility;
  2463. transition-property: height, visibility;
  2464. -webkit-transition-duration: 0.35s;
  2465. transition-duration: 0.35s;
  2466. -webkit-transition-timing-function: ease;
  2467. transition-timing-function: ease; }
  2468. .caret {
  2469. display: inline-block;
  2470. width: 0;
  2471. height: 0;
  2472. margin-left: 2px;
  2473. vertical-align: middle;
  2474. border-top: 4px dashed;
  2475. border-top: 4px solid \9;
  2476. border-right: 4px solid transparent;
  2477. border-left: 4px solid transparent; }
  2478. .dropup,
  2479. .dropdown {
  2480. position: relative; }
  2481. .dropdown-toggle:focus {
  2482. outline: 0; }
  2483. .dropdown-menu {
  2484. position: absolute;
  2485. top: 100%;
  2486. left: 0;
  2487. z-index: 1000;
  2488. display: none;
  2489. float: left;
  2490. min-width: 160px;
  2491. padding: 5px 0;
  2492. margin: 2px 0 0;
  2493. list-style: none;
  2494. font-size: 14px;
  2495. text-align: left;
  2496. background-color: #fff;
  2497. border: 1px solid #ccc;
  2498. border: 1px solid rgba(0, 0, 0, 0.15);
  2499. border-radius: 4px;
  2500. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2501. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2502. background-clip: padding-box; }
  2503. .dropdown-menu.pull-right {
  2504. right: 0;
  2505. left: auto; }
  2506. .dropdown-menu .divider {
  2507. height: 1px;
  2508. margin: 9px 0;
  2509. overflow: hidden;
  2510. background-color: #e5e5e5; }
  2511. .dropdown-menu > li > a {
  2512. display: block;
  2513. padding: 3px 20px;
  2514. clear: both;
  2515. font-weight: normal;
  2516. line-height: 1.42857;
  2517. color: #333333;
  2518. white-space: nowrap; }
  2519. .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  2520. text-decoration: none;
  2521. color: #262626;
  2522. background-color: #f5f5f5; }
  2523. .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  2524. color: #fff;
  2525. text-decoration: none;
  2526. outline: 0;
  2527. background-color: #337ab7; }
  2528. .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  2529. color: #777777; }
  2530. .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  2531. text-decoration: none;
  2532. background-color: transparent;
  2533. background-image: none;
  2534. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2535. cursor: not-allowed; }
  2536. .open > .dropdown-menu {
  2537. display: block; }
  2538. .open > a {
  2539. outline: 0; }
  2540. .dropdown-menu-right {
  2541. left: auto;
  2542. right: 0; }
  2543. .dropdown-menu-left {
  2544. left: 0;
  2545. right: auto; }
  2546. .dropdown-header {
  2547. display: block;
  2548. padding: 3px 20px;
  2549. font-size: 12px;
  2550. line-height: 1.42857;
  2551. color: #777777;
  2552. white-space: nowrap; }
  2553. .dropdown-backdrop {
  2554. position: fixed;
  2555. left: 0;
  2556. right: 0;
  2557. bottom: 0;
  2558. top: 0;
  2559. z-index: 990; }
  2560. .pull-right > .dropdown-menu {
  2561. right: 0;
  2562. left: auto; }
  2563. .dropup .caret,
  2564. .navbar-fixed-bottom .dropdown .caret {
  2565. border-top: 0;
  2566. border-bottom: 4px dashed;
  2567. border-bottom: 4px solid \9;
  2568. content: ""; }
  2569. .dropup .dropdown-menu,
  2570. .navbar-fixed-bottom .dropdown .dropdown-menu {
  2571. top: auto;
  2572. bottom: 100%;
  2573. margin-bottom: 2px; }
  2574. @media (min-width: 768px) {
  2575. .navbar-right .dropdown-menu {
  2576. right: 0;
  2577. left: auto; }
  2578. .navbar-right .dropdown-menu-left {
  2579. left: 0;
  2580. right: auto; } }
  2581. .btn-group,
  2582. .btn-group-vertical {
  2583. position: relative;
  2584. display: inline-block;
  2585. vertical-align: middle; }
  2586. .btn-group > .btn,
  2587. .btn-group-vertical > .btn {
  2588. position: relative;
  2589. float: left; }
  2590. .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  2591. .btn-group-vertical > .btn:hover,
  2592. .btn-group-vertical > .btn:focus,
  2593. .btn-group-vertical > .btn:active,
  2594. .btn-group-vertical > .btn.active {
  2595. z-index: 2; }
  2596. .btn-group .btn + .btn,
  2597. .btn-group .btn + .btn-group,
  2598. .btn-group .btn-group + .btn,
  2599. .btn-group .btn-group + .btn-group {
  2600. margin-left: -1px; }
  2601. .btn-toolbar {
  2602. margin-left: -5px; }
  2603. .btn-toolbar:before, .btn-toolbar:after {
  2604. content: " ";
  2605. display: table; }
  2606. .btn-toolbar:after {
  2607. clear: both; }
  2608. .btn-toolbar .btn,
  2609. .btn-toolbar .btn-group,
  2610. .btn-toolbar .input-group {
  2611. float: left; }
  2612. .btn-toolbar > .btn,
  2613. .btn-toolbar > .btn-group,
  2614. .btn-toolbar > .input-group {
  2615. margin-left: 5px; }
  2616. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  2617. border-radius: 0; }
  2618. .btn-group > .btn:first-child {
  2619. margin-left: 0; }
  2620. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2621. border-bottom-right-radius: 0;
  2622. border-top-right-radius: 0; }
  2623. .btn-group > .btn:last-child:not(:first-child),
  2624. .btn-group > .dropdown-toggle:not(:first-child) {
  2625. border-bottom-left-radius: 0;
  2626. border-top-left-radius: 0; }
  2627. .btn-group > .btn-group {
  2628. float: left; }
  2629. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  2630. border-radius: 0; }
  2631. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  2632. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  2633. border-bottom-right-radius: 0;
  2634. border-top-right-radius: 0; }
  2635. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  2636. border-bottom-left-radius: 0;
  2637. border-top-left-radius: 0; }
  2638. .btn-group .dropdown-toggle:active,
  2639. .btn-group.open .dropdown-toggle {
  2640. outline: 0; }
  2641. .btn-group > .btn + .dropdown-toggle {
  2642. padding-left: 8px;
  2643. padding-right: 8px; }
  2644. .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  2645. padding-left: 12px;
  2646. padding-right: 12px; }
  2647. .btn-group.open .dropdown-toggle {
  2648. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2649. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  2650. .btn-group.open .dropdown-toggle.btn-link {
  2651. -webkit-box-shadow: none;
  2652. box-shadow: none; }
  2653. .btn .caret {
  2654. margin-left: 0; }
  2655. .btn-lg .caret, .btn-group-lg > .btn .caret {
  2656. border-width: 5px 5px 0;
  2657. border-bottom-width: 0; }
  2658. .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  2659. border-width: 0 5px 5px; }
  2660. .btn-group-vertical > .btn,
  2661. .btn-group-vertical > .btn-group,
  2662. .btn-group-vertical > .btn-group > .btn {
  2663. display: block;
  2664. float: none;
  2665. width: 100%;
  2666. max-width: 100%; }
  2667. .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  2668. content: " ";
  2669. display: table; }
  2670. .btn-group-vertical > .btn-group:after {
  2671. clear: both; }
  2672. .btn-group-vertical > .btn-group > .btn {
  2673. float: none; }
  2674. .btn-group-vertical > .btn + .btn,
  2675. .btn-group-vertical > .btn + .btn-group,
  2676. .btn-group-vertical > .btn-group + .btn,
  2677. .btn-group-vertical > .btn-group + .btn-group {
  2678. margin-top: -1px;
  2679. margin-left: 0; }
  2680. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  2681. border-radius: 0; }
  2682. .btn-group-vertical > .btn:first-child:not(:last-child) {
  2683. border-top-right-radius: 4px;
  2684. border-bottom-right-radius: 0;
  2685. border-bottom-left-radius: 0; }
  2686. .btn-group-vertical > .btn:last-child:not(:first-child) {
  2687. border-bottom-left-radius: 4px;
  2688. border-top-right-radius: 0;
  2689. border-top-left-radius: 0; }
  2690. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  2691. border-radius: 0; }
  2692. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  2693. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  2694. border-bottom-right-radius: 0;
  2695. border-bottom-left-radius: 0; }
  2696. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  2697. border-top-right-radius: 0;
  2698. border-top-left-radius: 0; }
  2699. .btn-group-justified {
  2700. display: table;
  2701. width: 100%;
  2702. table-layout: fixed;
  2703. border-collapse: separate; }
  2704. .btn-group-justified > .btn,
  2705. .btn-group-justified > .btn-group {
  2706. float: none;
  2707. display: table-cell;
  2708. width: 1%; }
  2709. .btn-group-justified > .btn-group .btn {
  2710. width: 100%; }
  2711. .btn-group-justified > .btn-group .dropdown-menu {
  2712. left: auto; }
  2713. [data-toggle="buttons"] > .btn input[type="radio"],
  2714. [data-toggle="buttons"] > .btn input[type="checkbox"],
  2715. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  2716. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  2717. position: absolute;
  2718. clip: rect(0, 0, 0, 0);
  2719. pointer-events: none; }
  2720. .input-group {
  2721. position: relative;
  2722. display: table;
  2723. border-collapse: separate; }
  2724. .input-group[class*="col-"] {
  2725. float: none;
  2726. padding-left: 0;
  2727. padding-right: 0; }
  2728. .input-group .form-control {
  2729. position: relative;
  2730. z-index: 2;
  2731. float: left;
  2732. width: 100%;
  2733. margin-bottom: 0; }
  2734. .input-group-addon,
  2735. .input-group-btn,
  2736. .input-group .form-control {
  2737. display: table-cell; }
  2738. .input-group-addon:not(:first-child):not(:last-child),
  2739. .input-group-btn:not(:first-child):not(:last-child),
  2740. .input-group .form-control:not(:first-child):not(:last-child) {
  2741. border-radius: 0; }
  2742. .input-group-addon,
  2743. .input-group-btn {
  2744. width: 1%;
  2745. white-space: nowrap;
  2746. vertical-align: middle; }
  2747. .input-group-addon {
  2748. padding: 6px 12px;
  2749. font-size: 14px;
  2750. font-weight: normal;
  2751. line-height: 1;
  2752. color: #555555;
  2753. text-align: center;
  2754. background-color: #eeeeee;
  2755. border: 1px solid #ccc;
  2756. border-radius: 4px; }
  2757. .input-group-addon.input-sm,
  2758. .input-group-sm > .input-group-addon,
  2759. .input-group-sm > .input-group-btn > .input-group-addon.btn {
  2760. padding: 5px 10px;
  2761. font-size: 12px;
  2762. border-radius: 3px; }
  2763. .input-group-addon.input-lg,
  2764. .input-group-lg > .input-group-addon,
  2765. .input-group-lg > .input-group-btn > .input-group-addon.btn {
  2766. padding: 10px 16px;
  2767. font-size: 18px;
  2768. border-radius: 6px; }
  2769. .input-group-addon input[type="radio"],
  2770. .input-group-addon input[type="checkbox"] {
  2771. margin-top: 0; }
  2772. .input-group .form-control:first-child,
  2773. .input-group-addon:first-child,
  2774. .input-group-btn:first-child > .btn,
  2775. .input-group-btn:first-child > .btn-group > .btn,
  2776. .input-group-btn:first-child > .dropdown-toggle,
  2777. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  2778. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  2779. border-bottom-right-radius: 0;
  2780. border-top-right-radius: 0; }
  2781. .input-group-addon:first-child {
  2782. border-right: 0; }
  2783. .input-group .form-control:last-child,
  2784. .input-group-addon:last-child,
  2785. .input-group-btn:last-child > .btn,
  2786. .input-group-btn:last-child > .btn-group > .btn,
  2787. .input-group-btn:last-child > .dropdown-toggle,
  2788. .input-group-btn:first-child > .btn:not(:first-child),
  2789. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  2790. border-bottom-left-radius: 0;
  2791. border-top-left-radius: 0; }
  2792. .input-group-addon:last-child {
  2793. border-left: 0; }
  2794. .input-group-btn {
  2795. position: relative;
  2796. font-size: 0;
  2797. white-space: nowrap; }
  2798. .input-group-btn > .btn {
  2799. position: relative; }
  2800. .input-group-btn > .btn + .btn {
  2801. margin-left: -1px; }
  2802. .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  2803. z-index: 2; }
  2804. .input-group-btn:first-child > .btn,
  2805. .input-group-btn:first-child > .btn-group {
  2806. margin-right: -1px; }
  2807. .input-group-btn:last-child > .btn,
  2808. .input-group-btn:last-child > .btn-group {
  2809. z-index: 2;
  2810. margin-left: -1px; }
  2811. .nav {
  2812. margin-bottom: 0;
  2813. padding-left: 0;
  2814. list-style: none; }
  2815. .nav:before, .nav:after {
  2816. content: " ";
  2817. display: table; }
  2818. .nav:after {
  2819. clear: both; }
  2820. .nav > li {
  2821. position: relative;
  2822. display: block; }
  2823. .nav > li > a {
  2824. position: relative;
  2825. display: block;
  2826. padding: 10px 15px; }
  2827. .nav > li > a:hover, .nav > li > a:focus {
  2828. text-decoration: none;
  2829. background-color: #eeeeee; }
  2830. .nav > li.disabled > a {
  2831. color: #777777; }
  2832. .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  2833. color: #777777;
  2834. text-decoration: none;
  2835. background-color: transparent;
  2836. cursor: not-allowed; }
  2837. .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  2838. background-color: #eeeeee;
  2839. border-color: #337ab7; }
  2840. .nav .nav-divider {
  2841. height: 1px;
  2842. margin: 9px 0;
  2843. overflow: hidden;
  2844. background-color: #e5e5e5; }
  2845. .nav > li > a > img {
  2846. max-width: none; }
  2847. .nav-tabs {
  2848. border-bottom: 1px solid #ddd; }
  2849. .nav-tabs > li {
  2850. float: left;
  2851. margin-bottom: -1px; }
  2852. .nav-tabs > li > a {
  2853. margin-right: 2px;
  2854. line-height: 1.42857;
  2855. border: 1px solid transparent;
  2856. border-radius: 4px 4px 0 0; }
  2857. .nav-tabs > li > a:hover {
  2858. border-color: #eeeeee #eeeeee #ddd; }
  2859. .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  2860. color: #555555;
  2861. background-color: #fff;
  2862. border: 1px solid #ddd;
  2863. border-bottom-color: transparent;
  2864. cursor: default; }
  2865. .nav-pills > li {
  2866. color: #808080;
  2867. float: left; }
  2868. .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  2869. color: #fff;
  2870. background-color: #337ab7; }
  2871. .nav-stacked > li {
  2872. float: none; }
  2873. .nav-stacked > li + li {
  2874. margin-top: 2px;
  2875. margin-left: 0; }
  2876. .nav-justified, .nav-tabs.nav-justified {
  2877. width: 100%; }
  2878. .nav-justified > li, .nav-tabs.nav-justified > li {
  2879. float: none; }
  2880. .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  2881. text-align: center;
  2882. margin-bottom: 5px; }
  2883. .nav-justified > .dropdown .dropdown-menu {
  2884. top: auto;
  2885. left: auto; }
  2886. @media (min-width: 768px) {
  2887. .nav-justified > li, .nav-tabs.nav-justified > li {
  2888. display: table-cell;
  2889. width: 1%; }
  2890. .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  2891. margin-bottom: 0; } }
  2892. .nav-tabs-justified, .nav-tabs.nav-justified {
  2893. border-bottom: 0; }
  2894. .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  2895. margin-right: 0;
  2896. border-radius: 4px; }
  2897. .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  2898. .nav-tabs-justified > .active > a:hover,
  2899. .nav-tabs.nav-justified > .active > a:hover,
  2900. .nav-tabs-justified > .active > a:focus,
  2901. .nav-tabs.nav-justified > .active > a:focus {
  2902. border: 1px solid #ddd; }
  2903. @media (min-width: 768px) {
  2904. .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  2905. border-bottom: 1px solid #ddd;
  2906. border-radius: 4px 4px 0 0; }
  2907. .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  2908. .nav-tabs-justified > .active > a:hover,
  2909. .nav-tabs.nav-justified > .active > a:hover,
  2910. .nav-tabs-justified > .active > a:focus,
  2911. .nav-tabs.nav-justified > .active > a:focus {
  2912. border-bottom-color: #fff; } }
  2913. .tab-content > .tab-pane {
  2914. display: none; }
  2915. .tab-content > .active {
  2916. display: block; }
  2917. .nav-tabs .dropdown-menu {
  2918. margin-top: -1px;
  2919. border-top-right-radius: 0;
  2920. border-top-left-radius: 0; }
  2921. .navbar {
  2922. position: relative;
  2923. min-height: 50px;
  2924. margin-bottom: 20px;
  2925. border: 1px solid transparent; }
  2926. .navbar:before, .navbar:after {
  2927. content: " ";
  2928. display: table; }
  2929. .navbar:after {
  2930. clear: both; }
  2931. @media (min-width: 768px) {
  2932. .navbar {
  2933. border-radius: 4px; } }
  2934. .navbar-header:before, .navbar-header:after {
  2935. content: " ";
  2936. display: table; }
  2937. .navbar-header:after {
  2938. clear: both; }
  2939. @media (min-width: 768px) {
  2940. .navbar-header {
  2941. float: left; } }
  2942. .navbar-collapse {
  2943. overflow-x: visible;
  2944. padding-right: 15px;
  2945. padding-left: 15px;
  2946. border-top: 1px solid transparent;
  2947. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  2948. -webkit-overflow-scrolling: touch; }
  2949. .navbar-collapse:before, .navbar-collapse:after {
  2950. content: " ";
  2951. display: table; }
  2952. .navbar-collapse:after {
  2953. clear: both; }
  2954. .navbar-collapse.in {
  2955. overflow-y: auto; }
  2956. @media (min-width: 768px) {
  2957. .navbar-collapse {
  2958. width: auto;
  2959. border-top: 0;
  2960. box-shadow: none; }
  2961. .navbar-collapse.collapse {
  2962. display: block !important;
  2963. height: auto !important;
  2964. padding-bottom: 0;
  2965. overflow: visible !important; }
  2966. .navbar-collapse.in {
  2967. overflow-y: visible; }
  2968. .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  2969. padding-left: 0;
  2970. padding-right: 0; } }
  2971. .navbar-fixed-top .navbar-collapse,
  2972. .navbar-fixed-bottom .navbar-collapse {
  2973. max-height: 340px; }
  2974. @media (max-device-width: 480px) and (orientation: landscape) {
  2975. .navbar-fixed-top .navbar-collapse,
  2976. .navbar-fixed-bottom .navbar-collapse {
  2977. max-height: 200px; } }
  2978. .container > .navbar-header,
  2979. .container > .navbar-collapse,
  2980. .container-fluid > .navbar-header,
  2981. .container-fluid > .navbar-collapse {
  2982. margin-right: -15px;
  2983. margin-left: -15px; }
  2984. @media (min-width: 768px) {
  2985. .container > .navbar-header,
  2986. .container > .navbar-collapse,
  2987. .container-fluid > .navbar-header,
  2988. .container-fluid > .navbar-collapse {
  2989. margin-right: 0;
  2990. margin-left: 0; } }
  2991. .navbar-static-top {
  2992. z-index: 1000;
  2993. border-width: 0 0 1px; }
  2994. @media (min-width: 768px) {
  2995. .navbar-static-top {
  2996. border-radius: 0; } }
  2997. .navbar-fixed-top,
  2998. .navbar-fixed-bottom {
  2999. position: fixed;
  3000. right: 0;
  3001. left: 0;
  3002. z-index: 1030; }
  3003. @media (min-width: 768px) {
  3004. .navbar-fixed-top,
  3005. .navbar-fixed-bottom {
  3006. border-radius: 0; } }
  3007. .navbar-fixed-top {
  3008. top: 0;
  3009. border-width: 0 0 1px; }
  3010. .navbar-fixed-bottom {
  3011. bottom: 0;
  3012. margin-bottom: 0;
  3013. border-width: 1px 0 0; }
  3014. .navbar-brand {
  3015. float: left;
  3016. padding: 15px 15px;
  3017. font-size: 18px;
  3018. line-height: 20px;
  3019. height: 50px; }
  3020. .navbar-brand:hover, .navbar-brand:focus {
  3021. text-decoration: none; }
  3022. .navbar-brand > img {
  3023. display: block; }
  3024. @media (min-width: 768px) {
  3025. .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
  3026. margin-left: -15px; } }
  3027. .navbar-toggle {
  3028. position: relative;
  3029. float: right;
  3030. margin-right: 15px;
  3031. padding: 9px 10px;
  3032. margin-top: 8px;
  3033. margin-bottom: 8px;
  3034. background-color: transparent;
  3035. background-image: none;
  3036. border: 1px solid transparent;
  3037. border-radius: 4px; }
  3038. .navbar-toggle:focus {
  3039. outline: 0; }
  3040. .navbar-toggle .icon-bar {
  3041. display: block;
  3042. width: 22px;
  3043. height: 2px;
  3044. border-radius: 1px; }
  3045. .navbar-toggle .icon-bar + .icon-bar {
  3046. margin-top: 4px; }
  3047. @media (min-width: 768px) {
  3048. .navbar-toggle {
  3049. display: none; } }
  3050. .navbar-nav {
  3051. margin: 7.5px -15px; }
  3052. .navbar-nav > li > a {
  3053. padding-top: 10px;
  3054. padding-bottom: 10px;
  3055. line-height: 20px; }
  3056. @media (max-width: 767px) {
  3057. .navbar-nav .open .dropdown-menu {
  3058. position: static;
  3059. float: none;
  3060. width: auto;
  3061. margin-top: 0;
  3062. background-color: transparent;
  3063. border: 0;
  3064. box-shadow: none; }
  3065. .navbar-nav .open .dropdown-menu > li > a,
  3066. .navbar-nav .open .dropdown-menu .dropdown-header {
  3067. padding: 5px 15px 5px 25px; }
  3068. .navbar-nav .open .dropdown-menu > li > a {
  3069. line-height: 20px; }
  3070. .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
  3071. background-image: none; } }
  3072. @media (min-width: 768px) {
  3073. .navbar-nav {
  3074. float: left;
  3075. margin: 0; }
  3076. .navbar-nav > li {
  3077. float: left; }
  3078. .navbar-nav > li > a {
  3079. padding-top: 15px;
  3080. padding-bottom: 15px; } }
  3081. .navbar-form {
  3082. margin-left: -15px;
  3083. margin-right: -15px;
  3084. padding: 10px 15px;
  3085. border-top: 1px solid transparent;
  3086. border-bottom: 1px solid transparent;
  3087. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  3088. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  3089. margin-top: 8px;
  3090. margin-bottom: 8px; }
  3091. @media (min-width: 768px) {
  3092. .navbar-form .form-group {
  3093. display: inline-block;
  3094. margin-bottom: 0;
  3095. vertical-align: middle; }
  3096. .navbar-form .form-control {
  3097. display: inline-block;
  3098. width: auto;
  3099. vertical-align: middle; }
  3100. .navbar-form .form-control-static {
  3101. display: inline-block; }
  3102. .navbar-form .input-group {
  3103. display: inline-table;
  3104. vertical-align: middle; }
  3105. .navbar-form .input-group .input-group-addon,
  3106. .navbar-form .input-group .input-group-btn,
  3107. .navbar-form .input-group .form-control {
  3108. width: auto; }
  3109. .navbar-form .input-group > .form-control {
  3110. width: 100%; }
  3111. .navbar-form .control-label {
  3112. margin-bottom: 0;
  3113. vertical-align: middle; }
  3114. .navbar-form .radio,
  3115. .navbar-form .checkbox {
  3116. display: inline-block;
  3117. margin-top: 0;
  3118. margin-bottom: 0;
  3119. vertical-align: middle; }
  3120. .navbar-form .radio label,
  3121. .navbar-form .checkbox label {
  3122. padding-left: 0; }
  3123. .navbar-form .radio input[type="radio"],
  3124. .navbar-form .checkbox input[type="checkbox"] {
  3125. position: relative;
  3126. margin-left: 0; }
  3127. .navbar-form .has-feedback .form-control-feedback {
  3128. top: 0; } }
  3129. @media (max-width: 767px) {
  3130. .navbar-form .form-group {
  3131. margin-bottom: 5px; }
  3132. .navbar-form .form-group:last-child {
  3133. margin-bottom: 0; } }
  3134. @media (min-width: 768px) {
  3135. .navbar-form {
  3136. width: auto;
  3137. border: 0;
  3138. margin-left: 0;
  3139. margin-right: 0;
  3140. padding-top: 0;
  3141. padding-bottom: 0;
  3142. -webkit-box-shadow: none;
  3143. box-shadow: none; } }
  3144. .navbar-nav > li > .dropdown-menu {
  3145. margin-top: 0;
  3146. border-top-right-radius: 0;
  3147. border-top-left-radius: 0; }
  3148. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  3149. margin-bottom: 0;
  3150. border-top-right-radius: 4px;
  3151. border-top-left-radius: 4px;
  3152. border-bottom-right-radius: 0;
  3153. border-bottom-left-radius: 0; }
  3154. .navbar-btn {
  3155. margin-top: 8px;
  3156. margin-bottom: 8px; }
  3157. .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
  3158. margin-top: 10px;
  3159. margin-bottom: 10px; }
  3160. .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
  3161. margin-top: 14px;
  3162. margin-bottom: 14px; }
  3163. .navbar-text {
  3164. margin-top: 15px;
  3165. margin-bottom: 15px; }
  3166. @media (min-width: 768px) {
  3167. .navbar-text {
  3168. float: left;
  3169. margin-left: 15px;
  3170. margin-right: 15px; } }
  3171. @media (min-width: 768px) {
  3172. .navbar-left {
  3173. float: left !important; }
  3174. .navbar-right {
  3175. float: right !important;
  3176. margin-right: -15px; }
  3177. .navbar-right ~ .navbar-right {
  3178. margin-right: 0; } }
  3179. .navbar-default {
  3180. background-color: #f8f8f8;
  3181. border-color: #e7e7e7; }
  3182. .navbar-default .navbar-brand {
  3183. color: #777; }
  3184. .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  3185. color: #5e5e5e;
  3186. background-color: transparent; }
  3187. .navbar-default .navbar-text {
  3188. color: #777; }
  3189. .navbar-default .navbar-nav > li > a {
  3190. color: #777; }
  3191. .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  3192. color: #333;
  3193. background-color: transparent; }
  3194. .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  3195. color: #555;
  3196. background-color: #e7e7e7; }
  3197. .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  3198. color: #ccc;
  3199. background-color: transparent; }
  3200. .navbar-default .navbar-toggle {
  3201. border-color: #ddd; }
  3202. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  3203. background-color: #ddd; }
  3204. .navbar-default .navbar-toggle .icon-bar {
  3205. background-color: #888; }
  3206. .navbar-default .navbar-collapse,
  3207. .navbar-default .navbar-form {
  3208. border-color: #e7e7e7; }
  3209. .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  3210. background-color: #e7e7e7;
  3211. color: #555; }
  3212. @media (max-width: 767px) {
  3213. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  3214. color: #777; }
  3215. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  3216. color: #333;
  3217. background-color: transparent; }
  3218. .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  3219. color: #555;
  3220. background-color: #e7e7e7; }
  3221. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3222. color: #ccc;
  3223. background-color: transparent; } }
  3224. .navbar-default .navbar-link {
  3225. color: #777; }
  3226. .navbar-default .navbar-link:hover {
  3227. color: #333; }
  3228. .navbar-default .btn-link {
  3229. color: #777; }
  3230. .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  3231. color: #333; }
  3232. .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  3233. color: #ccc; }
  3234. .navbar-inverse {
  3235. background-color: #222;
  3236. border-color: #090909; }
  3237. .navbar-inverse .navbar-brand {
  3238. color: #9d9d9d; }
  3239. .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  3240. color: #fff;
  3241. background-color: transparent; }
  3242. .navbar-inverse .navbar-text {
  3243. color: #9d9d9d; }
  3244. .navbar-inverse .navbar-nav > li > a {
  3245. color: #9d9d9d; }
  3246. .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  3247. color: #fff;
  3248. background-color: transparent; }
  3249. .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  3250. color: #fff;
  3251. background-color: #090909; }
  3252. .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  3253. color: #444;
  3254. background-color: transparent; }
  3255. .navbar-inverse .navbar-toggle {
  3256. border-color: #333; }
  3257. .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  3258. background-color: #333; }
  3259. .navbar-inverse .navbar-toggle .icon-bar {
  3260. background-color: #fff; }
  3261. .navbar-inverse .navbar-collapse,
  3262. .navbar-inverse .navbar-form {
  3263. border-color: #101010; }
  3264. .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  3265. background-color: #090909;
  3266. color: #fff; }
  3267. @media (max-width: 767px) {
  3268. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  3269. border-color: #090909; }
  3270. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  3271. background-color: #090909; }
  3272. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  3273. color: #9d9d9d; }
  3274. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  3275. color: #fff;
  3276. background-color: transparent; }
  3277. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  3278. color: #fff;
  3279. background-color: #090909; }
  3280. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  3281. color: #444;
  3282. background-color: transparent; } }
  3283. .navbar-inverse .navbar-link {
  3284. color: #9d9d9d; }
  3285. .navbar-inverse .navbar-link:hover {
  3286. color: #fff; }
  3287. .navbar-inverse .btn-link {
  3288. color: #9d9d9d; }
  3289. .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  3290. color: #fff; }
  3291. .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  3292. color: #444; }
  3293. .breadcrumb {
  3294. padding: 8px 15px;
  3295. margin-bottom: 20px;
  3296. list-style: none;
  3297. background-color: #f5f5f5;
  3298. border-radius: 4px; }
  3299. .breadcrumb > li {
  3300. display: inline-block; }
  3301. .breadcrumb > li + li:before {
  3302. content: "/ ";
  3303. padding: 0 5px;
  3304. color: #ccc; }
  3305. .breadcrumb > .active {
  3306. color: #777777; }
  3307. .pagination {
  3308. display: inline-block;
  3309. padding-left: 0;
  3310. margin: 20px 0;
  3311. border-radius: 4px; }
  3312. .pagination > li {
  3313. display: inline; }
  3314. .pagination > li > a,
  3315. .pagination > li > span {
  3316. position: relative;
  3317. float: left;
  3318. padding: 6px 12px;
  3319. line-height: 1.42857;
  3320. text-decoration: none;
  3321. color: #337ab7;
  3322. background-color: #fff;
  3323. border: 1px solid #ddd;
  3324. margin-left: -1px; }
  3325. .pagination > li:first-child > a,
  3326. .pagination > li:first-child > span {
  3327. margin-left: 0;
  3328. border-bottom-left-radius: 4px;
  3329. border-top-left-radius: 4px; }
  3330. .pagination > li:last-child > a,
  3331. .pagination > li:last-child > span {
  3332. border-bottom-right-radius: 4px;
  3333. border-top-right-radius: 4px; }
  3334. .pagination > li > a:hover, .pagination > li > a:focus,
  3335. .pagination > li > span:hover,
  3336. .pagination > li > span:focus {
  3337. z-index: 3;
  3338. color: #23527c;
  3339. background-color: #eeeeee;
  3340. border-color: #ddd; }
  3341. .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  3342. .pagination > .active > span,
  3343. .pagination > .active > span:hover,
  3344. .pagination > .active > span:focus {
  3345. z-index: 2;
  3346. color: #fff;
  3347. background-color: #337ab7;
  3348. border-color: #337ab7;
  3349. cursor: default; }
  3350. .pagination > .disabled > span,
  3351. .pagination > .disabled > span:hover,
  3352. .pagination > .disabled > span:focus,
  3353. .pagination > .disabled > a,
  3354. .pagination > .disabled > a:hover,
  3355. .pagination > .disabled > a:focus {
  3356. color: #777777;
  3357. background-color: #fff;
  3358. border-color: #ddd;
  3359. cursor: not-allowed; }
  3360. .pagination-lg > li > a,
  3361. .pagination-lg > li > span {
  3362. padding: 10px 16px;
  3363. font-size: 18px;
  3364. line-height: 1.33333; }
  3365. .pagination-lg > li:first-child > a,
  3366. .pagination-lg > li:first-child > span {
  3367. border-bottom-left-radius: 6px;
  3368. border-top-left-radius: 6px; }
  3369. .pagination-lg > li:last-child > a,
  3370. .pagination-lg > li:last-child > span {
  3371. border-bottom-right-radius: 6px;
  3372. border-top-right-radius: 6px; }
  3373. .pagination-sm > li > a,
  3374. .pagination-sm > li > span {
  3375. padding: 5px 10px;
  3376. font-size: 12px;
  3377. line-height: 1.5; }
  3378. .pagination-sm > li:first-child > a,
  3379. .pagination-sm > li:first-child > span {
  3380. border-bottom-left-radius: 3px;
  3381. border-top-left-radius: 3px; }
  3382. .pagination-sm > li:last-child > a,
  3383. .pagination-sm > li:last-child > span {
  3384. border-bottom-right-radius: 3px;
  3385. border-top-right-radius: 3px; }
  3386. .pager {
  3387. padding-left: 0;
  3388. margin: 20px 0;
  3389. list-style: none;
  3390. text-align: center; }
  3391. .pager:before, .pager:after {
  3392. content: " ";
  3393. display: table; }
  3394. .pager:after {
  3395. clear: both; }
  3396. .pager li {
  3397. display: inline; }
  3398. .pager li > a,
  3399. .pager li > span {
  3400. display: inline-block;
  3401. padding: 5px 14px;
  3402. background-color: #fff;
  3403. border: 1px solid #ddd;
  3404. border-radius: 15px; }
  3405. .pager li > a:hover,
  3406. .pager li > a:focus {
  3407. text-decoration: none;
  3408. background-color: #eeeeee; }
  3409. .pager .next > a,
  3410. .pager .next > span {
  3411. float: right; }
  3412. .pager .previous > a,
  3413. .pager .previous > span {
  3414. float: left; }
  3415. .pager .disabled > a,
  3416. .pager .disabled > a:hover,
  3417. .pager .disabled > a:focus,
  3418. .pager .disabled > span {
  3419. color: #777777;
  3420. background-color: #fff;
  3421. cursor: not-allowed; }
  3422. .label {
  3423. display: inline;
  3424. padding: .2em .6em .3em;
  3425. font-size: 75%;
  3426. font-weight: bold;
  3427. line-height: 1;
  3428. color: #fff;
  3429. text-align: center;
  3430. white-space: nowrap;
  3431. vertical-align: baseline;
  3432. border-radius: .25em; }
  3433. .label:empty {
  3434. display: none; }
  3435. .btn .label {
  3436. position: relative;
  3437. top: -1px; }
  3438. a.label:hover, a.label:focus {
  3439. color: #fff;
  3440. text-decoration: none;
  3441. cursor: pointer; }
  3442. .label-default {
  3443. background-color: #777777; }
  3444. .label-default[href]:hover, .label-default[href]:focus {
  3445. background-color: #5e5e5e; }
  3446. .label-primary {
  3447. background-color: #337ab7; }
  3448. .label-primary[href]:hover, .label-primary[href]:focus {
  3449. background-color: #286090; }
  3450. .label-success {
  3451. background-color: #5cb85c; }
  3452. .label-success[href]:hover, .label-success[href]:focus {
  3453. background-color: #449d44; }
  3454. .label-info {
  3455. background-color: #5bc0de; }
  3456. .label-info[href]:hover, .label-info[href]:focus {
  3457. background-color: #31b0d5; }
  3458. .label-warning {
  3459. background-color: #f0ad4e; }
  3460. .label-warning[href]:hover, .label-warning[href]:focus {
  3461. background-color: #ec971f; }
  3462. .label-danger {
  3463. background-color: #d9534f; }
  3464. .label-danger[href]:hover, .label-danger[href]:focus {
  3465. background-color: #c9302c; }
  3466. .badge {
  3467. display: inline-block;
  3468. min-width: 10px;
  3469. padding: 3px 7px;
  3470. font-size: 12px;
  3471. font-weight: bold;
  3472. color: #fff;
  3473. line-height: 1;
  3474. vertical-align: middle;
  3475. white-space: nowrap;
  3476. text-align: center;
  3477. background-color: #777777;
  3478. border-radius: 10px; }
  3479. .badge:empty {
  3480. display: none; }
  3481. .btn .badge {
  3482. position: relative;
  3483. top: -1px; }
  3484. .btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge {
  3485. top: 0;
  3486. padding: 1px 5px; }
  3487. .list-group-item.active > .badge, .nav-pills > .active > a > .badge {
  3488. color: #337ab7;
  3489. background-color: #fff; }
  3490. .list-group-item > .badge {
  3491. float: right; }
  3492. .list-group-item > .badge + .badge {
  3493. margin-right: 5px; }
  3494. .nav-pills > li > a > .badge {
  3495. margin-left: 3px; }
  3496. a.badge:hover, a.badge:focus {
  3497. color: #fff;
  3498. text-decoration: none;
  3499. cursor: pointer; }
  3500. .jumbotron {
  3501. padding-top: 30px;
  3502. padding-bottom: 30px;
  3503. margin-bottom: 30px;
  3504. color: inherit;
  3505. background-color: #eeeeee; }
  3506. .jumbotron h1,
  3507. .jumbotron .h1 {
  3508. color: inherit; }
  3509. .jumbotron p {
  3510. margin-bottom: 15px;
  3511. font-size: 21px;
  3512. font-weight: 200; }
  3513. .jumbotron > hr {
  3514. border-top-color: #d5d5d5; }
  3515. .container .jumbotron, .container-fluid .jumbotron {
  3516. border-radius: 6px; }
  3517. .jumbotron .container {
  3518. max-width: 100%; }
  3519. @media screen and (min-width: 768px) {
  3520. .jumbotron {
  3521. padding-top: 48px;
  3522. padding-bottom: 48px; }
  3523. .container .jumbotron, .container-fluid .jumbotron {
  3524. padding-left: 60px;
  3525. padding-right: 60px; }
  3526. .jumbotron h1,
  3527. .jumbotron .h1 {
  3528. font-size: 63px; } }
  3529. .thumbnail {
  3530. display: block;
  3531. padding: 4px;
  3532. margin-bottom: 20px;
  3533. line-height: 1.42857;
  3534. background-color: #fff;
  3535. border: 1px solid #ddd;
  3536. border-radius: 4px;
  3537. -webkit-transition: border 0.2s ease-in-out;
  3538. -o-transition: border 0.2s ease-in-out;
  3539. transition: border 0.2s ease-in-out; }
  3540. .thumbnail > img,
  3541. .thumbnail a > img {
  3542. display: block;
  3543. max-width: 100%;
  3544. height: auto;
  3545. margin-left: auto;
  3546. margin-right: auto; }
  3547. .thumbnail .caption {
  3548. padding: 9px;
  3549. color: #333333; }
  3550. a.thumbnail:hover,
  3551. a.thumbnail:focus,
  3552. a.thumbnail.active {
  3553. border-color: #337ab7; }
  3554. .alert {
  3555. padding: 15px;
  3556. margin-bottom: 20px;
  3557. border: 1px solid transparent;
  3558. border-radius: 4px; }
  3559. .alert h4 {
  3560. margin-top: 0;
  3561. color: inherit; }
  3562. .alert .alert-link {
  3563. font-weight: bold; }
  3564. .alert > p,
  3565. .alert > ul {
  3566. margin-bottom: 0; }
  3567. .alert > p + p {
  3568. margin-top: 5px; }
  3569. .alert-dismissable,
  3570. .alert-dismissible {
  3571. padding-right: 35px; }
  3572. .alert-dismissable .close,
  3573. .alert-dismissible .close {
  3574. position: relative;
  3575. top: -2px;
  3576. right: -21px;
  3577. color: inherit; }
  3578. .alert-success {
  3579. background-color: #dff0d8;
  3580. border-color: #d6e9c6;
  3581. color: #3c763d; }
  3582. .alert-success hr {
  3583. border-top-color: #c9e2b3; }
  3584. .alert-success .alert-link {
  3585. color: #2b542c; }
  3586. .alert-info {
  3587. background-color: #d9edf7;
  3588. border-color: #bce8f1;
  3589. color: #31708f; }
  3590. .alert-info hr {
  3591. border-top-color: #a6e1ec; }
  3592. .alert-info .alert-link {
  3593. color: #245269; }
  3594. .alert-warning {
  3595. background-color: #fcf8e3;
  3596. border-color: #faebcc;
  3597. color: #8a6d3b; }
  3598. .alert-warning hr {
  3599. border-top-color: #f7e1b5; }
  3600. .alert-warning .alert-link {
  3601. color: #66512c; }
  3602. .alert-danger {
  3603. background-color: #f2dede;
  3604. border-color: #ebccd1;
  3605. color: #a94442; }
  3606. .alert-danger hr {
  3607. border-top-color: #e4b9c0; }
  3608. .alert-danger .alert-link {
  3609. color: #843534; }
  3610. @-webkit-keyframes progress-bar-stripes {
  3611. from {
  3612. background-position: 40px 0; }
  3613. to {
  3614. background-position: 0 0; } }
  3615. @keyframes progress-bar-stripes {
  3616. from {
  3617. background-position: 40px 0; }
  3618. to {
  3619. background-position: 0 0; } }
  3620. .progress {
  3621. overflow: hidden;
  3622. height: 20px;
  3623. margin-bottom: 20px;
  3624. background-color: #f5f5f5;
  3625. border-radius: 4px;
  3626. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3627. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
  3628. .progress-bar {
  3629. float: left;
  3630. width: 0%;
  3631. height: 100%;
  3632. font-size: 12px;
  3633. line-height: 20px;
  3634. color: #fff;
  3635. text-align: center;
  3636. background-color: #337ab7;
  3637. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3638. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3639. -webkit-transition: width 0.6s ease;
  3640. -o-transition: width 0.6s ease;
  3641. transition: width 0.6s ease; }
  3642. .progress-striped .progress-bar,
  3643. .progress-bar-striped {
  3644. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3645. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3646. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3647. background-size: 40px 40px; }
  3648. .progress.active .progress-bar,
  3649. .progress-bar.active {
  3650. -webkit-animation: progress-bar-stripes 2s linear infinite;
  3651. -o-animation: progress-bar-stripes 2s linear infinite;
  3652. animation: progress-bar-stripes 2s linear infinite; }
  3653. .progress-bar-success {
  3654. background-color: #5cb85c; }
  3655. .progress-striped .progress-bar-success {
  3656. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3657. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3658. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
  3659. .progress-bar-info {
  3660. background-color: #5bc0de; }
  3661. .progress-striped .progress-bar-info {
  3662. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3663. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3664. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
  3665. .progress-bar-warning {
  3666. background-color: #f0ad4e; }
  3667. .progress-striped .progress-bar-warning {
  3668. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3669. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3670. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
  3671. .progress-bar-danger {
  3672. background-color: #d9534f; }
  3673. .progress-striped .progress-bar-danger {
  3674. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3675. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3676. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
  3677. .media {
  3678. margin-top: 15px; }
  3679. .media:first-child {
  3680. margin-top: 0; }
  3681. .media,
  3682. .media-body {
  3683. zoom: 1;
  3684. overflow: hidden; }
  3685. .media-body {
  3686. width: 10000px; }
  3687. .media-object {
  3688. display: block; }
  3689. .media-object.img-thumbnail {
  3690. max-width: none; }
  3691. .media-right,
  3692. .media > .pull-right {
  3693. padding-left: 10px; }
  3694. .media-left,
  3695. .media > .pull-left {
  3696. padding-right: 10px; }
  3697. .media-left,
  3698. .media-right,
  3699. .media-body {
  3700. display: table-cell;
  3701. vertical-align: top; }
  3702. .media-middle {
  3703. vertical-align: middle; }
  3704. .media-bottom {
  3705. vertical-align: bottom; }
  3706. .media-heading {
  3707. margin-top: 0;
  3708. margin-bottom: 5px; }
  3709. .media-list {
  3710. padding-left: 0;
  3711. list-style: none; }
  3712. .list-group {
  3713. margin-bottom: 20px;
  3714. padding-left: 0; }
  3715. .list-group-item {
  3716. position: relative;
  3717. display: block;
  3718. padding: 10px 15px;
  3719. margin-bottom: -1px;
  3720. background-color: #fff;
  3721. border: 1px solid #ddd; }
  3722. .list-group-item:first-child {
  3723. border-top-right-radius: 4px;
  3724. border-top-left-radius: 4px; }
  3725. .list-group-item:last-child {
  3726. margin-bottom: 0;
  3727. border-bottom-right-radius: 4px;
  3728. border-bottom-left-radius: 4px; }
  3729. a.list-group-item,
  3730. button.list-group-item {
  3731. color: #555; }
  3732. a.list-group-item .list-group-item-heading,
  3733. button.list-group-item .list-group-item-heading {
  3734. color: #333; }
  3735. a.list-group-item:hover, a.list-group-item:focus,
  3736. button.list-group-item:hover,
  3737. button.list-group-item:focus {
  3738. text-decoration: none;
  3739. color: #555;
  3740. background-color: #f5f5f5; }
  3741. button.list-group-item {
  3742. width: 100%;
  3743. text-align: left; }
  3744. .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  3745. background-color: #eeeeee;
  3746. color: #777777;
  3747. cursor: not-allowed; }
  3748. .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
  3749. color: inherit; }
  3750. .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
  3751. color: #777777; }
  3752. .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  3753. z-index: 2;
  3754. color: #fff;
  3755. background-color: #337ab7;
  3756. border-color: #337ab7; }
  3757. .list-group-item.active .list-group-item-heading,
  3758. .list-group-item.active .list-group-item-heading > small,
  3759. .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  3760. .list-group-item.active:hover .list-group-item-heading > small,
  3761. .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  3762. .list-group-item.active:focus .list-group-item-heading > small,
  3763. .list-group-item.active:focus .list-group-item-heading > .small {
  3764. color: inherit; }
  3765. .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
  3766. color: #c7ddef; }
  3767. .list-group-item-success {
  3768. color: #3c763d;
  3769. background-color: #dff0d8; }
  3770. a.list-group-item-success,
  3771. button.list-group-item-success {
  3772. color: #3c763d; }
  3773. a.list-group-item-success .list-group-item-heading,
  3774. button.list-group-item-success .list-group-item-heading {
  3775. color: inherit; }
  3776. a.list-group-item-success:hover, a.list-group-item-success:focus,
  3777. button.list-group-item-success:hover,
  3778. button.list-group-item-success:focus {
  3779. color: #3c763d;
  3780. background-color: #d0e9c6; }
  3781. a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  3782. button.list-group-item-success.active,
  3783. button.list-group-item-success.active:hover,
  3784. button.list-group-item-success.active:focus {
  3785. color: #fff;
  3786. background-color: #3c763d;
  3787. border-color: #3c763d; }
  3788. .list-group-item-info {
  3789. color: #31708f;
  3790. background-color: #d9edf7; }
  3791. a.list-group-item-info,
  3792. button.list-group-item-info {
  3793. color: #31708f; }
  3794. a.list-group-item-info .list-group-item-heading,
  3795. button.list-group-item-info .list-group-item-heading {
  3796. color: inherit; }
  3797. a.list-group-item-info:hover, a.list-group-item-info:focus,
  3798. button.list-group-item-info:hover,
  3799. button.list-group-item-info:focus {
  3800. color: #31708f;
  3801. background-color: #c4e3f3; }
  3802. a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  3803. button.list-group-item-info.active,
  3804. button.list-group-item-info.active:hover,
  3805. button.list-group-item-info.active:focus {
  3806. color: #fff;
  3807. background-color: #31708f;
  3808. border-color: #31708f; }
  3809. .list-group-item-warning {
  3810. color: #8a6d3b;
  3811. background-color: #fcf8e3; }
  3812. a.list-group-item-warning,
  3813. button.list-group-item-warning {
  3814. color: #8a6d3b; }
  3815. a.list-group-item-warning .list-group-item-heading,
  3816. button.list-group-item-warning .list-group-item-heading {
  3817. color: inherit; }
  3818. a.list-group-item-warning:hover, a.list-group-item-warning:focus,
  3819. button.list-group-item-warning:hover,
  3820. button.list-group-item-warning:focus {
  3821. color: #8a6d3b;
  3822. background-color: #faf2cc; }
  3823. a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  3824. button.list-group-item-warning.active,
  3825. button.list-group-item-warning.active:hover,
  3826. button.list-group-item-warning.active:focus {
  3827. color: #fff;
  3828. background-color: #8a6d3b;
  3829. border-color: #8a6d3b; }
  3830. .list-group-item-danger {
  3831. color: #a94442;
  3832. background-color: #f2dede; }
  3833. a.list-group-item-danger,
  3834. button.list-group-item-danger {
  3835. color: #a94442; }
  3836. a.list-group-item-danger .list-group-item-heading,
  3837. button.list-group-item-danger .list-group-item-heading {
  3838. color: inherit; }
  3839. a.list-group-item-danger:hover, a.list-group-item-danger:focus,
  3840. button.list-group-item-danger:hover,
  3841. button.list-group-item-danger:focus {
  3842. color: #a94442;
  3843. background-color: #ebcccc; }
  3844. a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  3845. button.list-group-item-danger.active,
  3846. button.list-group-item-danger.active:hover,
  3847. button.list-group-item-danger.active:focus {
  3848. color: #fff;
  3849. background-color: #a94442;
  3850. border-color: #a94442; }
  3851. .list-group-item-heading {
  3852. margin-top: 0;
  3853. margin-bottom: 5px; }
  3854. .list-group-item-text {
  3855. margin-bottom: 0;
  3856. line-height: 1.3; }
  3857. .panel {
  3858. background-color: #fff;
  3859. border: 1px solid transparent;
  3860. border-radius: 4px;
  3861. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  3862. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
  3863. .panel-body {
  3864. padding: 15px; }
  3865. .panel-body:before, .panel-body:after {
  3866. content: " ";
  3867. display: table; }
  3868. .panel-body:after {
  3869. clear: both; }
  3870. .panel-heading {
  3871. padding: 10px 15px;
  3872. border-bottom: 1px solid transparent;
  3873. border-top-right-radius: 3px;
  3874. border-top-left-radius: 3px; }
  3875. .panel-heading > .dropdown .dropdown-toggle {
  3876. color: inherit; }
  3877. .panel-title {
  3878. margin-top: 0;
  3879. margin-bottom: 0;
  3880. font-size: 16px;
  3881. color: inherit; }
  3882. .panel-title > a,
  3883. .panel-title > small,
  3884. .panel-title > .small,
  3885. .panel-title > small > a,
  3886. .panel-title > .small > a {
  3887. color: inherit; }
  3888. .panel-footer {
  3889. padding: 10px 15px;
  3890. background-color: #f5f5f5;
  3891. border-top: 1px solid #ddd;
  3892. border-bottom-right-radius: 3px;
  3893. border-bottom-left-radius: 3px; }
  3894. .panel > .list-group,
  3895. .panel > .panel-collapse > .list-group {
  3896. margin-bottom: 0; }
  3897. .panel > .list-group .list-group-item,
  3898. .panel > .panel-collapse > .list-group .list-group-item {
  3899. border-width: 1px 0;
  3900. border-radius: 0; }
  3901. .panel > .list-group:first-child .list-group-item:first-child,
  3902. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  3903. border-top: 0;
  3904. border-top-right-radius: 3px;
  3905. border-top-left-radius: 3px; }
  3906. .panel > .list-group:last-child .list-group-item:last-child,
  3907. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  3908. border-bottom: 0;
  3909. border-bottom-right-radius: 3px;
  3910. border-bottom-left-radius: 3px; }
  3911. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  3912. border-top-right-radius: 0;
  3913. border-top-left-radius: 0; }
  3914. .panel-heading + .list-group .list-group-item:first-child {
  3915. border-top-width: 0; }
  3916. .list-group + .panel-footer {
  3917. border-top-width: 0; }
  3918. .panel > .table,
  3919. .panel > .table-responsive > .table,
  3920. .panel > .panel-collapse > .table {
  3921. margin-bottom: 0; }
  3922. .panel > .table caption,
  3923. .panel > .table-responsive > .table caption,
  3924. .panel > .panel-collapse > .table caption {
  3925. padding-left: 15px;
  3926. padding-right: 15px; }
  3927. .panel > .table:first-child,
  3928. .panel > .table-responsive:first-child > .table:first-child {
  3929. border-top-right-radius: 3px;
  3930. border-top-left-radius: 3px; }
  3931. .panel > .table:first-child > thead:first-child > tr:first-child,
  3932. .panel > .table:first-child > tbody:first-child > tr:first-child,
  3933. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  3934. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  3935. border-top-left-radius: 3px;
  3936. border-top-right-radius: 3px; }
  3937. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  3938. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  3939. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  3940. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  3941. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  3942. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  3943. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  3944. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  3945. border-top-left-radius: 3px; }
  3946. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  3947. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  3948. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  3949. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  3950. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  3951. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  3952. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  3953. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  3954. border-top-right-radius: 3px; }
  3955. .panel > .table:last-child,
  3956. .panel > .table-responsive:last-child > .table:last-child {
  3957. border-bottom-right-radius: 3px;
  3958. border-bottom-left-radius: 3px; }
  3959. .panel > .table:last-child > tbody:last-child > tr:last-child,
  3960. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  3961. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  3962. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  3963. border-bottom-left-radius: 3px;
  3964. border-bottom-right-radius: 3px; }
  3965. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  3966. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  3967. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  3968. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  3969. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  3970. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  3971. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  3972. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  3973. border-bottom-left-radius: 3px; }
  3974. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  3975. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  3976. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  3977. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  3978. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  3979. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  3980. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  3981. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  3982. border-bottom-right-radius: 3px; }
  3983. .panel > .panel-body + .table,
  3984. .panel > .panel-body + .table-responsive,
  3985. .panel > .table + .panel-body,
  3986. .panel > .table-responsive + .panel-body {
  3987. border-top: 1px solid #ddd; }
  3988. .panel > .table > tbody:first-child > tr:first-child th,
  3989. .panel > .table > tbody:first-child > tr:first-child td {
  3990. border-top: 0; }
  3991. .panel > .table-bordered,
  3992. .panel > .table-responsive > .table-bordered {
  3993. border: 0; }
  3994. .panel > .table-bordered > thead > tr > th:first-child,
  3995. .panel > .table-bordered > thead > tr > td:first-child,
  3996. .panel > .table-bordered > tbody > tr > th:first-child,
  3997. .panel > .table-bordered > tbody > tr > td:first-child,
  3998. .panel > .table-bordered > tfoot > tr > th:first-child,
  3999. .panel > .table-bordered > tfoot > tr > td:first-child,
  4000. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  4001. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  4002. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  4003. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  4004. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  4005. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  4006. border-left: 0; }
  4007. .panel > .table-bordered > thead > tr > th:last-child,
  4008. .panel > .table-bordered > thead > tr > td:last-child,
  4009. .panel > .table-bordered > tbody > tr > th:last-child,
  4010. .panel > .table-bordered > tbody > tr > td:last-child,
  4011. .panel > .table-bordered > tfoot > tr > th:last-child,
  4012. .panel > .table-bordered > tfoot > tr > td:last-child,
  4013. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  4014. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  4015. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  4016. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  4017. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  4018. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  4019. border-right: 0; }
  4020. .panel > .table-bordered > thead > tr:first-child > td,
  4021. .panel > .table-bordered > thead > tr:first-child > th,
  4022. .panel > .table-bordered > tbody > tr:first-child > td,
  4023. .panel > .table-bordered > tbody > tr:first-child > th,
  4024. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  4025. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  4026. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  4027. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  4028. border-bottom: 0; }
  4029. .panel > .table-bordered > tbody > tr:last-child > td,
  4030. .panel > .table-bordered > tbody > tr:last-child > th,
  4031. .panel > .table-bordered > tfoot > tr:last-child > td,
  4032. .panel > .table-bordered > tfoot > tr:last-child > th,
  4033. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  4034. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  4035. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  4036. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  4037. border-bottom: 0; }
  4038. .panel > .table-responsive {
  4039. border: 0;
  4040. margin-bottom: 0; }
  4041. .panel-group {
  4042. margin-bottom: 20px; }
  4043. .panel-group .panel {
  4044. margin-bottom: 0;
  4045. border-radius: 4px; }
  4046. .panel-group .panel + .panel {
  4047. margin-top: 5px; }
  4048. .panel-group .panel-heading {
  4049. border-bottom: 0; }
  4050. .panel-group .panel-heading + .panel-collapse > .panel-body,
  4051. .panel-group .panel-heading + .panel-collapse > .list-group {
  4052. border-top: 1px solid #ddd; }
  4053. .panel-group .panel-footer {
  4054. border-top: 0; }
  4055. .panel-group .panel-footer + .panel-collapse .panel-body {
  4056. border-bottom: 1px solid #ddd; }
  4057. .panel-default {
  4058. border-color: #ddd; }
  4059. .panel-default > .panel-heading {
  4060. color: #333333;
  4061. background-color: #f5f5f5;
  4062. border-color: #ddd; }
  4063. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  4064. border-top-color: #ddd; }
  4065. .panel-default > .panel-heading .badge {
  4066. color: #f5f5f5;
  4067. background-color: #333333; }
  4068. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  4069. border-bottom-color: #ddd; }
  4070. .panel-primary {
  4071. border-color: #337ab7; }
  4072. .panel-primary > .panel-heading {
  4073. color: #fff;
  4074. background-color: #337ab7;
  4075. border-color: #337ab7; }
  4076. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  4077. border-top-color: #337ab7; }
  4078. .panel-primary > .panel-heading .badge {
  4079. color: #337ab7;
  4080. background-color: #fff; }
  4081. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  4082. border-bottom-color: #337ab7; }
  4083. .panel-success {
  4084. border-color: #d6e9c6; }
  4085. .panel-success > .panel-heading {
  4086. color: #3c763d;
  4087. background-color: #dff0d8;
  4088. border-color: #d6e9c6; }
  4089. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  4090. border-top-color: #d6e9c6; }
  4091. .panel-success > .panel-heading .badge {
  4092. color: #dff0d8;
  4093. background-color: #3c763d; }
  4094. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  4095. border-bottom-color: #d6e9c6; }
  4096. .panel-info {
  4097. border-color: #bce8f1; }
  4098. .panel-info > .panel-heading {
  4099. color: #31708f;
  4100. background-color: #d9edf7;
  4101. border-color: #bce8f1; }
  4102. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  4103. border-top-color: #bce8f1; }
  4104. .panel-info > .panel-heading .badge {
  4105. color: #d9edf7;
  4106. background-color: #31708f; }
  4107. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  4108. border-bottom-color: #bce8f1; }
  4109. .panel-warning {
  4110. border-color: #faebcc; }
  4111. .panel-warning > .panel-heading {
  4112. color: #8a6d3b;
  4113. background-color: #fcf8e3;
  4114. border-color: #faebcc; }
  4115. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  4116. border-top-color: #faebcc; }
  4117. .panel-warning > .panel-heading .badge {
  4118. color: #fcf8e3;
  4119. background-color: #8a6d3b; }
  4120. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  4121. border-bottom-color: #faebcc; }
  4122. .panel-danger {
  4123. border-color: #ebccd1; }
  4124. .panel-danger > .panel-heading {
  4125. color: #a94442;
  4126. background-color: #f2dede;
  4127. border-color: #ebccd1; }
  4128. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  4129. border-top-color: #ebccd1; }
  4130. .panel-danger > .panel-heading .badge {
  4131. color: #f2dede;
  4132. background-color: #a94442; }
  4133. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  4134. border-bottom-color: #ebccd1; }
  4135. .embed-responsive {
  4136. position: relative;
  4137. display: block;
  4138. height: 0;
  4139. padding: 0;
  4140. overflow: hidden; }
  4141. .embed-responsive .embed-responsive-item,
  4142. .embed-responsive iframe,
  4143. .embed-responsive embed,
  4144. .embed-responsive object,
  4145. .embed-responsive video {
  4146. position: absolute;
  4147. top: 0;
  4148. left: 0;
  4149. bottom: 0;
  4150. height: 100%;
  4151. width: 100%;
  4152. border: 0; }
  4153. .embed-responsive-16by9 {
  4154. padding-bottom: 56.25%; }
  4155. .embed-responsive-4by3 {
  4156. padding-bottom: 75%; }
  4157. .well {
  4158. min-height: 20px;
  4159. padding: 19px;
  4160. margin-bottom: 20px;
  4161. background-color: #f5f5f5;
  4162. border: 1px solid #e3e3e3;
  4163. border-radius: 4px;
  4164. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  4165. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
  4166. .well blockquote {
  4167. border-color: #ddd;
  4168. border-color: rgba(0, 0, 0, 0.15); }
  4169. .well-lg {
  4170. padding: 24px;
  4171. border-radius: 6px; }
  4172. .well-sm {
  4173. padding: 9px;
  4174. border-radius: 3px; }
  4175. .close {
  4176. float: right;
  4177. font-size: 21px;
  4178. font-weight: bold;
  4179. line-height: 1;
  4180. color: #000;
  4181. text-shadow: 0 1px 0 #fff;
  4182. opacity: 0.2;
  4183. filter: alpha(opacity=20); }
  4184. .close:hover, .close:focus {
  4185. color: #000;
  4186. text-decoration: none;
  4187. cursor: pointer;
  4188. opacity: 0.5;
  4189. filter: alpha(opacity=50); }
  4190. button.close {
  4191. padding: 0;
  4192. cursor: pointer;
  4193. background: transparent;
  4194. border: 0;
  4195. -webkit-appearance: none; }
  4196. .modal-open {
  4197. overflow: hidden; }
  4198. .modal {
  4199. display: none;
  4200. overflow: hidden;
  4201. position: fixed;
  4202. top: 0;
  4203. right: 0;
  4204. bottom: 0;
  4205. left: 0;
  4206. z-index: 1050;
  4207. -webkit-overflow-scrolling: touch;
  4208. outline: 0; }
  4209. .modal.fade .modal-dialog {
  4210. -webkit-transform: translate(0, -25%);
  4211. -ms-transform: translate(0, -25%);
  4212. -o-transform: translate(0, -25%);
  4213. transform: translate(0, -25%);
  4214. -webkit-transition: -webkit-transform 0.3s ease-out;
  4215. -moz-transition: -moz-transform 0.3s ease-out;
  4216. -o-transition: -o-transform 0.3s ease-out;
  4217. transition: transform 0.3s ease-out; }
  4218. .modal.in .modal-dialog {
  4219. -webkit-transform: translate(0, 0);
  4220. -ms-transform: translate(0, 0);
  4221. -o-transform: translate(0, 0);
  4222. transform: translate(0, 0); }
  4223. .modal-open .modal {
  4224. overflow-x: hidden;
  4225. overflow-y: auto; }
  4226. .modal-dialog {
  4227. position: relative;
  4228. width: auto;
  4229. margin: 10px; }
  4230. .modal-content {
  4231. position: relative;
  4232. background-color: #fff;
  4233. border: 1px solid #999;
  4234. border: 1px solid rgba(0, 0, 0, 0.2);
  4235. border-radius: 3px;
  4236. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  4237. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  4238. background-clip: padding-box;
  4239. outline: 0; }
  4240. .modal-backdrop {
  4241. position: fixed;
  4242. top: 0;
  4243. right: 0;
  4244. bottom: 0;
  4245. left: 0;
  4246. z-index: 1040;
  4247. background-color: #000; }
  4248. .modal-backdrop.fade {
  4249. opacity: 0;
  4250. filter: alpha(opacity=0); }
  4251. .modal-backdrop.in {
  4252. opacity: 0.5;
  4253. filter: alpha(opacity=50); }
  4254. .modal-header {
  4255. padding: 15px;
  4256. border-bottom: 1px solid #e5e5e5;
  4257. min-height: 16.42857px; }
  4258. .modal-header .close {
  4259. margin-top: -2px; }
  4260. .modal-title {
  4261. margin: 0;
  4262. line-height: 1.42857; }
  4263. .modal-body {
  4264. position: relative;
  4265. padding: 15px; }
  4266. .modal-footer {
  4267. padding: 15px;
  4268. text-align: right;
  4269. border-top: 1px solid #e5e5e5; }
  4270. .modal-footer:before, .modal-footer:after {
  4271. content: " ";
  4272. display: table; }
  4273. .modal-footer:after {
  4274. clear: both; }
  4275. .modal-footer .btn + .btn {
  4276. margin-left: 5px;
  4277. margin-bottom: 0; }
  4278. .modal-footer .btn-group .btn + .btn {
  4279. margin-left: -1px; }
  4280. .modal-footer .btn-block + .btn-block {
  4281. margin-left: 0; }
  4282. .modal-scrollbar-measure {
  4283. position: absolute;
  4284. top: -9999px;
  4285. width: 50px;
  4286. height: 50px;
  4287. overflow: scroll; }
  4288. @media (min-width: 768px) {
  4289. .modal-dialog {
  4290. width: 600px;
  4291. margin: 30px auto; }
  4292. .modal-content {
  4293. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  4294. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  4295. .modal-sm {
  4296. width: 300px; } }
  4297. @media (min-width: 992px) {
  4298. .modal-lg {
  4299. width: 900px; } }
  4300. .tooltip {
  4301. position: absolute;
  4302. z-index: 1070;
  4303. display: block;
  4304. font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "黑体", Arial, sans-serif;
  4305. font-style: normal;
  4306. font-weight: normal;
  4307. letter-spacing: normal;
  4308. line-break: auto;
  4309. line-height: 1.42857;
  4310. text-align: left;
  4311. text-align: start;
  4312. text-decoration: none;
  4313. text-shadow: none;
  4314. text-transform: none;
  4315. white-space: normal;
  4316. word-break: normal;
  4317. word-spacing: normal;
  4318. word-wrap: normal;
  4319. font-size: 12px;
  4320. opacity: 0;
  4321. filter: alpha(opacity=0); }
  4322. .tooltip.in {
  4323. opacity: 0.9;
  4324. filter: alpha(opacity=90); }
  4325. .tooltip.top {
  4326. margin-top: -3px;
  4327. padding: 5px 0; }
  4328. .tooltip.right {
  4329. margin-left: 3px;
  4330. padding: 0 5px; }
  4331. .tooltip.bottom {
  4332. margin-top: 3px;
  4333. padding: 5px 0; }
  4334. .tooltip.left {
  4335. margin-left: -3px;
  4336. padding: 0 5px; }
  4337. .tooltip-inner {
  4338. max-width: 200px;
  4339. padding: 3px 8px;
  4340. color: #fff;
  4341. text-align: center;
  4342. background-color: #000;
  4343. border-radius: 4px; }
  4344. .tooltip-arrow {
  4345. position: absolute;
  4346. width: 0;
  4347. height: 0;
  4348. border-color: transparent;
  4349. border-style: solid; }
  4350. .tooltip.top .tooltip-arrow {
  4351. bottom: 0;
  4352. left: 50%;
  4353. margin-left: -5px;
  4354. border-width: 5px 5px 0;
  4355. border-top-color: #000; }
  4356. .tooltip.top-left .tooltip-arrow {
  4357. bottom: 0;
  4358. right: 5px;
  4359. margin-bottom: -5px;
  4360. border-width: 5px 5px 0;
  4361. border-top-color: #000; }
  4362. .tooltip.top-right .tooltip-arrow {
  4363. bottom: 0;
  4364. left: 5px;
  4365. margin-bottom: -5px;
  4366. border-width: 5px 5px 0;
  4367. border-top-color: #000; }
  4368. .tooltip.right .tooltip-arrow {
  4369. top: 50%;
  4370. left: 0;
  4371. margin-top: -5px;
  4372. border-width: 5px 5px 5px 0;
  4373. border-right-color: #000; }
  4374. .tooltip.left .tooltip-arrow {
  4375. top: 50%;
  4376. right: 0;
  4377. margin-top: -5px;
  4378. border-width: 5px 0 5px 5px;
  4379. border-left-color: #000; }
  4380. .tooltip.bottom .tooltip-arrow {
  4381. top: 0;
  4382. left: 50%;
  4383. margin-left: -5px;
  4384. border-width: 0 5px 5px;
  4385. border-bottom-color: #000; }
  4386. .tooltip.bottom-left .tooltip-arrow {
  4387. top: 0;
  4388. right: 5px;
  4389. margin-top: -5px;
  4390. border-width: 0 5px 5px;
  4391. border-bottom-color: #000; }
  4392. .tooltip.bottom-right .tooltip-arrow {
  4393. top: 0;
  4394. left: 5px;
  4395. margin-top: -5px;
  4396. border-width: 0 5px 5px;
  4397. border-bottom-color: #000; }
  4398. .popover {
  4399. position: absolute;
  4400. top: 0;
  4401. left: 0;
  4402. z-index: 1060;
  4403. display: none;
  4404. max-width: 276px;
  4405. padding: 1px;
  4406. font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "黑体", Arial, sans-serif;
  4407. font-style: normal;
  4408. font-weight: normal;
  4409. letter-spacing: normal;
  4410. line-break: auto;
  4411. line-height: 1.42857;
  4412. text-align: left;
  4413. text-align: start;
  4414. text-decoration: none;
  4415. text-shadow: none;
  4416. text-transform: none;
  4417. white-space: normal;
  4418. word-break: normal;
  4419. word-spacing: normal;
  4420. word-wrap: normal;
  4421. font-size: 14px;
  4422. background-color: #fff;
  4423. background-clip: padding-box;
  4424. border: 1px solid #ccc;
  4425. border: 1px solid rgba(0, 0, 0, 0.2);
  4426. border-radius: 6px;
  4427. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  4428. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  4429. .popover.top {
  4430. margin-top: -10px; }
  4431. .popover.right {
  4432. margin-left: 10px; }
  4433. .popover.bottom {
  4434. margin-top: 10px; }
  4435. .popover.left {
  4436. margin-left: -10px; }
  4437. .popover-title {
  4438. margin: 0;
  4439. padding: 8px 14px;
  4440. font-size: 14px;
  4441. background-color: #f7f7f7;
  4442. border-bottom: 1px solid #ebebeb;
  4443. border-radius: 5px 5px 0 0; }
  4444. .popover-content {
  4445. padding: 9px 14px; }
  4446. .popover > .arrow, .popover > .arrow:after {
  4447. position: absolute;
  4448. display: block;
  4449. width: 0;
  4450. height: 0;
  4451. border-color: transparent;
  4452. border-style: solid; }
  4453. .popover > .arrow {
  4454. border-width: 11px; }
  4455. .popover > .arrow:after {
  4456. border-width: 10px;
  4457. content: ""; }
  4458. .popover.top > .arrow {
  4459. left: 50%;
  4460. margin-left: -11px;
  4461. border-bottom-width: 0;
  4462. border-top-color: #999999;
  4463. border-top-color: rgba(0, 0, 0, 0.25);
  4464. bottom: -11px; }
  4465. .popover.top > .arrow:after {
  4466. content: " ";
  4467. bottom: 1px;
  4468. margin-left: -10px;
  4469. border-bottom-width: 0;
  4470. border-top-color: #fff; }
  4471. .popover.right > .arrow {
  4472. top: 50%;
  4473. left: -11px;
  4474. margin-top: -11px;
  4475. border-left-width: 0;
  4476. border-right-color: #999999;
  4477. border-right-color: rgba(0, 0, 0, 0.25); }
  4478. .popover.right > .arrow:after {
  4479. content: " ";
  4480. left: 1px;
  4481. bottom: -10px;
  4482. border-left-width: 0;
  4483. border-right-color: #fff; }
  4484. .popover.bottom > .arrow {
  4485. left: 50%;
  4486. margin-left: -11px;
  4487. border-top-width: 0;
  4488. border-bottom-color: #999999;
  4489. border-bottom-color: rgba(0, 0, 0, 0.25);
  4490. top: -11px; }
  4491. .popover.bottom > .arrow:after {
  4492. content: " ";
  4493. top: 1px;
  4494. margin-left: -10px;
  4495. border-top-width: 0;
  4496. border-bottom-color: #fff; }
  4497. .popover.left > .arrow {
  4498. top: 50%;
  4499. right: -11px;
  4500. margin-top: -11px;
  4501. border-right-width: 0;
  4502. border-left-color: #999999;
  4503. border-left-color: rgba(0, 0, 0, 0.25); }
  4504. .popover.left > .arrow:after {
  4505. content: " ";
  4506. right: 1px;
  4507. border-right-width: 0;
  4508. border-left-color: #fff;
  4509. bottom: -10px; }
  4510. .carousel {
  4511. position: relative; }
  4512. .carousel-inner {
  4513. position: relative;
  4514. overflow: hidden;
  4515. width: 100%; }
  4516. .carousel-inner > .item {
  4517. display: none;
  4518. position: relative;
  4519. -webkit-transition: 0.6s ease-in-out left;
  4520. -o-transition: 0.6s ease-in-out left;
  4521. transition: 0.6s ease-in-out left; }
  4522. .carousel-inner > .item > img,
  4523. .carousel-inner > .item > a > img {
  4524. display: block;
  4525. max-width: 100%;
  4526. height: auto;
  4527. line-height: 1; }
  4528. @media all and (transform-3d), (-webkit-transform-3d) {
  4529. .carousel-inner > .item {
  4530. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  4531. -moz-transition: -moz-transform 0.6s ease-in-out;
  4532. -o-transition: -o-transform 0.6s ease-in-out;
  4533. transition: transform 0.6s ease-in-out;
  4534. -webkit-backface-visibility: hidden;
  4535. -moz-backface-visibility: hidden;
  4536. backface-visibility: hidden;
  4537. -webkit-perspective: 1000px;
  4538. -moz-perspective: 1000px;
  4539. perspective: 1000px; }
  4540. .carousel-inner > .item.next, .carousel-inner > .item.active.right {
  4541. -webkit-transform: translate3d(100%, 0, 0);
  4542. transform: translate3d(100%, 0, 0);
  4543. left: 0; }
  4544. .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
  4545. -webkit-transform: translate3d(-100%, 0, 0);
  4546. transform: translate3d(-100%, 0, 0);
  4547. left: 0; }
  4548. .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
  4549. -webkit-transform: translate3d(0, 0, 0);
  4550. transform: translate3d(0, 0, 0);
  4551. left: 0; } }
  4552. .carousel-inner > .active,
  4553. .carousel-inner > .next,
  4554. .carousel-inner > .prev {
  4555. display: block; }
  4556. .carousel-inner > .active {
  4557. left: 0; }
  4558. .carousel-inner > .next,
  4559. .carousel-inner > .prev {
  4560. position: absolute;
  4561. top: 0;
  4562. width: 100%; }
  4563. .carousel-inner > .next {
  4564. left: 100%; }
  4565. .carousel-inner > .prev {
  4566. left: -100%; }
  4567. .carousel-inner > .next.left,
  4568. .carousel-inner > .prev.right {
  4569. left: 0; }
  4570. .carousel-inner > .active.left {
  4571. left: -100%; }
  4572. .carousel-inner > .active.right {
  4573. left: 100%; }
  4574. .carousel-control {
  4575. position: absolute;
  4576. top: 0;
  4577. left: 0;
  4578. bottom: 0;
  4579. width: 15%;
  4580. opacity: 0.5;
  4581. filter: alpha(opacity=50);
  4582. font-size: 20px;
  4583. color: #fff;
  4584. text-align: center;
  4585. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  4586. .carousel-control.left {
  4587. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  4588. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  4589. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  4590. background-repeat: repeat-x;
  4591. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  4592. .carousel-control.right {
  4593. left: auto;
  4594. right: 0;
  4595. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  4596. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  4597. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  4598. background-repeat: repeat-x;
  4599. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  4600. .carousel-control:hover, .carousel-control:focus {
  4601. outline: 0;
  4602. color: #fff;
  4603. text-decoration: none;
  4604. opacity: 0.9;
  4605. filter: alpha(opacity=90); }
  4606. .carousel-control .icon-prev,
  4607. .carousel-control .icon-next,
  4608. .carousel-control .glyphicon-chevron-left,
  4609. .carousel-control .glyphicon-chevron-right {
  4610. position: absolute;
  4611. top: 50%;
  4612. margin-top: -10px;
  4613. z-index: 5;
  4614. display: inline-block; }
  4615. .carousel-control .icon-prev,
  4616. .carousel-control .glyphicon-chevron-left {
  4617. left: 50%;
  4618. margin-left: -10px; }
  4619. .carousel-control .icon-next,
  4620. .carousel-control .glyphicon-chevron-right {
  4621. right: 50%;
  4622. margin-right: -10px; }
  4623. .carousel-control .icon-prev,
  4624. .carousel-control .icon-next {
  4625. width: 20px;
  4626. height: 20px;
  4627. line-height: 1;
  4628. font-family: serif; }
  4629. .carousel-control .icon-prev:before {
  4630. content: '\2039'; }
  4631. .carousel-control .icon-next:before {
  4632. content: '\203a'; }
  4633. .carousel-indicators {
  4634. position: absolute;
  4635. bottom: 10px;
  4636. left: 50%;
  4637. z-index: 15;
  4638. width: 60%;
  4639. margin-left: -30%;
  4640. padding-left: 0;
  4641. list-style: none;
  4642. text-align: center; }
  4643. .carousel-indicators li {
  4644. display: inline-block;
  4645. width: 10px;
  4646. height: 10px;
  4647. margin: 1px;
  4648. text-indent: -999px;
  4649. border: 1px solid #fff;
  4650. border-radius: 10px;
  4651. cursor: pointer;
  4652. background-color: #000 \9;
  4653. background-color: transparent; }
  4654. .carousel-indicators .active {
  4655. margin: 0;
  4656. width: 12px;
  4657. height: 12px;
  4658. background-color: #fff; }
  4659. .carousel-caption {
  4660. position: absolute;
  4661. left: 15%;
  4662. right: 15%;
  4663. bottom: 20px;
  4664. z-index: 10;
  4665. padding-top: 20px;
  4666. padding-bottom: 20px;
  4667. color: #fff;
  4668. text-align: center;
  4669. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  4670. .carousel-caption .btn {
  4671. text-shadow: none; }
  4672. @media screen and (min-width: 768px) {
  4673. .carousel-control .glyphicon-chevron-left,
  4674. .carousel-control .glyphicon-chevron-right,
  4675. .carousel-control .icon-prev,
  4676. .carousel-control .icon-next {
  4677. width: 30px;
  4678. height: 30px;
  4679. margin-top: -15px;
  4680. font-size: 30px; }
  4681. .carousel-control .glyphicon-chevron-left,
  4682. .carousel-control .icon-prev {
  4683. margin-left: -15px; }
  4684. .carousel-control .glyphicon-chevron-right,
  4685. .carousel-control .icon-next {
  4686. margin-right: -15px; }
  4687. .carousel-caption {
  4688. left: 20%;
  4689. right: 20%;
  4690. padding-bottom: 30px; }
  4691. .carousel-indicators {
  4692. bottom: 20px; } }
  4693. .clearfix:before, .clearfix:after {
  4694. content: " ";
  4695. display: table; }
  4696. .clearfix:after {
  4697. clear: both; }
  4698. .center-block {
  4699. display: block;
  4700. margin-left: auto;
  4701. margin-right: auto; }
  4702. .pull-right {
  4703. float: right !important; }
  4704. .pull-left {
  4705. float: left !important; }
  4706. .hide {
  4707. display: none !important; }
  4708. .invisible {
  4709. visibility: hidden; }
  4710. .text-hide {
  4711. font: 0/0 a;
  4712. color: transparent;
  4713. text-shadow: none;
  4714. background-color: transparent;
  4715. border: 0; }
  4716. .hidden {
  4717. display: none !important; }
  4718. .affix {
  4719. position: fixed; }
  4720. @-ms-viewport {
  4721. width: device-width; }
  4722. .visible-xs {
  4723. display: none !important; }
  4724. .visible-sm {
  4725. display: none !important; }
  4726. .visible-md {
  4727. display: none !important; }
  4728. .visible-lg {
  4729. display: none !important; }
  4730. .visible-xs-block,
  4731. .visible-xs-inline,
  4732. .visible-xs-inline-block,
  4733. .visible-sm-block,
  4734. .visible-sm-inline,
  4735. .visible-sm-inline-block,
  4736. .visible-md-block,
  4737. .visible-md-inline,
  4738. .visible-md-inline-block,
  4739. .visible-lg-block,
  4740. .visible-lg-inline,
  4741. .visible-lg-inline-block {
  4742. display: none !important; }
  4743. @media (max-width: 767px) {
  4744. .visible-xs {
  4745. display: block !important; }
  4746. table.visible-xs {
  4747. display: table !important; }
  4748. tr.visible-xs {
  4749. display: table-row !important; }
  4750. th.visible-xs,
  4751. td.visible-xs {
  4752. display: table-cell !important; } }
  4753. @media (max-width: 767px) {
  4754. .visible-xs-block {
  4755. display: block !important; } }
  4756. @media (max-width: 767px) {
  4757. .visible-xs-inline {
  4758. display: inline !important; } }
  4759. @media (max-width: 767px) {
  4760. .visible-xs-inline-block {
  4761. display: inline-block !important; } }
  4762. @media (min-width: 768px) and (max-width: 991px) {
  4763. .visible-sm {
  4764. display: block !important; }
  4765. table.visible-sm {
  4766. display: table !important; }
  4767. tr.visible-sm {
  4768. display: table-row !important; }
  4769. th.visible-sm,
  4770. td.visible-sm {
  4771. display: table-cell !important; } }
  4772. @media (min-width: 768px) and (max-width: 991px) {
  4773. .visible-sm-block {
  4774. display: block !important; } }
  4775. @media (min-width: 768px) and (max-width: 991px) {
  4776. .visible-sm-inline {
  4777. display: inline !important; } }
  4778. @media (min-width: 768px) and (max-width: 991px) {
  4779. .visible-sm-inline-block {
  4780. display: inline-block !important; } }
  4781. @media (min-width: 992px) and (max-width: 1199px) {
  4782. .visible-md {
  4783. display: block !important; }
  4784. table.visible-md {
  4785. display: table !important; }
  4786. tr.visible-md {
  4787. display: table-row !important; }
  4788. th.visible-md,
  4789. td.visible-md {
  4790. display: table-cell !important; } }
  4791. @media (min-width: 992px) and (max-width: 1199px) {
  4792. .visible-md-block {
  4793. display: block !important; } }
  4794. @media (min-width: 992px) and (max-width: 1199px) {
  4795. .visible-md-inline {
  4796. display: inline !important; } }
  4797. @media (min-width: 992px) and (max-width: 1199px) {
  4798. .visible-md-inline-block {
  4799. display: inline-block !important; } }
  4800. @media (min-width: 1200px) {
  4801. .visible-lg {
  4802. display: block !important; }
  4803. table.visible-lg {
  4804. display: table !important; }
  4805. tr.visible-lg {
  4806. display: table-row !important; }
  4807. th.visible-lg,
  4808. td.visible-lg {
  4809. display: table-cell !important; } }
  4810. @media (min-width: 1200px) {
  4811. .visible-lg-block {
  4812. display: block !important; } }
  4813. @media (min-width: 1200px) {
  4814. .visible-lg-inline {
  4815. display: inline !important; } }
  4816. @media (min-width: 1200px) {
  4817. .visible-lg-inline-block {
  4818. display: inline-block !important; } }
  4819. @media (max-width: 767px) {
  4820. .hidden-xs {
  4821. display: none !important; } }
  4822. @media (min-width: 768px) and (max-width: 991px) {
  4823. .hidden-sm {
  4824. display: none !important; } }
  4825. @media (min-width: 992px) and (max-width: 1199px) {
  4826. .hidden-md {
  4827. display: none !important; } }
  4828. @media (min-width: 1200px) {
  4829. .hidden-lg {
  4830. display: none !important; } }
  4831. .visible-print {
  4832. display: none !important; }
  4833. @media print {
  4834. .visible-print {
  4835. display: block !important; }
  4836. table.visible-print {
  4837. display: table !important; }
  4838. tr.visible-print {
  4839. display: table-row !important; }
  4840. th.visible-print,
  4841. td.visible-print {
  4842. display: table-cell !important; } }
  4843. .visible-print-block {
  4844. display: none !important; }
  4845. @media print {
  4846. .visible-print-block {
  4847. display: block !important; } }
  4848. .visible-print-inline {
  4849. display: none !important; }
  4850. @media print {
  4851. .visible-print-inline {
  4852. display: inline !important; } }
  4853. .visible-print-inline-block {
  4854. display: none !important; }
  4855. @media print {
  4856. .visible-print-inline-block {
  4857. display: inline-block !important; } }
  4858. @media print {
  4859. .hidden-print {
  4860. display: none !important; } }
  4861. /*# sourceMappingURL=bootstrap_apply.css.map */