bootstrap.css 133 KB

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