bootstrap-ie6.css 110 KB

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