bootstrap.css 117 KB

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