bootstrap.css 98 KB

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