bootstrap.css 121 KB

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