bootstrap.css 128 KB

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