bootstrap.css 105 KB

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