bootstrap.css 121 KB

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