bootstrap.css 134 KB

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