bootstrap.css 131 KB

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