bootstrap.css 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797
  1. /*!
  2. * Bootstrap v3.0.0
  3. *
  4. * Copyright 2013 Twitter, Inc
  5. * Licensed under the Apache License v2.0
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Designed and built with all the love in the world by @mdo and @fat.
  9. */
  10. /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
  11. article,
  12. aside,
  13. details,
  14. figcaption,
  15. figure,
  16. footer,
  17. header,
  18. hgroup,
  19. main,
  20. nav,
  21. section,
  22. summary {
  23. display: block;
  24. }
  25. audio,
  26. canvas,
  27. video {
  28. display: inline-block;
  29. }
  30. audio:not([controls]) {
  31. display: none;
  32. height: 0;
  33. }
  34. [hidden] {
  35. display: none;
  36. }
  37. html {
  38. font-family: sans-serif;
  39. -webkit-text-size-adjust: 100%;
  40. -ms-text-size-adjust: 100%;
  41. }
  42. body {
  43. margin: 0;
  44. }
  45. a:focus {
  46. outline: thin dotted;
  47. }
  48. a:active,
  49. a:hover {
  50. outline: 0;
  51. }
  52. h1 {
  53. margin: 0.67em 0;
  54. font-size: 2em;
  55. }
  56. abbr[title] {
  57. border-bottom: 1px dotted;
  58. }
  59. b,
  60. strong {
  61. font-weight: bold;
  62. }
  63. dfn {
  64. font-style: italic;
  65. }
  66. hr {
  67. height: 0;
  68. -moz-box-sizing: content-box;
  69. box-sizing: content-box;
  70. }
  71. mark {
  72. color: #000;
  73. background: #ff0;
  74. }
  75. code,
  76. kbd,
  77. pre,
  78. samp {
  79. font-family: monospace, serif;
  80. font-size: 1em;
  81. }
  82. pre {
  83. white-space: pre-wrap;
  84. }
  85. q {
  86. quotes: "\201C" "\201D" "\2018" "\2019";
  87. }
  88. small {
  89. font-size: 80%;
  90. }
  91. sub,
  92. sup {
  93. position: relative;
  94. font-size: 75%;
  95. line-height: 0;
  96. vertical-align: baseline;
  97. }
  98. sup {
  99. top: -0.5em;
  100. }
  101. sub {
  102. bottom: -0.25em;
  103. }
  104. img {
  105. border: 0;
  106. }
  107. svg:not(:root) {
  108. overflow: hidden;
  109. }
  110. figure {
  111. margin: 0;
  112. }
  113. fieldset {
  114. padding: 0.35em 0.625em 0.75em;
  115. margin: 0 2px;
  116. border: 1px solid #c0c0c0;
  117. }
  118. legend {
  119. padding: 0;
  120. border: 0;
  121. }
  122. button,
  123. input,
  124. select,
  125. textarea {
  126. margin: 0;
  127. font-family: inherit;
  128. font-size: 100%;
  129. }
  130. button,
  131. input {
  132. line-height: normal;
  133. }
  134. button,
  135. select {
  136. text-transform: none;
  137. }
  138. button,
  139. html input[type="button"],
  140. input[type="reset"],
  141. input[type="submit"] {
  142. cursor: pointer;
  143. -webkit-appearance: button;
  144. }
  145. button[disabled],
  146. html input[disabled] {
  147. cursor: default;
  148. }
  149. input[type="checkbox"],
  150. input[type="radio"] {
  151. padding: 0;
  152. box-sizing: border-box;
  153. }
  154. input[type="search"] {
  155. -webkit-box-sizing: content-box;
  156. -moz-box-sizing: content-box;
  157. box-sizing: content-box;
  158. -webkit-appearance: textfield;
  159. }
  160. input[type="search"]::-webkit-search-cancel-button,
  161. input[type="search"]::-webkit-search-decoration {
  162. -webkit-appearance: none;
  163. }
  164. button::-moz-focus-inner,
  165. input::-moz-focus-inner {
  166. padding: 0;
  167. border: 0;
  168. }
  169. textarea {
  170. overflow: auto;
  171. vertical-align: top;
  172. }
  173. table {
  174. border-collapse: collapse;
  175. border-spacing: 0;
  176. }
  177. @media print {
  178. * {
  179. color: #000 !important;
  180. text-shadow: none !important;
  181. background: transparent !important;
  182. box-shadow: none !important;
  183. }
  184. a,
  185. a:visited {
  186. text-decoration: underline;
  187. }
  188. a[href]:after {
  189. content: " (" attr(href) ")";
  190. }
  191. abbr[title]:after {
  192. content: " (" attr(title) ")";
  193. }
  194. .ir a:after,
  195. a[href^="javascript:"]:after,
  196. a[href^="#"]:after {
  197. content: "";
  198. }
  199. pre,
  200. blockquote {
  201. border: 1px solid #999;
  202. page-break-inside: avoid;
  203. }
  204. thead {
  205. display: table-header-group;
  206. }
  207. tr,
  208. img {
  209. page-break-inside: avoid;
  210. }
  211. img {
  212. max-width: 100% !important;
  213. }
  214. @page {
  215. margin: 2cm .5cm;
  216. }
  217. p,
  218. h2,
  219. h3 {
  220. orphans: 3;
  221. widows: 3;
  222. }
  223. h2,
  224. h3 {
  225. page-break-after: avoid;
  226. }
  227. .navbar {
  228. display: none;
  229. }
  230. .table td,
  231. .table th {
  232. background-color: #fff !important;
  233. }
  234. .btn > .caret,
  235. .dropup > .btn > .caret {
  236. border-top-color: #000 !important;
  237. }
  238. .label {
  239. border: 1px solid #000;
  240. }
  241. .table {
  242. border-collapse: collapse !important;
  243. }
  244. .table-bordered th,
  245. .table-bordered td {
  246. border: 1px solid #ddd !important;
  247. }
  248. }
  249. * {
  250. -webkit-box-sizing: border-box;
  251. -moz-box-sizing: border-box;
  252. box-sizing: border-box;
  253. }
  254. html {
  255. font-size: 62.5%;
  256. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  257. }
  258. body {
  259. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  260. font-size: 14px;
  261. line-height: 1.428571429;
  262. color: #333333;
  263. background-color: #ffffff;
  264. }
  265. input,
  266. button,
  267. select,
  268. textarea {
  269. font-family: inherit;
  270. font-size: inherit;
  271. line-height: inherit;
  272. }
  273. a {
  274. color: #428bca;
  275. text-decoration: none;
  276. }
  277. a:hover,
  278. a:focus {
  279. color: #2a6496;
  280. text-decoration: underline;
  281. }
  282. a:focus {
  283. outline: thin dotted #333;
  284. outline: 5px auto -webkit-focus-ring-color;
  285. outline-offset: -2px;
  286. }
  287. img {
  288. vertical-align: middle;
  289. }
  290. .img-responsive {
  291. display: inline-block;
  292. height: auto;
  293. max-width: 100%;
  294. }
  295. .img-rounded {
  296. border-radius: 6px;
  297. }
  298. .img-circle {
  299. border-radius: 500px;
  300. }
  301. hr {
  302. margin-top: 20px;
  303. margin-bottom: 20px;
  304. border: 0;
  305. border-top: 1px solid #eeeeee;
  306. }
  307. p {
  308. margin: 0 0 10px;
  309. }
  310. .lead {
  311. margin-bottom: 20px;
  312. font-size: 16.099999999999998px;
  313. font-weight: 200;
  314. line-height: 1.4;
  315. }
  316. @media (min-width: 768px) {
  317. .lead {
  318. font-size: 21px;
  319. }
  320. }
  321. small {
  322. font-size: 85%;
  323. }
  324. cite {
  325. font-style: normal;
  326. }
  327. .text-muted {
  328. color: #999999;
  329. }
  330. .text-primary {
  331. color: #428bca;
  332. }
  333. .text-warning {
  334. color: #c09853;
  335. }
  336. .text-danger {
  337. color: #b94a48;
  338. }
  339. .text-success {
  340. color: #468847;
  341. }
  342. .text-info {
  343. color: #3a87ad;
  344. }
  345. .text-left {
  346. text-align: left;
  347. }
  348. .text-right {
  349. text-align: right;
  350. }
  351. .text-center {
  352. text-align: center;
  353. }
  354. h1,
  355. h2,
  356. h3,
  357. h4,
  358. h5,
  359. h6,
  360. .h1,
  361. .h2,
  362. .h3,
  363. .h4,
  364. .h5,
  365. .h6 {
  366. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  367. font-weight: 500;
  368. line-height: 1.1;
  369. }
  370. h1 small,
  371. h2 small,
  372. h3 small,
  373. h4 small,
  374. h5 small,
  375. h6 small,
  376. .h1 small,
  377. .h2 small,
  378. .h3 small,
  379. .h4 small,
  380. .h5 small,
  381. .h6 small {
  382. font-weight: normal;
  383. line-height: 1;
  384. color: #999999;
  385. }
  386. h1,
  387. h2,
  388. h3 {
  389. margin-top: 20px;
  390. margin-bottom: 10px;
  391. }
  392. h4,
  393. h5,
  394. h6 {
  395. margin-top: 10px;
  396. margin-bottom: 10px;
  397. }
  398. h1,
  399. .h1 {
  400. font-size: 38px;
  401. }
  402. h2,
  403. .h2 {
  404. font-size: 32px;
  405. }
  406. h3,
  407. .h3 {
  408. font-size: 24px;
  409. }
  410. h4,
  411. .h4 {
  412. font-size: 18px;
  413. }
  414. h5,
  415. .h5 {
  416. font-size: 14px;
  417. }
  418. h6,
  419. .h6 {
  420. font-size: 12px;
  421. }
  422. h1 small,
  423. .h1 small {
  424. font-size: 24px;
  425. }
  426. h2 small,
  427. .h2 small {
  428. font-size: 18px;
  429. }
  430. h3 small,
  431. .h3 small,
  432. h4 small,
  433. .h4 small {
  434. font-size: 14px;
  435. }
  436. .page-header {
  437. padding-bottom: 9px;
  438. margin: 40px 0 20px;
  439. border-bottom: 1px solid #eeeeee;
  440. }
  441. ul,
  442. ol {
  443. margin-top: 0;
  444. margin-bottom: 10px;
  445. }
  446. ul ul,
  447. ol ul,
  448. ul ol,
  449. ol ol {
  450. margin-bottom: 0;
  451. }
  452. .list-unstyled {
  453. padding-left: 0;
  454. list-style: none;
  455. }
  456. .list-inline {
  457. padding-left: 0;
  458. list-style: none;
  459. }
  460. .list-inline > li {
  461. display: inline-block;
  462. padding-right: 5px;
  463. padding-left: 5px;
  464. }
  465. dl {
  466. margin-bottom: 20px;
  467. }
  468. dt,
  469. dd {
  470. line-height: 1.428571429;
  471. }
  472. dt {
  473. font-weight: bold;
  474. }
  475. dd {
  476. margin-left: 0;
  477. }
  478. .dl-horizontal dt {
  479. float: left;
  480. width: 160px;
  481. overflow: hidden;
  482. clear: left;
  483. text-align: right;
  484. text-overflow: ellipsis;
  485. white-space: nowrap;
  486. }
  487. .dl-horizontal dd {
  488. margin-left: 180px;
  489. }
  490. .dl-horizontal dd:before,
  491. .dl-horizontal dd:after {
  492. display: table;
  493. content: " ";
  494. }
  495. .dl-horizontal dd:after {
  496. clear: both;
  497. }
  498. .dl-horizontal dd:before,
  499. .dl-horizontal dd:after {
  500. display: table;
  501. content: " ";
  502. }
  503. .dl-horizontal dd:after {
  504. clear: both;
  505. }
  506. abbr[title],
  507. abbr[data-original-title] {
  508. cursor: help;
  509. border-bottom: 1px dotted #999999;
  510. }
  511. abbr.initialism {
  512. font-size: 90%;
  513. text-transform: uppercase;
  514. }
  515. blockquote {
  516. padding: 10px 20px;
  517. margin: 0 0 20px;
  518. border-left: 5px solid #eeeeee;
  519. }
  520. blockquote p {
  521. font-size: 17.5px;
  522. font-weight: 300;
  523. line-height: 1.25;
  524. }
  525. blockquote p:last-child {
  526. margin-bottom: 0;
  527. }
  528. blockquote small {
  529. display: block;
  530. line-height: 1.428571429;
  531. color: #999999;
  532. }
  533. blockquote small:before {
  534. content: '\2014 \00A0';
  535. }
  536. blockquote.pull-right {
  537. float: right;
  538. padding-right: 15px;
  539. padding-left: 0;
  540. border-right: 5px solid #eeeeee;
  541. border-left: 0;
  542. }
  543. blockquote.pull-right p,
  544. blockquote.pull-right small {
  545. text-align: right;
  546. }
  547. blockquote.pull-right small:before {
  548. content: '';
  549. }
  550. blockquote.pull-right small:after {
  551. content: '\00A0 \2014';
  552. }
  553. q:before,
  554. q:after,
  555. blockquote:before,
  556. blockquote:after {
  557. content: "";
  558. }
  559. address {
  560. display: block;
  561. margin-bottom: 20px;
  562. font-style: normal;
  563. line-height: 1.428571429;
  564. }
  565. code,
  566. pre {
  567. font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  568. }
  569. code {
  570. padding: 2px 4px;
  571. font-size: 90%;
  572. color: #c7254e;
  573. white-space: nowrap;
  574. background-color: #f9f2f4;
  575. border-radius: 4px;
  576. }
  577. pre {
  578. display: block;
  579. padding: 9.5px;
  580. margin: 0 0 10px;
  581. font-size: 13px;
  582. line-height: 1.428571429;
  583. color: #333333;
  584. word-break: break-all;
  585. word-wrap: break-word;
  586. background-color: #f5f5f5;
  587. border: 1px solid #cccccc;
  588. border-radius: 4px;
  589. }
  590. pre.prettyprint {
  591. margin-bottom: 20px;
  592. }
  593. pre code {
  594. padding: 0;
  595. color: inherit;
  596. white-space: pre-wrap;
  597. background-color: transparent;
  598. border: 0;
  599. }
  600. .pre-scrollable {
  601. max-height: 340px;
  602. overflow-y: scroll;
  603. }
  604. .container {
  605. margin-right: auto;
  606. margin-left: auto;
  607. }
  608. .container:before,
  609. .container:after {
  610. display: table;
  611. content: " ";
  612. }
  613. .container:after {
  614. clear: both;
  615. }
  616. .container:before,
  617. .container:after {
  618. display: table;
  619. content: " ";
  620. }
  621. .container:after {
  622. clear: both;
  623. }
  624. .row:before,
  625. .row:after {
  626. display: table;
  627. content: " ";
  628. }
  629. .row:after {
  630. clear: both;
  631. }
  632. .row:before,
  633. .row:after {
  634. display: table;
  635. content: " ";
  636. }
  637. .row:after {
  638. clear: both;
  639. }
  640. @media (min-width: 768px) {
  641. .row {
  642. margin-right: -15px;
  643. margin-left: -15px;
  644. }
  645. }
  646. .row .row {
  647. margin-right: -15px;
  648. margin-left: -15px;
  649. }
  650. .col-1,
  651. .col-2,
  652. .col-3,
  653. .col-4,
  654. .col-5,
  655. .col-6,
  656. .col-7,
  657. .col-8,
  658. .col-9,
  659. .col-10,
  660. .col-11,
  661. .col-12,
  662. .col-sm-1,
  663. .col-sm-2,
  664. .col-sm-3,
  665. .col-sm-4,
  666. .col-sm-5,
  667. .col-sm-6,
  668. .col-sm-7,
  669. .col-sm-8,
  670. .col-sm-9,
  671. .col-sm-10,
  672. .col-sm-11,
  673. .col-sm-12,
  674. .col-lg-1,
  675. .col-lg-2,
  676. .col-lg-3,
  677. .col-lg-4,
  678. .col-lg-5,
  679. .col-lg-6,
  680. .col-lg-7,
  681. .col-lg-8,
  682. .col-lg-9,
  683. .col-lg-10,
  684. .col-lg-11,
  685. .col-lg-12 {
  686. position: relative;
  687. min-height: 1px;
  688. padding-right: 15px;
  689. padding-left: 15px;
  690. }
  691. .col-1,
  692. .col-2,
  693. .col-3,
  694. .col-4,
  695. .col-5,
  696. .col-6,
  697. .col-7,
  698. .col-8,
  699. .col-9,
  700. .col-10,
  701. .col-11,
  702. .col-12 {
  703. float: left;
  704. }
  705. .col-1 {
  706. width: 8.333333333333332%;
  707. }
  708. .col-2 {
  709. width: 16.666666666666664%;
  710. }
  711. .col-3 {
  712. width: 25%;
  713. }
  714. .col-4 {
  715. width: 33.33333333333333%;
  716. }
  717. .col-5 {
  718. width: 41.66666666666667%;
  719. }
  720. .col-6 {
  721. width: 50%;
  722. }
  723. .col-7 {
  724. width: 58.333333333333336%;
  725. }
  726. .col-8 {
  727. width: 66.66666666666666%;
  728. }
  729. .col-9 {
  730. width: 75%;
  731. }
  732. .col-10 {
  733. width: 83.33333333333334%;
  734. }
  735. .col-11 {
  736. width: 91.66666666666666%;
  737. }
  738. .col-12 {
  739. width: 100%;
  740. }
  741. @media (min-width: 768px) {
  742. .container {
  743. max-width: 728px;
  744. }
  745. .col-sm-1,
  746. .col-sm-2,
  747. .col-sm-3,
  748. .col-sm-4,
  749. .col-sm-5,
  750. .col-sm-6,
  751. .col-sm-7,
  752. .col-sm-8,
  753. .col-sm-9,
  754. .col-sm-10,
  755. .col-sm-11,
  756. .col-sm-12 {
  757. float: left;
  758. }
  759. .col-sm-1 {
  760. width: 8.333333333333332%;
  761. }
  762. .col-sm-2 {
  763. width: 16.666666666666664%;
  764. }
  765. .col-sm-3 {
  766. width: 25%;
  767. }
  768. .col-sm-4 {
  769. width: 33.33333333333333%;
  770. }
  771. .col-sm-5 {
  772. width: 41.66666666666667%;
  773. }
  774. .col-sm-6 {
  775. width: 50%;
  776. }
  777. .col-sm-7 {
  778. width: 58.333333333333336%;
  779. }
  780. .col-sm-8 {
  781. width: 66.66666666666666%;
  782. }
  783. .col-sm-9 {
  784. width: 75%;
  785. }
  786. .col-sm-10 {
  787. width: 83.33333333333334%;
  788. }
  789. .col-sm-11 {
  790. width: 91.66666666666666%;
  791. }
  792. .col-sm-12 {
  793. width: 100%;
  794. }
  795. .col-sm-push-1 {
  796. left: 8.333333333333332%;
  797. }
  798. .col-sm-push-2 {
  799. left: 16.666666666666664%;
  800. }
  801. .col-sm-push-3 {
  802. left: 25%;
  803. }
  804. .col-sm-push-4 {
  805. left: 33.33333333333333%;
  806. }
  807. .col-sm-push-5 {
  808. left: 41.66666666666667%;
  809. }
  810. .col-sm-push-6 {
  811. left: 50%;
  812. }
  813. .col-sm-push-7 {
  814. left: 58.333333333333336%;
  815. }
  816. .col-sm-push-8 {
  817. left: 66.66666666666666%;
  818. }
  819. .col-sm-push-9 {
  820. left: 75%;
  821. }
  822. .col-sm-push-10 {
  823. left: 83.33333333333334%;
  824. }
  825. .col-sm-push-11 {
  826. left: 91.66666666666666%;
  827. }
  828. .col-sm-pull-1 {
  829. right: 8.333333333333332%;
  830. }
  831. .col-sm-pull-2 {
  832. right: 16.666666666666664%;
  833. }
  834. .col-sm-pull-3 {
  835. right: 25%;
  836. }
  837. .col-sm-pull-4 {
  838. right: 33.33333333333333%;
  839. }
  840. .col-sm-pull-5 {
  841. right: 41.66666666666667%;
  842. }
  843. .col-sm-pull-6 {
  844. right: 50%;
  845. }
  846. .col-sm-pull-7 {
  847. right: 58.333333333333336%;
  848. }
  849. .col-sm-pull-8 {
  850. right: 66.66666666666666%;
  851. }
  852. .col-sm-pull-9 {
  853. right: 75%;
  854. }
  855. .col-sm-pull-10 {
  856. right: 83.33333333333334%;
  857. }
  858. .col-sm-pull-11 {
  859. right: 91.66666666666666%;
  860. }
  861. .col-sm-offset-1 {
  862. margin-left: 8.333333333333332%;
  863. }
  864. .col-sm-offset-2 {
  865. margin-left: 16.666666666666664%;
  866. }
  867. .col-sm-offset-3 {
  868. margin-left: 25%;
  869. }
  870. .col-sm-offset-4 {
  871. margin-left: 33.33333333333333%;
  872. }
  873. .col-sm-offset-5 {
  874. margin-left: 41.66666666666667%;
  875. }
  876. .col-sm-offset-6 {
  877. margin-left: 50%;
  878. }
  879. .col-sm-offset-7 {
  880. margin-left: 58.333333333333336%;
  881. }
  882. .col-sm-offset-8 {
  883. margin-left: 66.66666666666666%;
  884. }
  885. .col-sm-offset-9 {
  886. margin-left: 75%;
  887. }
  888. .col-sm-offset-10 {
  889. margin-left: 83.33333333333334%;
  890. }
  891. .col-sm-offset-11 {
  892. margin-left: 91.66666666666666%;
  893. }
  894. }
  895. @media (min-width: 992px) {
  896. .container {
  897. max-width: 940px;
  898. }
  899. .col-lg-1,
  900. .col-lg-2,
  901. .col-lg-3,
  902. .col-lg-4,
  903. .col-lg-5,
  904. .col-lg-6,
  905. .col-lg-7,
  906. .col-lg-8,
  907. .col-lg-9,
  908. .col-lg-10,
  909. .col-lg-11,
  910. .col-lg-12 {
  911. float: left;
  912. }
  913. .col-lg-1 {
  914. width: 8.333333333333332%;
  915. }
  916. .col-lg-2 {
  917. width: 16.666666666666664%;
  918. }
  919. .col-lg-3 {
  920. width: 25%;
  921. }
  922. .col-lg-4 {
  923. width: 33.33333333333333%;
  924. }
  925. .col-lg-5 {
  926. width: 41.66666666666667%;
  927. }
  928. .col-lg-6 {
  929. width: 50%;
  930. }
  931. .col-lg-7 {
  932. width: 58.333333333333336%;
  933. }
  934. .col-lg-8 {
  935. width: 66.66666666666666%;
  936. }
  937. .col-lg-9 {
  938. width: 75%;
  939. }
  940. .col-lg-10 {
  941. width: 83.33333333333334%;
  942. }
  943. .col-lg-11 {
  944. width: 91.66666666666666%;
  945. }
  946. .col-lg-12 {
  947. width: 100%;
  948. }
  949. .col-lg-push-1 {
  950. left: 8.333333333333332%;
  951. }
  952. .col-lg-push-2 {
  953. left: 16.666666666666664%;
  954. }
  955. .col-lg-push-3 {
  956. left: 25%;
  957. }
  958. .col-lg-push-4 {
  959. left: 33.33333333333333%;
  960. }
  961. .col-lg-push-5 {
  962. left: 41.66666666666667%;
  963. }
  964. .col-lg-push-6 {
  965. left: 50%;
  966. }
  967. .col-lg-push-7 {
  968. left: 58.333333333333336%;
  969. }
  970. .col-lg-push-8 {
  971. left: 66.66666666666666%;
  972. }
  973. .col-lg-push-9 {
  974. left: 75%;
  975. }
  976. .col-lg-push-10 {
  977. left: 83.33333333333334%;
  978. }
  979. .col-lg-push-11 {
  980. left: 91.66666666666666%;
  981. }
  982. .col-lg-pull-1 {
  983. right: 8.333333333333332%;
  984. }
  985. .col-lg-pull-2 {
  986. right: 16.666666666666664%;
  987. }
  988. .col-lg-pull-3 {
  989. right: 25%;
  990. }
  991. .col-lg-pull-4 {
  992. right: 33.33333333333333%;
  993. }
  994. .col-lg-pull-5 {
  995. right: 41.66666666666667%;
  996. }
  997. .col-lg-pull-6 {
  998. right: 50%;
  999. }
  1000. .col-lg-pull-7 {
  1001. right: 58.333333333333336%;
  1002. }
  1003. .col-lg-pull-8 {
  1004. right: 66.66666666666666%;
  1005. }
  1006. .col-lg-pull-9 {
  1007. right: 75%;
  1008. }
  1009. .col-lg-pull-10 {
  1010. right: 83.33333333333334%;
  1011. }
  1012. .col-lg-pull-11 {
  1013. right: 91.66666666666666%;
  1014. }
  1015. .col-lg-offset-1 {
  1016. margin-left: 8.333333333333332%;
  1017. }
  1018. .col-lg-offset-2 {
  1019. margin-left: 16.666666666666664%;
  1020. }
  1021. .col-lg-offset-3 {
  1022. margin-left: 25%;
  1023. }
  1024. .col-lg-offset-4 {
  1025. margin-left: 33.33333333333333%;
  1026. }
  1027. .col-lg-offset-5 {
  1028. margin-left: 41.66666666666667%;
  1029. }
  1030. .col-lg-offset-6 {
  1031. margin-left: 50%;
  1032. }
  1033. .col-lg-offset-7 {
  1034. margin-left: 58.333333333333336%;
  1035. }
  1036. .col-lg-offset-8 {
  1037. margin-left: 66.66666666666666%;
  1038. }
  1039. .col-lg-offset-9 {
  1040. margin-left: 75%;
  1041. }
  1042. .col-lg-offset-10 {
  1043. margin-left: 83.33333333333334%;
  1044. }
  1045. .col-lg-offset-11 {
  1046. margin-left: 91.66666666666666%;
  1047. }
  1048. }
  1049. @media (min-width: 1200px) {
  1050. .container {
  1051. max-width: 1170px;
  1052. }
  1053. }
  1054. table {
  1055. max-width: 100%;
  1056. background-color: transparent;
  1057. }
  1058. th {
  1059. text-align: left;
  1060. }
  1061. .table {
  1062. width: 100%;
  1063. margin-bottom: 20px;
  1064. }
  1065. .table thead > tr > th,
  1066. .table tbody > tr > th,
  1067. .table tfoot > tr > th,
  1068. .table thead > tr > td,
  1069. .table tbody > tr > td,
  1070. .table tfoot > tr > td {
  1071. padding: 8px;
  1072. line-height: 1.428571429;
  1073. vertical-align: top;
  1074. border-top: 1px solid #dddddd;
  1075. }
  1076. .table thead > tr > th {
  1077. vertical-align: bottom;
  1078. }
  1079. .table caption + thead tr:first-child th,
  1080. .table colgroup + thead tr:first-child th,
  1081. .table thead:first-child tr:first-child th,
  1082. .table caption + thead tr:first-child td,
  1083. .table colgroup + thead tr:first-child td,
  1084. .table thead:first-child tr:first-child td {
  1085. border-top: 0;
  1086. }
  1087. .table tbody + tbody {
  1088. border-top: 2px solid #dddddd;
  1089. }
  1090. .table .table {
  1091. background-color: #ffffff;
  1092. }
  1093. .table-condensed thead > tr > th,
  1094. .table-condensed tbody > tr > th,
  1095. .table-condensed tfoot > tr > th,
  1096. .table-condensed thead > tr > td,
  1097. .table-condensed tbody > tr > td,
  1098. .table-condensed tfoot > tr > td {
  1099. padding: 5px;
  1100. }
  1101. .table-bordered {
  1102. border: 1px solid #dddddd;
  1103. }
  1104. .table-bordered > thead > tr > th,
  1105. .table-bordered > tbody > tr > th,
  1106. .table-bordered > tfoot > tr > th,
  1107. .table-bordered > thead > tr > td,
  1108. .table-bordered > tbody > tr > td,
  1109. .table-bordered > tfoot > tr > td {
  1110. border: 1px solid #dddddd;
  1111. }
  1112. .table-striped > tbody > tr:nth-child(odd) > td,
  1113. .table-striped > tbody > tr:nth-child(odd) > th {
  1114. background-color: #f9f9f9;
  1115. }
  1116. .table-hover > tbody > tr:hover > td,
  1117. .table-hover > tbody > tr:hover > th {
  1118. background-color: #f5f5f5;
  1119. }
  1120. table col[class^="col-"] {
  1121. display: table-column;
  1122. float: none;
  1123. }
  1124. table td[class^="col-"],
  1125. table th[class^="col-"] {
  1126. display: table-cell;
  1127. float: none;
  1128. }
  1129. .table > thead > tr > td.active,
  1130. .table > tbody > tr > td.active,
  1131. .table > tfoot > tr > td.active,
  1132. .table > thead > tr > th.active,
  1133. .table > tbody > tr > th.active,
  1134. .table > tfoot > tr > th.active,
  1135. .table > thead > tr.active > td,
  1136. .table > tbody > tr.active > td,
  1137. .table > tfoot > tr.active > td,
  1138. .table > thead > tr.active > th,
  1139. .table > tbody > tr.active > th,
  1140. .table > tfoot > tr.active > th {
  1141. background-color: #f5f5f5;
  1142. }
  1143. .table > thead > tr > td.success,
  1144. .table > tbody > tr > td.success,
  1145. .table > tfoot > tr > td.success,
  1146. .table > thead > tr > th.success,
  1147. .table > tbody > tr > th.success,
  1148. .table > tfoot > tr > th.success,
  1149. .table > thead > tr.success > td,
  1150. .table > tbody > tr.success > td,
  1151. .table > tfoot > tr.success > td,
  1152. .table > thead > tr.success > th,
  1153. .table > tbody > tr.success > th,
  1154. .table > tfoot > tr.success > th {
  1155. background-color: #dff0d8;
  1156. border-color: #d6e9c6;
  1157. }
  1158. .table > thead > tr > td.danger,
  1159. .table > tbody > tr > td.danger,
  1160. .table > tfoot > tr > td.danger,
  1161. .table > thead > tr > th.danger,
  1162. .table > tbody > tr > th.danger,
  1163. .table > tfoot > tr > th.danger,
  1164. .table > thead > tr.danger > td,
  1165. .table > tbody > tr.danger > td,
  1166. .table > tfoot > tr.danger > td,
  1167. .table > thead > tr.danger > th,
  1168. .table > tbody > tr.danger > th,
  1169. .table > tfoot > tr.danger > th {
  1170. background-color: #f2dede;
  1171. border-color: #eed3d7;
  1172. }
  1173. .table > thead > tr > td.warning,
  1174. .table > tbody > tr > td.warning,
  1175. .table > tfoot > tr > td.warning,
  1176. .table > thead > tr > th.warning,
  1177. .table > tbody > tr > th.warning,
  1178. .table > tfoot > tr > th.warning,
  1179. .table > thead > tr.warning > td,
  1180. .table > tbody > tr.warning > td,
  1181. .table > tfoot > tr.warning > td,
  1182. .table > thead > tr.warning > th,
  1183. .table > tbody > tr.warning > th,
  1184. .table > tfoot > tr.warning > th {
  1185. background-color: #fcf8e3;
  1186. border-color: #fbeed5;
  1187. }
  1188. .table-hover > tbody > tr > td.success:hover,
  1189. .table-hover > tbody > tr > th.success:hover,
  1190. .table-hover > tbody > tr.success:hover > td {
  1191. background-color: #d0e9c6;
  1192. border-color: #c9e2b3;
  1193. }
  1194. .table-hover > tbody > tr > td.danger:hover,
  1195. .table-hover > tbody > tr > th.danger:hover,
  1196. .table-hover > tbody > tr.danger:hover > td {
  1197. background-color: #ebcccc;
  1198. border-color: #e6c1c7;
  1199. }
  1200. .table-hover > tbody > tr > td.warning:hover,
  1201. .table-hover > tbody > tr > th.warning:hover,
  1202. .table-hover > tbody > tr.warning:hover > td {
  1203. background-color: #faf2cc;
  1204. border-color: #f8e5be;
  1205. }
  1206. fieldset {
  1207. padding: 0;
  1208. margin: 0;
  1209. border: 0;
  1210. }
  1211. legend {
  1212. display: block;
  1213. width: 100%;
  1214. padding: 0;
  1215. margin-bottom: 20px;
  1216. font-size: 21px;
  1217. line-height: inherit;
  1218. color: #333333;
  1219. border: 0;
  1220. border-bottom: 1px solid #e5e5e5;
  1221. }
  1222. label {
  1223. display: inline-block;
  1224. margin-bottom: 5px;
  1225. font-weight: bold;
  1226. }
  1227. input[type="search"] {
  1228. -webkit-box-sizing: border-box;
  1229. -moz-box-sizing: border-box;
  1230. box-sizing: border-box;
  1231. }
  1232. input[type="radio"],
  1233. input[type="checkbox"] {
  1234. margin: 4px 0 0;
  1235. margin-top: 1px \9;
  1236. /* IE8-9 */
  1237. line-height: normal;
  1238. }
  1239. input[type="file"] {
  1240. display: block;
  1241. }
  1242. select[multiple],
  1243. select[size] {
  1244. height: auto;
  1245. }
  1246. select optgroup {
  1247. font-family: inherit;
  1248. font-size: inherit;
  1249. font-style: inherit;
  1250. }
  1251. input[type="file"]:focus,
  1252. input[type="radio"]:focus,
  1253. input[type="checkbox"]:focus {
  1254. outline: thin dotted #333;
  1255. outline: 5px auto -webkit-focus-ring-color;
  1256. outline-offset: -2px;
  1257. }
  1258. input[type="number"]::-webkit-outer-spin-button,
  1259. input[type="number"]::-webkit-inner-spin-button {
  1260. height: auto;
  1261. }
  1262. .form-control:-moz-placeholder {
  1263. color: #999999;
  1264. }
  1265. .form-control::-moz-placeholder {
  1266. color: #999999;
  1267. }
  1268. .form-control:-ms-input-placeholder {
  1269. color: #999999;
  1270. }
  1271. .form-control::-webkit-input-placeholder {
  1272. color: #999999;
  1273. }
  1274. .form-control {
  1275. display: block;
  1276. width: 100%;
  1277. height: 34px;
  1278. padding: 6px 12px;
  1279. font-size: 14px;
  1280. line-height: 1.428571429;
  1281. color: #555555;
  1282. vertical-align: middle;
  1283. background-color: #ffffff;
  1284. border: 1px solid #cccccc;
  1285. border-radius: 4px;
  1286. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1287. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1288. -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  1289. transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  1290. }
  1291. .form-control:focus {
  1292. border-color: #66afe9;
  1293. outline: 0;
  1294. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  1295. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  1296. }
  1297. .form-control[disabled],
  1298. .form-control[readonly],
  1299. fieldset[disabled] .form-control {
  1300. cursor: not-allowed;
  1301. background-color: #eeeeee;
  1302. }
  1303. textarea.form-control {
  1304. height: auto;
  1305. }
  1306. .form-group {
  1307. margin-bottom: 15px;
  1308. }
  1309. .radio,
  1310. .checkbox {
  1311. display: block;
  1312. min-height: 20px;
  1313. padding-left: 20px;
  1314. margin-top: 10px;
  1315. margin-bottom: 10px;
  1316. vertical-align: middle;
  1317. }
  1318. .radio label,
  1319. .checkbox label {
  1320. display: inline;
  1321. margin-bottom: 0;
  1322. font-weight: normal;
  1323. cursor: pointer;
  1324. }
  1325. .radio input[type="radio"],
  1326. .radio-inline input[type="radio"],
  1327. .checkbox input[type="checkbox"],
  1328. .checkbox-inline input[type="checkbox"] {
  1329. float: left;
  1330. margin-left: -20px;
  1331. }
  1332. .radio + .radio,
  1333. .checkbox + .checkbox {
  1334. margin-top: -5px;
  1335. }
  1336. .radio-inline,
  1337. .checkbox-inline {
  1338. display: inline-block;
  1339. padding-left: 20px;
  1340. margin-bottom: 0;
  1341. font-weight: normal;
  1342. vertical-align: middle;
  1343. cursor: pointer;
  1344. }
  1345. .radio-inline + .radio-inline,
  1346. .checkbox-inline + .checkbox-inline {
  1347. margin-top: 0;
  1348. margin-left: 10px;
  1349. }
  1350. .input-lg {
  1351. height: 45px;
  1352. padding: 10px 16px;
  1353. font-size: 18px;
  1354. line-height: 1.33;
  1355. border-radius: 6px;
  1356. }
  1357. .input-sm {
  1358. height: 30px;
  1359. padding: 5px 10px;
  1360. font-size: 12px;
  1361. line-height: 1.5;
  1362. border-radius: 3px;
  1363. }
  1364. select.input-lg {
  1365. height: 45px;
  1366. line-height: 45px;
  1367. }
  1368. select.input-sm {
  1369. height: 30px;
  1370. line-height: 30px;
  1371. }
  1372. textarea.input-lg,
  1373. textarea.input-sm {
  1374. height: auto;
  1375. }
  1376. .has-warning .help-block,
  1377. .has-warning .control-label {
  1378. color: #c09853;
  1379. }
  1380. .has-warning .form-control {
  1381. border-color: #c09853;
  1382. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1383. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1384. }
  1385. .has-warning .form-control:focus {
  1386. border-color: #a47e3c;
  1387. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  1388. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  1389. }
  1390. .has-warning .input-group-addon {
  1391. color: #c09853;
  1392. background-color: #fcf8e3;
  1393. border-color: #c09853;
  1394. }
  1395. .has-error .help-block,
  1396. .has-error .control-label {
  1397. color: #b94a48;
  1398. }
  1399. .has-error .form-control {
  1400. border-color: #b94a48;
  1401. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1402. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1403. }
  1404. .has-error .form-control:focus {
  1405. border-color: #953b39;
  1406. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  1407. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  1408. }
  1409. .has-error .input-group-addon {
  1410. color: #b94a48;
  1411. background-color: #f2dede;
  1412. border-color: #b94a48;
  1413. }
  1414. .has-success .help-block,
  1415. .has-success .control-label {
  1416. color: #468847;
  1417. }
  1418. .has-success .form-control {
  1419. border-color: #468847;
  1420. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1421. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1422. }
  1423. .has-success .form-control:focus {
  1424. border-color: #356635;
  1425. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  1426. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  1427. }
  1428. .has-success .input-group-addon {
  1429. color: #468847;
  1430. background-color: #dff0d8;
  1431. border-color: #468847;
  1432. }
  1433. .help-block {
  1434. display: block;
  1435. margin-top: 5px;
  1436. margin-bottom: 10px;
  1437. color: #737373;
  1438. }
  1439. .form-inline .form-control,
  1440. .form-inline .radio,
  1441. .form-inline .checkbox {
  1442. display: inline-block;
  1443. }
  1444. .form-inline .radio,
  1445. .form-inline .checkbox {
  1446. margin-top: 0;
  1447. margin-bottom: 0;
  1448. }
  1449. .form-horizontal .control-label,
  1450. .form-horizontal .radio-inline,
  1451. .form-horizontal .checkbox-inline {
  1452. padding-top: 9px;
  1453. }
  1454. .form-horizontal .form-group:before,
  1455. .form-horizontal .form-group:after {
  1456. display: table;
  1457. content: " ";
  1458. }
  1459. .form-horizontal .form-group:after {
  1460. clear: both;
  1461. }
  1462. .form-horizontal .form-group:before,
  1463. .form-horizontal .form-group:after {
  1464. display: table;
  1465. content: " ";
  1466. }
  1467. .form-horizontal .form-group:after {
  1468. clear: both;
  1469. }
  1470. @media (min-width: 768px) {
  1471. .form-horizontal .form-group {
  1472. margin-right: -15px;
  1473. margin-left: -15px;
  1474. }
  1475. }
  1476. .form-horizontal .form-group .row {
  1477. margin-right: -15px;
  1478. margin-left: -15px;
  1479. }
  1480. @media (min-width: 768px) {
  1481. .form-horizontal .control-label {
  1482. text-align: right;
  1483. }
  1484. }
  1485. .btn {
  1486. display: inline-block;
  1487. padding: 6px 12px;
  1488. margin-bottom: 0;
  1489. font-size: 14px;
  1490. font-weight: 500;
  1491. line-height: 1.428571429;
  1492. text-align: center;
  1493. white-space: nowrap;
  1494. vertical-align: middle;
  1495. cursor: pointer;
  1496. border: 1px solid transparent;
  1497. border-radius: 4px;
  1498. -webkit-user-select: none;
  1499. -moz-user-select: none;
  1500. -ms-user-select: none;
  1501. -o-user-select: none;
  1502. user-select: none;
  1503. }
  1504. .btn:focus {
  1505. outline: thin dotted #333;
  1506. outline: 5px auto -webkit-focus-ring-color;
  1507. outline-offset: -2px;
  1508. }
  1509. .btn:hover,
  1510. .btn:focus {
  1511. color: #ffffff;
  1512. text-decoration: none;
  1513. }
  1514. .btn:active,
  1515. .btn.active {
  1516. outline: 0;
  1517. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1518. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1519. }
  1520. .btn.disabled,
  1521. .btn[disabled],
  1522. fieldset[disabled] .btn {
  1523. pointer-events: none;
  1524. cursor: default;
  1525. opacity: 0.65;
  1526. filter: alpha(opacity=65);
  1527. -webkit-box-shadow: none;
  1528. box-shadow: none;
  1529. }
  1530. .btn-default {
  1531. color: #ffffff;
  1532. background-color: #474949;
  1533. border-color: #474949;
  1534. }
  1535. .btn-default:hover,
  1536. .btn-default:focus,
  1537. .btn-default:active,
  1538. .btn-default.active {
  1539. background-color: #3a3c3c;
  1540. border-color: #2e2f2f;
  1541. }
  1542. .btn-default.disabled,
  1543. .btn-default[disabled],
  1544. fieldset[disabled] .btn-default,
  1545. .btn-default.disabled:hover,
  1546. .btn-default[disabled]:hover,
  1547. fieldset[disabled] .btn-default:hover,
  1548. .btn-default.disabled:focus,
  1549. .btn-default[disabled]:focus,
  1550. fieldset[disabled] .btn-default:focus,
  1551. .btn-default.disabled:active,
  1552. .btn-default[disabled]:active,
  1553. fieldset[disabled] .btn-default:active,
  1554. .btn-default.disabled.active,
  1555. .btn-default[disabled].active,
  1556. fieldset[disabled] .btn-default.active {
  1557. background-color: #474949;
  1558. border-color: #474949;
  1559. }
  1560. .btn-primary {
  1561. color: #ffffff;
  1562. background-color: #428bca;
  1563. border-color: #428bca;
  1564. }
  1565. .btn-primary:hover,
  1566. .btn-primary:focus,
  1567. .btn-primary:active,
  1568. .btn-primary.active {
  1569. background-color: #357ebd;
  1570. border-color: #3071a9;
  1571. }
  1572. .btn-primary.disabled,
  1573. .btn-primary[disabled],
  1574. fieldset[disabled] .btn-primary,
  1575. .btn-primary.disabled:hover,
  1576. .btn-primary[disabled]:hover,
  1577. fieldset[disabled] .btn-primary:hover,
  1578. .btn-primary.disabled:focus,
  1579. .btn-primary[disabled]:focus,
  1580. fieldset[disabled] .btn-primary:focus,
  1581. .btn-primary.disabled:active,
  1582. .btn-primary[disabled]:active,
  1583. fieldset[disabled] .btn-primary:active,
  1584. .btn-primary.disabled.active,
  1585. .btn-primary[disabled].active,
  1586. fieldset[disabled] .btn-primary.active {
  1587. background-color: #428bca;
  1588. border-color: #428bca;
  1589. }
  1590. .btn-warning {
  1591. color: #ffffff;
  1592. background-color: #f0ad4e;
  1593. border-color: #f0ad4e;
  1594. }
  1595. .btn-warning:hover,
  1596. .btn-warning:focus,
  1597. .btn-warning:active,
  1598. .btn-warning.active {
  1599. background-color: #eea236;
  1600. border-color: #ec971f;
  1601. }
  1602. .btn-warning.disabled,
  1603. .btn-warning[disabled],
  1604. fieldset[disabled] .btn-warning,
  1605. .btn-warning.disabled:hover,
  1606. .btn-warning[disabled]:hover,
  1607. fieldset[disabled] .btn-warning:hover,
  1608. .btn-warning.disabled:focus,
  1609. .btn-warning[disabled]:focus,
  1610. fieldset[disabled] .btn-warning:focus,
  1611. .btn-warning.disabled:active,
  1612. .btn-warning[disabled]:active,
  1613. fieldset[disabled] .btn-warning:active,
  1614. .btn-warning.disabled.active,
  1615. .btn-warning[disabled].active,
  1616. fieldset[disabled] .btn-warning.active {
  1617. background-color: #f0ad4e;
  1618. border-color: #f0ad4e;
  1619. }
  1620. .btn-danger {
  1621. color: #ffffff;
  1622. background-color: #d9534f;
  1623. border-color: #d9534f;
  1624. }
  1625. .btn-danger:hover,
  1626. .btn-danger:focus,
  1627. .btn-danger:active,
  1628. .btn-danger.active {
  1629. background-color: #d43f3a;
  1630. border-color: #c9302c;
  1631. }
  1632. .btn-danger.disabled,
  1633. .btn-danger[disabled],
  1634. fieldset[disabled] .btn-danger,
  1635. .btn-danger.disabled:hover,
  1636. .btn-danger[disabled]:hover,
  1637. fieldset[disabled] .btn-danger:hover,
  1638. .btn-danger.disabled:focus,
  1639. .btn-danger[disabled]:focus,
  1640. fieldset[disabled] .btn-danger:focus,
  1641. .btn-danger.disabled:active,
  1642. .btn-danger[disabled]:active,
  1643. fieldset[disabled] .btn-danger:active,
  1644. .btn-danger.disabled.active,
  1645. .btn-danger[disabled].active,
  1646. fieldset[disabled] .btn-danger.active {
  1647. background-color: #d9534f;
  1648. border-color: #d9534f;
  1649. }
  1650. .btn-success {
  1651. color: #ffffff;
  1652. background-color: #5cb85c;
  1653. border-color: #5cb85c;
  1654. }
  1655. .btn-success:hover,
  1656. .btn-success:focus,
  1657. .btn-success:active,
  1658. .btn-success.active {
  1659. background-color: #4cae4c;
  1660. border-color: #449d44;
  1661. }
  1662. .btn-success.disabled,
  1663. .btn-success[disabled],
  1664. fieldset[disabled] .btn-success,
  1665. .btn-success.disabled:hover,
  1666. .btn-success[disabled]:hover,
  1667. fieldset[disabled] .btn-success:hover,
  1668. .btn-success.disabled:focus,
  1669. .btn-success[disabled]:focus,
  1670. fieldset[disabled] .btn-success:focus,
  1671. .btn-success.disabled:active,
  1672. .btn-success[disabled]:active,
  1673. fieldset[disabled] .btn-success:active,
  1674. .btn-success.disabled.active,
  1675. .btn-success[disabled].active,
  1676. fieldset[disabled] .btn-success.active {
  1677. background-color: #5cb85c;
  1678. border-color: #5cb85c;
  1679. }
  1680. .btn-info {
  1681. color: #ffffff;
  1682. background-color: #5bc0de;
  1683. border-color: #5bc0de;
  1684. }
  1685. .btn-info:hover,
  1686. .btn-info:focus,
  1687. .btn-info:active,
  1688. .btn-info.active {
  1689. background-color: #46b8da;
  1690. border-color: #31b0d5;
  1691. }
  1692. .btn-info.disabled,
  1693. .btn-info[disabled],
  1694. fieldset[disabled] .btn-info,
  1695. .btn-info.disabled:hover,
  1696. .btn-info[disabled]:hover,
  1697. fieldset[disabled] .btn-info:hover,
  1698. .btn-info.disabled:focus,
  1699. .btn-info[disabled]:focus,
  1700. fieldset[disabled] .btn-info:focus,
  1701. .btn-info.disabled:active,
  1702. .btn-info[disabled]:active,
  1703. fieldset[disabled] .btn-info:active,
  1704. .btn-info.disabled.active,
  1705. .btn-info[disabled].active,
  1706. fieldset[disabled] .btn-info.active {
  1707. background-color: #5bc0de;
  1708. border-color: #5bc0de;
  1709. }
  1710. .btn-link {
  1711. font-weight: normal;
  1712. color: #428bca;
  1713. cursor: pointer;
  1714. border-radius: 0;
  1715. }
  1716. .btn-link,
  1717. .btn-link:active,
  1718. .btn-link[disabled],
  1719. fieldset[disabled] .btn-link {
  1720. background-color: transparent;
  1721. -webkit-box-shadow: none;
  1722. box-shadow: none;
  1723. }
  1724. .btn-link,
  1725. .btn-link:hover,
  1726. .btn-link:focus,
  1727. .btn-link:active {
  1728. border-color: transparent;
  1729. }
  1730. .btn-link:hover,
  1731. .btn-link:focus {
  1732. color: #2a6496;
  1733. text-decoration: underline;
  1734. background-color: transparent;
  1735. }
  1736. .btn-link[disabled]:hover,
  1737. fieldset[disabled] .btn-link:hover,
  1738. .btn-link[disabled]:focus,
  1739. fieldset[disabled] .btn-link:focus {
  1740. color: #333333;
  1741. text-decoration: none;
  1742. }
  1743. .btn-lg {
  1744. padding: 10px 16px;
  1745. font-size: 18px;
  1746. line-height: 1.33;
  1747. border-radius: 6px;
  1748. }
  1749. .btn-sm,
  1750. .btn-xs {
  1751. padding: 5px 10px;
  1752. font-size: 12px;
  1753. line-height: 1.5;
  1754. border-radius: 3px;
  1755. }
  1756. .btn-xs {
  1757. padding: 3px 5px;
  1758. }
  1759. .btn-block {
  1760. display: block;
  1761. width: 100%;
  1762. padding-right: 0;
  1763. padding-left: 0;
  1764. }
  1765. .btn-block + .btn-block {
  1766. margin-top: 5px;
  1767. }
  1768. input[type="submit"].btn-block,
  1769. input[type="reset"].btn-block,
  1770. input[type="button"].btn-block {
  1771. width: 100%;
  1772. }
  1773. .fade {
  1774. opacity: 0;
  1775. -webkit-transition: opacity 0.15s linear;
  1776. transition: opacity 0.15s linear;
  1777. }
  1778. .fade.in {
  1779. opacity: 1;
  1780. }
  1781. .collapse {
  1782. display: none;
  1783. }
  1784. .collapse.in {
  1785. display: block;
  1786. }
  1787. .collapsing {
  1788. position: relative;
  1789. height: 0;
  1790. overflow: hidden;
  1791. -webkit-transition: height 0.35s ease;
  1792. transition: height 0.35s ease;
  1793. }
  1794. .input-group {
  1795. position: relative;
  1796. display: table;
  1797. border-collapse: separate;
  1798. }
  1799. .input-group.col {
  1800. float: none;
  1801. padding-right: 0;
  1802. padding-left: 0;
  1803. }
  1804. .input-group .form-control {
  1805. width: 100%;
  1806. margin-bottom: 0;
  1807. }
  1808. .input-group-addon,
  1809. .input-group-btn,
  1810. .input-group .form-control {
  1811. display: table-cell;
  1812. }
  1813. .input-group-addon:not(:first-child):not(:last-child),
  1814. .input-group-btn:not(:first-child):not(:last-child),
  1815. .input-group .form-control:not(:first-child):not(:last-child) {
  1816. border-radius: 0;
  1817. }
  1818. .input-group-addon,
  1819. .input-group-btn {
  1820. width: 1%;
  1821. white-space: nowrap;
  1822. vertical-align: middle;
  1823. }
  1824. .input-group-addon {
  1825. padding: 6px 12px;
  1826. font-size: 14px;
  1827. font-weight: normal;
  1828. line-height: 1.428571429;
  1829. text-align: center;
  1830. background-color: #eeeeee;
  1831. border: 1px solid #cccccc;
  1832. border-radius: 4px;
  1833. -webkit-box-sizing: border-box;
  1834. -moz-box-sizing: border-box;
  1835. box-sizing: border-box;
  1836. }
  1837. .input-group-addon.input-sm {
  1838. padding: 5px 10px;
  1839. font-size: 12px;
  1840. line-height: 1.5;
  1841. border-radius: 3px;
  1842. }
  1843. .input-group-addon.input-lg {
  1844. padding: 10px 16px;
  1845. font-size: 18px;
  1846. line-height: 1.33;
  1847. border-radius: 6px;
  1848. }
  1849. .input-group-addon input[type="radio"],
  1850. .input-group-addon input[type="checkbox"] {
  1851. margin-top: 0;
  1852. }
  1853. .input-group .form-control:first-child,
  1854. .input-group-addon:first-child,
  1855. .input-group-btn:first-child > .btn,
  1856. .input-group-btn:first-child > .dropdown-toggle,
  1857. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  1858. border-top-right-radius: 0;
  1859. border-bottom-right-radius: 0;
  1860. }
  1861. .input-group-addon:first-child {
  1862. border-right: 0;
  1863. }
  1864. .input-group .form-control:last-child,
  1865. .input-group-addon:last-child,
  1866. .input-group-btn:last-child > .btn,
  1867. .input-group-btn:last-child > .dropdown-toggle,
  1868. .input-group-btn:first-child > .btn:not(:first-child) {
  1869. border-bottom-left-radius: 0;
  1870. border-top-left-radius: 0;
  1871. }
  1872. .input-group-addon:last-child {
  1873. border-left: 0;
  1874. }
  1875. .input-group-btn {
  1876. position: relative;
  1877. white-space: nowrap;
  1878. }
  1879. .input-group-btn > .btn {
  1880. position: relative;
  1881. }
  1882. .input-group-btn > .btn + .btn {
  1883. margin-left: -4px;
  1884. }
  1885. .input-group-btn > .btn:hover,
  1886. .input-group-btn > .btn:active {
  1887. z-index: 2;
  1888. }
  1889. .caret {
  1890. display: inline-block;
  1891. width: 0;
  1892. height: 0;
  1893. margin-left: 2px;
  1894. vertical-align: middle;
  1895. border-top: 4px solid #000000;
  1896. border-right: 4px solid transparent;
  1897. border-left: 4px solid transparent;
  1898. content: "";
  1899. }
  1900. .dropdown {
  1901. position: relative;
  1902. }
  1903. .dropdown-menu {
  1904. position: absolute;
  1905. top: 100%;
  1906. left: 0;
  1907. z-index: 1000;
  1908. display: none;
  1909. float: left;
  1910. min-width: 160px;
  1911. padding: 5px 0;
  1912. margin: 2px 0 0;
  1913. list-style: none;
  1914. background-color: #ffffff;
  1915. border: 1px solid #cccccc;
  1916. border: 1px solid rgba(0, 0, 0, 0.15);
  1917. border-radius: 4px;
  1918. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  1919. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  1920. background-clip: padding-box;
  1921. }
  1922. .dropdown-menu.pull-right {
  1923. right: 0;
  1924. left: auto;
  1925. }
  1926. .dropdown-menu .divider {
  1927. height: 1px;
  1928. margin: 9px 0;
  1929. overflow: hidden;
  1930. background-color: #e5e5e5;
  1931. }
  1932. .dropdown-menu > li > a {
  1933. display: block;
  1934. padding: 3px 20px;
  1935. clear: both;
  1936. font-weight: normal;
  1937. line-height: 1.428571429;
  1938. color: #333333;
  1939. white-space: nowrap;
  1940. }
  1941. .dropdown-menu > li > a:hover,
  1942. .dropdown-menu > li > a:focus {
  1943. color: #ffffff;
  1944. text-decoration: none;
  1945. background-color: #357ebd;
  1946. background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
  1947. background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
  1948. background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
  1949. background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
  1950. background-repeat: repeat-x;
  1951. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
  1952. }
  1953. .dropdown-menu > .active > a,
  1954. .dropdown-menu > .active > a:hover,
  1955. .dropdown-menu > .active > a:focus {
  1956. color: #ffffff;
  1957. text-decoration: none;
  1958. background-color: #357ebd;
  1959. background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
  1960. background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
  1961. background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
  1962. background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
  1963. background-repeat: repeat-x;
  1964. outline: 0;
  1965. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
  1966. }
  1967. .dropdown-menu > .disabled > a,
  1968. .dropdown-menu > .disabled > a:hover,
  1969. .dropdown-menu > .disabled > a:focus {
  1970. color: #999999;
  1971. }
  1972. .dropdown-menu > .disabled > a:hover,
  1973. .dropdown-menu > .disabled > a:focus {
  1974. text-decoration: none;
  1975. cursor: not-allowed;
  1976. background-color: transparent;
  1977. background-image: none;
  1978. filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  1979. }
  1980. .open > .dropdown-menu {
  1981. display: block;
  1982. }
  1983. .open > a {
  1984. outline: 0;
  1985. }
  1986. .dropdown-header {
  1987. display: block;
  1988. padding: 3px 20px;
  1989. font-size: 12px;
  1990. line-height: 1.428571429;
  1991. color: #999999;
  1992. }
  1993. .dropdown-backdrop {
  1994. position: fixed;
  1995. top: 0;
  1996. right: 0;
  1997. bottom: 0;
  1998. left: 0;
  1999. z-index: 990;
  2000. }
  2001. .pull-right > .dropdown-menu {
  2002. right: 0;
  2003. left: auto;
  2004. }
  2005. .dropup .caret,
  2006. .navbar-fixed-bottom .dropdown .caret {
  2007. border-top: 0;
  2008. border-bottom: 4px solid #000000;
  2009. content: "";
  2010. }
  2011. .dropup .dropdown-menu,
  2012. .navbar-fixed-bottom .dropdown .dropdown-menu {
  2013. top: auto;
  2014. bottom: 100%;
  2015. margin-bottom: 1px;
  2016. }
  2017. .list-group {
  2018. padding-left: 0;
  2019. margin-bottom: 20px;
  2020. }
  2021. .list-group-item {
  2022. position: relative;
  2023. display: block;
  2024. padding: 10px 30px 10px 15px;
  2025. margin-bottom: -1px;
  2026. background-color: #ffffff;
  2027. border: 1px solid #dddddd;
  2028. }
  2029. .list-group-item:first-child {
  2030. border-top-right-radius: 4px;
  2031. border-top-left-radius: 4px;
  2032. }
  2033. .list-group-item:last-child {
  2034. margin-bottom: 0;
  2035. border-bottom-right-radius: 4px;
  2036. border-bottom-left-radius: 4px;
  2037. }
  2038. .list-group-item > .badge {
  2039. float: right;
  2040. margin-right: -15px;
  2041. }
  2042. .list-group-item-heading {
  2043. margin-top: 0;
  2044. margin-bottom: 5px;
  2045. }
  2046. .list-group-item-text {
  2047. margin-bottom: 0;
  2048. line-height: 1.3;
  2049. }
  2050. a.list-group-item .list-group-item-heading {
  2051. color: #333333;
  2052. }
  2053. a.list-group-item .list-group-item-text {
  2054. color: #555555;
  2055. }
  2056. a.list-group-item:hover,
  2057. a.list-group-item:focus {
  2058. text-decoration: none;
  2059. background-color: #f5f5f5;
  2060. }
  2061. a.list-group-item.active {
  2062. z-index: 2;
  2063. color: #ffffff;
  2064. background-color: #428bca;
  2065. border-color: #428bca;
  2066. }
  2067. a.list-group-item.active .list-group-item-heading {
  2068. color: inherit;
  2069. }
  2070. a.list-group-item.active .list-group-item-text {
  2071. color: #e1edf7;
  2072. }
  2073. .panel {
  2074. padding: 15px;
  2075. margin-bottom: 20px;
  2076. background-color: #ffffff;
  2077. border: 1px solid #dddddd;
  2078. border-radius: 4px;
  2079. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  2080. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  2081. }
  2082. .panel .list-group {
  2083. margin: 15px -15px -15px;
  2084. }
  2085. .panel .list-group .list-group-item {
  2086. border-width: 1px 0;
  2087. }
  2088. .panel .list-group .list-group-item:first-child {
  2089. border-top-right-radius: 0;
  2090. border-top-left-radius: 0;
  2091. }
  2092. .panel .list-group .list-group-item:last-child {
  2093. border-bottom: 0;
  2094. }
  2095. .panel-heading {
  2096. padding: 10px 15px;
  2097. margin: -15px -15px 15px;
  2098. background-color: #f5f5f5;
  2099. border-bottom: 1px solid #dddddd;
  2100. border-top-right-radius: 3px;
  2101. border-top-left-radius: 3px;
  2102. }
  2103. .panel-title {
  2104. margin-top: 0;
  2105. margin-bottom: 0;
  2106. font-size: 17.5px;
  2107. font-weight: 500;
  2108. }
  2109. .panel-title > a {
  2110. color: inherit;
  2111. }
  2112. .panel-footer {
  2113. padding: 10px 15px;
  2114. margin: 15px -15px -15px;
  2115. background-color: #f5f5f5;
  2116. border-top: 1px solid #dddddd;
  2117. border-bottom-right-radius: 3px;
  2118. border-bottom-left-radius: 3px;
  2119. }
  2120. .panel-primary {
  2121. border-color: #428bca;
  2122. }
  2123. .panel-primary .panel-heading {
  2124. color: #ffffff;
  2125. background-color: #428bca;
  2126. border-color: #428bca;
  2127. }
  2128. .panel-success {
  2129. border-color: #d6e9c6;
  2130. }
  2131. .panel-success .panel-heading {
  2132. color: #468847;
  2133. background-color: #dff0d8;
  2134. border-color: #d6e9c6;
  2135. }
  2136. .panel-warning {
  2137. border-color: #fbeed5;
  2138. }
  2139. .panel-warning .panel-heading {
  2140. color: #c09853;
  2141. background-color: #fcf8e3;
  2142. border-color: #fbeed5;
  2143. }
  2144. .panel-danger {
  2145. border-color: #eed3d7;
  2146. }
  2147. .panel-danger .panel-heading {
  2148. color: #b94a48;
  2149. background-color: #f2dede;
  2150. border-color: #eed3d7;
  2151. }
  2152. .panel-info {
  2153. border-color: #bce8f1;
  2154. }
  2155. .panel-info .panel-heading {
  2156. color: #3a87ad;
  2157. background-color: #d9edf7;
  2158. border-color: #bce8f1;
  2159. }
  2160. .well {
  2161. min-height: 20px;
  2162. padding: 19px;
  2163. margin-bottom: 20px;
  2164. background-color: #f5f5f5;
  2165. border: 1px solid #e3e3e3;
  2166. border-radius: 4px;
  2167. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  2168. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  2169. }
  2170. .well blockquote {
  2171. border-color: #ddd;
  2172. border-color: rgba(0, 0, 0, 0.15);
  2173. }
  2174. .well-lg {
  2175. padding: 24px;
  2176. border-radius: 6px;
  2177. }
  2178. .well-sm {
  2179. padding: 9px;
  2180. border-radius: 3px;
  2181. }
  2182. .close {
  2183. float: right;
  2184. font-size: 21px;
  2185. font-weight: bold;
  2186. line-height: 1;
  2187. color: #000000;
  2188. text-shadow: 0 1px 0 #ffffff;
  2189. opacity: 0.2;
  2190. filter: alpha(opacity=20);
  2191. }
  2192. .close:hover,
  2193. .close:focus {
  2194. color: #000000;
  2195. text-decoration: none;
  2196. cursor: pointer;
  2197. opacity: 0.5;
  2198. filter: alpha(opacity=50);
  2199. }
  2200. button.close {
  2201. padding: 0;
  2202. cursor: pointer;
  2203. background: transparent;
  2204. border: 0;
  2205. -webkit-appearance: none;
  2206. }
  2207. .nav {
  2208. padding-left: 0;
  2209. margin-bottom: 0;
  2210. list-style: none;
  2211. }
  2212. .nav:before,
  2213. .nav:after {
  2214. display: table;
  2215. content: " ";
  2216. }
  2217. .nav:after {
  2218. clear: both;
  2219. }
  2220. .nav:before,
  2221. .nav:after {
  2222. display: table;
  2223. content: " ";
  2224. }
  2225. .nav:after {
  2226. clear: both;
  2227. }
  2228. .nav > li {
  2229. position: relative;
  2230. display: block;
  2231. }
  2232. .nav > li > a {
  2233. position: relative;
  2234. display: block;
  2235. padding: 10px 15px;
  2236. }
  2237. .nav > li > a:hover,
  2238. .nav > li > a:focus {
  2239. text-decoration: none;
  2240. background-color: #eeeeee;
  2241. }
  2242. .nav > li.disabled > a {
  2243. color: #999999;
  2244. }
  2245. .nav > li.disabled > a:hover,
  2246. .nav > li.disabled > a:focus {
  2247. color: #999999;
  2248. text-decoration: none;
  2249. cursor: not-allowed;
  2250. background-color: transparent;
  2251. }
  2252. .nav.open > a,
  2253. .nav.open > a:hover,
  2254. .nav.open > a:focus {
  2255. color: #ffffff;
  2256. background-color: #428bca;
  2257. border-color: #428bca;
  2258. }
  2259. .nav.open > a .caret,
  2260. .nav.open > a:hover .caret,
  2261. .nav.open > a:focus .caret {
  2262. border-top-color: #ffffff;
  2263. border-bottom-color: #ffffff;
  2264. }
  2265. .nav > .pull-right {
  2266. float: right;
  2267. }
  2268. .nav .nav-divider {
  2269. height: 1px;
  2270. margin: 9px 0;
  2271. overflow: hidden;
  2272. background-color: #e5e5e5;
  2273. }
  2274. .nav-tabs {
  2275. border-bottom: 1px solid #dddddd;
  2276. }
  2277. .nav-tabs > li {
  2278. float: left;
  2279. margin-bottom: -1px;
  2280. }
  2281. .nav-tabs > li > a {
  2282. margin-right: 2px;
  2283. line-height: 1.428571429;
  2284. border: 1px solid transparent;
  2285. border-radius: 4px 4px 0 0;
  2286. }
  2287. .nav-tabs > li > a:hover {
  2288. border-color: #eeeeee;
  2289. }
  2290. .nav-tabs > li.active > a,
  2291. .nav-tabs > li.active > a:hover,
  2292. .nav-tabs > li.active > a:focus {
  2293. color: #555555;
  2294. cursor: default;
  2295. background-color: #ffffff;
  2296. border: 1px solid #dddddd;
  2297. border-bottom-color: transparent;
  2298. }
  2299. .nav-tabs.nav-justified {
  2300. width: 100%;
  2301. border-bottom: 0;
  2302. }
  2303. .nav-tabs.nav-justified > li {
  2304. display: table-cell;
  2305. float: none;
  2306. width: 1%;
  2307. }
  2308. .nav-tabs.nav-justified > li > a {
  2309. text-align: center;
  2310. }
  2311. .nav-tabs.nav-justified > li > a {
  2312. margin-right: 0;
  2313. border-bottom: 1px solid #dddddd;
  2314. }
  2315. .nav-tabs.nav-justified > .active > a {
  2316. border-bottom-color: #ffffff;
  2317. }
  2318. .nav-pills > li {
  2319. float: left;
  2320. }
  2321. .nav-pills > li > a {
  2322. border-radius: 5px;
  2323. }
  2324. .nav-pills > li + li {
  2325. margin-left: 2px;
  2326. }
  2327. .nav-pills > li.active > a,
  2328. .nav-pills > li.active > a:hover,
  2329. .nav-pills > li.active > a:focus {
  2330. color: #ffffff;
  2331. background-color: #428bca;
  2332. }
  2333. .nav-stacked > li {
  2334. float: none;
  2335. }
  2336. .nav-stacked > li + li {
  2337. margin-top: 2px;
  2338. margin-left: 0;
  2339. }
  2340. .nav-justified {
  2341. width: 100%;
  2342. }
  2343. .nav-justified > li {
  2344. display: table-cell;
  2345. float: none;
  2346. width: 1%;
  2347. }
  2348. .nav-justified > li > a {
  2349. text-align: center;
  2350. }
  2351. .nav-tabs-justified {
  2352. border-bottom: 0;
  2353. }
  2354. .nav-tabs-justified > li > a {
  2355. margin-right: 0;
  2356. border-bottom: 1px solid #dddddd;
  2357. }
  2358. .nav-tabs-justified > .active > a {
  2359. border-bottom-color: #ffffff;
  2360. }
  2361. .tabbable:before,
  2362. .tabbable:after {
  2363. display: table;
  2364. content: " ";
  2365. }
  2366. .tabbable:after {
  2367. clear: both;
  2368. }
  2369. .tabbable:before,
  2370. .tabbable:after {
  2371. display: table;
  2372. content: " ";
  2373. }
  2374. .tabbable:after {
  2375. clear: both;
  2376. }
  2377. .tab-content > .tab-pane,
  2378. .pill-content > .pill-pane {
  2379. display: none;
  2380. }
  2381. .tab-content > .active,
  2382. .pill-content > .active {
  2383. display: block;
  2384. }
  2385. .nav .caret {
  2386. border-top-color: #428bca;
  2387. border-bottom-color: #428bca;
  2388. }
  2389. .nav a:hover .caret {
  2390. border-top-color: #2a6496;
  2391. border-bottom-color: #2a6496;
  2392. }
  2393. .nav-tabs .dropdown-menu {
  2394. margin-top: -1px;
  2395. border-top-right-radius: 0;
  2396. border-top-left-radius: 0;
  2397. }
  2398. .navbar {
  2399. position: relative;
  2400. min-height: 50px;
  2401. padding-right: 15px;
  2402. padding-left: 15px;
  2403. margin-bottom: 20px;
  2404. background-color: #eeeeee;
  2405. border-radius: 4px;
  2406. }
  2407. .navbar:before,
  2408. .navbar:after {
  2409. display: table;
  2410. content: " ";
  2411. }
  2412. .navbar:after {
  2413. clear: both;
  2414. }
  2415. .navbar:before,
  2416. .navbar:after {
  2417. display: table;
  2418. content: " ";
  2419. }
  2420. .navbar:after {
  2421. clear: both;
  2422. }
  2423. .navbar-nav {
  2424. margin-top: 10px;
  2425. margin-bottom: 15px;
  2426. }
  2427. .navbar-nav > li > a {
  2428. padding-top: 15px;
  2429. padding-bottom: 15px;
  2430. line-height: 20px;
  2431. color: #777777;
  2432. border-radius: 4px;
  2433. }
  2434. .navbar-nav > li > a:hover,
  2435. .navbar-nav > li > a:focus {
  2436. color: #333333;
  2437. background-color: transparent;
  2438. }
  2439. .navbar-nav > .active > a,
  2440. .navbar-nav > .active > a:hover,
  2441. .navbar-nav > .active > a:focus {
  2442. color: #555555;
  2443. background-color: #d5d5d5;
  2444. }
  2445. .navbar-nav > .disabled > a,
  2446. .navbar-nav > .disabled > a:hover,
  2447. .navbar-nav > .disabled > a:focus {
  2448. color: #cccccc;
  2449. background-color: transparent;
  2450. }
  2451. .navbar-nav.pull-right {
  2452. width: 100%;
  2453. }
  2454. .navbar-static-top {
  2455. border-radius: 0;
  2456. }
  2457. .navbar-fixed-top,
  2458. .navbar-fixed-bottom {
  2459. position: fixed;
  2460. right: 0;
  2461. left: 0;
  2462. z-index: 1030;
  2463. border-radius: 0;
  2464. }
  2465. .navbar-fixed-top {
  2466. top: 0;
  2467. }
  2468. .navbar-fixed-bottom {
  2469. bottom: 0;
  2470. margin-bottom: 0;
  2471. }
  2472. .navbar-brand {
  2473. display: block;
  2474. max-width: 200px;
  2475. padding: 15px 15px;
  2476. margin-right: auto;
  2477. margin-left: auto;
  2478. font-size: 18px;
  2479. font-weight: 500;
  2480. line-height: 20px;
  2481. color: #777777;
  2482. text-align: center;
  2483. }
  2484. .navbar-brand:hover,
  2485. .navbar-brand:focus {
  2486. color: #5e5e5e;
  2487. text-decoration: none;
  2488. background-color: transparent;
  2489. }
  2490. .navbar-toggle {
  2491. position: relative;
  2492. float: right;
  2493. width: 48px;
  2494. height: 34px;
  2495. padding: 6px 12px;
  2496. margin-top: 8px;
  2497. margin-bottom: 8px;
  2498. background-color: transparent;
  2499. border: 1px solid #dddddd;
  2500. border-radius: 4px;
  2501. }
  2502. .navbar-toggle:hover,
  2503. .navbar-toggle:focus {
  2504. background-color: #dddddd;
  2505. }
  2506. .navbar-toggle .icon-bar {
  2507. display: block;
  2508. width: 22px;
  2509. height: 2px;
  2510. background-color: #cccccc;
  2511. border-radius: 1px;
  2512. }
  2513. .navbar-toggle .icon-bar + .icon-bar {
  2514. margin-top: 4px;
  2515. }
  2516. .navbar-form {
  2517. margin-top: 8px;
  2518. margin-bottom: 8px;
  2519. }
  2520. .navbar-form .form-control,
  2521. .navbar-form .radio,
  2522. .navbar-form .checkbox {
  2523. display: inline-block;
  2524. }
  2525. .navbar-form .radio,
  2526. .navbar-form .checkbox {
  2527. margin-top: 0;
  2528. margin-bottom: 0;
  2529. }
  2530. .navbar-nav > li > .dropdown-menu {
  2531. margin-top: 0;
  2532. border-top-right-radius: 0;
  2533. border-top-left-radius: 0;
  2534. }
  2535. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  2536. border-bottom-right-radius: 0;
  2537. border-bottom-left-radius: 0;
  2538. }
  2539. .navbar-nav > .dropdown > a:hover .caret,
  2540. .navbar-nav > .dropdown > a:focus .caret {
  2541. border-top-color: #333333;
  2542. border-bottom-color: #333333;
  2543. }
  2544. .navbar-nav > .open > a,
  2545. .navbar-nav > .open > a:hover,
  2546. .navbar-nav > .open > a:focus {
  2547. color: #555555;
  2548. background-color: #d5d5d5;
  2549. }
  2550. .navbar-nav > .open > a .caret,
  2551. .navbar-nav > .open > a:hover .caret,
  2552. .navbar-nav > .open > a:focus .caret {
  2553. border-top-color: #555555;
  2554. border-bottom-color: #555555;
  2555. }
  2556. .navbar-nav > .dropdown > a .caret {
  2557. border-top-color: #777777;
  2558. border-bottom-color: #777777;
  2559. }
  2560. .navbar-nav.pull-right > li > .dropdown-menu,
  2561. .navbar-nav > li > .dropdown-menu.pull-right {
  2562. right: 0;
  2563. left: auto;
  2564. }
  2565. .navbar-inverse {
  2566. background-color: #222222;
  2567. }
  2568. .navbar-inverse .navbar-brand {
  2569. color: #999999;
  2570. }
  2571. .navbar-inverse .navbar-brand:hover,
  2572. .navbar-inverse .navbar-brand:focus {
  2573. color: #ffffff;
  2574. background-color: transparent;
  2575. }
  2576. .navbar-inverse .navbar-text {
  2577. color: #999999;
  2578. }
  2579. .navbar-inverse .navbar-nav > li > a {
  2580. color: #999999;
  2581. }
  2582. .navbar-inverse .navbar-nav > li > a:hover,
  2583. .navbar-inverse .navbar-nav > li > a:focus {
  2584. color: #ffffff;
  2585. background-color: transparent;
  2586. }
  2587. .navbar-inverse .navbar-nav > .active > a,
  2588. .navbar-inverse .navbar-nav > .active > a:hover,
  2589. .navbar-inverse .navbar-nav > .active > a:focus {
  2590. color: #ffffff;
  2591. background-color: #080808;
  2592. }
  2593. .navbar-inverse .navbar-nav > .disabled > a,
  2594. .navbar-inverse .navbar-nav > .disabled > a:hover,
  2595. .navbar-inverse .navbar-nav > .disabled > a:focus {
  2596. color: #444444;
  2597. background-color: transparent;
  2598. }
  2599. .navbar-inverse .navbar-toggle {
  2600. border-color: #333333;
  2601. }
  2602. .navbar-inverse .navbar-toggle:hover,
  2603. .navbar-inverse .navbar-toggle:focus {
  2604. background-color: #333333;
  2605. }
  2606. .navbar-inverse .navbar-toggle .icon-bar {
  2607. background-color: #ffffff;
  2608. }
  2609. .navbar-inverse .navbar-nav > .open > a,
  2610. .navbar-inverse .navbar-nav > .open > a:hover,
  2611. .navbar-inverse .navbar-nav > .open > a:focus {
  2612. color: #ffffff;
  2613. background-color: #080808;
  2614. }
  2615. .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
  2616. border-top-color: #ffffff;
  2617. border-bottom-color: #ffffff;
  2618. }
  2619. .navbar-inverse .navbar-nav > .dropdown > a .caret {
  2620. border-top-color: #999999;
  2621. border-bottom-color: #999999;
  2622. }
  2623. .navbar-inverse .navbar-nav > .open > a .caret,
  2624. .navbar-inverse .navbar-nav > .open > a:hover .caret,
  2625. .navbar-inverse .navbar-nav > .open > a:focus .caret {
  2626. border-top-color: #ffffff;
  2627. border-bottom-color: #ffffff;
  2628. }
  2629. @media screen and (min-width: 768px) {
  2630. .navbar-brand {
  2631. float: left;
  2632. max-width: none;
  2633. margin-right: 5px;
  2634. margin-left: -15px;
  2635. }
  2636. .navbar-nav {
  2637. float: left;
  2638. margin-top: 0;
  2639. margin-bottom: 0;
  2640. }
  2641. .navbar-nav > li {
  2642. float: left;
  2643. }
  2644. .navbar-nav > li > a {
  2645. border-radius: 0;
  2646. }
  2647. .navbar-nav.pull-right {
  2648. float: right;
  2649. width: auto;
  2650. }
  2651. .navbar-toggle {
  2652. position: relative;
  2653. top: auto;
  2654. left: auto;
  2655. display: none;
  2656. }
  2657. .nav-collapse.collapse {
  2658. display: block !important;
  2659. height: auto !important;
  2660. overflow: visible !important;
  2661. }
  2662. }
  2663. .navbar-btn {
  2664. margin-top: 8px;
  2665. }
  2666. .navbar-text {
  2667. float: left;
  2668. padding: 0 15px;
  2669. margin-top: 15px;
  2670. margin-bottom: 15px;
  2671. }
  2672. .navbar-link {
  2673. color: #777777;
  2674. }
  2675. .navbar-link:hover {
  2676. color: #333333;
  2677. }
  2678. .navbar-inverse .navbar-link {
  2679. color: #999999;
  2680. }
  2681. .navbar-inverse .navbar-link:hover {
  2682. color: #ffffff;
  2683. }
  2684. .btn .caret {
  2685. border-top-color: #ffffff;
  2686. }
  2687. .dropup .btn .caret {
  2688. border-bottom-color: #ffffff;
  2689. }
  2690. .btn-group,
  2691. .btn-group-vertical {
  2692. position: relative;
  2693. display: inline-block;
  2694. vertical-align: middle;
  2695. }
  2696. .btn-group > .btn,
  2697. .btn-group-vertical > .btn {
  2698. position: relative;
  2699. float: left;
  2700. }
  2701. .btn-group > .btn:hover,
  2702. .btn-group-vertical > .btn:hover,
  2703. .btn-group > .btn:focus,
  2704. .btn-group-vertical > .btn:focus,
  2705. .btn-group > .btn:active,
  2706. .btn-group-vertical > .btn:active,
  2707. .btn-group > .btn.active,
  2708. .btn-group-vertical > .btn.active {
  2709. z-index: 2;
  2710. }
  2711. .btn-group .btn + .btn {
  2712. margin-left: -1px;
  2713. }
  2714. .btn-toolbar:before,
  2715. .btn-toolbar:after {
  2716. display: table;
  2717. content: " ";
  2718. }
  2719. .btn-toolbar:after {
  2720. clear: both;
  2721. }
  2722. .btn-toolbar:before,
  2723. .btn-toolbar:after {
  2724. display: table;
  2725. content: " ";
  2726. }
  2727. .btn-toolbar:after {
  2728. clear: both;
  2729. }
  2730. .btn-toolbar .btn-group {
  2731. float: left;
  2732. }
  2733. .btn-toolbar > .btn + .btn,
  2734. .btn-toolbar > .btn-group + .btn,
  2735. .btn-toolbar > .btn + .btn-group,
  2736. .btn-toolbar > .btn-group + .btn-group {
  2737. margin-left: 5px;
  2738. }
  2739. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  2740. border-radius: 0;
  2741. }
  2742. .btn-group > .btn:first-child {
  2743. margin-left: 0;
  2744. }
  2745. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2746. border-top-right-radius: 0;
  2747. border-bottom-right-radius: 0;
  2748. }
  2749. .btn-group > .btn:last-child:not(:first-child),
  2750. .btn-group > .dropdown-toggle:not(:first-child) {
  2751. border-bottom-left-radius: 0;
  2752. border-top-left-radius: 0;
  2753. }
  2754. .btn-group > .btn-group {
  2755. float: left;
  2756. }
  2757. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  2758. border-radius: 0;
  2759. }
  2760. .btn-group > .btn-group:first-child > .btn:last-child,
  2761. .btn-group > .btn-group:first-child > .dropdown-toggle {
  2762. border-top-right-radius: 0;
  2763. border-bottom-right-radius: 0;
  2764. }
  2765. .btn-group > .btn-group:last-child > .btn:first-child {
  2766. border-bottom-left-radius: 0;
  2767. border-top-left-radius: 0;
  2768. }
  2769. .btn-group .dropdown-toggle:active,
  2770. .btn-group.open .dropdown-toggle {
  2771. outline: 0;
  2772. }
  2773. .btn-group > .btn + .dropdown-toggle {
  2774. padding-right: 8px;
  2775. padding-left: 8px;
  2776. }
  2777. .btn-group > .btn-lg + .dropdown-toggle {
  2778. padding-right: 12px;
  2779. padding-left: 12px;
  2780. }
  2781. .btn-group.open .dropdown-toggle {
  2782. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2783. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2784. }
  2785. .btn .caret {
  2786. margin-left: 0;
  2787. }
  2788. .btn-lg .caret {
  2789. border-width: 5px;
  2790. }
  2791. .dropup .btn-lg .caret {
  2792. border-bottom-width: 5px;
  2793. }
  2794. .btn-group-vertical > .btn {
  2795. display: block;
  2796. float: none;
  2797. width: 100%;
  2798. max-width: 100%;
  2799. }
  2800. .btn-group-vertical > .btn + .btn {
  2801. margin-top: -1px;
  2802. }
  2803. .btn-group-vertical .btn:not(:first-child):not(:last-child) {
  2804. border-radius: 0;
  2805. }
  2806. .btn-group-vertical .btn:first-child:not(:last-child) {
  2807. border-bottom-right-radius: 0;
  2808. border-bottom-left-radius: 0;
  2809. }
  2810. .btn-group-vertical .btn:last-child:not(:first-child) {
  2811. border-top-right-radius: 0;
  2812. border-top-left-radius: 0;
  2813. }
  2814. .btn-group-justified {
  2815. display: table;
  2816. width: 100%;
  2817. table-layout: fixed;
  2818. }
  2819. .btn-group-justified .btn {
  2820. display: table-cell;
  2821. float: none;
  2822. width: 1%;
  2823. }
  2824. .btn-group[data-toggle="buttons"] > .btn > input[type="radio"],
  2825. .btn-group[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  2826. display: none;
  2827. }
  2828. .breadcrumb {
  2829. padding: 8px 15px;
  2830. margin-bottom: 20px;
  2831. list-style: none;
  2832. background-color: #f5f5f5;
  2833. border-radius: 4px;
  2834. }
  2835. .breadcrumb > li {
  2836. display: inline-block;
  2837. }
  2838. .breadcrumb > li + li:before {
  2839. padding: 0 5px;
  2840. color: #cccccc;
  2841. content: "/\00a0";
  2842. }
  2843. .breadcrumb > .active {
  2844. color: #999999;
  2845. }
  2846. .pagination {
  2847. display: inline-block;
  2848. padding-left: 0;
  2849. margin: 20px 0;
  2850. border-radius: 4px;
  2851. }
  2852. .pagination > li {
  2853. display: inline;
  2854. }
  2855. .pagination > li > a,
  2856. .pagination > li > span {
  2857. float: left;
  2858. padding: 6px 12px;
  2859. line-height: 1.428571429;
  2860. text-decoration: none;
  2861. background-color: #ffffff;
  2862. border: 1px solid #dddddd;
  2863. border-left-width: 0;
  2864. }
  2865. .pagination > li:first-child > a,
  2866. .pagination > li:first-child > span {
  2867. border-left-width: 1px;
  2868. border-bottom-left-radius: 4px;
  2869. border-top-left-radius: 4px;
  2870. }
  2871. .pagination > li:last-child > a,
  2872. .pagination > li:last-child > span {
  2873. border-top-right-radius: 4px;
  2874. border-bottom-right-radius: 4px;
  2875. }
  2876. .pagination > li > a:hover,
  2877. .pagination > li > a:focus,
  2878. .pagination > .active > a,
  2879. .pagination > .active > span {
  2880. background-color: #f5f5f5;
  2881. }
  2882. .pagination > .active > a,
  2883. .pagination > .active > span {
  2884. color: #999999;
  2885. cursor: default;
  2886. }
  2887. .pagination > .disabled > span,
  2888. .pagination > .disabled > a,
  2889. .pagination > .disabled > a:hover,
  2890. .pagination > .disabled > a:focus {
  2891. color: #999999;
  2892. cursor: not-allowed;
  2893. background-color: #ffffff;
  2894. }
  2895. .pagination-lg > li > a,
  2896. .pagination-lg > li > span {
  2897. padding: 10px 16px;
  2898. font-size: 18px;
  2899. }
  2900. .pagination-lg > li:first-child > a,
  2901. .pagination-lg > li:first-child > span {
  2902. border-bottom-left-radius: 6px;
  2903. border-top-left-radius: 6px;
  2904. }
  2905. .pagination-lg > li:last-child > a,
  2906. .pagination-lg > li:last-child > span {
  2907. border-top-right-radius: 6px;
  2908. border-bottom-right-radius: 6px;
  2909. }
  2910. .pagination-sm > li > a,
  2911. .pagination-sm > li > span {
  2912. padding: 5px 10px;
  2913. font-size: 12px;
  2914. }
  2915. .pagination-sm > li:first-child > a,
  2916. .pagination-sm > li:first-child > span {
  2917. border-bottom-left-radius: 3px;
  2918. border-top-left-radius: 3px;
  2919. }
  2920. .pagination-sm > li:last-child > a,
  2921. .pagination-sm > li:last-child > span {
  2922. border-top-right-radius: 3px;
  2923. border-bottom-right-radius: 3px;
  2924. }
  2925. .pager {
  2926. padding-left: 0;
  2927. margin: 20px 0;
  2928. text-align: center;
  2929. list-style: none;
  2930. }
  2931. .pager:before,
  2932. .pager:after {
  2933. display: table;
  2934. content: " ";
  2935. }
  2936. .pager:after {
  2937. clear: both;
  2938. }
  2939. .pager:before,
  2940. .pager:after {
  2941. display: table;
  2942. content: " ";
  2943. }
  2944. .pager:after {
  2945. clear: both;
  2946. }
  2947. .pager li {
  2948. display: inline;
  2949. }
  2950. .pager li > a,
  2951. .pager li > span {
  2952. display: inline-block;
  2953. padding: 5px 14px;
  2954. background-color: #ffffff;
  2955. border: 1px solid #dddddd;
  2956. border-radius: 15px;
  2957. }
  2958. .pager li > a:hover,
  2959. .pager li > a:focus {
  2960. text-decoration: none;
  2961. background-color: #f5f5f5;
  2962. }
  2963. .pager .next > a,
  2964. .pager .next > span {
  2965. float: right;
  2966. }
  2967. .pager .previous > a,
  2968. .pager .previous > span {
  2969. float: left;
  2970. }
  2971. .pager .disabled > a,
  2972. .pager .disabled > a:hover,
  2973. .pager .disabled > a:focus,
  2974. .pager .disabled > span {
  2975. color: #999999;
  2976. cursor: not-allowed;
  2977. background-color: #ffffff;
  2978. }
  2979. .modal-open {
  2980. overflow: hidden;
  2981. }
  2982. .modal {
  2983. position: fixed;
  2984. top: 0;
  2985. right: 0;
  2986. bottom: 0;
  2987. left: 0;
  2988. z-index: 1040;
  2989. display: none;
  2990. overflow: auto;
  2991. overflow-y: scroll;
  2992. }
  2993. .modal.fade .modal-dialog {
  2994. -webkit-transform: translate(0, -25%);
  2995. -ms-transform: translate(0, -25%);
  2996. transform: translate(0, -25%);
  2997. -webkit-transition: -webkit-transform 0.3s ease-out;
  2998. -moz-transition: -moz-transform 0.3s ease-out;
  2999. -o-transition: -o-transform 0.3s ease-out;
  3000. transition: transform 0.3s ease-out;
  3001. }
  3002. .modal.in .modal-dialog {
  3003. -webkit-transform: translate(0, 0);
  3004. -ms-transform: translate(0, 0);
  3005. transform: translate(0, 0);
  3006. }
  3007. .modal-dialog {
  3008. z-index: 1050;
  3009. width: auto;
  3010. padding: 10px;
  3011. margin-right: auto;
  3012. margin-left: auto;
  3013. }
  3014. .modal-content {
  3015. position: relative;
  3016. background-color: #ffffff;
  3017. border: 1px solid #999999;
  3018. border: 1px solid rgba(0, 0, 0, 0.2);
  3019. border-radius: 6px;
  3020. outline: none;
  3021. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  3022. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  3023. background-clip: padding-box;
  3024. }
  3025. .modal-backdrop {
  3026. position: fixed;
  3027. top: 0;
  3028. right: 0;
  3029. bottom: 0;
  3030. left: 0;
  3031. z-index: 1030;
  3032. background-color: #000000;
  3033. }
  3034. .modal-backdrop.fade {
  3035. opacity: 0;
  3036. filter: alpha(opacity=0);
  3037. }
  3038. .modal-backdrop.in {
  3039. opacity: 0.5;
  3040. filter: alpha(opacity=50);
  3041. }
  3042. .modal-header {
  3043. min-height: 16.428571429px;
  3044. padding: 15px;
  3045. border-bottom: 1px solid #e5e5e5;
  3046. }
  3047. .modal-header .close {
  3048. margin-top: -2px;
  3049. }
  3050. .modal-title {
  3051. margin: 0;
  3052. line-height: 1.428571429;
  3053. }
  3054. .modal-body {
  3055. position: relative;
  3056. padding: 20px;
  3057. }
  3058. .modal-footer {
  3059. padding: 19px 20px 20px;
  3060. margin-top: 15px;
  3061. text-align: right;
  3062. border-top: 1px solid #e5e5e5;
  3063. }
  3064. .modal-footer:before,
  3065. .modal-footer:after {
  3066. display: table;
  3067. content: " ";
  3068. }
  3069. .modal-footer:after {
  3070. clear: both;
  3071. }
  3072. .modal-footer:before,
  3073. .modal-footer:after {
  3074. display: table;
  3075. content: " ";
  3076. }
  3077. .modal-footer:after {
  3078. clear: both;
  3079. }
  3080. .modal-footer .btn + .btn {
  3081. margin-bottom: 0;
  3082. margin-left: 5px;
  3083. }
  3084. .modal-footer .btn-group .btn + .btn {
  3085. margin-left: -1px;
  3086. }
  3087. .modal-footer .btn-block + .btn-block {
  3088. margin-left: 0;
  3089. }
  3090. @media screen and (min-width: 768px) {
  3091. .modal-dialog {
  3092. right: auto;
  3093. left: 50%;
  3094. width: 600px;
  3095. padding-top: 30px;
  3096. padding-bottom: 30px;
  3097. }
  3098. .modal-content {
  3099. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  3100. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  3101. }
  3102. }
  3103. .tooltip {
  3104. position: absolute;
  3105. z-index: 1030;
  3106. display: block;
  3107. font-size: 12px;
  3108. line-height: 1.4;
  3109. opacity: 0;
  3110. filter: alpha(opacity=0);
  3111. visibility: visible;
  3112. }
  3113. .tooltip.in {
  3114. opacity: 1;
  3115. filter: alpha(opacity=100);
  3116. }
  3117. .tooltip.top {
  3118. padding: 5px 0;
  3119. margin-top: -3px;
  3120. }
  3121. .tooltip.right {
  3122. padding: 0 5px;
  3123. margin-left: 3px;
  3124. }
  3125. .tooltip.bottom {
  3126. padding: 5px 0;
  3127. margin-top: 3px;
  3128. }
  3129. .tooltip.left {
  3130. padding: 0 5px;
  3131. margin-left: -3px;
  3132. }
  3133. .tooltip-inner {
  3134. max-width: 200px;
  3135. padding: 3px 8px;
  3136. color: #ffffff;
  3137. text-align: center;
  3138. text-decoration: none;
  3139. background-color: rgba(0, 0, 0, 0.9);
  3140. border-radius: 4px;
  3141. }
  3142. .tooltip-arrow {
  3143. position: absolute;
  3144. width: 0;
  3145. height: 0;
  3146. border-color: transparent;
  3147. border-style: solid;
  3148. }
  3149. .tooltip.top .tooltip-arrow {
  3150. bottom: 0;
  3151. left: 50%;
  3152. margin-left: -5px;
  3153. border-top-color: rgba(0, 0, 0, 0.9);
  3154. border-width: 5px 5px 0;
  3155. }
  3156. .tooltip.top-left .tooltip-arrow {
  3157. bottom: 0;
  3158. left: 5px;
  3159. border-top-color: rgba(0, 0, 0, 0.9);
  3160. border-width: 5px 5px 0;
  3161. }
  3162. .tooltip.top-right .tooltip-arrow {
  3163. right: 5px;
  3164. bottom: 0;
  3165. border-top-color: rgba(0, 0, 0, 0.9);
  3166. border-width: 5px 5px 0;
  3167. }
  3168. .tooltip.right .tooltip-arrow {
  3169. top: 50%;
  3170. left: 0;
  3171. margin-top: -5px;
  3172. border-right-color: rgba(0, 0, 0, 0.9);
  3173. border-width: 5px 5px 5px 0;
  3174. }
  3175. .tooltip.left .tooltip-arrow {
  3176. top: 50%;
  3177. right: 0;
  3178. margin-top: -5px;
  3179. border-left-color: rgba(0, 0, 0, 0.9);
  3180. border-width: 5px 0 5px 5px;
  3181. }
  3182. .tooltip.bottom .tooltip-arrow {
  3183. top: 0;
  3184. left: 50%;
  3185. margin-left: -5px;
  3186. border-bottom-color: rgba(0, 0, 0, 0.9);
  3187. border-width: 0 5px 5px;
  3188. }
  3189. .tooltip.bottom-left .tooltip-arrow {
  3190. top: 0;
  3191. left: 5px;
  3192. border-bottom-color: rgba(0, 0, 0, 0.9);
  3193. border-width: 0 5px 5px;
  3194. }
  3195. .tooltip.bottom-right .tooltip-arrow {
  3196. top: 0;
  3197. right: 5px;
  3198. border-bottom-color: rgba(0, 0, 0, 0.9);
  3199. border-width: 0 5px 5px;
  3200. }
  3201. .popover {
  3202. position: absolute;
  3203. top: 0;
  3204. left: 0;
  3205. z-index: 1010;
  3206. display: none;
  3207. max-width: 276px;
  3208. padding: 1px;
  3209. text-align: left;
  3210. white-space: normal;
  3211. background-color: #ffffff;
  3212. border: 1px solid #cccccc;
  3213. border: 1px solid rgba(0, 0, 0, 0.2);
  3214. border-radius: 6px;
  3215. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  3216. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  3217. background-clip: padding-box;
  3218. -webkit-bg-clip: padding-box;
  3219. -moz-bg-clip: padding;
  3220. }
  3221. .popover.top {
  3222. margin-top: -10px;
  3223. }
  3224. .popover.right {
  3225. margin-left: 10px;
  3226. }
  3227. .popover.bottom {
  3228. margin-top: 10px;
  3229. }
  3230. .popover.left {
  3231. margin-left: -10px;
  3232. }
  3233. .popover-title {
  3234. padding: 8px 14px;
  3235. margin: 0;
  3236. font-size: 14px;
  3237. font-weight: normal;
  3238. line-height: 18px;
  3239. background-color: #f7f7f7;
  3240. border-bottom: 1px solid #ebebeb;
  3241. border-radius: 5px 5px 0 0;
  3242. }
  3243. .popover-content {
  3244. padding: 9px 14px;
  3245. }
  3246. .popover .arrow,
  3247. .popover .arrow:after {
  3248. position: absolute;
  3249. display: block;
  3250. width: 0;
  3251. height: 0;
  3252. border-color: transparent;
  3253. border-style: solid;
  3254. }
  3255. .popover .arrow {
  3256. border-width: 11px;
  3257. }
  3258. .popover .arrow:after {
  3259. border-width: 10px;
  3260. content: "";
  3261. }
  3262. .popover.top .arrow {
  3263. bottom: -11px;
  3264. left: 50%;
  3265. margin-left: -11px;
  3266. border-top-color: #999999;
  3267. border-top-color: rgba(0, 0, 0, 0.25);
  3268. border-bottom-width: 0;
  3269. }
  3270. .popover.top .arrow:after {
  3271. bottom: 1px;
  3272. margin-left: -10px;
  3273. border-top-color: #ffffff;
  3274. border-bottom-width: 0;
  3275. content: " ";
  3276. }
  3277. .popover.right .arrow {
  3278. top: 50%;
  3279. left: -11px;
  3280. margin-top: -11px;
  3281. border-right-color: #999999;
  3282. border-right-color: rgba(0, 0, 0, 0.25);
  3283. border-left-width: 0;
  3284. }
  3285. .popover.right .arrow:after {
  3286. bottom: -10px;
  3287. left: 1px;
  3288. border-right-color: #ffffff;
  3289. border-left-width: 0;
  3290. content: " ";
  3291. }
  3292. .popover.bottom .arrow {
  3293. top: -11px;
  3294. left: 50%;
  3295. margin-left: -11px;
  3296. border-bottom-color: #999999;
  3297. border-bottom-color: rgba(0, 0, 0, 0.25);
  3298. border-top-width: 0;
  3299. }
  3300. .popover.bottom .arrow:after {
  3301. top: 1px;
  3302. margin-left: -10px;
  3303. border-bottom-color: #ffffff;
  3304. border-top-width: 0;
  3305. content: " ";
  3306. }
  3307. .popover.left .arrow {
  3308. top: 50%;
  3309. right: -11px;
  3310. margin-top: -11px;
  3311. border-left-color: #999999;
  3312. border-left-color: rgba(0, 0, 0, 0.25);
  3313. border-right-width: 0;
  3314. }
  3315. .popover.left .arrow:after {
  3316. right: 1px;
  3317. bottom: -10px;
  3318. border-left-color: #ffffff;
  3319. border-right-width: 0;
  3320. content: " ";
  3321. }
  3322. .alert {
  3323. padding: 15px 35px 15px 15px;
  3324. margin-bottom: 20px;
  3325. color: #c09853;
  3326. background-color: #fcf8e3;
  3327. border: 1px solid #fbeed5;
  3328. border-radius: 4px;
  3329. }
  3330. .alert h4 {
  3331. margin-top: 0;
  3332. color: inherit;
  3333. }
  3334. .alert hr {
  3335. border-top-color: #f8e5be;
  3336. }
  3337. .alert .alert-link {
  3338. font-weight: bold;
  3339. color: #a47e3c;
  3340. }
  3341. .alert .close {
  3342. position: relative;
  3343. top: -2px;
  3344. right: -21px;
  3345. color: inherit;
  3346. }
  3347. .alert > p,
  3348. .alert > ul {
  3349. margin-bottom: 0;
  3350. }
  3351. .alert > p + p {
  3352. margin-top: 5px;
  3353. }
  3354. .alert-success {
  3355. color: #468847;
  3356. background-color: #dff0d8;
  3357. border-color: #d6e9c6;
  3358. }
  3359. .alert-success hr {
  3360. border-top-color: #c9e2b3;
  3361. }
  3362. .alert-success .alert-link {
  3363. color: #356635;
  3364. }
  3365. .alert-danger {
  3366. color: #b94a48;
  3367. background-color: #f2dede;
  3368. border-color: #eed3d7;
  3369. }
  3370. .alert-danger hr {
  3371. border-top-color: #e6c1c7;
  3372. }
  3373. .alert-danger .alert-link {
  3374. color: #953b39;
  3375. }
  3376. .alert-info {
  3377. color: #3a87ad;
  3378. background-color: #d9edf7;
  3379. border-color: #bce8f1;
  3380. }
  3381. .alert-info hr {
  3382. border-top-color: #a6e1ec;
  3383. }
  3384. .alert-info .alert-link {
  3385. color: #2d6987;
  3386. }
  3387. .thumbnail,
  3388. .img-thumbnail {
  3389. padding: 4px;
  3390. line-height: 1.428571429;
  3391. background-color: #ffffff;
  3392. border: 1px solid #dddddd;
  3393. border-radius: 4px;
  3394. -webkit-transition: all 0.2s ease-in-out;
  3395. transition: all 0.2s ease-in-out;
  3396. }
  3397. .thumbnail {
  3398. display: block;
  3399. }
  3400. .thumbnail > img,
  3401. .img-thumbnail {
  3402. display: inline-block;
  3403. height: auto;
  3404. max-width: 100%;
  3405. }
  3406. a.thumbnail:hover,
  3407. a.thumbnail:focus {
  3408. border-color: #428bca;
  3409. }
  3410. .thumbnail > img {
  3411. margin-right: auto;
  3412. margin-left: auto;
  3413. }
  3414. .thumbnail .caption {
  3415. padding: 9px;
  3416. color: #333333;
  3417. }
  3418. .media,
  3419. .media-body {
  3420. overflow: hidden;
  3421. zoom: 1;
  3422. }
  3423. .media,
  3424. .media .media {
  3425. margin-top: 15px;
  3426. }
  3427. .media:first-child {
  3428. margin-top: 0;
  3429. }
  3430. .media-object {
  3431. display: block;
  3432. }
  3433. .media-heading {
  3434. margin: 0 0 5px;
  3435. }
  3436. .media > .pull-left {
  3437. margin-right: 10px;
  3438. }
  3439. .media > .pull-right {
  3440. margin-left: 10px;
  3441. }
  3442. .media-list {
  3443. padding-left: 0;
  3444. list-style: none;
  3445. }
  3446. .label {
  3447. display: inline;
  3448. padding: .25em .6em;
  3449. font-size: 75%;
  3450. font-weight: 500;
  3451. line-height: 1;
  3452. color: #ffffff;
  3453. text-align: center;
  3454. white-space: nowrap;
  3455. vertical-align: baseline;
  3456. background-color: #999999;
  3457. border-radius: .25em;
  3458. }
  3459. .label[href]:hover,
  3460. .label[href]:focus {
  3461. color: #ffffff;
  3462. text-decoration: none;
  3463. cursor: pointer;
  3464. background-color: #808080;
  3465. }
  3466. .label-danger {
  3467. background-color: #d9534f;
  3468. }
  3469. .label-danger[href]:hover,
  3470. .label-danger[href]:focus {
  3471. background-color: #c9302c;
  3472. }
  3473. .label-success {
  3474. background-color: #5cb85c;
  3475. }
  3476. .label-success[href]:hover,
  3477. .label-success[href]:focus {
  3478. background-color: #449d44;
  3479. }
  3480. .label-warning {
  3481. background-color: #f0ad4e;
  3482. }
  3483. .label-warning[href]:hover,
  3484. .label-warning[href]:focus {
  3485. background-color: #ec971f;
  3486. }
  3487. .label-info {
  3488. background-color: #5bc0de;
  3489. }
  3490. .label-info[href]:hover,
  3491. .label-info[href]:focus {
  3492. background-color: #31b0d5;
  3493. }
  3494. .badge {
  3495. display: inline-block;
  3496. min-width: 10px;
  3497. padding: 3px 7px;
  3498. font-size: 12px;
  3499. font-weight: bold;
  3500. line-height: 1;
  3501. color: #ffffff;
  3502. text-align: center;
  3503. white-space: nowrap;
  3504. vertical-align: baseline;
  3505. background-color: #999999;
  3506. border-radius: 10px;
  3507. }
  3508. .badge:empty {
  3509. display: none;
  3510. }
  3511. a.badge:hover,
  3512. a.badge:focus {
  3513. color: #ffffff;
  3514. text-decoration: none;
  3515. cursor: pointer;
  3516. }
  3517. .btn .badge {
  3518. position: relative;
  3519. top: -1px;
  3520. }
  3521. a.list-group-item.active > .badge,
  3522. .nav-pills > .active > a > .badge {
  3523. color: #428bca;
  3524. background-color: #ffffff;
  3525. }
  3526. .nav-pills > li > a > .badge {
  3527. margin-left: 3px;
  3528. }
  3529. @-webkit-keyframes progress-bar-stripes {
  3530. from {
  3531. background-position: 40px 0;
  3532. }
  3533. to {
  3534. background-position: 0 0;
  3535. }
  3536. }
  3537. @-moz-keyframes progress-bar-stripes {
  3538. from {
  3539. background-position: 40px 0;
  3540. }
  3541. to {
  3542. background-position: 0 0;
  3543. }
  3544. }
  3545. @-o-keyframes progress-bar-stripes {
  3546. from {
  3547. background-position: 0 0;
  3548. }
  3549. to {
  3550. background-position: 40px 0;
  3551. }
  3552. }
  3553. @keyframes progress-bar-stripes {
  3554. from {
  3555. background-position: 40px 0;
  3556. }
  3557. to {
  3558. background-position: 0 0;
  3559. }
  3560. }
  3561. .progress {
  3562. height: 20px;
  3563. margin-bottom: 20px;
  3564. overflow: hidden;
  3565. background-color: #f5f5f5;
  3566. border-radius: 4px;
  3567. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3568. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3569. }
  3570. .progress-bar {
  3571. float: left;
  3572. width: 0;
  3573. height: 100%;
  3574. font-size: 12px;
  3575. color: #ffffff;
  3576. text-align: center;
  3577. background-color: #428bca;
  3578. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3579. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3580. -webkit-transition: width 0.6s ease;
  3581. transition: width 0.6s ease;
  3582. }
  3583. .progress-striped .progress-bar {
  3584. background-color: #428bca;
  3585. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3586. 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);
  3587. background-image: -moz-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);
  3588. 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);
  3589. background-size: 40px 40px;
  3590. }
  3591. .progress.active .progress-bar {
  3592. -webkit-animation: progress-bar-stripes 2s linear infinite;
  3593. -moz-animation: progress-bar-stripes 2s linear infinite;
  3594. -ms-animation: progress-bar-stripes 2s linear infinite;
  3595. -o-animation: progress-bar-stripes 2s linear infinite;
  3596. animation: progress-bar-stripes 2s linear infinite;
  3597. }
  3598. .progress-bar-danger {
  3599. background-color: #d9534f;
  3600. }
  3601. .progress-striped .progress-bar-danger {
  3602. background-color: #d9534f;
  3603. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3604. 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);
  3605. background-image: -moz-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);
  3606. 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);
  3607. }
  3608. .progress-bar-success {
  3609. background-color: #5cb85c;
  3610. }
  3611. .progress-striped .progress-bar-success {
  3612. background-color: #5cb85c;
  3613. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3614. 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);
  3615. background-image: -moz-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);
  3616. 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);
  3617. }
  3618. .progress-bar-warning {
  3619. background-color: #f0ad4e;
  3620. }
  3621. .progress-striped .progress-bar-warning {
  3622. background-color: #f0ad4e;
  3623. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3624. 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);
  3625. background-image: -moz-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);
  3626. 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);
  3627. }
  3628. .progress-bar-info {
  3629. background-color: #5bc0de;
  3630. }
  3631. .progress-striped .progress-bar-info {
  3632. background-color: #5bc0de;
  3633. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  3634. 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);
  3635. background-image: -moz-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);
  3636. 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);
  3637. }
  3638. .accordion {
  3639. margin-bottom: 20px;
  3640. }
  3641. .accordion-group {
  3642. margin-bottom: 2px;
  3643. border: 1px solid #e5e5e5;
  3644. border-radius: 4px;
  3645. }
  3646. .accordion-heading {
  3647. border-bottom: 0;
  3648. }
  3649. .accordion-heading .accordion-toggle {
  3650. display: block;
  3651. padding: 8px 15px;
  3652. cursor: pointer;
  3653. }
  3654. .accordion-inner {
  3655. padding: 9px 15px;
  3656. border-top: 1px solid #e5e5e5;
  3657. }
  3658. .carousel {
  3659. position: relative;
  3660. }
  3661. .carousel-inner {
  3662. position: relative;
  3663. width: 100%;
  3664. overflow: hidden;
  3665. }
  3666. .carousel-inner > .item {
  3667. position: relative;
  3668. display: none;
  3669. -webkit-transition: 0.6s ease-in-out left;
  3670. transition: 0.6s ease-in-out left;
  3671. }
  3672. .carousel-inner > .item > img,
  3673. .carousel-inner > .item > a > img {
  3674. display: inline-block;
  3675. height: auto;
  3676. max-width: 100%;
  3677. line-height: 1;
  3678. }
  3679. .carousel-inner > .active,
  3680. .carousel-inner > .next,
  3681. .carousel-inner > .prev {
  3682. display: block;
  3683. }
  3684. .carousel-inner > .active {
  3685. left: 0;
  3686. }
  3687. .carousel-inner > .next,
  3688. .carousel-inner > .prev {
  3689. position: absolute;
  3690. top: 0;
  3691. width: 100%;
  3692. }
  3693. .carousel-inner > .next {
  3694. left: 100%;
  3695. }
  3696. .carousel-inner > .prev {
  3697. left: -100%;
  3698. }
  3699. .carousel-inner > .next.left,
  3700. .carousel-inner > .prev.right {
  3701. left: 0;
  3702. }
  3703. .carousel-inner > .active.left {
  3704. left: -100%;
  3705. }
  3706. .carousel-inner > .active.right {
  3707. left: 100%;
  3708. }
  3709. .carousel-control {
  3710. position: absolute;
  3711. top: 0;
  3712. bottom: 0;
  3713. left: 0;
  3714. width: 15%;
  3715. font-size: 20px;
  3716. color: #ffffff;
  3717. text-align: center;
  3718. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  3719. opacity: 0.5;
  3720. filter: alpha(opacity=50);
  3721. }
  3722. .carousel-control.left {
  3723. background-color: rgba(0, 0, 0, 0.0001);
  3724. background-color: transparent;
  3725. background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  3726. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  3727. background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  3728. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  3729. background-repeat: repeat-x;
  3730. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  3731. }
  3732. .carousel-control.right {
  3733. right: 0;
  3734. left: auto;
  3735. background-color: rgba(0, 0, 0, 0.5);
  3736. background-color: transparent;
  3737. background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  3738. background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
  3739. background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  3740. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  3741. background-repeat: repeat-x;
  3742. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  3743. }
  3744. .carousel-control:hover,
  3745. .carousel-control:focus {
  3746. color: #ffffff;
  3747. text-decoration: none;
  3748. opacity: 0.9;
  3749. filter: alpha(opacity=90);
  3750. }
  3751. .carousel-control .glyphicon,
  3752. .carousel-control .icon-prev,
  3753. .carousel-control .icon-next {
  3754. position: absolute;
  3755. top: 50%;
  3756. left: 50%;
  3757. z-index: 5;
  3758. display: inline-block;
  3759. width: 20px;
  3760. height: 20px;
  3761. margin-top: -10px;
  3762. margin-left: -10px;
  3763. font-family: serif;
  3764. }
  3765. .carousel-control .icon-prev:before {
  3766. content: '\2039';
  3767. }
  3768. .carousel-control .icon-next:before {
  3769. content: '\203a';
  3770. }
  3771. .carousel-indicators {
  3772. position: absolute;
  3773. bottom: 10px;
  3774. left: 50%;
  3775. z-index: 15;
  3776. width: 120px;
  3777. padding-left: 0;
  3778. margin-left: -60px;
  3779. text-align: center;
  3780. list-style: none;
  3781. }
  3782. .carousel-indicators li {
  3783. display: inline-block;
  3784. width: 10px;
  3785. height: 10px;
  3786. margin: 1px;
  3787. text-indent: -999px;
  3788. cursor: pointer;
  3789. border: 1px solid #ffffff;
  3790. border-radius: 10px;
  3791. }
  3792. .carousel-indicators .active {
  3793. width: 12px;
  3794. height: 12px;
  3795. margin: 0;
  3796. background-color: #ffffff;
  3797. }
  3798. .carousel-caption {
  3799. position: absolute;
  3800. right: 15%;
  3801. bottom: 20px;
  3802. left: 15%;
  3803. z-index: 10;
  3804. padding-top: 20px;
  3805. padding-bottom: 20px;
  3806. color: #ffffff;
  3807. text-align: center;
  3808. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  3809. }
  3810. .carousel-caption .btn {
  3811. text-shadow: none;
  3812. }
  3813. @media screen and (min-width: 768px) {
  3814. .carousel-control .glyphicon,
  3815. .carousel-control .icon-prev,
  3816. .carousel-control .icon-next {
  3817. width: 30px;
  3818. height: 30px;
  3819. margin-top: -15px;
  3820. margin-left: -15px;
  3821. font-size: 30px;
  3822. }
  3823. .carousel-caption {
  3824. right: 20%;
  3825. left: 20%;
  3826. padding-bottom: 30px;
  3827. }
  3828. .carousel-indicators {
  3829. bottom: 20px;
  3830. }
  3831. }
  3832. .jumbotron {
  3833. padding: 30px;
  3834. margin-bottom: 30px;
  3835. font-size: 21px;
  3836. font-weight: 200;
  3837. line-height: 2.1428571435;
  3838. color: inherit;
  3839. background-color: #eeeeee;
  3840. }
  3841. .jumbotron h1 {
  3842. line-height: 1;
  3843. color: inherit;
  3844. }
  3845. .jumbotron p {
  3846. line-height: 1.4;
  3847. }
  3848. @media screen and (min-width: 768px) {
  3849. .jumbotron {
  3850. padding: 50px 60px;
  3851. border-radius: 6px;
  3852. }
  3853. .jumbotron h1 {
  3854. font-size: 63px;
  3855. }
  3856. }
  3857. .clearfix:before,
  3858. .clearfix:after {
  3859. display: table;
  3860. content: " ";
  3861. }
  3862. .clearfix:after {
  3863. clear: both;
  3864. }
  3865. .pull-right {
  3866. float: right;
  3867. }
  3868. .pull-left {
  3869. float: left;
  3870. }
  3871. .hide {
  3872. display: none !important;
  3873. }
  3874. .show {
  3875. display: block !important;
  3876. }
  3877. .invisible {
  3878. visibility: hidden;
  3879. }
  3880. .text-hide {
  3881. font: 0/0 a;
  3882. color: transparent;
  3883. text-shadow: none;
  3884. background-color: transparent;
  3885. border: 0;
  3886. }
  3887. .affix {
  3888. position: fixed;
  3889. }
  3890. @-ms-viewport {
  3891. width: device-width;
  3892. }
  3893. @media screen and (max-width: 400px) {
  3894. @-ms-viewport {
  3895. width: 320px;
  3896. }
  3897. }
  3898. .hidden {
  3899. display: none !important;
  3900. visibility: hidden !important;
  3901. }
  3902. .visible-sm {
  3903. display: block !important;
  3904. }
  3905. tr.visible-sm {
  3906. display: table-row !important;
  3907. }
  3908. th.visible-sm,
  3909. td.visible-sm {
  3910. display: table-cell !important;
  3911. }
  3912. .visible-md {
  3913. display: none !important;
  3914. }
  3915. tr.visible-md {
  3916. display: none !important;
  3917. }
  3918. th.visible-md,
  3919. td.visible-md {
  3920. display: none !important;
  3921. }
  3922. .visible-lg {
  3923. display: none !important;
  3924. }
  3925. tr.visible-lg {
  3926. display: none !important;
  3927. }
  3928. th.visible-lg,
  3929. td.visible-lg {
  3930. display: none !important;
  3931. }
  3932. .hidden-sm {
  3933. display: none !important;
  3934. }
  3935. tr.hidden-sm {
  3936. display: none !important;
  3937. }
  3938. th.hidden-sm,
  3939. td.hidden-sm {
  3940. display: none !important;
  3941. }
  3942. .hidden-md {
  3943. display: block !important;
  3944. }
  3945. tr.hidden-md {
  3946. display: table-row !important;
  3947. }
  3948. th.hidden-md,
  3949. td.hidden-md {
  3950. display: table-cell !important;
  3951. }
  3952. .hidden-lg {
  3953. display: block !important;
  3954. }
  3955. tr.hidden-lg {
  3956. display: table-row !important;
  3957. }
  3958. th.hidden-lg,
  3959. td.hidden-lg {
  3960. display: table-cell !important;
  3961. }
  3962. @media (min-width: 768px) and (max-width: 991px) {
  3963. .visible-sm {
  3964. display: none !important;
  3965. }
  3966. tr.visible-sm {
  3967. display: none !important;
  3968. }
  3969. th.visible-sm,
  3970. td.visible-sm {
  3971. display: none !important;
  3972. }
  3973. .visible-md {
  3974. display: block !important;
  3975. }
  3976. tr.visible-md {
  3977. display: table-row !important;
  3978. }
  3979. th.visible-md,
  3980. td.visible-md {
  3981. display: table-cell !important;
  3982. }
  3983. .visible-lg {
  3984. display: none !important;
  3985. }
  3986. tr.visible-lg {
  3987. display: none !important;
  3988. }
  3989. th.visible-lg,
  3990. td.visible-lg {
  3991. display: none !important;
  3992. }
  3993. .hidden-sm {
  3994. display: block !important;
  3995. }
  3996. tr.hidden-sm {
  3997. display: table-row !important;
  3998. }
  3999. th.hidden-sm,
  4000. td.hidden-sm {
  4001. display: table-cell !important;
  4002. }
  4003. .hidden-md {
  4004. display: none !important;
  4005. }
  4006. tr.hidden-md {
  4007. display: none !important;
  4008. }
  4009. th.hidden-md,
  4010. td.hidden-md {
  4011. display: none !important;
  4012. }
  4013. .hidden-lg {
  4014. display: block !important;
  4015. }
  4016. tr.hidden-lg {
  4017. display: table-row !important;
  4018. }
  4019. th.hidden-lg,
  4020. td.hidden-lg {
  4021. display: table-cell !important;
  4022. }
  4023. }
  4024. @media (min-width: 992px) {
  4025. .visible-sm {
  4026. display: none !important;
  4027. }
  4028. tr.visible-sm {
  4029. display: none !important;
  4030. }
  4031. th.visible-sm,
  4032. td.visible-sm {
  4033. display: none !important;
  4034. }
  4035. .visible-md {
  4036. display: none !important;
  4037. }
  4038. tr.visible-md {
  4039. display: none !important;
  4040. }
  4041. th.visible-md,
  4042. td.visible-md {
  4043. display: none !important;
  4044. }
  4045. .visible-lg {
  4046. display: block !important;
  4047. }
  4048. tr.visible-lg {
  4049. display: table-row !important;
  4050. }
  4051. th.visible-lg,
  4052. td.visible-lg {
  4053. display: table-cell !important;
  4054. }
  4055. .hidden-sm {
  4056. display: block !important;
  4057. }
  4058. tr.hidden-sm {
  4059. display: table-row !important;
  4060. }
  4061. th.hidden-sm,
  4062. td.hidden-sm {
  4063. display: table-cell !important;
  4064. }
  4065. .hidden-md {
  4066. display: block !important;
  4067. }
  4068. tr.hidden-md {
  4069. display: table-row !important;
  4070. }
  4071. th.hidden-md,
  4072. td.hidden-md {
  4073. display: table-cell !important;
  4074. }
  4075. .hidden-lg {
  4076. display: none !important;
  4077. }
  4078. tr.hidden-lg {
  4079. display: none !important;
  4080. }
  4081. th.hidden-lg,
  4082. td.hidden-lg {
  4083. display: none !important;
  4084. }
  4085. }
  4086. .visible-print {
  4087. display: none !important;
  4088. }
  4089. tr.visible-print {
  4090. display: none !important;
  4091. }
  4092. th.visible-print,
  4093. td.visible-print {
  4094. display: none !important;
  4095. }
  4096. @media print {
  4097. .visible-print {
  4098. display: block !important;
  4099. }
  4100. tr.visible-print {
  4101. display: table-row !important;
  4102. }
  4103. th.visible-print,
  4104. td.visible-print {
  4105. display: table-cell !important;
  4106. }
  4107. .hidden-print {
  4108. display: none !important;
  4109. }
  4110. tr.hidden-print {
  4111. display: none !important;
  4112. }
  4113. th.hidden-print,
  4114. td.hidden-print {
  4115. display: none !important;
  4116. }
  4117. }