bootstrap-magic.css 126 KB

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