bootstrap.css 109 KB

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