bootstrap.css 105 KB

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