bootstrap.css 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650
  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: #4183c4;
  144. text-decoration: none;
  145. }
  146. a:hover {
  147. color: #4183c4;
  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. width: 100%;
  258. min-height: 28px;
  259. -webkit-box-sizing: border-box;
  260. -moz-box-sizing: border-box;
  261. -ms-box-sizing: border-box;
  262. box-sizing: border-box;
  263. float: left;
  264. margin-left: 2.127659574%;
  265. *margin-left: 2.0744680846382977%;
  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 #f5f5f5;
  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. clear: left;
  469. text-align: right;
  470. overflow: hidden;
  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 #f5f5f5;
  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 #f5f5f5;
  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 #f5f5f5;
  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,.075), 0 0 8px rgba(82,168,236,.6);
  719. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
  720. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.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, textarea.span12, .uneditable-input.span12 {
  833. width: 930px;
  834. }
  835. input.span11, textarea.span11, .uneditable-input.span11 {
  836. width: 850px;
  837. }
  838. input.span10, textarea.span10, .uneditable-input.span10 {
  839. width: 770px;
  840. }
  841. input.span9, textarea.span9, .uneditable-input.span9 {
  842. width: 690px;
  843. }
  844. input.span8, textarea.span8, .uneditable-input.span8 {
  845. width: 610px;
  846. }
  847. input.span7, textarea.span7, .uneditable-input.span7 {
  848. width: 530px;
  849. }
  850. input.span6, textarea.span6, .uneditable-input.span6 {
  851. width: 450px;
  852. }
  853. input.span5, textarea.span5, .uneditable-input.span5 {
  854. width: 370px;
  855. }
  856. input.span4, textarea.span4, .uneditable-input.span4 {
  857. width: 290px;
  858. }
  859. input.span3, textarea.span3, .uneditable-input.span3 {
  860. width: 210px;
  861. }
  862. input.span2, textarea.span2, .uneditable-input.span2 {
  863. width: 130px;
  864. }
  865. input.span1, textarea.span1, .uneditable-input.span1 {
  866. width: 50px;
  867. }
  868. input[disabled],
  869. select[disabled],
  870. textarea[disabled],
  871. input[readonly],
  872. select[readonly],
  873. textarea[readonly] {
  874. cursor: not-allowed;
  875. background-color: #f5f5f5;
  876. border-color: #ddd;
  877. }
  878. input[type="radio"][disabled],
  879. input[type="checkbox"][disabled],
  880. input[type="radio"][readonly],
  881. input[type="checkbox"][readonly] {
  882. background-color: transparent;
  883. }
  884. .control-group.warning > label,
  885. .control-group.warning .help-block,
  886. .control-group.warning .help-inline {
  887. color: #393939;
  888. }
  889. .control-group.warning .checkbox,
  890. .control-group.warning .radio,
  891. .control-group.warning input,
  892. .control-group.warning select,
  893. .control-group.warning textarea {
  894. color: #393939;
  895. border-color: #393939;
  896. }
  897. .control-group.warning .checkbox:focus,
  898. .control-group.warning .radio:focus,
  899. .control-group.warning input:focus,
  900. .control-group.warning select:focus,
  901. .control-group.warning textarea:focus {
  902. border-color: #202020;
  903. -webkit-box-shadow: 0 0 6px #6c6c6c;
  904. -moz-box-shadow: 0 0 6px #6c6c6c;
  905. box-shadow: 0 0 6px #6c6c6c;
  906. }
  907. .control-group.warning .input-prepend .add-on,
  908. .control-group.warning .input-append .add-on {
  909. color: #393939;
  910. background-color: #f5f3b4;
  911. border-color: #393939;
  912. }
  913. .control-group.error > label,
  914. .control-group.error .help-block,
  915. .control-group.error .help-inline {
  916. color: #393939;
  917. }
  918. .control-group.error .checkbox,
  919. .control-group.error .radio,
  920. .control-group.error input,
  921. .control-group.error select,
  922. .control-group.error textarea {
  923. color: #393939;
  924. border-color: #393939;
  925. }
  926. .control-group.error .checkbox:focus,
  927. .control-group.error .radio:focus,
  928. .control-group.error input:focus,
  929. .control-group.error select:focus,
  930. .control-group.error textarea:focus {
  931. border-color: #202020;
  932. -webkit-box-shadow: 0 0 6px #6c6c6c;
  933. -moz-box-shadow: 0 0 6px #6c6c6c;
  934. box-shadow: 0 0 6px #6c6c6c;
  935. }
  936. .control-group.error .input-prepend .add-on,
  937. .control-group.error .input-append .add-on {
  938. color: #393939;
  939. background-color: #ffe9e9;
  940. border-color: #393939;
  941. }
  942. .control-group.success > label,
  943. .control-group.success .help-block,
  944. .control-group.success .help-inline {
  945. color: #333333;
  946. }
  947. .control-group.success .checkbox,
  948. .control-group.success .radio,
  949. .control-group.success input,
  950. .control-group.success select,
  951. .control-group.success textarea {
  952. color: #333333;
  953. border-color: #333333;
  954. }
  955. .control-group.success .checkbox:focus,
  956. .control-group.success .radio:focus,
  957. .control-group.success input:focus,
  958. .control-group.success select:focus,
  959. .control-group.success textarea:focus {
  960. border-color: #1a1a1a;
  961. -webkit-box-shadow: 0 0 6px #666666;
  962. -moz-box-shadow: 0 0 6px #666666;
  963. box-shadow: 0 0 6px #666666;
  964. }
  965. .control-group.success .input-prepend .add-on,
  966. .control-group.success .input-append .add-on {
  967. color: #333333;
  968. background-color: #bedebe;
  969. border-color: #333333;
  970. }
  971. input:focus:required:invalid,
  972. textarea:focus:required:invalid,
  973. select:focus:required:invalid {
  974. color: #b94a48;
  975. border-color: #ee5f5b;
  976. }
  977. input:focus:required:invalid:focus,
  978. textarea:focus:required:invalid:focus,
  979. select:focus:required:invalid:focus {
  980. border-color: #e9322d;
  981. -webkit-box-shadow: 0 0 6px #f8b9b7;
  982. -moz-box-shadow: 0 0 6px #f8b9b7;
  983. box-shadow: 0 0 6px #f8b9b7;
  984. }
  985. .form-actions {
  986. padding: 17px 20px 18px;
  987. margin-top: 18px;
  988. margin-bottom: 18px;
  989. background-color: #f5f5f5;
  990. border-top: 1px solid #e5e5e5;
  991. *zoom: 1;
  992. }
  993. .form-actions:before,
  994. .form-actions:after {
  995. display: table;
  996. content: "";
  997. }
  998. .form-actions:after {
  999. clear: both;
  1000. }
  1001. .uneditable-input {
  1002. overflow: hidden;
  1003. white-space: nowrap;
  1004. cursor: not-allowed;
  1005. background-color: #ffffff;
  1006. border-color: #eee;
  1007. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  1008. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  1009. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  1010. }
  1011. :-moz-placeholder {
  1012. color: #999999;
  1013. }
  1014. :-ms-input-placeholder {
  1015. color: #999999;
  1016. }
  1017. ::-webkit-input-placeholder {
  1018. color: #999999;
  1019. }
  1020. .help-block,
  1021. .help-inline {
  1022. color: #555555;
  1023. }
  1024. .help-block {
  1025. display: block;
  1026. margin-bottom: 9px;
  1027. }
  1028. .help-inline {
  1029. display: inline-block;
  1030. *display: inline;
  1031. /* IE7 inline-block hack */
  1032. *zoom: 1;
  1033. vertical-align: middle;
  1034. padding-left: 5px;
  1035. }
  1036. .input-prepend,
  1037. .input-append {
  1038. margin-bottom: 5px;
  1039. }
  1040. .input-prepend input,
  1041. .input-append input,
  1042. .input-prepend select,
  1043. .input-append select,
  1044. .input-prepend .uneditable-input,
  1045. .input-append .uneditable-input {
  1046. position: relative;
  1047. margin-bottom: 0;
  1048. *margin-left: 0;
  1049. vertical-align: middle;
  1050. -webkit-border-radius: 0 3px 3px 0;
  1051. -moz-border-radius: 0 3px 3px 0;
  1052. border-radius: 0 3px 3px 0;
  1053. }
  1054. .input-prepend input:focus,
  1055. .input-append input:focus,
  1056. .input-prepend select:focus,
  1057. .input-append select:focus,
  1058. .input-prepend .uneditable-input:focus,
  1059. .input-append .uneditable-input:focus {
  1060. z-index: 2;
  1061. }
  1062. .input-prepend .uneditable-input,
  1063. .input-append .uneditable-input {
  1064. border-left-color: #ccc;
  1065. }
  1066. .input-prepend .add-on,
  1067. .input-append .add-on {
  1068. display: inline-block;
  1069. width: auto;
  1070. height: 18px;
  1071. min-width: 16px;
  1072. padding: 4px 5px;
  1073. font-weight: normal;
  1074. line-height: 18px;
  1075. text-align: center;
  1076. text-shadow: 0 1px 0 #ffffff;
  1077. vertical-align: middle;
  1078. background-color: #f5f5f5;
  1079. border: 1px solid #ccc;
  1080. }
  1081. .input-prepend .add-on,
  1082. .input-append .add-on,
  1083. .input-prepend .btn,
  1084. .input-append .btn {
  1085. margin-left: -1px;
  1086. -webkit-border-radius: 0;
  1087. -moz-border-radius: 0;
  1088. border-radius: 0;
  1089. }
  1090. .input-prepend .active,
  1091. .input-append .active {
  1092. background-color: #fafefa;
  1093. border-color: #84de81;
  1094. }
  1095. .input-prepend .add-on,
  1096. .input-prepend .btn {
  1097. margin-right: -1px;
  1098. }
  1099. .input-prepend .add-on:first-child,
  1100. .input-prepend .btn:first-child {
  1101. -webkit-border-radius: 3px 0 0 3px;
  1102. -moz-border-radius: 3px 0 0 3px;
  1103. border-radius: 3px 0 0 3px;
  1104. }
  1105. .input-append input,
  1106. .input-append select,
  1107. .input-append .uneditable-input {
  1108. -webkit-border-radius: 3px 0 0 3px;
  1109. -moz-border-radius: 3px 0 0 3px;
  1110. border-radius: 3px 0 0 3px;
  1111. }
  1112. .input-append .uneditable-input {
  1113. border-right-color: #ccc;
  1114. border-left-color: #eee;
  1115. }
  1116. .input-append .add-on:last-child,
  1117. .input-append .btn:last-child {
  1118. -webkit-border-radius: 0 3px 3px 0;
  1119. -moz-border-radius: 0 3px 3px 0;
  1120. border-radius: 0 3px 3px 0;
  1121. }
  1122. .input-prepend.input-append input,
  1123. .input-prepend.input-append select,
  1124. .input-prepend.input-append .uneditable-input {
  1125. -webkit-border-radius: 0;
  1126. -moz-border-radius: 0;
  1127. border-radius: 0;
  1128. }
  1129. .input-prepend.input-append .add-on:first-child,
  1130. .input-prepend.input-append .btn:first-child {
  1131. margin-right: -1px;
  1132. -webkit-border-radius: 3px 0 0 3px;
  1133. -moz-border-radius: 3px 0 0 3px;
  1134. border-radius: 3px 0 0 3px;
  1135. }
  1136. .input-prepend.input-append .add-on:last-child,
  1137. .input-prepend.input-append .btn:last-child {
  1138. margin-left: -1px;
  1139. -webkit-border-radius: 0 3px 3px 0;
  1140. -moz-border-radius: 0 3px 3px 0;
  1141. border-radius: 0 3px 3px 0;
  1142. }
  1143. .search-query {
  1144. padding-right: 14px;
  1145. padding-right: 4px \9;
  1146. padding-left: 14px;
  1147. padding-left: 4px \9;
  1148. /* IE7-8 doesn't have border-radius, so don't indent the padding */
  1149. margin-bottom: 0;
  1150. -webkit-border-radius: 14px;
  1151. -moz-border-radius: 14px;
  1152. border-radius: 14px;
  1153. }
  1154. .form-search input,
  1155. .form-inline input,
  1156. .form-horizontal input,
  1157. .form-search textarea,
  1158. .form-inline textarea,
  1159. .form-horizontal textarea,
  1160. .form-search select,
  1161. .form-inline select,
  1162. .form-horizontal select,
  1163. .form-search .help-inline,
  1164. .form-inline .help-inline,
  1165. .form-horizontal .help-inline,
  1166. .form-search .uneditable-input,
  1167. .form-inline .uneditable-input,
  1168. .form-horizontal .uneditable-input,
  1169. .form-search .input-prepend,
  1170. .form-inline .input-prepend,
  1171. .form-horizontal .input-prepend,
  1172. .form-search .input-append,
  1173. .form-inline .input-append,
  1174. .form-horizontal .input-append {
  1175. display: inline-block;
  1176. *display: inline;
  1177. /* IE7 inline-block hack */
  1178. *zoom: 1;
  1179. margin-bottom: 0;
  1180. }
  1181. .form-search .hide,
  1182. .form-inline .hide,
  1183. .form-horizontal .hide {
  1184. display: none;
  1185. }
  1186. .form-search label,
  1187. .form-inline label {
  1188. display: inline-block;
  1189. }
  1190. .form-search .input-append,
  1191. .form-inline .input-append,
  1192. .form-search .input-prepend,
  1193. .form-inline .input-prepend {
  1194. margin-bottom: 0;
  1195. }
  1196. .form-search .radio,
  1197. .form-search .checkbox,
  1198. .form-inline .radio,
  1199. .form-inline .checkbox {
  1200. padding-left: 0;
  1201. margin-bottom: 0;
  1202. vertical-align: middle;
  1203. }
  1204. .form-search .radio input[type="radio"],
  1205. .form-search .checkbox input[type="checkbox"],
  1206. .form-inline .radio input[type="radio"],
  1207. .form-inline .checkbox input[type="checkbox"] {
  1208. float: left;
  1209. margin-right: 3px;
  1210. margin-left: 0;
  1211. }
  1212. .control-group {
  1213. margin-bottom: 9px;
  1214. }
  1215. legend + .control-group {
  1216. margin-top: 18px;
  1217. -webkit-margin-top-collapse: separate;
  1218. }
  1219. .form-horizontal .control-group {
  1220. margin-bottom: 18px;
  1221. *zoom: 1;
  1222. }
  1223. .form-horizontal .control-group:before,
  1224. .form-horizontal .control-group:after {
  1225. display: table;
  1226. content: "";
  1227. }
  1228. .form-horizontal .control-group:after {
  1229. clear: both;
  1230. }
  1231. .form-horizontal .control-label {
  1232. float: left;
  1233. width: 140px;
  1234. padding-top: 5px;
  1235. text-align: right;
  1236. }
  1237. .form-horizontal .controls {
  1238. *display: inline-block;
  1239. *padding-left: 20px;
  1240. margin-left: 160px;
  1241. *margin-left: 0;
  1242. }
  1243. .form-horizontal .controls:first-child {
  1244. *padding-left: 160px;
  1245. }
  1246. .form-horizontal .help-block {
  1247. margin-top: 9px;
  1248. margin-bottom: 0;
  1249. }
  1250. .form-horizontal .form-actions {
  1251. padding-left: 160px;
  1252. }
  1253. table {
  1254. max-width: 100%;
  1255. background-color: transparent;
  1256. border-collapse: collapse;
  1257. border-spacing: 0;
  1258. }
  1259. .table {
  1260. width: 100%;
  1261. margin-bottom: 18px;
  1262. }
  1263. .table th,
  1264. .table td {
  1265. padding: 8px;
  1266. line-height: 18px;
  1267. text-align: left;
  1268. vertical-align: top;
  1269. border-top: 1px solid #dddddd;
  1270. }
  1271. .table th {
  1272. font-weight: bold;
  1273. }
  1274. .table thead th {
  1275. vertical-align: bottom;
  1276. }
  1277. .table caption + thead tr:first-child th,
  1278. .table caption + thead tr:first-child td,
  1279. .table colgroup + thead tr:first-child th,
  1280. .table colgroup + thead tr:first-child td,
  1281. .table thead:first-child tr:first-child th,
  1282. .table thead:first-child tr:first-child td {
  1283. border-top: 0;
  1284. }
  1285. .table tbody + tbody {
  1286. border-top: 2px solid #dddddd;
  1287. }
  1288. .table-condensed th,
  1289. .table-condensed td {
  1290. padding: 4px 5px;
  1291. }
  1292. .table-bordered {
  1293. border: 1px solid #dddddd;
  1294. border-collapse: separate;
  1295. *border-collapse: collapsed;
  1296. border-left: 0;
  1297. -webkit-border-radius: 4px;
  1298. -moz-border-radius: 4px;
  1299. border-radius: 4px;
  1300. }
  1301. .table-bordered th,
  1302. .table-bordered td {
  1303. border-left: 1px solid #dddddd;
  1304. }
  1305. .table-bordered caption + thead tr:first-child th,
  1306. .table-bordered caption + tbody tr:first-child th,
  1307. .table-bordered caption + tbody tr:first-child td,
  1308. .table-bordered colgroup + thead tr:first-child th,
  1309. .table-bordered colgroup + tbody tr:first-child th,
  1310. .table-bordered colgroup + tbody tr:first-child td,
  1311. .table-bordered thead:first-child tr:first-child th,
  1312. .table-bordered tbody:first-child tr:first-child th,
  1313. .table-bordered tbody:first-child tr:first-child td {
  1314. border-top: 0;
  1315. }
  1316. .table-bordered thead:first-child tr:first-child th:first-child,
  1317. .table-bordered tbody:first-child tr:first-child td:first-child {
  1318. -webkit-border-top-left-radius: 4px;
  1319. border-top-left-radius: 4px;
  1320. -moz-border-radius-topleft: 4px;
  1321. }
  1322. .table-bordered thead:first-child tr:first-child th:last-child,
  1323. .table-bordered tbody:first-child tr:first-child td:last-child {
  1324. -webkit-border-top-right-radius: 4px;
  1325. border-top-right-radius: 4px;
  1326. -moz-border-radius-topright: 4px;
  1327. }
  1328. .table-bordered thead:last-child tr:last-child th:first-child,
  1329. .table-bordered tbody:last-child tr:last-child td:first-child {
  1330. -webkit-border-radius: 0 0 0 4px;
  1331. -moz-border-radius: 0 0 0 4px;
  1332. border-radius: 0 0 0 4px;
  1333. -webkit-border-bottom-left-radius: 4px;
  1334. border-bottom-left-radius: 4px;
  1335. -moz-border-radius-bottomleft: 4px;
  1336. }
  1337. .table-bordered thead:last-child tr:last-child th:last-child,
  1338. .table-bordered tbody:last-child tr:last-child td:last-child {
  1339. -webkit-border-bottom-right-radius: 4px;
  1340. border-bottom-right-radius: 4px;
  1341. -moz-border-radius-bottomright: 4px;
  1342. }
  1343. .table-striped tbody tr:nth-child(odd) td,
  1344. .table-striped tbody tr:nth-child(odd) th {
  1345. background-color: #f9f9f9;
  1346. }
  1347. .table tbody tr:hover td,
  1348. .table tbody tr:hover th {
  1349. background-color: #f5f5f5;
  1350. }
  1351. table .span1 {
  1352. float: none;
  1353. width: 44px;
  1354. margin-left: 0;
  1355. }
  1356. table .span2 {
  1357. float: none;
  1358. width: 124px;
  1359. margin-left: 0;
  1360. }
  1361. table .span3 {
  1362. float: none;
  1363. width: 204px;
  1364. margin-left: 0;
  1365. }
  1366. table .span4 {
  1367. float: none;
  1368. width: 284px;
  1369. margin-left: 0;
  1370. }
  1371. table .span5 {
  1372. float: none;
  1373. width: 364px;
  1374. margin-left: 0;
  1375. }
  1376. table .span6 {
  1377. float: none;
  1378. width: 444px;
  1379. margin-left: 0;
  1380. }
  1381. table .span7 {
  1382. float: none;
  1383. width: 524px;
  1384. margin-left: 0;
  1385. }
  1386. table .span8 {
  1387. float: none;
  1388. width: 604px;
  1389. margin-left: 0;
  1390. }
  1391. table .span9 {
  1392. float: none;
  1393. width: 684px;
  1394. margin-left: 0;
  1395. }
  1396. table .span10 {
  1397. float: none;
  1398. width: 764px;
  1399. margin-left: 0;
  1400. }
  1401. table .span11 {
  1402. float: none;
  1403. width: 844px;
  1404. margin-left: 0;
  1405. }
  1406. table .span12 {
  1407. float: none;
  1408. width: 924px;
  1409. margin-left: 0;
  1410. }
  1411. table .span13 {
  1412. float: none;
  1413. width: 1004px;
  1414. margin-left: 0;
  1415. }
  1416. table .span14 {
  1417. float: none;
  1418. width: 1084px;
  1419. margin-left: 0;
  1420. }
  1421. table .span15 {
  1422. float: none;
  1423. width: 1164px;
  1424. margin-left: 0;
  1425. }
  1426. table .span16 {
  1427. float: none;
  1428. width: 1244px;
  1429. margin-left: 0;
  1430. }
  1431. table .span17 {
  1432. float: none;
  1433. width: 1324px;
  1434. margin-left: 0;
  1435. }
  1436. table .span18 {
  1437. float: none;
  1438. width: 1404px;
  1439. margin-left: 0;
  1440. }
  1441. table .span19 {
  1442. float: none;
  1443. width: 1484px;
  1444. margin-left: 0;
  1445. }
  1446. table .span20 {
  1447. float: none;
  1448. width: 1564px;
  1449. margin-left: 0;
  1450. }
  1451. table .span21 {
  1452. float: none;
  1453. width: 1644px;
  1454. margin-left: 0;
  1455. }
  1456. table .span22 {
  1457. float: none;
  1458. width: 1724px;
  1459. margin-left: 0;
  1460. }
  1461. table .span23 {
  1462. float: none;
  1463. width: 1804px;
  1464. margin-left: 0;
  1465. }
  1466. table .span24 {
  1467. float: none;
  1468. width: 1884px;
  1469. margin-left: 0;
  1470. }
  1471. [class^="icon-"],
  1472. [class*=" icon-"] {
  1473. display: inline-block;
  1474. width: 14px;
  1475. height: 14px;
  1476. *margin-right: .3em;
  1477. line-height: 14px;
  1478. vertical-align: text-top;
  1479. background-image: url("../img/glyphicons-halflings.png");
  1480. background-position: 14px 14px;
  1481. background-repeat: no-repeat;
  1482. }
  1483. [class^="icon-"]:last-child,
  1484. [class*=" icon-"]:last-child {
  1485. *margin-left: 0;
  1486. }
  1487. .icon-white {
  1488. background-image: url("../img/glyphicons-halflings-white.png");
  1489. }
  1490. .icon-glass {
  1491. background-position: 0 0;
  1492. }
  1493. .icon-music {
  1494. background-position: -24px 0;
  1495. }
  1496. .icon-search {
  1497. background-position: -48px 0;
  1498. }
  1499. .icon-envelope {
  1500. background-position: -72px 0;
  1501. }
  1502. .icon-heart {
  1503. background-position: -96px 0;
  1504. }
  1505. .icon-star {
  1506. background-position: -120px 0;
  1507. }
  1508. .icon-star-empty {
  1509. background-position: -144px 0;
  1510. }
  1511. .icon-user {
  1512. background-position: -168px 0;
  1513. }
  1514. .icon-film {
  1515. background-position: -192px 0;
  1516. }
  1517. .icon-th-large {
  1518. background-position: -216px 0;
  1519. }
  1520. .icon-th {
  1521. background-position: -240px 0;
  1522. }
  1523. .icon-th-list {
  1524. background-position: -264px 0;
  1525. }
  1526. .icon-ok {
  1527. background-position: -288px 0;
  1528. }
  1529. .icon-remove {
  1530. background-position: -312px 0;
  1531. }
  1532. .icon-zoom-in {
  1533. background-position: -336px 0;
  1534. }
  1535. .icon-zoom-out {
  1536. background-position: -360px 0;
  1537. }
  1538. .icon-off {
  1539. background-position: -384px 0;
  1540. }
  1541. .icon-signal {
  1542. background-position: -408px 0;
  1543. }
  1544. .icon-cog {
  1545. background-position: -432px 0;
  1546. }
  1547. .icon-trash {
  1548. background-position: -456px 0;
  1549. }
  1550. .icon-home {
  1551. background-position: 0 -24px;
  1552. }
  1553. .icon-file {
  1554. background-position: -24px -24px;
  1555. }
  1556. .icon-time {
  1557. background-position: -48px -24px;
  1558. }
  1559. .icon-road {
  1560. background-position: -72px -24px;
  1561. }
  1562. .icon-download-alt {
  1563. background-position: -96px -24px;
  1564. }
  1565. .icon-download {
  1566. background-position: -120px -24px;
  1567. }
  1568. .icon-upload {
  1569. background-position: -144px -24px;
  1570. }
  1571. .icon-inbox {
  1572. background-position: -168px -24px;
  1573. }
  1574. .icon-play-circle {
  1575. background-position: -192px -24px;
  1576. }
  1577. .icon-repeat {
  1578. background-position: -216px -24px;
  1579. }
  1580. .icon-refresh {
  1581. background-position: -240px -24px;
  1582. }
  1583. .icon-list-alt {
  1584. background-position: -264px -24px;
  1585. }
  1586. .icon-lock {
  1587. background-position: -287px -24px;
  1588. }
  1589. .icon-flag {
  1590. background-position: -312px -24px;
  1591. }
  1592. .icon-headphones {
  1593. background-position: -336px -24px;
  1594. }
  1595. .icon-volume-off {
  1596. background-position: -360px -24px;
  1597. }
  1598. .icon-volume-down {
  1599. background-position: -384px -24px;
  1600. }
  1601. .icon-volume-up {
  1602. background-position: -408px -24px;
  1603. }
  1604. .icon-qrcode {
  1605. background-position: -432px -24px;
  1606. }
  1607. .icon-barcode {
  1608. background-position: -456px -24px;
  1609. }
  1610. .icon-tag {
  1611. background-position: 0 -48px;
  1612. }
  1613. .icon-tags {
  1614. background-position: -25px -48px;
  1615. }
  1616. .icon-book {
  1617. background-position: -48px -48px;
  1618. }
  1619. .icon-bookmark {
  1620. background-position: -72px -48px;
  1621. }
  1622. .icon-print {
  1623. background-position: -96px -48px;
  1624. }
  1625. .icon-camera {
  1626. background-position: -120px -48px;
  1627. }
  1628. .icon-font {
  1629. background-position: -144px -48px;
  1630. }
  1631. .icon-bold {
  1632. background-position: -167px -48px;
  1633. }
  1634. .icon-italic {
  1635. background-position: -192px -48px;
  1636. }
  1637. .icon-text-height {
  1638. background-position: -216px -48px;
  1639. }
  1640. .icon-text-width {
  1641. background-position: -240px -48px;
  1642. }
  1643. .icon-align-left {
  1644. background-position: -264px -48px;
  1645. }
  1646. .icon-align-center {
  1647. background-position: -288px -48px;
  1648. }
  1649. .icon-align-right {
  1650. background-position: -312px -48px;
  1651. }
  1652. .icon-align-justify {
  1653. background-position: -336px -48px;
  1654. }
  1655. .icon-list {
  1656. background-position: -360px -48px;
  1657. }
  1658. .icon-indent-left {
  1659. background-position: -384px -48px;
  1660. }
  1661. .icon-indent-right {
  1662. background-position: -408px -48px;
  1663. }
  1664. .icon-facetime-video {
  1665. background-position: -432px -48px;
  1666. }
  1667. .icon-picture {
  1668. background-position: -456px -48px;
  1669. }
  1670. .icon-pencil {
  1671. background-position: 0 -72px;
  1672. }
  1673. .icon-map-marker {
  1674. background-position: -24px -72px;
  1675. }
  1676. .icon-adjust {
  1677. background-position: -48px -72px;
  1678. }
  1679. .icon-tint {
  1680. background-position: -72px -72px;
  1681. }
  1682. .icon-edit {
  1683. background-position: -96px -72px;
  1684. }
  1685. .icon-share {
  1686. background-position: -120px -72px;
  1687. }
  1688. .icon-check {
  1689. background-position: -144px -72px;
  1690. }
  1691. .icon-move {
  1692. background-position: -168px -72px;
  1693. }
  1694. .icon-step-backward {
  1695. background-position: -192px -72px;
  1696. }
  1697. .icon-fast-backward {
  1698. background-position: -216px -72px;
  1699. }
  1700. .icon-backward {
  1701. background-position: -240px -72px;
  1702. }
  1703. .icon-play {
  1704. background-position: -264px -72px;
  1705. }
  1706. .icon-pause {
  1707. background-position: -288px -72px;
  1708. }
  1709. .icon-stop {
  1710. background-position: -312px -72px;
  1711. }
  1712. .icon-forward {
  1713. background-position: -336px -72px;
  1714. }
  1715. .icon-fast-forward {
  1716. background-position: -360px -72px;
  1717. }
  1718. .icon-step-forward {
  1719. background-position: -384px -72px;
  1720. }
  1721. .icon-eject {
  1722. background-position: -408px -72px;
  1723. }
  1724. .icon-chevron-left {
  1725. background-position: -432px -72px;
  1726. }
  1727. .icon-chevron-right {
  1728. background-position: -456px -72px;
  1729. }
  1730. .icon-plus-sign {
  1731. background-position: 0 -96px;
  1732. }
  1733. .icon-minus-sign {
  1734. background-position: -24px -96px;
  1735. }
  1736. .icon-remove-sign {
  1737. background-position: -48px -96px;
  1738. }
  1739. .icon-ok-sign {
  1740. background-position: -72px -96px;
  1741. }
  1742. .icon-question-sign {
  1743. background-position: -96px -96px;
  1744. }
  1745. .icon-info-sign {
  1746. background-position: -120px -96px;
  1747. }
  1748. .icon-screenshot {
  1749. background-position: -144px -96px;
  1750. }
  1751. .icon-remove-circle {
  1752. background-position: -168px -96px;
  1753. }
  1754. .icon-ok-circle {
  1755. background-position: -192px -96px;
  1756. }
  1757. .icon-ban-circle {
  1758. background-position: -216px -96px;
  1759. }
  1760. .icon-arrow-left {
  1761. background-position: -240px -96px;
  1762. }
  1763. .icon-arrow-right {
  1764. background-position: -264px -96px;
  1765. }
  1766. .icon-arrow-up {
  1767. background-position: -289px -96px;
  1768. }
  1769. .icon-arrow-down {
  1770. background-position: -312px -96px;
  1771. }
  1772. .icon-share-alt {
  1773. background-position: -336px -96px;
  1774. }
  1775. .icon-resize-full {
  1776. background-position: -360px -96px;
  1777. }
  1778. .icon-resize-small {
  1779. background-position: -384px -96px;
  1780. }
  1781. .icon-plus {
  1782. background-position: -408px -96px;
  1783. }
  1784. .icon-minus {
  1785. background-position: -433px -96px;
  1786. }
  1787. .icon-asterisk {
  1788. background-position: -456px -96px;
  1789. }
  1790. .icon-exclamation-sign {
  1791. background-position: 0 -120px;
  1792. }
  1793. .icon-gift {
  1794. background-position: -24px -120px;
  1795. }
  1796. .icon-leaf {
  1797. background-position: -48px -120px;
  1798. }
  1799. .icon-fire {
  1800. background-position: -72px -120px;
  1801. }
  1802. .icon-eye-open {
  1803. background-position: -96px -120px;
  1804. }
  1805. .icon-eye-close {
  1806. background-position: -120px -120px;
  1807. }
  1808. .icon-warning-sign {
  1809. background-position: -144px -120px;
  1810. }
  1811. .icon-plane {
  1812. background-position: -168px -120px;
  1813. }
  1814. .icon-calendar {
  1815. background-position: -192px -120px;
  1816. }
  1817. .icon-random {
  1818. background-position: -216px -120px;
  1819. }
  1820. .icon-comment {
  1821. background-position: -240px -120px;
  1822. }
  1823. .icon-magnet {
  1824. background-position: -264px -120px;
  1825. }
  1826. .icon-chevron-up {
  1827. background-position: -288px -120px;
  1828. }
  1829. .icon-chevron-down {
  1830. background-position: -313px -119px;
  1831. }
  1832. .icon-retweet {
  1833. background-position: -336px -120px;
  1834. }
  1835. .icon-shopping-cart {
  1836. background-position: -360px -120px;
  1837. }
  1838. .icon-folder-close {
  1839. background-position: -384px -120px;
  1840. }
  1841. .icon-folder-open {
  1842. background-position: -408px -120px;
  1843. }
  1844. .icon-resize-vertical {
  1845. background-position: -432px -119px;
  1846. }
  1847. .icon-resize-horizontal {
  1848. background-position: -456px -118px;
  1849. }
  1850. .icon-hdd {
  1851. background-position: 0 -144px;
  1852. }
  1853. .icon-bullhorn {
  1854. background-position: -24px -144px;
  1855. }
  1856. .icon-bell {
  1857. background-position: -48px -144px;
  1858. }
  1859. .icon-certificate {
  1860. background-position: -72px -144px;
  1861. }
  1862. .icon-thumbs-up {
  1863. background-position: -96px -144px;
  1864. }
  1865. .icon-thumbs-down {
  1866. background-position: -120px -144px;
  1867. }
  1868. .icon-hand-right {
  1869. background-position: -144px -144px;
  1870. }
  1871. .icon-hand-left {
  1872. background-position: -168px -144px;
  1873. }
  1874. .icon-hand-up {
  1875. background-position: -192px -144px;
  1876. }
  1877. .icon-hand-down {
  1878. background-position: -216px -144px;
  1879. }
  1880. .icon-circle-arrow-right {
  1881. background-position: -240px -144px;
  1882. }
  1883. .icon-circle-arrow-left {
  1884. background-position: -264px -144px;
  1885. }
  1886. .icon-circle-arrow-up {
  1887. background-position: -288px -144px;
  1888. }
  1889. .icon-circle-arrow-down {
  1890. background-position: -312px -144px;
  1891. }
  1892. .icon-globe {
  1893. background-position: -336px -144px;
  1894. }
  1895. .icon-wrench {
  1896. background-position: -360px -144px;
  1897. }
  1898. .icon-tasks {
  1899. background-position: -384px -144px;
  1900. }
  1901. .icon-filter {
  1902. background-position: -408px -144px;
  1903. }
  1904. .icon-briefcase {
  1905. background-position: -432px -144px;
  1906. }
  1907. .icon-fullscreen {
  1908. background-position: -456px -144px;
  1909. }
  1910. .dropup,
  1911. .dropdown {
  1912. position: relative;
  1913. }
  1914. .dropdown-toggle {
  1915. *margin-bottom: -3px;
  1916. }
  1917. .dropdown-toggle:active,
  1918. .open .dropdown-toggle {
  1919. outline: 0;
  1920. }
  1921. .caret {
  1922. display: inline-block;
  1923. width: 0;
  1924. height: 0;
  1925. vertical-align: top;
  1926. border-top: 4px solid #000000;
  1927. border-right: 4px solid transparent;
  1928. border-left: 4px solid transparent;
  1929. content: "";
  1930. opacity: 0.3;
  1931. filter: alpha(opacity=30);
  1932. }
  1933. .dropdown .caret {
  1934. margin-top: 8px;
  1935. margin-left: 2px;
  1936. }
  1937. .dropdown:hover .caret,
  1938. .open .caret {
  1939. opacity: 1;
  1940. filter: alpha(opacity=100);
  1941. }
  1942. .dropdown-menu {
  1943. position: absolute;
  1944. top: 100%;
  1945. left: 0;
  1946. z-index: 1000;
  1947. display: none;
  1948. float: left;
  1949. min-width: 160px;
  1950. padding: 4px 0;
  1951. margin: 1px 0 0;
  1952. list-style: none;
  1953. background-color: #ffffff;
  1954. border: 1px solid #ccc;
  1955. border: 1px solid rgba(0, 0, 0, 0.2);
  1956. *border-right-width: 2px;
  1957. *border-bottom-width: 2px;
  1958. -webkit-border-radius: 5px;
  1959. -moz-border-radius: 5px;
  1960. border-radius: 5px;
  1961. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  1962. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  1963. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  1964. -webkit-background-clip: padding-box;
  1965. -moz-background-clip: padding;
  1966. background-clip: padding-box;
  1967. }
  1968. .dropdown-menu.pull-right {
  1969. right: 0;
  1970. left: auto;
  1971. }
  1972. .dropdown-menu .divider {
  1973. *width: 100%;
  1974. height: 1px;
  1975. margin: 8px 1px;
  1976. *margin: -5px 0 5px;
  1977. overflow: hidden;
  1978. background-color: #e5e5e5;
  1979. border-bottom: 1px solid #ffffff;
  1980. }
  1981. .dropdown-menu a {
  1982. display: block;
  1983. padding: 3px 15px;
  1984. clear: both;
  1985. font-weight: normal;
  1986. line-height: 18px;
  1987. color: #333333;
  1988. white-space: nowrap;
  1989. }
  1990. .dropdown-menu li > a:hover,
  1991. .dropdown-menu .active > a,
  1992. .dropdown-menu .active > a:hover {
  1993. color: #ffffff;
  1994. text-decoration: none;
  1995. background-color: #4183c4;
  1996. }
  1997. .open {
  1998. *z-index: 1000;
  1999. }
  2000. .open > .dropdown-menu {
  2001. display: block;
  2002. }
  2003. .pull-right > .dropdown-menu {
  2004. right: 0;
  2005. left: auto;
  2006. }
  2007. .dropup .caret,
  2008. .navbar-fixed-bottom .dropdown .caret {
  2009. border-top: 0;
  2010. border-bottom: 4px solid #000000;
  2011. content: "\2191";
  2012. }
  2013. .dropup .dropdown-menu,
  2014. .navbar-fixed-bottom .dropdown .dropdown-menu {
  2015. top: auto;
  2016. bottom: 100%;
  2017. margin-bottom: 1px;
  2018. }
  2019. .typeahead {
  2020. margin-top: 2px;
  2021. -webkit-border-radius: 4px;
  2022. -moz-border-radius: 4px;
  2023. border-radius: 4px;
  2024. }
  2025. .well {
  2026. min-height: 20px;
  2027. padding: 19px;
  2028. margin-bottom: 20px;
  2029. background-color: #f5f5f5;
  2030. border: 1px solid #eee;
  2031. border: 1px solid rgba(0, 0, 0, 0.05);
  2032. -webkit-border-radius: 4px;
  2033. -moz-border-radius: 4px;
  2034. border-radius: 4px;
  2035. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  2036. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  2037. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  2038. }
  2039. .well blockquote {
  2040. border-color: #ddd;
  2041. border-color: rgba(0, 0, 0, 0.15);
  2042. }
  2043. .well-large {
  2044. padding: 24px;
  2045. -webkit-border-radius: 6px;
  2046. -moz-border-radius: 6px;
  2047. border-radius: 6px;
  2048. }
  2049. .well-small {
  2050. padding: 9px;
  2051. -webkit-border-radius: 3px;
  2052. -moz-border-radius: 3px;
  2053. border-radius: 3px;
  2054. }
  2055. .fade {
  2056. opacity: 0;
  2057. -webkit-transition: opacity 0.15s linear;
  2058. -moz-transition: opacity 0.15s linear;
  2059. -ms-transition: opacity 0.15s linear;
  2060. -o-transition: opacity 0.15s linear;
  2061. transition: opacity 0.15s linear;
  2062. }
  2063. .fade.in {
  2064. opacity: 1;
  2065. }
  2066. .collapse {
  2067. position: relative;
  2068. height: 0;
  2069. overflow: hidden;
  2070. -webkit-transition: height 0.35s ease;
  2071. -moz-transition: height 0.35s ease;
  2072. -ms-transition: height 0.35s ease;
  2073. -o-transition: height 0.35s ease;
  2074. transition: height 0.35s ease;
  2075. }
  2076. .collapse.in {
  2077. height: auto;
  2078. }
  2079. .close {
  2080. float: right;
  2081. font-size: 20px;
  2082. font-weight: bold;
  2083. line-height: 18px;
  2084. color: #000000;
  2085. text-shadow: 0 1px 0 #ffffff;
  2086. opacity: 0.2;
  2087. filter: alpha(opacity=20);
  2088. }
  2089. .close:hover {
  2090. color: #000000;
  2091. text-decoration: none;
  2092. cursor: pointer;
  2093. opacity: 0.4;
  2094. filter: alpha(opacity=40);
  2095. }
  2096. button.close {
  2097. padding: 0;
  2098. cursor: pointer;
  2099. background: transparent;
  2100. border: 0;
  2101. -webkit-appearance: none;
  2102. }
  2103. .btn {
  2104. display: inline-block;
  2105. *display: inline;
  2106. /* IE7 inline-block hack */
  2107. *zoom: 1;
  2108. padding: 4px 10px 4px;
  2109. margin-bottom: 0;
  2110. font-size: 13px;
  2111. line-height: 18px;
  2112. *line-height: 20px;
  2113. color: #333333;
  2114. text-align: center;
  2115. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  2116. vertical-align: middle;
  2117. cursor: pointer;
  2118. background-color: #f5f5f5;
  2119. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  2120. background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  2121. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  2122. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  2123. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  2124. background-image: linear-gradient(top, #ffffff, #e6e6e6);
  2125. background-repeat: repeat-x;
  2126. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  2127. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  2128. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2129. *background-color: #e6e6e6;
  2130. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  2131. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2132. border: 1px solid #cccccc;
  2133. *border: 0;
  2134. border-bottom-color: #b3b3b3;
  2135. -webkit-border-radius: 4px;
  2136. -moz-border-radius: 4px;
  2137. border-radius: 4px;
  2138. *margin-left: .3em;
  2139. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  2140. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  2141. box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  2142. }
  2143. .btn:hover,
  2144. .btn:active,
  2145. .btn.active,
  2146. .btn.disabled,
  2147. .btn[disabled] {
  2148. background-color: #e6e6e6;
  2149. *background-color: #d9d9d9;
  2150. }
  2151. .btn:active,
  2152. .btn.active {
  2153. background-color: #cccccc \9;
  2154. }
  2155. .btn:first-child {
  2156. *margin-left: 0;
  2157. }
  2158. .btn:hover {
  2159. color: #333333;
  2160. text-decoration: none;
  2161. background-color: #e6e6e6;
  2162. *background-color: #d9d9d9;
  2163. /* Buttons in IE7 don't get borders, so darken on hover */
  2164. background-position: 0 -15px;
  2165. -webkit-transition: background-position 0.1s linear;
  2166. -moz-transition: background-position 0.1s linear;
  2167. -ms-transition: background-position 0.1s linear;
  2168. -o-transition: background-position 0.1s linear;
  2169. transition: background-position 0.1s linear;
  2170. }
  2171. .btn:focus {
  2172. outline: thin dotted #333;
  2173. outline: 5px auto -webkit-focus-ring-color;
  2174. outline-offset: -2px;
  2175. }
  2176. .btn.active,
  2177. .btn:active {
  2178. background-color: #e6e6e6;
  2179. background-color: #d9d9d9 \9;
  2180. background-image: none;
  2181. outline: 0;
  2182. -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  2183. -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  2184. box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  2185. }
  2186. .btn.disabled,
  2187. .btn[disabled] {
  2188. cursor: default;
  2189. background-color: #e6e6e6;
  2190. background-image: none;
  2191. opacity: 0.65;
  2192. filter: alpha(opacity=65);
  2193. -webkit-box-shadow: none;
  2194. -moz-box-shadow: none;
  2195. box-shadow: none;
  2196. }
  2197. .btn-large {
  2198. padding: 9px 14px;
  2199. font-size: 15px;
  2200. line-height: normal;
  2201. -webkit-border-radius: 5px;
  2202. -moz-border-radius: 5px;
  2203. border-radius: 5px;
  2204. }
  2205. .btn-large [class^="icon-"] {
  2206. margin-top: 1px;
  2207. }
  2208. .btn-small {
  2209. padding: 5px 9px;
  2210. font-size: 11px;
  2211. line-height: 16px;
  2212. }
  2213. .btn-small [class^="icon-"] {
  2214. margin-top: -1px;
  2215. }
  2216. .btn-mini {
  2217. padding: 2px 6px;
  2218. font-size: 11px;
  2219. line-height: 14px;
  2220. }
  2221. .btn-primary,
  2222. .btn-primary:hover,
  2223. .btn-warning,
  2224. .btn-warning:hover,
  2225. .btn-danger,
  2226. .btn-danger:hover,
  2227. .btn-success,
  2228. .btn-success:hover,
  2229. .btn-info,
  2230. .btn-info:hover,
  2231. .btn-inverse,
  2232. .btn-inverse:hover {
  2233. color: #ffffff;
  2234. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2235. }
  2236. .btn-primary.active,
  2237. .btn-warning.active,
  2238. .btn-danger.active,
  2239. .btn-success.active,
  2240. .btn-info.active,
  2241. .btn-inverse.active {
  2242. color: rgba(255, 255, 255, 0.75);
  2243. }
  2244. .btn {
  2245. border-color: #ccc;
  2246. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2247. }
  2248. .btn-primary {
  2249. background-color: #4176c4;
  2250. background-image: -moz-linear-gradient(top, #4183c4, #4162c4);
  2251. background-image: -ms-linear-gradient(top, #4183c4, #4162c4);
  2252. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4183c4), to(#4162c4));
  2253. background-image: -webkit-linear-gradient(top, #4183c4, #4162c4);
  2254. background-image: -o-linear-gradient(top, #4183c4, #4162c4);
  2255. background-image: linear-gradient(top, #4183c4, #4162c4);
  2256. background-repeat: repeat-x;
  2257. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4183c4', endColorstr='#4162c4', GradientType=0);
  2258. border-color: #4162c4 #4162c4 #2c448d;
  2259. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2260. *background-color: #4162c4;
  2261. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  2262. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2263. }
  2264. .btn-primary:hover,
  2265. .btn-primary:active,
  2266. .btn-primary.active,
  2267. .btn-primary.disabled,
  2268. .btn-primary[disabled] {
  2269. background-color: #4162c4;
  2270. *background-color: #3857b4;
  2271. }
  2272. .btn-primary:active,
  2273. .btn-primary.active {
  2274. background-color: #324ea0 \9;
  2275. }
  2276. .btn-warning {
  2277. background-color: #ff942e;
  2278. background-image: -moz-linear-gradient(top, #ffa44d, #ff7d00);
  2279. background-image: -ms-linear-gradient(top, #ffa44d, #ff7d00);
  2280. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffa44d), to(#ff7d00));
  2281. background-image: -webkit-linear-gradient(top, #ffa44d, #ff7d00);
  2282. background-image: -o-linear-gradient(top, #ffa44d, #ff7d00);
  2283. background-image: linear-gradient(top, #ffa44d, #ff7d00);
  2284. background-repeat: repeat-x;
  2285. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa44d', endColorstr='#ff7d00', GradientType=0);
  2286. border-color: #ff7d00 #ff7d00 #b35800;
  2287. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2288. *background-color: #ff7d00;
  2289. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  2290. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2291. }
  2292. .btn-warning:hover,
  2293. .btn-warning:active,
  2294. .btn-warning.active,
  2295. .btn-warning.disabled,
  2296. .btn-warning[disabled] {
  2297. background-color: #ff7d00;
  2298. *background-color: #e67100;
  2299. }
  2300. .btn-warning:active,
  2301. .btn-warning.active {
  2302. background-color: #cc6400 \9;
  2303. }
  2304. .btn-danger {
  2305. background-color: #da4f49;
  2306. background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  2307. background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
  2308. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  2309. background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  2310. background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  2311. background-image: linear-gradient(top, #ee5f5b, #bd362f);
  2312. background-repeat: repeat-x;
  2313. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
  2314. border-color: #bd362f #bd362f #802420;
  2315. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2316. *background-color: #bd362f;
  2317. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  2318. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2319. }
  2320. .btn-danger:hover,
  2321. .btn-danger:active,
  2322. .btn-danger.active,
  2323. .btn-danger.disabled,
  2324. .btn-danger[disabled] {
  2325. background-color: #bd362f;
  2326. *background-color: #a9302a;
  2327. }
  2328. .btn-danger:active,
  2329. .btn-danger.active {
  2330. background-color: #942a25 \9;
  2331. }
  2332. .btn-success {
  2333. background-color: #5bb75b;
  2334. background-image: -moz-linear-gradient(top, #62c462, #51a351);
  2335. background-image: -ms-linear-gradient(top, #62c462, #51a351);
  2336. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  2337. background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  2338. background-image: -o-linear-gradient(top, #62c462, #51a351);
  2339. background-image: linear-gradient(top, #62c462, #51a351);
  2340. background-repeat: repeat-x;
  2341. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
  2342. border-color: #51a351 #51a351 #387038;
  2343. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2344. *background-color: #51a351;
  2345. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  2346. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2347. }
  2348. .btn-success:hover,
  2349. .btn-success:active,
  2350. .btn-success.active,
  2351. .btn-success.disabled,
  2352. .btn-success[disabled] {
  2353. background-color: #51a351;
  2354. *background-color: #499249;
  2355. }
  2356. .btn-success:active,
  2357. .btn-success.active {
  2358. background-color: #408140 \9;
  2359. }
  2360. .btn-info {
  2361. background-color: #49afcd;
  2362. background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  2363. background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
  2364. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  2365. background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  2366. background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  2367. background-image: linear-gradient(top, #5bc0de, #2f96b4);
  2368. background-repeat: repeat-x;
  2369. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
  2370. border-color: #2f96b4 #2f96b4 #1f6377;
  2371. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2372. *background-color: #2f96b4;
  2373. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  2374. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2375. }
  2376. .btn-info:hover,
  2377. .btn-info:active,
  2378. .btn-info.active,
  2379. .btn-info.disabled,
  2380. .btn-info[disabled] {
  2381. background-color: #2f96b4;
  2382. *background-color: #2a85a0;
  2383. }
  2384. .btn-info:active,
  2385. .btn-info.active {
  2386. background-color: #24748c \9;
  2387. }
  2388. .btn-inverse {
  2389. background-color: #414141;
  2390. background-image: -moz-linear-gradient(top, #555555, #222222);
  2391. background-image: -ms-linear-gradient(top, #555555, #222222);
  2392. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
  2393. background-image: -webkit-linear-gradient(top, #555555, #222222);
  2394. background-image: -o-linear-gradient(top, #555555, #222222);
  2395. background-image: linear-gradient(top, #555555, #222222);
  2396. background-repeat: repeat-x;
  2397. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
  2398. border-color: #222222 #222222 #000000;
  2399. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2400. *background-color: #222222;
  2401. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  2402. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  2403. }
  2404. .btn-inverse:hover,
  2405. .btn-inverse:active,
  2406. .btn-inverse.active,
  2407. .btn-inverse.disabled,
  2408. .btn-inverse[disabled] {
  2409. background-color: #222222;
  2410. *background-color: #151515;
  2411. }
  2412. .btn-inverse:active,
  2413. .btn-inverse.active {
  2414. background-color: #080808 \9;
  2415. }
  2416. button.btn,
  2417. input[type="submit"].btn {
  2418. *padding-top: 2px;
  2419. *padding-bottom: 2px;
  2420. }
  2421. button.btn::-moz-focus-inner,
  2422. input[type="submit"].btn::-moz-focus-inner {
  2423. padding: 0;
  2424. border: 0;
  2425. }
  2426. button.btn.btn-large,
  2427. input[type="submit"].btn.btn-large {
  2428. *padding-top: 7px;
  2429. *padding-bottom: 7px;
  2430. }
  2431. button.btn.btn-small,
  2432. input[type="submit"].btn.btn-small {
  2433. *padding-top: 3px;
  2434. *padding-bottom: 3px;
  2435. }
  2436. button.btn.btn-mini,
  2437. input[type="submit"].btn.btn-mini {
  2438. *padding-top: 1px;
  2439. *padding-bottom: 1px;
  2440. }
  2441. .btn-group {
  2442. position: relative;
  2443. *zoom: 1;
  2444. *margin-left: .3em;
  2445. }
  2446. .btn-group:before,
  2447. .btn-group:after {
  2448. display: table;
  2449. content: "";
  2450. }
  2451. .btn-group:after {
  2452. clear: both;
  2453. }
  2454. .btn-group:first-child {
  2455. *margin-left: 0;
  2456. }
  2457. .btn-group + .btn-group {
  2458. margin-left: 5px;
  2459. }
  2460. .btn-toolbar {
  2461. margin-top: 9px;
  2462. margin-bottom: 9px;
  2463. }
  2464. .btn-toolbar .btn-group {
  2465. display: inline-block;
  2466. *display: inline;
  2467. /* IE7 inline-block hack */
  2468. *zoom: 1;
  2469. }
  2470. .btn-group > .btn {
  2471. position: relative;
  2472. float: left;
  2473. margin-left: -1px;
  2474. -webkit-border-radius: 0;
  2475. -moz-border-radius: 0;
  2476. border-radius: 0;
  2477. }
  2478. .btn-group > .btn:first-child {
  2479. margin-left: 0;
  2480. -webkit-border-top-left-radius: 4px;
  2481. -moz-border-radius-topleft: 4px;
  2482. border-top-left-radius: 4px;
  2483. -webkit-border-bottom-left-radius: 4px;
  2484. -moz-border-radius-bottomleft: 4px;
  2485. border-bottom-left-radius: 4px;
  2486. }
  2487. .btn-group > .btn:last-child,
  2488. .btn-group > .dropdown-toggle {
  2489. -webkit-border-top-right-radius: 4px;
  2490. -moz-border-radius-topright: 4px;
  2491. border-top-right-radius: 4px;
  2492. -webkit-border-bottom-right-radius: 4px;
  2493. -moz-border-radius-bottomright: 4px;
  2494. border-bottom-right-radius: 4px;
  2495. }
  2496. .btn-group > .btn.large:first-child {
  2497. margin-left: 0;
  2498. -webkit-border-top-left-radius: 6px;
  2499. -moz-border-radius-topleft: 6px;
  2500. border-top-left-radius: 6px;
  2501. -webkit-border-bottom-left-radius: 6px;
  2502. -moz-border-radius-bottomleft: 6px;
  2503. border-bottom-left-radius: 6px;
  2504. }
  2505. .btn-group > .btn.large:last-child,
  2506. .btn-group > .large.dropdown-toggle {
  2507. -webkit-border-top-right-radius: 6px;
  2508. -moz-border-radius-topright: 6px;
  2509. border-top-right-radius: 6px;
  2510. -webkit-border-bottom-right-radius: 6px;
  2511. -moz-border-radius-bottomright: 6px;
  2512. border-bottom-right-radius: 6px;
  2513. }
  2514. .btn-group > .btn:hover,
  2515. .btn-group > .btn:focus,
  2516. .btn-group > .btn:active,
  2517. .btn-group > .btn.active {
  2518. z-index: 2;
  2519. }
  2520. .btn-group .dropdown-toggle:active,
  2521. .btn-group.open .dropdown-toggle {
  2522. outline: 0;
  2523. }
  2524. .btn-group > .dropdown-toggle {
  2525. padding-left: 8px;
  2526. padding-right: 8px;
  2527. -webkit-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  2528. -moz-box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  2529. box-shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  2530. *padding-top: 4px;
  2531. *padding-bottom: 4px;
  2532. }
  2533. .btn-group > .btn-mini.dropdown-toggle {
  2534. padding-left: 5px;
  2535. padding-right: 5px;
  2536. }
  2537. .btn-group > .btn-small.dropdown-toggle {
  2538. *padding-top: 4px;
  2539. *padding-bottom: 4px;
  2540. }
  2541. .btn-group > .btn-large.dropdown-toggle {
  2542. padding-left: 12px;
  2543. padding-right: 12px;
  2544. }
  2545. .btn-group.open .dropdown-toggle {
  2546. background-image: none;
  2547. -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  2548. -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  2549. box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  2550. }
  2551. .btn-group.open .btn.dropdown-toggle {
  2552. background-color: #e6e6e6;
  2553. }
  2554. .btn-group.open .btn-primary.dropdown-toggle {
  2555. background-color: #4162c4;
  2556. }
  2557. .btn-group.open .btn-warning.dropdown-toggle {
  2558. background-color: #ff7d00;
  2559. }
  2560. .btn-group.open .btn-danger.dropdown-toggle {
  2561. background-color: #bd362f;
  2562. }
  2563. .btn-group.open .btn-success.dropdown-toggle {
  2564. background-color: #51a351;
  2565. }
  2566. .btn-group.open .btn-info.dropdown-toggle {
  2567. background-color: #2f96b4;
  2568. }
  2569. .btn-group.open .btn-inverse.dropdown-toggle {
  2570. background-color: #222222;
  2571. }
  2572. .btn .caret {
  2573. margin-top: 7px;
  2574. margin-left: 0;
  2575. }
  2576. .btn:hover .caret,
  2577. .open.btn-group .caret {
  2578. opacity: 1;
  2579. filter: alpha(opacity=100);
  2580. }
  2581. .btn-mini .caret {
  2582. margin-top: 5px;
  2583. }
  2584. .btn-small .caret {
  2585. margin-top: 6px;
  2586. }
  2587. .btn-large .caret {
  2588. margin-top: 6px;
  2589. border-left-width: 5px;
  2590. border-right-width: 5px;
  2591. border-top-width: 5px;
  2592. }
  2593. .dropup .btn-large .caret {
  2594. border-bottom: 5px solid #000000;
  2595. border-top: 0;
  2596. }
  2597. .btn-primary .caret,
  2598. .btn-warning .caret,
  2599. .btn-danger .caret,
  2600. .btn-info .caret,
  2601. .btn-success .caret,
  2602. .btn-inverse .caret {
  2603. border-top-color: #ffffff;
  2604. border-bottom-color: #ffffff;
  2605. opacity: 0.75;
  2606. filter: alpha(opacity=75);
  2607. }
  2608. .alert {
  2609. padding: 8px 35px 8px 14px;
  2610. margin-bottom: 18px;
  2611. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  2612. background-color: #f5f3b4;
  2613. border: 1px solid #f3e4a7;
  2614. -webkit-border-radius: 4px;
  2615. -moz-border-radius: 4px;
  2616. border-radius: 4px;
  2617. color: #393939;
  2618. }
  2619. .alert-heading {
  2620. color: inherit;
  2621. }
  2622. .alert .close {
  2623. position: relative;
  2624. top: -2px;
  2625. right: -21px;
  2626. line-height: 18px;
  2627. }
  2628. .alert-success {
  2629. background-color: #bedebe;
  2630. border-color: #b4d5ad;
  2631. color: #333333;
  2632. }
  2633. .alert-danger,
  2634. .alert-error {
  2635. background-color: #ffe9e9;
  2636. border-color: #ffdae0;
  2637. color: #393939;
  2638. }
  2639. .alert-info {
  2640. background-color: #e4f0ff;
  2641. border-color: #c0e7ff;
  2642. color: #1b3650;
  2643. }
  2644. .alert-block {
  2645. padding-top: 14px;
  2646. padding-bottom: 14px;
  2647. }
  2648. .alert-block > p,
  2649. .alert-block > ul {
  2650. margin-bottom: 0;
  2651. }
  2652. .alert-block p + p {
  2653. margin-top: 5px;
  2654. }
  2655. .nav {
  2656. margin-left: 0;
  2657. margin-bottom: 18px;
  2658. list-style: none;
  2659. }
  2660. .nav > li > a {
  2661. display: block;
  2662. }
  2663. .nav > li > a:hover {
  2664. text-decoration: none;
  2665. background-color: #f5f5f5;
  2666. }
  2667. .nav > .pull-right {
  2668. float: right;
  2669. }
  2670. .nav .nav-header {
  2671. display: block;
  2672. padding: 3px 15px;
  2673. font-size: 11px;
  2674. font-weight: bold;
  2675. line-height: 18px;
  2676. color: #999999;
  2677. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  2678. text-transform: uppercase;
  2679. }
  2680. .nav li + .nav-header {
  2681. margin-top: 9px;
  2682. }
  2683. .nav-list {
  2684. padding-left: 15px;
  2685. padding-right: 15px;
  2686. margin-bottom: 0;
  2687. }
  2688. .nav-list > li > a,
  2689. .nav-list .nav-header {
  2690. margin-left: -15px;
  2691. margin-right: -15px;
  2692. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  2693. }
  2694. .nav-list > li > a {
  2695. padding: 3px 15px;
  2696. }
  2697. .nav-list > .active > a,
  2698. .nav-list > .active > a:hover {
  2699. color: #ffffff;
  2700. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  2701. background-color: #4183c4;
  2702. }
  2703. .nav-list [class^="icon-"] {
  2704. margin-right: 2px;
  2705. }
  2706. .nav-list .divider {
  2707. *width: 100%;
  2708. height: 1px;
  2709. margin: 8px 1px;
  2710. *margin: -5px 0 5px;
  2711. overflow: hidden;
  2712. background-color: #e5e5e5;
  2713. border-bottom: 1px solid #ffffff;
  2714. }
  2715. .nav-tabs,
  2716. .nav-pills {
  2717. *zoom: 1;
  2718. }
  2719. .nav-tabs:before,
  2720. .nav-pills:before,
  2721. .nav-tabs:after,
  2722. .nav-pills:after {
  2723. display: table;
  2724. content: "";
  2725. }
  2726. .nav-tabs:after,
  2727. .nav-pills:after {
  2728. clear: both;
  2729. }
  2730. .nav-tabs > li,
  2731. .nav-pills > li {
  2732. float: left;
  2733. }
  2734. .nav-tabs > li > a,
  2735. .nav-pills > li > a {
  2736. padding-right: 12px;
  2737. padding-left: 12px;
  2738. margin-right: 2px;
  2739. line-height: 14px;
  2740. }
  2741. .nav-tabs {
  2742. border-bottom: 1px solid #ddd;
  2743. }
  2744. .nav-tabs > li {
  2745. margin-bottom: -1px;
  2746. }
  2747. .nav-tabs > li > a {
  2748. padding-top: 8px;
  2749. padding-bottom: 8px;
  2750. line-height: 18px;
  2751. border: 1px solid transparent;
  2752. -webkit-border-radius: 4px 4px 0 0;
  2753. -moz-border-radius: 4px 4px 0 0;
  2754. border-radius: 4px 4px 0 0;
  2755. }
  2756. .nav-tabs > li > a:hover {
  2757. border-color: #f5f5f5 #f5f5f5 #dddddd;
  2758. }
  2759. .nav-tabs > .active > a,
  2760. .nav-tabs > .active > a:hover {
  2761. color: #555555;
  2762. background-color: #ffffff;
  2763. border: 1px solid #ddd;
  2764. border-bottom-color: transparent;
  2765. cursor: default;
  2766. }
  2767. .nav-pills > li > a {
  2768. padding-top: 8px;
  2769. padding-bottom: 8px;
  2770. margin-top: 2px;
  2771. margin-bottom: 2px;
  2772. -webkit-border-radius: 5px;
  2773. -moz-border-radius: 5px;
  2774. border-radius: 5px;
  2775. }
  2776. .nav-pills > .active > a,
  2777. .nav-pills > .active > a:hover {
  2778. color: #ffffff;
  2779. background-color: #4183c4;
  2780. }
  2781. .nav-stacked > li {
  2782. float: none;
  2783. }
  2784. .nav-stacked > li > a {
  2785. margin-right: 0;
  2786. }
  2787. .nav-tabs.nav-stacked {
  2788. border-bottom: 0;
  2789. }
  2790. .nav-tabs.nav-stacked > li > a {
  2791. border: 1px solid #ddd;
  2792. -webkit-border-radius: 0;
  2793. -moz-border-radius: 0;
  2794. border-radius: 0;
  2795. }
  2796. .nav-tabs.nav-stacked > li:first-child > a {
  2797. -webkit-border-radius: 4px 4px 0 0;
  2798. -moz-border-radius: 4px 4px 0 0;
  2799. border-radius: 4px 4px 0 0;
  2800. }
  2801. .nav-tabs.nav-stacked > li:last-child > a {
  2802. -webkit-border-radius: 0 0 4px 4px;
  2803. -moz-border-radius: 0 0 4px 4px;
  2804. border-radius: 0 0 4px 4px;
  2805. }
  2806. .nav-tabs.nav-stacked > li > a:hover {
  2807. border-color: #ddd;
  2808. z-index: 2;
  2809. }
  2810. .nav-pills.nav-stacked > li > a {
  2811. margin-bottom: 3px;
  2812. }
  2813. .nav-pills.nav-stacked > li:last-child > a {
  2814. margin-bottom: 1px;
  2815. }
  2816. .nav-tabs .dropdown-menu {
  2817. -webkit-border-radius: 0 0 5px 5px;
  2818. -moz-border-radius: 0 0 5px 5px;
  2819. border-radius: 0 0 5px 5px;
  2820. }
  2821. .nav-pills .dropdown-menu {
  2822. -webkit-border-radius: 4px;
  2823. -moz-border-radius: 4px;
  2824. border-radius: 4px;
  2825. }
  2826. .nav-tabs .dropdown-toggle .caret,
  2827. .nav-pills .dropdown-toggle .caret {
  2828. border-top-color: #4183c4;
  2829. border-bottom-color: #4183c4;
  2830. margin-top: 6px;
  2831. }
  2832. .nav-tabs .dropdown-toggle:hover .caret,
  2833. .nav-pills .dropdown-toggle:hover .caret {
  2834. border-top-color: #4183c4;
  2835. border-bottom-color: #4183c4;
  2836. }
  2837. .nav-tabs .active .dropdown-toggle .caret,
  2838. .nav-pills .active .dropdown-toggle .caret {
  2839. border-top-color: #333333;
  2840. border-bottom-color: #333333;
  2841. }
  2842. .nav > .dropdown.active > a:hover {
  2843. color: #000000;
  2844. cursor: pointer;
  2845. }
  2846. .nav-tabs .open .dropdown-toggle,
  2847. .nav-pills .open .dropdown-toggle,
  2848. .nav > li.dropdown.open.active > a:hover {
  2849. color: #ffffff;
  2850. background-color: #999999;
  2851. border-color: #999999;
  2852. }
  2853. .nav li.dropdown.open .caret,
  2854. .nav li.dropdown.open.active .caret,
  2855. .nav li.dropdown.open a:hover .caret {
  2856. border-top-color: #ffffff;
  2857. border-bottom-color: #ffffff;
  2858. opacity: 1;
  2859. filter: alpha(opacity=100);
  2860. }
  2861. .tabs-stacked .open > a:hover {
  2862. border-color: #999999;
  2863. }
  2864. .tabbable {
  2865. *zoom: 1;
  2866. }
  2867. .tabbable:before,
  2868. .tabbable:after {
  2869. display: table;
  2870. content: "";
  2871. }
  2872. .tabbable:after {
  2873. clear: both;
  2874. }
  2875. .tab-content {
  2876. overflow: auto;
  2877. }
  2878. .tabs-below > .nav-tabs,
  2879. .tabs-right > .nav-tabs,
  2880. .tabs-left > .nav-tabs {
  2881. border-bottom: 0;
  2882. }
  2883. .tab-content > .tab-pane,
  2884. .pill-content > .pill-pane {
  2885. display: none;
  2886. }
  2887. .tab-content > .active,
  2888. .pill-content > .active {
  2889. display: block;
  2890. }
  2891. .tabs-below > .nav-tabs {
  2892. border-top: 1px solid #ddd;
  2893. }
  2894. .tabs-below > .nav-tabs > li {
  2895. margin-top: -1px;
  2896. margin-bottom: 0;
  2897. }
  2898. .tabs-below > .nav-tabs > li > a {
  2899. -webkit-border-radius: 0 0 4px 4px;
  2900. -moz-border-radius: 0 0 4px 4px;
  2901. border-radius: 0 0 4px 4px;
  2902. }
  2903. .tabs-below > .nav-tabs > li > a:hover {
  2904. border-bottom-color: transparent;
  2905. border-top-color: #ddd;
  2906. }
  2907. .tabs-below > .nav-tabs > .active > a,
  2908. .tabs-below > .nav-tabs > .active > a:hover {
  2909. border-color: transparent #ddd #ddd #ddd;
  2910. }
  2911. .tabs-left > .nav-tabs > li,
  2912. .tabs-right > .nav-tabs > li {
  2913. float: none;
  2914. }
  2915. .tabs-left > .nav-tabs > li > a,
  2916. .tabs-right > .nav-tabs > li > a {
  2917. min-width: 74px;
  2918. margin-right: 0;
  2919. margin-bottom: 3px;
  2920. }
  2921. .tabs-left > .nav-tabs {
  2922. float: left;
  2923. margin-right: 19px;
  2924. border-right: 1px solid #ddd;
  2925. }
  2926. .tabs-left > .nav-tabs > li > a {
  2927. margin-right: -1px;
  2928. -webkit-border-radius: 4px 0 0 4px;
  2929. -moz-border-radius: 4px 0 0 4px;
  2930. border-radius: 4px 0 0 4px;
  2931. }
  2932. .tabs-left > .nav-tabs > li > a:hover {
  2933. border-color: #f5f5f5 #dddddd #f5f5f5 #f5f5f5;
  2934. }
  2935. .tabs-left > .nav-tabs .active > a,
  2936. .tabs-left > .nav-tabs .active > a:hover {
  2937. border-color: #ddd transparent #ddd #ddd;
  2938. *border-right-color: #ffffff;
  2939. }
  2940. .tabs-right > .nav-tabs {
  2941. float: right;
  2942. margin-left: 19px;
  2943. border-left: 1px solid #ddd;
  2944. }
  2945. .tabs-right > .nav-tabs > li > a {
  2946. margin-left: -1px;
  2947. -webkit-border-radius: 0 4px 4px 0;
  2948. -moz-border-radius: 0 4px 4px 0;
  2949. border-radius: 0 4px 4px 0;
  2950. }
  2951. .tabs-right > .nav-tabs > li > a:hover {
  2952. border-color: #f5f5f5 #f5f5f5 #f5f5f5 #dddddd;
  2953. }
  2954. .tabs-right > .nav-tabs .active > a,
  2955. .tabs-right > .nav-tabs .active > a:hover {
  2956. border-color: #ddd #ddd #ddd transparent;
  2957. *border-left-color: #ffffff;
  2958. }
  2959. .navbar {
  2960. *position: relative;
  2961. *z-index: 2;
  2962. overflow: visible;
  2963. margin-bottom: 18px;
  2964. }
  2965. .navbar-inner {
  2966. min-height: 40px;
  2967. padding-left: 20px;
  2968. padding-right: 20px;
  2969. background-color: #f7f7f7;
  2970. background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
  2971. background-image: -ms-linear-gradient(top, #ffffff, #eaeaea);
  2972. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#eaeaea));
  2973. background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea);
  2974. background-image: -o-linear-gradient(top, #ffffff, #eaeaea);
  2975. background-image: linear-gradient(top, #ffffff, #eaeaea);
  2976. background-repeat: repeat-x;
  2977. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea', GradientType=0);
  2978. -webkit-border-radius: 4px;
  2979. -moz-border-radius: 4px;
  2980. border-radius: 4px;
  2981. -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  2982. -moz-box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  2983. box-shadow: 0 1px 3px rgba(0,0,0,.25), inset 0 -1px 0 rgba(0,0,0,.1);
  2984. }
  2985. .navbar .container {
  2986. width: auto;
  2987. }
  2988. .nav-collapse.collapse {
  2989. height: auto;
  2990. }
  2991. .navbar {
  2992. color: #333333;
  2993. }
  2994. .navbar .brand:hover {
  2995. text-decoration: none;
  2996. }
  2997. .navbar .brand {
  2998. float: left;
  2999. display: block;
  3000. padding: 8px 20px 12px;
  3001. margin-left: -20px;
  3002. font-size: 20px;
  3003. font-weight: 200;
  3004. line-height: 1;
  3005. color: #333333;
  3006. }
  3007. .navbar .navbar-text {
  3008. margin-bottom: 0;
  3009. line-height: 40px;
  3010. }
  3011. .navbar .navbar-link {
  3012. color: #333333;
  3013. }
  3014. .navbar .navbar-link:hover {
  3015. color: #4183c4;
  3016. }
  3017. .navbar .btn,
  3018. .navbar .btn-group {
  3019. margin-top: 5px;
  3020. }
  3021. .navbar .btn-group .btn {
  3022. margin: 0;
  3023. }
  3024. .navbar-form {
  3025. margin-bottom: 0;
  3026. *zoom: 1;
  3027. }
  3028. .navbar-form:before,
  3029. .navbar-form:after {
  3030. display: table;
  3031. content: "";
  3032. }
  3033. .navbar-form:after {
  3034. clear: both;
  3035. }
  3036. .navbar-form input,
  3037. .navbar-form select,
  3038. .navbar-form .radio,
  3039. .navbar-form .checkbox {
  3040. margin-top: 5px;
  3041. }
  3042. .navbar-form input,
  3043. .navbar-form select {
  3044. display: inline-block;
  3045. margin-bottom: 0;
  3046. }
  3047. .navbar-form input[type="image"],
  3048. .navbar-form input[type="checkbox"],
  3049. .navbar-form input[type="radio"] {
  3050. margin-top: 3px;
  3051. }
  3052. .navbar-form .input-append,
  3053. .navbar-form .input-prepend {
  3054. margin-top: 6px;
  3055. white-space: nowrap;
  3056. }
  3057. .navbar-form .input-append input,
  3058. .navbar-form .input-prepend input {
  3059. margin-top: 0;
  3060. }
  3061. .navbar-search {
  3062. position: relative;
  3063. float: left;
  3064. margin-top: 6px;
  3065. margin-bottom: 0;
  3066. }
  3067. .navbar-search .search-query {
  3068. padding: 4px 9px;
  3069. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  3070. font-size: 13px;
  3071. font-weight: normal;
  3072. line-height: 1;
  3073. color: #ffffff;
  3074. background-color: #ffffff;
  3075. border: 1px solid #b3b3b3;
  3076. -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  3077. -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  3078. box-shadow: inset 0 1px 2px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.15);
  3079. -webkit-transition: none;
  3080. -moz-transition: none;
  3081. -ms-transition: none;
  3082. -o-transition: none;
  3083. transition: none;
  3084. }
  3085. .navbar-search .search-query:-moz-placeholder {
  3086. color: #cccccc;
  3087. }
  3088. .navbar-search .search-query:-ms-input-placeholder {
  3089. color: #cccccc;
  3090. }
  3091. .navbar-search .search-query::-webkit-input-placeholder {
  3092. color: #cccccc;
  3093. }
  3094. .navbar-search .search-query:focus,
  3095. .navbar-search .search-query.focused {
  3096. padding: 5px 10px;
  3097. color: #333333;
  3098. text-shadow: 0 1px 0 #ffffff;
  3099. background-color: #ffffff;
  3100. border: 0;
  3101. -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  3102. -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  3103. box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  3104. outline: 0;
  3105. }
  3106. .navbar-fixed-top,
  3107. .navbar-fixed-bottom {
  3108. position: fixed;
  3109. right: 0;
  3110. left: 0;
  3111. z-index: 1030;
  3112. margin-bottom: 0;
  3113. }
  3114. .navbar-fixed-top .navbar-inner,
  3115. .navbar-fixed-bottom .navbar-inner {
  3116. padding-left: 0;
  3117. padding-right: 0;
  3118. -webkit-border-radius: 0;
  3119. -moz-border-radius: 0;
  3120. border-radius: 0;
  3121. }
  3122. .navbar-fixed-top .container,
  3123. .navbar-fixed-bottom .container {
  3124. width: 940px;
  3125. }
  3126. .navbar-fixed-top {
  3127. top: 0;
  3128. }
  3129. .navbar-fixed-bottom {
  3130. bottom: 0;
  3131. }
  3132. .navbar .nav {
  3133. position: relative;
  3134. left: 0;
  3135. display: block;
  3136. float: left;
  3137. margin: 0 10px 0 0;
  3138. }
  3139. .navbar .nav.pull-right {
  3140. float: right;
  3141. }
  3142. .navbar .nav > li {
  3143. display: block;
  3144. float: left;
  3145. }
  3146. .navbar .nav > li > a {
  3147. float: none;
  3148. padding: 9px 10px 11px;
  3149. line-height: 19px;
  3150. color: #333333;
  3151. text-decoration: none;
  3152. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3153. }
  3154. .navbar .btn {
  3155. display: inline-block;
  3156. padding: 4px 10px 4px;
  3157. margin: 5px 5px 6px;
  3158. line-height: 18px;
  3159. }
  3160. .navbar .btn-group {
  3161. margin: 0;
  3162. padding: 5px 5px 6px;
  3163. }
  3164. .navbar .nav > li > a:hover {
  3165. background-color: transparent;
  3166. color: #4183c4;
  3167. text-decoration: none;
  3168. }
  3169. .navbar .nav .active > a,
  3170. .navbar .nav .active > a:hover {
  3171. color: #4183c4;
  3172. text-decoration: none;
  3173. background-color: transparent;
  3174. }
  3175. .navbar .divider-vertical {
  3176. height: 40px;
  3177. width: 1px;
  3178. margin: 0 9px;
  3179. overflow: hidden;
  3180. background-color: #eaeaea;
  3181. border-right: 1px solid #ffffff;
  3182. }
  3183. .navbar .nav.pull-right {
  3184. margin-left: 10px;
  3185. margin-right: 0;
  3186. }
  3187. .navbar .btn-navbar {
  3188. display: none;
  3189. float: right;
  3190. padding: 7px 10px;
  3191. margin-left: 5px;
  3192. margin-right: 5px;
  3193. background-color: #f7f7f7;
  3194. background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
  3195. background-image: -ms-linear-gradient(top, #ffffff, #eaeaea);
  3196. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#eaeaea));
  3197. background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea);
  3198. background-image: -o-linear-gradient(top, #ffffff, #eaeaea);
  3199. background-image: linear-gradient(top, #ffffff, #eaeaea);
  3200. background-repeat: repeat-x;
  3201. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eaeaea', GradientType=0);
  3202. border-color: #eaeaea #eaeaea #c4c4c4;
  3203. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  3204. *background-color: #eaeaea;
  3205. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  3206. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3207. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  3208. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  3209. box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  3210. }
  3211. .navbar .btn-navbar:hover,
  3212. .navbar .btn-navbar:active,
  3213. .navbar .btn-navbar.active,
  3214. .navbar .btn-navbar.disabled,
  3215. .navbar .btn-navbar[disabled] {
  3216. background-color: #eaeaea;
  3217. *background-color: #dddddd;
  3218. }
  3219. .navbar .btn-navbar:active,
  3220. .navbar .btn-navbar.active {
  3221. background-color: #d1d1d1 \9;
  3222. }
  3223. .navbar .btn-navbar .icon-bar {
  3224. display: block;
  3225. width: 18px;
  3226. height: 2px;
  3227. background-color: #f5f5f5;
  3228. -webkit-border-radius: 1px;
  3229. -moz-border-radius: 1px;
  3230. border-radius: 1px;
  3231. -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  3232. -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  3233. box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  3234. }
  3235. .btn-navbar .icon-bar + .icon-bar {
  3236. margin-top: 3px;
  3237. }
  3238. .navbar .dropdown-menu:before {
  3239. content: '';
  3240. display: inline-block;
  3241. border-left: 7px solid transparent;
  3242. border-right: 7px solid transparent;
  3243. border-bottom: 7px solid #ccc;
  3244. border-bottom-color: rgba(0, 0, 0, 0.2);
  3245. position: absolute;
  3246. top: -7px;
  3247. left: 9px;
  3248. }
  3249. .navbar .dropdown-menu:after {
  3250. content: '';
  3251. display: inline-block;
  3252. border-left: 6px solid transparent;
  3253. border-right: 6px solid transparent;
  3254. border-bottom: 6px solid #ffffff;
  3255. position: absolute;
  3256. top: -6px;
  3257. left: 10px;
  3258. }
  3259. .navbar-fixed-bottom .dropdown-menu:before {
  3260. border-top: 7px solid #ccc;
  3261. border-top-color: rgba(0, 0, 0, 0.2);
  3262. border-bottom: 0;
  3263. bottom: -7px;
  3264. top: auto;
  3265. }
  3266. .navbar-fixed-bottom .dropdown-menu:after {
  3267. border-top: 6px solid #ffffff;
  3268. border-bottom: 0;
  3269. bottom: -6px;
  3270. top: auto;
  3271. }
  3272. .navbar .nav li.dropdown .dropdown-toggle .caret,
  3273. .navbar .nav li.dropdown.open .caret {
  3274. border-top-color: #ffffff;
  3275. border-bottom-color: #ffffff;
  3276. }
  3277. .navbar .nav li.dropdown.active .caret {
  3278. opacity: 1;
  3279. filter: alpha(opacity=100);
  3280. }
  3281. .navbar .nav li.dropdown.open > .dropdown-toggle,
  3282. .navbar .nav li.dropdown.active > .dropdown-toggle,
  3283. .navbar .nav li.dropdown.open.active > .dropdown-toggle {
  3284. background-color: transparent;
  3285. }
  3286. .navbar .nav li.dropdown.active > .dropdown-toggle:hover {
  3287. color: #ffffff;
  3288. }
  3289. .navbar .pull-right .dropdown-menu,
  3290. .navbar .dropdown-menu.pull-right {
  3291. left: auto;
  3292. right: 0;
  3293. }
  3294. .navbar .pull-right .dropdown-menu:before,
  3295. .navbar .dropdown-menu.pull-right:before {
  3296. left: auto;
  3297. right: 12px;
  3298. }
  3299. .navbar .pull-right .dropdown-menu:after,
  3300. .navbar .dropdown-menu.pull-right:after {
  3301. left: auto;
  3302. right: 13px;
  3303. }
  3304. .breadcrumb {
  3305. padding: 7px 14px;
  3306. margin: 0 0 18px;
  3307. list-style: none;
  3308. background-color: #fbfbfb;
  3309. background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  3310. background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  3311. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
  3312. background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  3313. background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  3314. background-image: linear-gradient(top, #ffffff, #f5f5f5);
  3315. background-repeat: repeat-x;
  3316. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  3317. border: 1px solid #ddd;
  3318. -webkit-border-radius: 3px;
  3319. -moz-border-radius: 3px;
  3320. border-radius: 3px;
  3321. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  3322. -moz-box-shadow: inset 0 1px 0 #ffffff;
  3323. box-shadow: inset 0 1px 0 #ffffff;
  3324. }
  3325. .breadcrumb li {
  3326. display: inline-block;
  3327. *display: inline;
  3328. /* IE7 inline-block hack */
  3329. *zoom: 1;
  3330. text-shadow: 0 1px 0 #ffffff;
  3331. }
  3332. .breadcrumb .divider {
  3333. padding: 0 5px;
  3334. color: #999999;
  3335. }
  3336. .breadcrumb .active a {
  3337. color: #333333;
  3338. }
  3339. .pagination {
  3340. height: 36px;
  3341. margin: 18px 0;
  3342. }
  3343. .pagination ul {
  3344. display: inline-block;
  3345. *display: inline;
  3346. /* IE7 inline-block hack */
  3347. *zoom: 1;
  3348. margin-left: 0;
  3349. margin-bottom: 0;
  3350. -webkit-border-radius: 3px;
  3351. -moz-border-radius: 3px;
  3352. border-radius: 3px;
  3353. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3354. -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3355. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3356. }
  3357. .pagination li {
  3358. display: inline;
  3359. }
  3360. .pagination a {
  3361. float: left;
  3362. padding: 0 14px;
  3363. line-height: 34px;
  3364. text-decoration: none;
  3365. border: 1px solid #ddd;
  3366. border-left-width: 0;
  3367. }
  3368. .pagination a:hover,
  3369. .pagination .active a {
  3370. background-color: #f5f5f5;
  3371. }
  3372. .pagination .active a {
  3373. color: #999999;
  3374. cursor: default;
  3375. }
  3376. .pagination .disabled span,
  3377. .pagination .disabled a,
  3378. .pagination .disabled a:hover {
  3379. color: #999999;
  3380. background-color: transparent;
  3381. cursor: default;
  3382. }
  3383. .pagination li:first-child a {
  3384. border-left-width: 1px;
  3385. -webkit-border-radius: 3px 0 0 3px;
  3386. -moz-border-radius: 3px 0 0 3px;
  3387. border-radius: 3px 0 0 3px;
  3388. }
  3389. .pagination li:last-child a {
  3390. -webkit-border-radius: 0 3px 3px 0;
  3391. -moz-border-radius: 0 3px 3px 0;
  3392. border-radius: 0 3px 3px 0;
  3393. }
  3394. .pagination-centered {
  3395. text-align: center;
  3396. }
  3397. .pagination-right {
  3398. text-align: right;
  3399. }
  3400. .pager {
  3401. margin-left: 0;
  3402. margin-bottom: 18px;
  3403. list-style: none;
  3404. text-align: center;
  3405. *zoom: 1;
  3406. }
  3407. .pager:before,
  3408. .pager:after {
  3409. display: table;
  3410. content: "";
  3411. }
  3412. .pager:after {
  3413. clear: both;
  3414. }
  3415. .pager li {
  3416. display: inline;
  3417. }
  3418. .pager a {
  3419. display: inline-block;
  3420. padding: 5px 14px;
  3421. background-color: #fff;
  3422. border: 1px solid #ddd;
  3423. -webkit-border-radius: 15px;
  3424. -moz-border-radius: 15px;
  3425. border-radius: 15px;
  3426. }
  3427. .pager a:hover {
  3428. text-decoration: none;
  3429. background-color: #f5f5f5;
  3430. }
  3431. .pager .next a {
  3432. float: right;
  3433. }
  3434. .pager .previous a {
  3435. float: left;
  3436. }
  3437. .pager .disabled a,
  3438. .pager .disabled a:hover {
  3439. color: #999999;
  3440. background-color: #fff;
  3441. cursor: default;
  3442. }
  3443. .modal-open .dropdown-menu {
  3444. z-index: 2050;
  3445. }
  3446. .modal-open .dropdown.open {
  3447. *z-index: 2050;
  3448. }
  3449. .modal-open .popover {
  3450. z-index: 2060;
  3451. }
  3452. .modal-open .tooltip {
  3453. z-index: 2070;
  3454. }
  3455. .modal-backdrop {
  3456. position: fixed;
  3457. top: 0;
  3458. right: 0;
  3459. bottom: 0;
  3460. left: 0;
  3461. z-index: 1040;
  3462. background-color: #000000;
  3463. }
  3464. .modal-backdrop.fade {
  3465. opacity: 0;
  3466. }
  3467. .modal-backdrop,
  3468. .modal-backdrop.fade.in {
  3469. opacity: 0.8;
  3470. filter: alpha(opacity=80);
  3471. }
  3472. .modal {
  3473. position: fixed;
  3474. top: 50%;
  3475. left: 50%;
  3476. z-index: 1050;
  3477. overflow: auto;
  3478. width: 560px;
  3479. margin: -250px 0 0 -280px;
  3480. background-color: #ffffff;
  3481. border: 1px solid #999;
  3482. border: 1px solid rgba(0, 0, 0, 0.3);
  3483. *border: 1px solid #999;
  3484. /* IE6-7 */
  3485. -webkit-border-radius: 6px;
  3486. -moz-border-radius: 6px;
  3487. border-radius: 6px;
  3488. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3489. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3490. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3491. -webkit-background-clip: padding-box;
  3492. -moz-background-clip: padding-box;
  3493. background-clip: padding-box;
  3494. }
  3495. .modal.fade {
  3496. -webkit-transition: opacity .3s linear, top .3s ease-out;
  3497. -moz-transition: opacity .3s linear, top .3s ease-out;
  3498. -ms-transition: opacity .3s linear, top .3s ease-out;
  3499. -o-transition: opacity .3s linear, top .3s ease-out;
  3500. transition: opacity .3s linear, top .3s ease-out;
  3501. top: -25%;
  3502. }
  3503. .modal.fade.in {
  3504. top: 50%;
  3505. }
  3506. .modal-header {
  3507. padding: 9px 15px;
  3508. border-bottom: 1px solid #eee;
  3509. }
  3510. .modal-header .close {
  3511. margin-top: 2px;
  3512. }
  3513. .modal-body {
  3514. overflow-y: auto;
  3515. max-height: 400px;
  3516. padding: 15px;
  3517. }
  3518. .modal-form {
  3519. margin-bottom: 0;
  3520. }
  3521. .modal-footer {
  3522. padding: 14px 15px 15px;
  3523. margin-bottom: 0;
  3524. text-align: right;
  3525. background-color: #f5f5f5;
  3526. border-top: 1px solid #ddd;
  3527. -webkit-border-radius: 0 0 6px 6px;
  3528. -moz-border-radius: 0 0 6px 6px;
  3529. border-radius: 0 0 6px 6px;
  3530. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  3531. -moz-box-shadow: inset 0 1px 0 #ffffff;
  3532. box-shadow: inset 0 1px 0 #ffffff;
  3533. *zoom: 1;
  3534. }
  3535. .modal-footer:before,
  3536. .modal-footer:after {
  3537. display: table;
  3538. content: "";
  3539. }
  3540. .modal-footer:after {
  3541. clear: both;
  3542. }
  3543. .modal-footer .btn + .btn {
  3544. margin-left: 5px;
  3545. margin-bottom: 0;
  3546. }
  3547. .modal-footer .btn-group .btn + .btn {
  3548. margin-left: -1px;
  3549. }
  3550. .tooltip {
  3551. position: absolute;
  3552. z-index: 1020;
  3553. display: block;
  3554. visibility: visible;
  3555. padding: 5px;
  3556. font-size: 11px;
  3557. opacity: 0;
  3558. filter: alpha(opacity=0);
  3559. }
  3560. .tooltip.in {
  3561. opacity: 0.8;
  3562. filter: alpha(opacity=80);
  3563. }
  3564. .tooltip.top {
  3565. margin-top: -2px;
  3566. }
  3567. .tooltip.right {
  3568. margin-left: 2px;
  3569. }
  3570. .tooltip.bottom {
  3571. margin-top: 2px;
  3572. }
  3573. .tooltip.left {
  3574. margin-left: -2px;
  3575. }
  3576. .tooltip.top .tooltip-arrow {
  3577. bottom: 0;
  3578. left: 50%;
  3579. margin-left: -5px;
  3580. border-left: 5px solid transparent;
  3581. border-right: 5px solid transparent;
  3582. border-top: 5px solid #000000;
  3583. }
  3584. .tooltip.left .tooltip-arrow {
  3585. top: 50%;
  3586. right: 0;
  3587. margin-top: -5px;
  3588. border-top: 5px solid transparent;
  3589. border-bottom: 5px solid transparent;
  3590. border-left: 5px solid #000000;
  3591. }
  3592. .tooltip.bottom .tooltip-arrow {
  3593. top: 0;
  3594. left: 50%;
  3595. margin-left: -5px;
  3596. border-left: 5px solid transparent;
  3597. border-right: 5px solid transparent;
  3598. border-bottom: 5px solid #000000;
  3599. }
  3600. .tooltip.right .tooltip-arrow {
  3601. top: 50%;
  3602. left: 0;
  3603. margin-top: -5px;
  3604. border-top: 5px solid transparent;
  3605. border-bottom: 5px solid transparent;
  3606. border-right: 5px solid #000000;
  3607. }
  3608. .tooltip-inner {
  3609. max-width: 200px;
  3610. padding: 3px 8px;
  3611. color: #ffffff;
  3612. text-align: center;
  3613. text-decoration: none;
  3614. background-color: #000000;
  3615. -webkit-border-radius: 4px;
  3616. -moz-border-radius: 4px;
  3617. border-radius: 4px;
  3618. }
  3619. .tooltip-arrow {
  3620. position: absolute;
  3621. width: 0;
  3622. height: 0;
  3623. }
  3624. .popover {
  3625. position: absolute;
  3626. top: 0;
  3627. left: 0;
  3628. z-index: 1010;
  3629. display: none;
  3630. padding: 5px;
  3631. }
  3632. .popover.top {
  3633. margin-top: -5px;
  3634. }
  3635. .popover.right {
  3636. margin-left: 5px;
  3637. }
  3638. .popover.bottom {
  3639. margin-top: 5px;
  3640. }
  3641. .popover.left {
  3642. margin-left: -5px;
  3643. }
  3644. .popover.top .arrow {
  3645. bottom: 0;
  3646. left: 50%;
  3647. margin-left: -5px;
  3648. border-left: 5px solid transparent;
  3649. border-right: 5px solid transparent;
  3650. border-top: 5px solid #000000;
  3651. }
  3652. .popover.right .arrow {
  3653. top: 50%;
  3654. left: 0;
  3655. margin-top: -5px;
  3656. border-top: 5px solid transparent;
  3657. border-bottom: 5px solid transparent;
  3658. border-right: 5px solid #000000;
  3659. }
  3660. .popover.bottom .arrow {
  3661. top: 0;
  3662. left: 50%;
  3663. margin-left: -5px;
  3664. border-left: 5px solid transparent;
  3665. border-right: 5px solid transparent;
  3666. border-bottom: 5px solid #000000;
  3667. }
  3668. .popover.left .arrow {
  3669. top: 50%;
  3670. right: 0;
  3671. margin-top: -5px;
  3672. border-top: 5px solid transparent;
  3673. border-bottom: 5px solid transparent;
  3674. border-left: 5px solid #000000;
  3675. }
  3676. .popover .arrow {
  3677. position: absolute;
  3678. width: 0;
  3679. height: 0;
  3680. }
  3681. .popover-inner {
  3682. padding: 3px;
  3683. width: 280px;
  3684. overflow: hidden;
  3685. background: #000000;
  3686. background: rgba(0, 0, 0, 0.8);
  3687. -webkit-border-radius: 6px;
  3688. -moz-border-radius: 6px;
  3689. border-radius: 6px;
  3690. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3691. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3692. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  3693. }
  3694. .popover-title {
  3695. padding: 9px 15px;
  3696. line-height: 1;
  3697. background-color: #f5f5f5;
  3698. border-bottom: 1px solid #eee;
  3699. -webkit-border-radius: 3px 3px 0 0;
  3700. -moz-border-radius: 3px 3px 0 0;
  3701. border-radius: 3px 3px 0 0;
  3702. }
  3703. .popover-content {
  3704. padding: 14px;
  3705. background-color: #ffffff;
  3706. -webkit-border-radius: 0 0 3px 3px;
  3707. -moz-border-radius: 0 0 3px 3px;
  3708. border-radius: 0 0 3px 3px;
  3709. -webkit-background-clip: padding-box;
  3710. -moz-background-clip: padding-box;
  3711. background-clip: padding-box;
  3712. }
  3713. .popover-content p,
  3714. .popover-content ul,
  3715. .popover-content ol {
  3716. margin-bottom: 0;
  3717. }
  3718. .thumbnails {
  3719. margin-left: -20px;
  3720. list-style: none;
  3721. *zoom: 1;
  3722. }
  3723. .thumbnails:before,
  3724. .thumbnails:after {
  3725. display: table;
  3726. content: "";
  3727. }
  3728. .thumbnails:after {
  3729. clear: both;
  3730. }
  3731. .row-fluid .thumbnails {
  3732. margin-left: 0;
  3733. }
  3734. .thumbnails > li {
  3735. float: left;
  3736. margin-bottom: 18px;
  3737. margin-left: 20px;
  3738. }
  3739. .thumbnail {
  3740. display: block;
  3741. padding: 4px;
  3742. line-height: 1;
  3743. border: 1px solid #ddd;
  3744. -webkit-border-radius: 4px;
  3745. -moz-border-radius: 4px;
  3746. border-radius: 4px;
  3747. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  3748. -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  3749. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  3750. }
  3751. a.thumbnail:hover {
  3752. border-color: #4183c4;
  3753. -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  3754. -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  3755. box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  3756. }
  3757. .thumbnail > img {
  3758. display: block;
  3759. max-width: 100%;
  3760. margin-left: auto;
  3761. margin-right: auto;
  3762. }
  3763. .thumbnail .caption {
  3764. padding: 9px;
  3765. }
  3766. .label,
  3767. .badge {
  3768. font-size: 10.998px;
  3769. font-weight: bold;
  3770. line-height: 14px;
  3771. color: #ffffff;
  3772. vertical-align: baseline;
  3773. white-space: nowrap;
  3774. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3775. background-color: #999999;
  3776. }
  3777. .label {
  3778. padding: 1px 4px 2px;
  3779. -webkit-border-radius: 3px;
  3780. -moz-border-radius: 3px;
  3781. border-radius: 3px;
  3782. }
  3783. .badge {
  3784. padding: 1px 9px 2px;
  3785. -webkit-border-radius: 9px;
  3786. -moz-border-radius: 9px;
  3787. border-radius: 9px;
  3788. }
  3789. a.label:hover,
  3790. a.badge:hover {
  3791. color: #ffffff;
  3792. text-decoration: none;
  3793. cursor: pointer;
  3794. }
  3795. .label-important,
  3796. .badge-important {
  3797. background-color: #393939;
  3798. }
  3799. .label-important[href],
  3800. .badge-important[href] {
  3801. background-color: #202020;
  3802. }
  3803. .label-warning,
  3804. .badge-warning {
  3805. background-color: #ff7d00;
  3806. }
  3807. .label-warning[href],
  3808. .badge-warning[href] {
  3809. background-color: #cc6400;
  3810. }
  3811. .label-success,
  3812. .badge-success {
  3813. background-color: #333333;
  3814. }
  3815. .label-success[href],
  3816. .badge-success[href] {
  3817. background-color: #1a1a1a;
  3818. }
  3819. .label-info,
  3820. .badge-info {
  3821. background-color: #1b3650;
  3822. }
  3823. .label-info[href],
  3824. .badge-info[href] {
  3825. background-color: #0e1c2a;
  3826. }
  3827. .label-inverse,
  3828. .badge-inverse {
  3829. background-color: #333333;
  3830. }
  3831. .label-inverse[href],
  3832. .badge-inverse[href] {
  3833. background-color: #1a1a1a;
  3834. }
  3835. @-webkit-keyframes progress-bar-stripes {
  3836. from {
  3837. background-position: 40px 0;
  3838. }
  3839. to {
  3840. background-position: 0 0;
  3841. }
  3842. }
  3843. @-moz-keyframes progress-bar-stripes {
  3844. from {
  3845. background-position: 40px 0;
  3846. }
  3847. to {
  3848. background-position: 0 0;
  3849. }
  3850. }
  3851. @-ms-keyframes progress-bar-stripes {
  3852. from {
  3853. background-position: 40px 0;
  3854. }
  3855. to {
  3856. background-position: 0 0;
  3857. }
  3858. }
  3859. @-o-keyframes progress-bar-stripes {
  3860. from {
  3861. background-position: 0 0;
  3862. }
  3863. to {
  3864. background-position: 40px 0;
  3865. }
  3866. }
  3867. @keyframes progress-bar-stripes {
  3868. from {
  3869. background-position: 40px 0;
  3870. }
  3871. to {
  3872. background-position: 0 0;
  3873. }
  3874. }
  3875. .progress {
  3876. overflow: hidden;
  3877. height: 18px;
  3878. margin-bottom: 18px;
  3879. background-color: #f7f7f7;
  3880. background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  3881. background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
  3882. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  3883. background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  3884. background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  3885. background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
  3886. background-repeat: repeat-x;
  3887. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
  3888. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3889. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3890. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3891. -webkit-border-radius: 4px;
  3892. -moz-border-radius: 4px;
  3893. border-radius: 4px;
  3894. }
  3895. .progress .bar {
  3896. width: 0%;
  3897. height: 18px;
  3898. color: #ffffff;
  3899. font-size: 12px;
  3900. text-align: center;
  3901. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3902. background-color: #0e90d2;
  3903. background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  3904. background-image: -ms-linear-gradient(top, #149bdf, #0480be);
  3905. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  3906. background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  3907. background-image: -o-linear-gradient(top, #149bdf, #0480be);
  3908. background-image: linear-gradient(top, #149bdf, #0480be);
  3909. background-repeat: repeat-x;
  3910. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
  3911. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3912. -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3913. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  3914. -webkit-box-sizing: border-box;
  3915. -moz-box-sizing: border-box;
  3916. -ms-box-sizing: border-box;
  3917. box-sizing: border-box;
  3918. -webkit-transition: width 0.6s ease;
  3919. -moz-transition: width 0.6s ease;
  3920. -ms-transition: width 0.6s ease;
  3921. -o-transition: width 0.6s ease;
  3922. transition: width 0.6s ease;
  3923. }
  3924. .progress-striped .bar {
  3925. background-color: #149bdf;
  3926. 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));
  3927. 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);
  3928. 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);
  3929. 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);
  3930. 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);
  3931. 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);
  3932. -webkit-background-size: 40px 40px;
  3933. -moz-background-size: 40px 40px;
  3934. -o-background-size: 40px 40px;
  3935. background-size: 40px 40px;
  3936. }
  3937. .progress.active .bar {
  3938. -webkit-animation: progress-bar-stripes 2s linear infinite;
  3939. -moz-animation: progress-bar-stripes 2s linear infinite;
  3940. -ms-animation: progress-bar-stripes 2s linear infinite;
  3941. -o-animation: progress-bar-stripes 2s linear infinite;
  3942. animation: progress-bar-stripes 2s linear infinite;
  3943. }
  3944. .progress-danger .bar {
  3945. background-color: #dd514c;
  3946. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  3947. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  3948. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  3949. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  3950. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  3951. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  3952. background-repeat: repeat-x;
  3953. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  3954. }
  3955. .progress-danger.progress-striped .bar {
  3956. background-color: #ee5f5b;
  3957. 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));
  3958. 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);
  3959. 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);
  3960. 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);
  3961. 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);
  3962. 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);
  3963. }
  3964. .progress-success .bar {
  3965. background-color: #5eb95e;
  3966. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  3967. background-image: -ms-linear-gradient(top, #62c462, #57a957);
  3968. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  3969. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  3970. background-image: -o-linear-gradient(top, #62c462, #57a957);
  3971. background-image: linear-gradient(top, #62c462, #57a957);
  3972. background-repeat: repeat-x;
  3973. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  3974. }
  3975. .progress-success.progress-striped .bar {
  3976. background-color: #62c462;
  3977. 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));
  3978. 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);
  3979. 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);
  3980. 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);
  3981. 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);
  3982. 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);
  3983. }
  3984. .progress-info .bar {
  3985. background-color: #4bb1cf;
  3986. background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  3987. background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
  3988. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  3989. background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  3990. background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  3991. background-image: linear-gradient(top, #5bc0de, #339bb9);
  3992. background-repeat: repeat-x;
  3993. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
  3994. }
  3995. .progress-info.progress-striped .bar {
  3996. background-color: #5bc0de;
  3997. 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));
  3998. 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);
  3999. 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);
  4000. 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);
  4001. 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);
  4002. 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);
  4003. }
  4004. .progress-warning .bar {
  4005. background-color: #ff942e;
  4006. background-image: -moz-linear-gradient(top, #ffa44d, #ff7d00);
  4007. background-image: -ms-linear-gradient(top, #ffa44d, #ff7d00);
  4008. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffa44d), to(#ff7d00));
  4009. background-image: -webkit-linear-gradient(top, #ffa44d, #ff7d00);
  4010. background-image: -o-linear-gradient(top, #ffa44d, #ff7d00);
  4011. background-image: linear-gradient(top, #ffa44d, #ff7d00);
  4012. background-repeat: repeat-x;
  4013. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffa44d', endColorstr='#ff7d00', GradientType=0);
  4014. }
  4015. .progress-warning.progress-striped .bar {
  4016. background-color: #ffa44d;
  4017. 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));
  4018. 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);
  4019. 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);
  4020. 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);
  4021. 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);
  4022. 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);
  4023. }
  4024. .accordion {
  4025. margin-bottom: 18px;
  4026. }
  4027. .accordion-group {
  4028. margin-bottom: 2px;
  4029. border: 1px solid #e5e5e5;
  4030. -webkit-border-radius: 4px;
  4031. -moz-border-radius: 4px;
  4032. border-radius: 4px;
  4033. }
  4034. .accordion-heading {
  4035. border-bottom: 0;
  4036. }
  4037. .accordion-heading .accordion-toggle {
  4038. display: block;
  4039. padding: 8px 15px;
  4040. }
  4041. .accordion-toggle {
  4042. cursor: pointer;
  4043. }
  4044. .accordion-inner {
  4045. padding: 9px 15px;
  4046. border-top: 1px solid #e5e5e5;
  4047. }
  4048. .carousel {
  4049. position: relative;
  4050. margin-bottom: 18px;
  4051. line-height: 1;
  4052. }
  4053. .carousel-inner {
  4054. overflow: hidden;
  4055. width: 100%;
  4056. position: relative;
  4057. }
  4058. .carousel .item {
  4059. display: none;
  4060. position: relative;
  4061. -webkit-transition: 0.6s ease-in-out left;
  4062. -moz-transition: 0.6s ease-in-out left;
  4063. -ms-transition: 0.6s ease-in-out left;
  4064. -o-transition: 0.6s ease-in-out left;
  4065. transition: 0.6s ease-in-out left;
  4066. }
  4067. .carousel .item > img {
  4068. display: block;
  4069. line-height: 1;
  4070. }
  4071. .carousel .active,
  4072. .carousel .next,
  4073. .carousel .prev {
  4074. display: block;
  4075. }
  4076. .carousel .active {
  4077. left: 0;
  4078. }
  4079. .carousel .next,
  4080. .carousel .prev {
  4081. position: absolute;
  4082. top: 0;
  4083. width: 100%;
  4084. }
  4085. .carousel .next {
  4086. left: 100%;
  4087. }
  4088. .carousel .prev {
  4089. left: -100%;
  4090. }
  4091. .carousel .next.left,
  4092. .carousel .prev.right {
  4093. left: 0;
  4094. }
  4095. .carousel .active.left {
  4096. left: -100%;
  4097. }
  4098. .carousel .active.right {
  4099. left: 100%;
  4100. }
  4101. .carousel-control {
  4102. position: absolute;
  4103. top: 40%;
  4104. left: 15px;
  4105. width: 40px;
  4106. height: 40px;
  4107. margin-top: -20px;
  4108. font-size: 60px;
  4109. font-weight: 100;
  4110. line-height: 30px;
  4111. color: #ffffff;
  4112. text-align: center;
  4113. background: #222222;
  4114. border: 3px solid #ffffff;
  4115. -webkit-border-radius: 23px;
  4116. -moz-border-radius: 23px;
  4117. border-radius: 23px;
  4118. opacity: 0.5;
  4119. filter: alpha(opacity=50);
  4120. }
  4121. .carousel-control.right {
  4122. left: auto;
  4123. right: 15px;
  4124. }
  4125. .carousel-control:hover {
  4126. color: #ffffff;
  4127. text-decoration: none;
  4128. opacity: 0.9;
  4129. filter: alpha(opacity=90);
  4130. }
  4131. .carousel-caption {
  4132. position: absolute;
  4133. left: 0;
  4134. right: 0;
  4135. bottom: 0;
  4136. padding: 10px 15px 5px;
  4137. background: #333333;
  4138. background: rgba(0, 0, 0, 0.75);
  4139. }
  4140. .carousel-caption h4,
  4141. .carousel-caption p {
  4142. color: #ffffff;
  4143. }
  4144. .hero-unit {
  4145. padding: 60px;
  4146. margin-bottom: 30px;
  4147. background-color: #f5f5f5;
  4148. -webkit-border-radius: 6px;
  4149. -moz-border-radius: 6px;
  4150. border-radius: 6px;
  4151. }
  4152. .hero-unit h1 {
  4153. margin-bottom: 0;
  4154. font-size: 60px;
  4155. line-height: 1;
  4156. color: inherit;
  4157. letter-spacing: -1px;
  4158. }
  4159. .hero-unit p {
  4160. font-size: 18px;
  4161. font-weight: 200;
  4162. line-height: 27px;
  4163. color: inherit;
  4164. }
  4165. .pull-right {
  4166. float: right;
  4167. }
  4168. .pull-left {
  4169. float: left;
  4170. }
  4171. .hide {
  4172. display: none;
  4173. }
  4174. .show {
  4175. display: block;
  4176. }
  4177. .invisible {
  4178. visibility: hidden;
  4179. }
  4180. .navbar .navbar-inner {
  4181. border-bottom: 1px solid #CACACA;
  4182. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) , 0 0 10px rgba(0, 0, 0, 0.1);
  4183. -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) , 0 0 10px rgba(0, 0, 0, 0.1);
  4184. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) , 0 0 10px rgba(0, 0, 0, 0.1);
  4185. }
  4186. .navbar .brand {
  4187. font-weight: bold;
  4188. }
  4189. .navbar .brand:hover {
  4190. color: #4183c4;
  4191. }
  4192. .navbar .nav > li.active > a,
  4193. .navbar .nav > li.dropdown > .dropdown-toggle,
  4194. .navbar .nav > li.dropdown.active > .dropdown-toggle,
  4195. .navbar .nav > li.dropdown.open > .dropdown-toggle,
  4196. .navbar .nav > li.dropdown.open.active > .dropdown-toggle {
  4197. color: #333333;
  4198. }
  4199. .navbar .nav > li.active > a:hover,
  4200. .navbar .nav > li.dropdown > .dropdown-toggle:hover,
  4201. .navbar .nav > li.dropdown.active > .dropdown-toggle:hover,
  4202. .navbar .nav > li.dropdown.open > .dropdown-toggle:hover,
  4203. .navbar .nav > li.dropdown.open.active > .dropdown-toggle:hover {
  4204. color: #4183c4;
  4205. }
  4206. .navbar .nav > li.active > a .caret,
  4207. .navbar .nav > li.dropdown > .dropdown-toggle .caret,
  4208. .navbar .nav > li.dropdown.active > .dropdown-toggle .caret,
  4209. .navbar .nav > li.dropdown.open > .dropdown-toggle .caret,
  4210. .navbar .nav > li.dropdown.open.active > .dropdown-toggle .caret {
  4211. border-top-color: #333333;
  4212. }
  4213. .navbar .navbar-text {
  4214. margin-top: 2px;
  4215. padding: 0 10px;
  4216. line-height: 38px;
  4217. }
  4218. .navbar .nav > li > a {
  4219. padding: 11px 10px 9px;
  4220. font-weight: bold;
  4221. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  4222. }
  4223. .navbar .navbar-search .search-query,
  4224. .navbar .navbar-search .search-query:hover {
  4225. border: none;
  4226. color: #999999;
  4227. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  4228. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  4229. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  4230. }
  4231. .navbar .navbar-search .search-query:-moz-placeholder,
  4232. .navbar .navbar-search .search-query:hover:-moz-placeholder {
  4233. color: #999999;
  4234. }
  4235. .navbar .navbar-search .search-query:-ms-input-placeholder,
  4236. .navbar .navbar-search .search-query:hover:-ms-input-placeholder {
  4237. color: #999999;
  4238. }
  4239. .navbar .navbar-search .search-query::-webkit-input-placeholder,
  4240. .navbar .navbar-search .search-query:hover::-webkit-input-placeholder {
  4241. color: #999999;
  4242. }
  4243. .navbar .navbar-search .search-query:focus,
  4244. .navbar .navbar-search .search-query:hover:focus,
  4245. .navbar .navbar-search .search-query.focused,
  4246. .navbar .navbar-search .search-query:hover.focused {
  4247. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  4248. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  4249. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  4250. color: #333333;
  4251. }
  4252. .navbar .nav-collapse.in .navbar-search {
  4253. border-top: none;
  4254. border-bottom: none;
  4255. }
  4256. .navbar .nav-collapse.in > .nav li > a {
  4257. color: #333333;
  4258. }
  4259. .navbar .nav-collapse.in > .nav li > a:hover {
  4260. text-shadow: none;
  4261. color: #4183c4;
  4262. background-color: transparent;
  4263. }
  4264. div.subnav .nav > li > a {
  4265. font-weight: bold;
  4266. color: #333333;
  4267. }
  4268. div.subnav .nav > li > a:hover {
  4269. color: #4183c4;
  4270. }
  4271. div.subnav .nav > li.active > a {
  4272. color: #333333;
  4273. }
  4274. div.subnav .nav > li.active > a:hover {
  4275. color: #333333;
  4276. }
  4277. div.subnav .nav > li.dropdown > .dropdown-toggle {
  4278. background-color: transparent;
  4279. }
  4280. div.subnav .nav > li.dropdown.open > .dropdown-toggle {
  4281. border-left: 1px solid whiteSmoke;
  4282. border-right: 1px solid #E5E5E5;
  4283. color: #333333;
  4284. }
  4285. div.subnav .nav > li.dropdown.open > .dropdown-toggle:hover {
  4286. color: #4183c4;
  4287. }
  4288. .nav > li.dropdown > .dropdown-toggle .caret,
  4289. .nav > li.dropdown.active > .dropdown-toggle .caret,
  4290. .nav > li.dropdown.open > .dropdown-toggle .caret,
  4291. .nav > li.dropdown.open.active > .dropdown-toggle .caret {
  4292. border-top: 4px solid #333333;
  4293. border-top-color: #333333;
  4294. opacity: 1;
  4295. }
  4296. .nav > li.dropdown > .dropdown-toggle:hover .caret,
  4297. .nav > li.dropdown.active > .dropdown-toggle:hover .caret,
  4298. .nav > li.dropdown.open > .dropdown-toggle:hover .caret,
  4299. .nav > li.dropdown.open.active > .dropdown-toggle:hover .caret {
  4300. border-top: 4px solid #4183c4;
  4301. border-top-color: #4183c4;
  4302. }
  4303. .btn {
  4304. background-color: #f1f1f1;
  4305. background-image: -moz-linear-gradient(top, #f4f4f4, #ececec);
  4306. background-image: -ms-linear-gradient(top, #f4f4f4, #ececec);
  4307. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f4f4f4), to(#ececec));
  4308. background-image: -webkit-linear-gradient(top, #f4f4f4, #ececec);
  4309. background-image: -o-linear-gradient(top, #f4f4f4, #ececec);
  4310. background-image: linear-gradient(top, #f4f4f4, #ececec);
  4311. background-repeat: repeat-x;
  4312. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#ececec', GradientType=0);
  4313. border-color: #ececec #ececec #c6c6c6;
  4314. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  4315. *background-color: #ececec;
  4316. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  4317. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  4318. }
  4319. .btn:hover,
  4320. .btn:active,
  4321. .btn.active,
  4322. .btn.disabled,
  4323. .btn[disabled] {
  4324. background-color: #ececec;
  4325. *background-color: #dfdfdf;
  4326. }
  4327. .btn:active,
  4328. .btn.active {
  4329. background-color: #d3d3d3 \9;
  4330. }
  4331. .btn-primary {
  4332. background-color: #707070;
  4333. background-image: -moz-linear-gradient(top, #909090, #3f3f3f);
  4334. background-image: -ms-linear-gradient(top, #909090, #3f3f3f);
  4335. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#909090), to(#3f3f3f));
  4336. background-image: -webkit-linear-gradient(top, #909090, #3f3f3f);
  4337. background-image: -o-linear-gradient(top, #909090, #3f3f3f);
  4338. background-image: linear-gradient(top, #909090, #3f3f3f);
  4339. background-repeat: repeat-x;
  4340. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#909090', endColorstr='#3f3f3f', GradientType=0);
  4341. border-color: #3f3f3f #3f3f3f #191919;
  4342. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  4343. *background-color: #3f3f3f;
  4344. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  4345. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  4346. }
  4347. .btn-primary:hover,
  4348. .btn-primary:active,
  4349. .btn-primary.active,
  4350. .btn-primary.disabled,
  4351. .btn-primary[disabled] {
  4352. background-color: #3f3f3f;
  4353. *background-color: #323232;
  4354. }
  4355. .btn-primary:active,
  4356. .btn-primary.active {
  4357. background-color: #262626 \9;
  4358. }
  4359. .btn-warning {
  4360. background-color: #fbd627;
  4361. background-image: -moz-linear-gradient(top, #ffde42, #f4ca00);
  4362. background-image: -ms-linear-gradient(top, #ffde42, #f4ca00);
  4363. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffde42), to(#f4ca00));
  4364. background-image: -webkit-linear-gradient(top, #ffde42, #f4ca00);
  4365. background-image: -o-linear-gradient(top, #ffde42, #f4ca00);
  4366. background-image: linear-gradient(top, #ffde42, #f4ca00);
  4367. background-repeat: repeat-x;
  4368. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffde42', endColorstr='#f4ca00', GradientType=0);
  4369. border-color: #f4ca00 #f4ca00 #a88b00;
  4370. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  4371. *background-color: #f4ca00;
  4372. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  4373. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  4374. }
  4375. .btn-warning:hover,
  4376. .btn-warning:active,
  4377. .btn-warning.active,
  4378. .btn-warning.disabled,
  4379. .btn-warning[disabled] {
  4380. background-color: #f4ca00;
  4381. *background-color: #dbb500;
  4382. }
  4383. .btn-warning:active,
  4384. .btn-warning.active {
  4385. background-color: #c1a000 \9;
  4386. }
  4387. .btn-danger {
  4388. background-color: #e15454;
  4389. background-image: -moz-linear-gradient(top, #e56e6e, #da2d2d);
  4390. background-image: -ms-linear-gradient(top, #e56e6e, #da2d2d);
  4391. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e56e6e), to(#da2d2d));
  4392. background-image: -webkit-linear-gradient(top, #e56e6e, #da2d2d);
  4393. background-image: -o-linear-gradient(top, #e56e6e, #da2d2d);
  4394. background-image: linear-gradient(top, #e56e6e, #da2d2d);
  4395. background-repeat: repeat-x;
  4396. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e56e6e', endColorstr='#da2d2d', GradientType=0);
  4397. border-color: #da2d2d #da2d2d #9f1c1c;
  4398. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  4399. *background-color: #da2d2d;
  4400. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  4401. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  4402. }
  4403. .btn-danger:hover,
  4404. .btn-danger:active,
  4405. .btn-danger.active,
  4406. .btn-danger.disabled,
  4407. .btn-danger[disabled] {
  4408. background-color: #da2d2d;
  4409. *background-color: #ca2424;
  4410. }
  4411. .btn-danger:active,
  4412. .btn-danger.active {
  4413. background-color: #b42020 \9;
  4414. }
  4415. .btn-success {
  4416. background-color: #79cb5d;
  4417. background-image: -moz-linear-gradient(top, #8add6d, #60b044);
  4418. background-image: -ms-linear-gradient(top, #8add6d, #60b044);
  4419. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#8add6d), to(#60b044));
  4420. background-image: -webkit-linear-gradient(top, #8add6d, #60b044);
  4421. background-image: -o-linear-gradient(top, #8add6d, #60b044);
  4422. background-image: linear-gradient(top, #8add6d, #60b044);
  4423. background-repeat: repeat-x;
  4424. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8add6d', endColorstr='#60b044', GradientType=0);
  4425. border-color: #60b044 #60b044 #42792f;
  4426. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  4427. *background-color: #60b044;
  4428. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  4429. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  4430. }
  4431. .btn-success:hover,
  4432. .btn-success:active,
  4433. .btn-success.active,
  4434. .btn-success.disabled,
  4435. .btn-success[disabled] {
  4436. background-color: #60b044;
  4437. *background-color: #569e3d;
  4438. }
  4439. .btn-success:active,
  4440. .btn-success.active {
  4441. background-color: #4c8b36 \9;
  4442. }
  4443. .btn-info {
  4444. background-color: #669dc7;
  4445. background-image: -moz-linear-gradient(top, #7caccf, #4488bb);
  4446. background-image: -ms-linear-gradient(top, #7caccf, #4488bb);
  4447. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#7caccf), to(#4488bb));
  4448. background-image: -webkit-linear-gradient(top, #7caccf, #4488bb);
  4449. background-image: -o-linear-gradient(top, #7caccf, #4488bb);
  4450. background-image: linear-gradient(top, #7caccf, #4488bb);
  4451. background-repeat: repeat-x;
  4452. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7caccf', endColorstr='#4488bb', GradientType=0);
  4453. border-color: #4488bb #4488bb #305f83;
  4454. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  4455. *background-color: #4488bb;
  4456. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  4457. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  4458. }
  4459. .btn-info:hover,
  4460. .btn-info:active,
  4461. .btn-info.active,
  4462. .btn-info.disabled,
  4463. .btn-info[disabled] {
  4464. background-color: #4488bb;
  4465. *background-color: #3d7aa8;
  4466. }
  4467. .btn-info:active,
  4468. .btn-info.active {
  4469. background-color: #366d96 \9;
  4470. }
  4471. .btn-inverse {
  4472. background-color: #466274;
  4473. background-image: -moz-linear-gradient(top, #4a687a, #405a6a);
  4474. background-image: -ms-linear-gradient(top, #4a687a, #405a6a);
  4475. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4a687a), to(#405a6a));
  4476. background-image: -webkit-linear-gradient(top, #4a687a, #405a6a);
  4477. background-image: -o-linear-gradient(top, #4a687a, #405a6a);
  4478. background-image: linear-gradient(top, #4a687a, #405a6a);
  4479. background-repeat: repeat-x;
  4480. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a687a', endColorstr='#405a6a', GradientType=0);
  4481. border-color: #405a6a #405a6a #23323a;
  4482. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  4483. *background-color: #405a6a;
  4484. /* Darken IE7 buttons by default so they stand out more given they won't have borders */
  4485. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  4486. }
  4487. .btn-inverse:hover,
  4488. .btn-inverse:active,
  4489. .btn-inverse.active,
  4490. .btn-inverse.disabled,
  4491. .btn-inverse[disabled] {
  4492. background-color: #405a6a;
  4493. *background-color: #364d5a;
  4494. }
  4495. .btn-inverse:active,
  4496. .btn-inverse.active {
  4497. background-color: #2d3f4a \9;
  4498. }
  4499. .control-group.warning > label,
  4500. .control-group.warning .help-block,
  4501. .control-group.warning .help-inline {
  4502. color: #e29235;
  4503. }
  4504. .control-group.warning .checkbox,
  4505. .control-group.warning .radio,
  4506. .control-group.warning input,
  4507. .control-group.warning select,
  4508. .control-group.warning textarea {
  4509. color: #e29235;
  4510. border-color: #e29235;
  4511. }
  4512. .control-group.warning .checkbox:focus,
  4513. .control-group.warning .radio:focus,
  4514. .control-group.warning input:focus,
  4515. .control-group.warning select:focus,
  4516. .control-group.warning textarea:focus {
  4517. border-color: #c7781d;
  4518. -webkit-box-shadow: 0 0 6px #efc28e;
  4519. -moz-box-shadow: 0 0 6px #efc28e;
  4520. box-shadow: 0 0 6px #efc28e;
  4521. }
  4522. .control-group.warning .input-prepend .add-on,
  4523. .control-group.warning .input-append .add-on {
  4524. color: #e29235;
  4525. background-color: #f5f3b4;
  4526. border-color: #e29235;
  4527. }
  4528. .control-group.error > label,
  4529. .control-group.error .help-block,
  4530. .control-group.error .help-inline {
  4531. color: #cc0000;
  4532. }
  4533. .control-group.error .checkbox,
  4534. .control-group.error .radio,
  4535. .control-group.error input,
  4536. .control-group.error select,
  4537. .control-group.error textarea {
  4538. color: #cc0000;
  4539. border-color: #cc0000;
  4540. }
  4541. .control-group.error .checkbox:focus,
  4542. .control-group.error .radio:focus,
  4543. .control-group.error input:focus,
  4544. .control-group.error select:focus,
  4545. .control-group.error textarea:focus {
  4546. border-color: #990000;
  4547. -webkit-box-shadow: 0 0 6px #ff3333;
  4548. -moz-box-shadow: 0 0 6px #ff3333;
  4549. box-shadow: 0 0 6px #ff3333;
  4550. }
  4551. .control-group.error .input-prepend .add-on,
  4552. .control-group.error .input-append .add-on {
  4553. color: #cc0000;
  4554. background-color: #ffe9e9;
  4555. border-color: #cc0000;
  4556. }
  4557. .control-group.success > label,
  4558. .control-group.success .help-block,
  4559. .control-group.success .help-inline {
  4560. color: #2ba949;
  4561. }
  4562. .control-group.success .checkbox,
  4563. .control-group.success .radio,
  4564. .control-group.success input,
  4565. .control-group.success select,
  4566. .control-group.success textarea {
  4567. color: #2ba949;
  4568. border-color: #2ba949;
  4569. }
  4570. .control-group.success .checkbox:focus,
  4571. .control-group.success .radio:focus,
  4572. .control-group.success input:focus,
  4573. .control-group.success select:focus,
  4574. .control-group.success textarea:focus {
  4575. border-color: #218037;
  4576. -webkit-box-shadow: 0 0 6px #63d77e;
  4577. -moz-box-shadow: 0 0 6px #63d77e;
  4578. box-shadow: 0 0 6px #63d77e;
  4579. }
  4580. .control-group.success .input-prepend .add-on,
  4581. .control-group.success .input-append .add-on {
  4582. color: #2ba949;
  4583. background-color: #bedebe;
  4584. border-color: #2ba949;
  4585. }
  4586. .label-important,
  4587. .badge-important {
  4588. background-color: #BD2C00;
  4589. }
  4590. .label-warning,
  4591. .badge-warning {
  4592. background-color: #E3E84D;
  4593. }
  4594. .label-success,
  4595. .badge-success {
  4596. background-color: #6CC644;
  4597. }
  4598. .label-info,
  4599. .badge-info {
  4600. background-color: #4183C4;
  4601. }
  4602. .hero-unit {
  4603. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  4604. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  4605. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  4606. border: 1px solid rgba(0, 0, 0, 0.05);
  4607. }
  4608. .pull-right {
  4609. float: right;
  4610. }
  4611. .pull-left {
  4612. float: left;
  4613. }
  4614. .hide {
  4615. display: none;
  4616. }
  4617. .show {
  4618. display: block;
  4619. }
  4620. .invisible {
  4621. visibility: hidden;
  4622. }