bootstrap.css 109 KB

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