bootstrap.css 116 KB

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