bootstrap.css 73 KB

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