bootstrap.css 124 KB

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