bootstrap.light.min.css 135 KB

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