bootstrap.css 103 KB

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