bootstrap.css 115 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774
  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. [class^="icon-"],
  1802. [class*=" icon-"] {
  1803. display: inline-block;
  1804. width: 14px;
  1805. height: 14px;
  1806. margin-top: 1px;
  1807. *margin-right: .3em;
  1808. line-height: 14px;
  1809. vertical-align: text-top;
  1810. background-image: url("../img/glyphicons-halflings.png");
  1811. background-position: 14px 14px;
  1812. background-repeat: no-repeat;
  1813. }
  1814. */
  1815. /* White icons with optional class, or on hover/active states of certain elements */
  1816. .icon-white,
  1817. .nav-tabs > .active > a > [class^="icon-"],
  1818. .nav-tabs > .active > a > [class*=" icon-"],
  1819. .nav-pills > .active > a > [class^="icon-"],
  1820. .nav-pills > .active > a > [class*=" icon-"],
  1821. .nav-list > .active > a > [class^="icon-"],
  1822. .nav-list > .active > a > [class*=" icon-"],
  1823. .navbar-inverse .nav > .active > a > [class^="icon-"],
  1824. .navbar-inverse .nav > .active > a > [class*=" icon-"],
  1825. .dropdown-menu > li > a:hover > [class^="icon-"],
  1826. .dropdown-menu > li > a:hover > [class*=" icon-"],
  1827. .dropdown-menu > .active > a > [class^="icon-"],
  1828. .dropdown-menu > .active > a > [class*=" icon-"] {
  1829. background-image: url("../img/glyphicons-halflings-white.png");
  1830. }
  1831. .icon-glass {
  1832. background-position: 0 0;
  1833. }
  1834. .icon-music {
  1835. background-position: -24px 0;
  1836. }
  1837. .icon-search {
  1838. background-position: -48px 0;
  1839. }
  1840. .icon-envelope {
  1841. background-position: -72px 0;
  1842. }
  1843. .icon-heart {
  1844. background-position: -96px 0;
  1845. }
  1846. .icon-star {
  1847. background-position: -120px 0;
  1848. }
  1849. .icon-star-empty {
  1850. background-position: -144px 0;
  1851. }
  1852. .icon-user {
  1853. background-position: -168px 0;
  1854. }
  1855. .icon-film {
  1856. background-position: -192px 0;
  1857. }
  1858. .icon-th-large {
  1859. background-position: -216px 0;
  1860. }
  1861. .icon-th {
  1862. background-position: -240px 0;
  1863. }
  1864. .icon-th-list {
  1865. background-position: -264px 0;
  1866. }
  1867. .icon-ok {
  1868. background-position: -288px 0;
  1869. }
  1870. .icon-remove {
  1871. background-position: -312px 0;
  1872. }
  1873. .icon-zoom-in {
  1874. background-position: -336px 0;
  1875. }
  1876. .icon-zoom-out {
  1877. background-position: -360px 0;
  1878. }
  1879. .icon-off {
  1880. background-position: -384px 0;
  1881. }
  1882. .icon-signal {
  1883. background-position: -408px 0;
  1884. }
  1885. .icon-cog {
  1886. background-position: -432px 0;
  1887. }
  1888. .icon-trash {
  1889. background-position: -456px 0;
  1890. }
  1891. .icon-home {
  1892. background-position: 0 -24px;
  1893. }
  1894. .icon-file {
  1895. background-position: -24px -24px;
  1896. }
  1897. .icon-time {
  1898. background-position: -48px -24px;
  1899. }
  1900. .icon-road {
  1901. background-position: -72px -24px;
  1902. }
  1903. .icon-download-alt {
  1904. background-position: -96px -24px;
  1905. }
  1906. .icon-download {
  1907. background-position: -120px -24px;
  1908. }
  1909. .icon-upload {
  1910. background-position: -144px -24px;
  1911. }
  1912. .icon-inbox {
  1913. background-position: -168px -24px;
  1914. }
  1915. .icon-play-circle {
  1916. background-position: -192px -24px;
  1917. }
  1918. .icon-repeat {
  1919. background-position: -216px -24px;
  1920. }
  1921. .icon-refresh {
  1922. background-position: -240px -24px;
  1923. }
  1924. .icon-list-alt {
  1925. background-position: -264px -24px;
  1926. }
  1927. .icon-lock {
  1928. background-position: -287px -24px;
  1929. }
  1930. .icon-flag {
  1931. background-position: -312px -24px;
  1932. }
  1933. .icon-headphones {
  1934. background-position: -336px -24px;
  1935. }
  1936. .icon-volume-off {
  1937. background-position: -360px -24px;
  1938. }
  1939. .icon-volume-down {
  1940. background-position: -384px -24px;
  1941. }
  1942. .icon-volume-up {
  1943. background-position: -408px -24px;
  1944. }
  1945. .icon-qrcode {
  1946. background-position: -432px -24px;
  1947. }
  1948. .icon-barcode {
  1949. background-position: -456px -24px;
  1950. }
  1951. .icon-tag {
  1952. background-position: 0 -48px;
  1953. }
  1954. .icon-tags {
  1955. background-position: -25px -48px;
  1956. }
  1957. .icon-book {
  1958. background-position: -48px -48px;
  1959. }
  1960. .icon-bookmark {
  1961. background-position: -72px -48px;
  1962. }
  1963. .icon-print {
  1964. background-position: -96px -48px;
  1965. }
  1966. .icon-camera {
  1967. background-position: -120px -48px;
  1968. }
  1969. .icon-font {
  1970. background-position: -144px -48px;
  1971. }
  1972. .icon-bold {
  1973. background-position: -167px -48px;
  1974. }
  1975. .icon-italic {
  1976. background-position: -192px -48px;
  1977. }
  1978. .icon-text-height {
  1979. background-position: -216px -48px;
  1980. }
  1981. .icon-text-width {
  1982. background-position: -240px -48px;
  1983. }
  1984. .icon-align-left {
  1985. background-position: -264px -48px;
  1986. }
  1987. .icon-align-center {
  1988. background-position: -288px -48px;
  1989. }
  1990. .icon-align-right {
  1991. background-position: -312px -48px;
  1992. }
  1993. .icon-align-justify {
  1994. background-position: -336px -48px;
  1995. }
  1996. .icon-list {
  1997. background-position: -360px -48px;
  1998. }
  1999. .icon-indent-left {
  2000. background-position: -384px -48px;
  2001. }
  2002. .icon-indent-right {
  2003. background-position: -408px -48px;
  2004. }
  2005. .icon-facetime-video {
  2006. background-position: -432px -48px;
  2007. }
  2008. .icon-picture {
  2009. background-position: -456px -48px;
  2010. }
  2011. .icon-pencil {
  2012. background-position: 0 -72px;
  2013. }
  2014. .icon-map-marker {
  2015. background-position: -24px -72px;
  2016. }
  2017. .icon-adjust {
  2018. background-position: -48px -72px;
  2019. }
  2020. .icon-tint {
  2021. background-position: -72px -72px;
  2022. }
  2023. .icon-edit {
  2024. background-position: -96px -72px;
  2025. }
  2026. .icon-share {
  2027. background-position: -120px -72px;
  2028. }
  2029. .icon-check {
  2030. background-position: -144px -72px;
  2031. }
  2032. .icon-move {
  2033. background-position: -168px -72px;
  2034. }
  2035. .icon-step-backward {
  2036. background-position: -192px -72px;
  2037. }
  2038. .icon-fast-backward {
  2039. background-position: -216px -72px;
  2040. }
  2041. .icon-backward {
  2042. background-position: -240px -72px;
  2043. }
  2044. .icon-play {
  2045. background-position: -264px -72px;
  2046. }
  2047. .icon-pause {
  2048. background-position: -288px -72px;
  2049. }
  2050. .icon-stop {
  2051. background-position: -312px -72px;
  2052. }
  2053. .icon-forward {
  2054. background-position: -336px -72px;
  2055. }
  2056. .icon-fast-forward {
  2057. background-position: -360px -72px;
  2058. }
  2059. .icon-step-forward {
  2060. background-position: -384px -72px;
  2061. }
  2062. .icon-eject {
  2063. background-position: -408px -72px;
  2064. }
  2065. .icon-chevron-left {
  2066. background-position: -432px -72px;
  2067. }
  2068. .icon-chevron-right {
  2069. background-position: -456px -72px;
  2070. }
  2071. .icon-plus-sign {
  2072. background-position: 0 -96px;
  2073. }
  2074. .icon-minus-sign {
  2075. background-position: -24px -96px;
  2076. }
  2077. .icon-remove-sign {
  2078. background-position: -48px -96px;
  2079. }
  2080. .icon-ok-sign {
  2081. background-position: -72px -96px;
  2082. }
  2083. .icon-question-sign {
  2084. background-position: -96px -96px;
  2085. }
  2086. .icon-info-sign {
  2087. background-position: -120px -96px;
  2088. }
  2089. .icon-screenshot {
  2090. background-position: -144px -96px;
  2091. }
  2092. .icon-remove-circle {
  2093. background-position: -168px -96px;
  2094. }
  2095. .icon-ok-circle {
  2096. background-position: -192px -96px;
  2097. }
  2098. .icon-ban-circle {
  2099. background-position: -216px -96px;
  2100. }
  2101. .icon-arrow-left {
  2102. background-position: -240px -96px;
  2103. }
  2104. .icon-arrow-right {
  2105. background-position: -264px -96px;
  2106. }
  2107. .icon-arrow-up {
  2108. background-position: -289px -96px;
  2109. }
  2110. .icon-arrow-down {
  2111. background-position: -312px -96px;
  2112. }
  2113. .icon-share-alt {
  2114. background-position: -336px -96px;
  2115. }
  2116. .icon-resize-full {
  2117. background-position: -360px -96px;
  2118. }
  2119. .icon-resize-small {
  2120. background-position: -384px -96px;
  2121. }
  2122. .icon-plus {
  2123. background-position: -408px -96px;
  2124. }
  2125. .icon-minus {
  2126. background-position: -433px -96px;
  2127. }
  2128. .icon-asterisk {
  2129. background-position: -456px -96px;
  2130. }
  2131. .icon-exclamation-sign {
  2132. background-position: 0 -120px;
  2133. }
  2134. .icon-gift {
  2135. background-position: -24px -120px;
  2136. }
  2137. .icon-leaf {
  2138. background-position: -48px -120px;
  2139. }
  2140. .icon-fire {
  2141. background-position: -72px -120px;
  2142. }
  2143. .icon-eye-open {
  2144. background-position: -96px -120px;
  2145. }
  2146. .icon-eye-close {
  2147. background-position: -120px -120px;
  2148. }
  2149. .icon-warning-sign {
  2150. background-position: -144px -120px;
  2151. }
  2152. .icon-plane {
  2153. background-position: -168px -120px;
  2154. }
  2155. .icon-calendar {
  2156. background-position: -192px -120px;
  2157. }
  2158. .icon-random {
  2159. width: 16px;
  2160. background-position: -216px -120px;
  2161. }
  2162. .icon-comment {
  2163. background-position: -240px -120px;
  2164. }
  2165. .icon-magnet {
  2166. background-position: -264px -120px;
  2167. }
  2168. .icon-chevron-up {
  2169. background-position: -288px -120px;
  2170. }
  2171. .icon-chevron-down {
  2172. background-position: -313px -119px;
  2173. }
  2174. .icon-retweet {
  2175. background-position: -336px -120px;
  2176. }
  2177. .icon-shopping-cart {
  2178. background-position: -360px -120px;
  2179. }
  2180. .icon-folder-close {
  2181. background-position: -384px -120px;
  2182. }
  2183. .icon-folder-open {
  2184. width: 16px;
  2185. background-position: -408px -120px;
  2186. }
  2187. .icon-resize-vertical {
  2188. background-position: -432px -119px;
  2189. }
  2190. .icon-resize-horizontal {
  2191. background-position: -456px -118px;
  2192. }
  2193. .icon-hdd {
  2194. background-position: 0 -144px;
  2195. }
  2196. .icon-bullhorn {
  2197. background-position: -24px -144px;
  2198. }
  2199. .icon-bell {
  2200. background-position: -48px -144px;
  2201. }
  2202. .icon-certificate {
  2203. background-position: -72px -144px;
  2204. }
  2205. .icon-thumbs-up {
  2206. background-position: -96px -144px;
  2207. }
  2208. .icon-thumbs-down {
  2209. background-position: -120px -144px;
  2210. }
  2211. .icon-hand-right {
  2212. background-position: -144px -144px;
  2213. }
  2214. .icon-hand-left {
  2215. background-position: -168px -144px;
  2216. }
  2217. .icon-hand-up {
  2218. background-position: -192px -144px;
  2219. }
  2220. .icon-hand-down {
  2221. background-position: -216px -144px;
  2222. }
  2223. .icon-circle-arrow-right {
  2224. background-position: -240px -144px;
  2225. }
  2226. .icon-circle-arrow-left {
  2227. background-position: -264px -144px;
  2228. }
  2229. .icon-circle-arrow-up {
  2230. background-position: -288px -144px;
  2231. }
  2232. .icon-circle-arrow-down {
  2233. background-position: -312px -144px;
  2234. }
  2235. .icon-globe {
  2236. background-position: -336px -144px;
  2237. }
  2238. .icon-wrench {
  2239. background-position: -360px -144px;
  2240. }
  2241. .icon-tasks {
  2242. background-position: -384px -144px;
  2243. }
  2244. .icon-filter {
  2245. background-position: -408px -144px;
  2246. }
  2247. .icon-briefcase {
  2248. background-position: -432px -144px;
  2249. }
  2250. .icon-fullscreen {
  2251. background-position: -456px -144px;
  2252. }
  2253. .dropup,
  2254. .dropdown {
  2255. position: relative;
  2256. }
  2257. .dropdown-toggle {
  2258. *margin-bottom: -3px;
  2259. }
  2260. .dropdown-toggle:active,
  2261. .open .dropdown-toggle {
  2262. outline: 0;
  2263. }
  2264. .caret {
  2265. display: inline-block;
  2266. width: 0;
  2267. height: 0;
  2268. vertical-align: top;
  2269. border-top: 4px solid #000000;
  2270. border-right: 4px solid transparent;
  2271. border-left: 4px solid transparent;
  2272. content: "";
  2273. }
  2274. .dropdown .caret {
  2275. margin-top: 8px;
  2276. margin-left: 2px;
  2277. }
  2278. .dropdown-menu {
  2279. position: absolute;
  2280. top: 100%;
  2281. left: 0;
  2282. z-index: 1000;
  2283. display: none;
  2284. float: left;
  2285. min-width: 160px;
  2286. padding: 5px 0;
  2287. margin: 2px 0 0;
  2288. list-style: none;
  2289. background-color: #ffffff;
  2290. border: 1px solid #ccc;
  2291. border: 1px solid rgba(0, 0, 0, 0.2);
  2292. *border-right-width: 2px;
  2293. *border-bottom-width: 2px;
  2294. -webkit-border-radius: 6px;
  2295. -moz-border-radius: 6px;
  2296. border-radius: 6px;
  2297. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  2298. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  2299. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  2300. -webkit-background-clip: padding-box;
  2301. -moz-background-clip: padding;
  2302. background-clip: padding-box;
  2303. }
  2304. .dropdown-menu.pull-right {
  2305. right: 0;
  2306. left: auto;
  2307. }
  2308. .dropdown-menu .divider {
  2309. *width: 100%;
  2310. height: 1px;
  2311. margin: 9px 1px;
  2312. *margin: -5px 0 5px;
  2313. overflow: hidden;
  2314. background-color: #e5e5e5;
  2315. border-bottom: 1px solid #ffffff;
  2316. }
  2317. .dropdown-menu a {
  2318. display: block;
  2319. padding: 3px 20px;
  2320. clear: both;
  2321. font-weight: normal;
  2322. line-height: 20px;
  2323. color: #333333;
  2324. white-space: nowrap;
  2325. }
  2326. .dropdown-menu li > a:hover,
  2327. .dropdown-menu li > a:focus,
  2328. .dropdown-submenu:hover > a {
  2329. color: #ffffff;
  2330. text-decoration: none;
  2331. background-color: #0088cc;
  2332. background-color: #0081c2;
  2333. background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  2334. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  2335. background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  2336. background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  2337. background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  2338. background-repeat: repeat-x;
  2339. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
  2340. }
  2341. .dropdown-menu .active > a,
  2342. .dropdown-menu .active > a:hover {
  2343. color: #ffffff;
  2344. text-decoration: none;
  2345. background-color: #0088cc;
  2346. background-color: #0081c2;
  2347. background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  2348. background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  2349. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  2350. background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  2351. background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  2352. background-repeat: repeat-x;
  2353. outline: 0;
  2354. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
  2355. }
  2356. .dropdown-menu .disabled > a,
  2357. .dropdown-menu .disabled > a:hover {
  2358. color: #999999;
  2359. }
  2360. .dropdown-menu .disabled > a:hover {
  2361. text-decoration: none;
  2362. cursor: default;
  2363. background-color: transparent;
  2364. }
  2365. .open {
  2366. *z-index: 1000;
  2367. }
  2368. .open > .dropdown-menu {
  2369. display: block;
  2370. }
  2371. .pull-right > .dropdown-menu {
  2372. right: 0;
  2373. left: auto;
  2374. }
  2375. .dropup .caret,
  2376. .navbar-fixed-bottom .dropdown .caret {
  2377. border-top: 0;
  2378. border-bottom: 4px solid #000000;
  2379. content: "";
  2380. }
  2381. .dropup .dropdown-menu,
  2382. .navbar-fixed-bottom .dropdown .dropdown-menu {
  2383. top: auto;
  2384. bottom: 100%;
  2385. margin-bottom: 1px;
  2386. }
  2387. .dropdown-submenu {
  2388. position: relative;
  2389. }
  2390. .dropdown-submenu > .dropdown-menu {
  2391. top: 0;
  2392. left: 100%;
  2393. margin-top: -6px;
  2394. margin-left: -1px;
  2395. -webkit-border-radius: 0 6px 6px 6px;
  2396. -moz-border-radius: 0 6px 6px 6px;
  2397. border-radius: 0 6px 6px 6px;
  2398. }
  2399. .dropdown-submenu:hover > .dropdown-menu {
  2400. display: block;
  2401. }
  2402. .dropdown-submenu > a:after {
  2403. display: block;
  2404. float: right;
  2405. width: 0;
  2406. height: 0;
  2407. margin-top: 5px;
  2408. margin-right: -10px;
  2409. border-color: transparent;
  2410. border-left-color: #cccccc;
  2411. border-style: solid;
  2412. border-width: 5px 0 5px 5px;
  2413. content: " ";
  2414. }
  2415. .dropdown-submenu:hover > a:after {
  2416. border-left-color: #ffffff;
  2417. }
  2418. .dropdown .dropdown-menu .nav-header {
  2419. padding-right: 20px;
  2420. padding-left: 20px;
  2421. }
  2422. .typeahead {
  2423. margin-top: 2px;
  2424. -webkit-border-radius: 4px;
  2425. -moz-border-radius: 4px;
  2426. border-radius: 4px;
  2427. }
  2428. .well {
  2429. min-height: 20px;
  2430. padding: 19px;
  2431. margin-bottom: 20px;
  2432. background-color: #f5f5f5;
  2433. border: 1px solid #e3e3e3;
  2434. -webkit-border-radius: 4px;
  2435. -moz-border-radius: 4px;
  2436. border-radius: 4px;
  2437. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  2438. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  2439. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  2440. }
  2441. .well blockquote {
  2442. border-color: #ddd;
  2443. border-color: rgba(0, 0, 0, 0.15);
  2444. }
  2445. .well-large {
  2446. padding: 24px;
  2447. -webkit-border-radius: 6px;
  2448. -moz-border-radius: 6px;
  2449. border-radius: 6px;
  2450. }
  2451. .well-small {
  2452. padding: 9px;
  2453. -webkit-border-radius: 3px;
  2454. -moz-border-radius: 3px;
  2455. border-radius: 3px;
  2456. }
  2457. .fade {
  2458. opacity: 0;
  2459. -webkit-transition: opacity 0.15s linear;
  2460. -moz-transition: opacity 0.15s linear;
  2461. -o-transition: opacity 0.15s linear;
  2462. transition: opacity 0.15s linear;
  2463. }
  2464. .fade.in {
  2465. opacity: 1;
  2466. }
  2467. .collapse {
  2468. position: relative;
  2469. height: 0;
  2470. overflow: hidden;
  2471. -webkit-transition: height 0.35s ease;
  2472. -moz-transition: height 0.35s ease;
  2473. -o-transition: height 0.35s ease;
  2474. transition: height 0.35s ease;
  2475. }
  2476. .collapse.in {
  2477. height: auto;
  2478. }
  2479. .close {
  2480. float: right;
  2481. font-size: 20px;
  2482. font-weight: bold;
  2483. line-height: 20px;
  2484. color: #000000;
  2485. text-shadow: 0 1px 0 #ffffff;
  2486. opacity: 0.2;
  2487. filter: alpha(opacity=20);
  2488. }
  2489. .close:hover {
  2490. color: #000000;
  2491. text-decoration: none;
  2492. cursor: pointer;
  2493. opacity: 0.4;
  2494. filter: alpha(opacity=40);
  2495. }
  2496. button.close {
  2497. padding: 0;
  2498. cursor: pointer;
  2499. background: transparent;
  2500. border: 0;
  2501. -webkit-appearance: none;
  2502. }
  2503. .btn {
  2504. display: inline-block;
  2505. *display: inline;
  2506. padding: 4px 14px;
  2507. margin-bottom: 0;
  2508. *margin-left: .3em;
  2509. font-size: 14px;
  2510. line-height: 20px;
  2511. *line-height: 20px;
  2512. color: #333333;
  2513. text-align: center;
  2514. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  2515. vertical-align: middle;
  2516. cursor: pointer;
  2517. background-color: #f5f5f5;
  2518. *background-color: #e6e6e6;
  2519. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  2520. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  2521. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  2522. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  2523. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  2524. background-repeat: repeat-x;
  2525. border: 1px solid #bbbbbb;
  2526. *border: 0;
  2527. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2528. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  2529. border-bottom-color: #a2a2a2;
  2530. -webkit-border-radius: 4px;
  2531. -moz-border-radius: 4px;
  2532. border-radius: 4px;
  2533. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  2534. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2535. *zoom: 1;
  2536. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2537. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2538. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  2539. }
  2540. .btn:hover,
  2541. .btn:active,
  2542. .btn.active,
  2543. .btn.disabled,
  2544. .btn[disabled] {
  2545. color: #333333;
  2546. background-color: #e6e6e6;
  2547. *background-color: #d9d9d9;
  2548. }
  2549. .btn:active,
  2550. .btn.active {
  2551. background-color: #cccccc \9;
  2552. }
  2553. .btn:first-child {
  2554. *margin-left: 0;
  2555. }
  2556. .btn:hover {
  2557. color: #333333;
  2558. text-decoration: none;
  2559. background-color: #e6e6e6;
  2560. *background-color: #d9d9d9;
  2561. /* Buttons in IE7 don't get borders, so darken on hover */
  2562. background-position: 0 -15px;
  2563. -webkit-transition: background-position 0.1s linear;
  2564. -moz-transition: background-position 0.1s linear;
  2565. -o-transition: background-position 0.1s linear;
  2566. transition: background-position 0.1s linear;
  2567. }
  2568. .btn:focus {
  2569. outline: thin dotted #333;
  2570. outline: 5px auto -webkit-focus-ring-color;
  2571. outline-offset: -2px;
  2572. }
  2573. .btn.active,
  2574. .btn:active {
  2575. background-color: #e6e6e6;
  2576. background-color: #d9d9d9 \9;
  2577. background-image: none;
  2578. outline: 0;
  2579. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2580. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2581. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2582. }
  2583. .btn.disabled,
  2584. .btn[disabled] {
  2585. cursor: default;
  2586. background-color: #e6e6e6;
  2587. background-image: none;
  2588. opacity: 0.65;
  2589. filter: alpha(opacity=65);
  2590. -webkit-box-shadow: none;
  2591. -moz-box-shadow: none;
  2592. box-shadow: none;
  2593. }
  2594. .btn-large {
  2595. padding: 9px 14px;
  2596. font-size: 16px;
  2597. line-height: normal;
  2598. -webkit-border-radius: 5px;
  2599. -moz-border-radius: 5px;
  2600. border-radius: 5px;
  2601. }
  2602. .btn-large [class^="icon-"] {
  2603. margin-top: 2px;
  2604. }
  2605. .btn-small {
  2606. padding: 3px 9px;
  2607. font-size: 12px;
  2608. line-height: 18px;
  2609. }
  2610. .btn-small [class^="icon-"] {
  2611. margin-top: 0;
  2612. }
  2613. .btn-mini {
  2614. padding: 2px 6px;
  2615. font-size: 11px;
  2616. line-height: 17px;
  2617. }
  2618. .btn-block {
  2619. display: block;
  2620. width: 100%;
  2621. padding-right: 0;
  2622. padding-left: 0;
  2623. -webkit-box-sizing: border-box;
  2624. -moz-box-sizing: border-box;
  2625. box-sizing: border-box;
  2626. }
  2627. .btn-block + .btn-block {
  2628. margin-top: 5px;
  2629. }
  2630. input[type="submit"].btn-block,
  2631. input[type="reset"].btn-block,
  2632. input[type="button"].btn-block {
  2633. width: 100%;
  2634. }
  2635. .btn-primary.active,
  2636. .btn-warning.active,
  2637. .btn-danger.active,
  2638. .btn-success.active,
  2639. .btn-info.active,
  2640. .btn-inverse.active {
  2641. color: rgba(255, 255, 255, 0.75);
  2642. }
  2643. .btn {
  2644. border-color: #c5c5c5;
  2645. border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
  2646. }
  2647. .btn-primary {
  2648. color: #ffffff;
  2649. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2650. background-color: #006dcc;
  2651. *background-color: #0044cc;
  2652. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  2653. background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  2654. background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  2655. background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  2656. background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  2657. background-repeat: repeat-x;
  2658. border-color: #0044cc #0044cc #002a80;
  2659. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2660. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  2661. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2662. }
  2663. .btn-primary:hover,
  2664. .btn-primary:active,
  2665. .btn-primary.active,
  2666. .btn-primary.disabled,
  2667. .btn-primary[disabled] {
  2668. color: #ffffff;
  2669. background-color: #0044cc;
  2670. *background-color: #003bb3;
  2671. }
  2672. .btn-primary:active,
  2673. .btn-primary.active {
  2674. background-color: #003399 \9;
  2675. }
  2676. .btn-warning {
  2677. color: #ffffff;
  2678. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2679. background-color: #faa732;
  2680. *background-color: #f89406;
  2681. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  2682. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  2683. background-image: -o-linear-gradient(top, #fbb450, #f89406);
  2684. background-image: linear-gradient(to bottom, #fbb450, #f89406);
  2685. background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  2686. background-repeat: repeat-x;
  2687. border-color: #f89406 #f89406 #ad6704;
  2688. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2689. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  2690. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2691. }
  2692. .btn-warning:hover,
  2693. .btn-warning:active,
  2694. .btn-warning.active,
  2695. .btn-warning.disabled,
  2696. .btn-warning[disabled] {
  2697. color: #ffffff;
  2698. background-color: #f89406;
  2699. *background-color: #df8505;
  2700. }
  2701. .btn-warning:active,
  2702. .btn-warning.active {
  2703. background-color: #c67605 \9;
  2704. }
  2705. .btn-danger {
  2706. color: #ffffff;
  2707. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2708. background-color: #da4f49;
  2709. *background-color: #bd362f;
  2710. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  2711. background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  2712. background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  2713. background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  2714. background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  2715. background-repeat: repeat-x;
  2716. border-color: #bd362f #bd362f #802420;
  2717. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2718. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
  2719. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2720. }
  2721. .btn-danger:hover,
  2722. .btn-danger:active,
  2723. .btn-danger.active,
  2724. .btn-danger.disabled,
  2725. .btn-danger[disabled] {
  2726. color: #ffffff;
  2727. background-color: #bd362f;
  2728. *background-color: #a9302a;
  2729. }
  2730. .btn-danger:active,
  2731. .btn-danger.active {
  2732. background-color: #942a25 \9;
  2733. }
  2734. .btn-success {
  2735. color: #ffffff;
  2736. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2737. background-color: #5bb75b;
  2738. *background-color: #51a351;
  2739. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  2740. background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  2741. background-image: -o-linear-gradient(top, #62c462, #51a351);
  2742. background-image: linear-gradient(to bottom, #62c462, #51a351);
  2743. background-image: -moz-linear-gradient(top, #62c462, #51a351);
  2744. background-repeat: repeat-x;
  2745. border-color: #51a351 #51a351 #387038;
  2746. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2747. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  2748. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2749. }
  2750. .btn-success:hover,
  2751. .btn-success:active,
  2752. .btn-success.active,
  2753. .btn-success.disabled,
  2754. .btn-success[disabled] {
  2755. color: #ffffff;
  2756. background-color: #51a351;
  2757. *background-color: #499249;
  2758. }
  2759. .btn-success:active,
  2760. .btn-success.active {
  2761. background-color: #408140 \9;
  2762. }
  2763. .btn-info {
  2764. color: #ffffff;
  2765. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2766. background-color: #49afcd;
  2767. *background-color: #2f96b4;
  2768. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  2769. background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  2770. background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  2771. background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  2772. background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  2773. background-repeat: repeat-x;
  2774. border-color: #2f96b4 #2f96b4 #1f6377;
  2775. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2776. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
  2777. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2778. }
  2779. .btn-info:hover,
  2780. .btn-info:active,
  2781. .btn-info.active,
  2782. .btn-info.disabled,
  2783. .btn-info[disabled] {
  2784. color: #ffffff;
  2785. background-color: #2f96b4;
  2786. *background-color: #2a85a0;
  2787. }
  2788. .btn-info:active,
  2789. .btn-info.active {
  2790. background-color: #24748c \9;
  2791. }
  2792. .btn-inverse {
  2793. color: #ffffff;
  2794. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  2795. background-color: #363636;
  2796. *background-color: #222222;
  2797. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
  2798. background-image: -webkit-linear-gradient(top, #444444, #222222);
  2799. background-image: -o-linear-gradient(top, #444444, #222222);
  2800. background-image: linear-gradient(to bottom, #444444, #222222);
  2801. background-image: -moz-linear-gradient(top, #444444, #222222);
  2802. background-repeat: repeat-x;
  2803. border-color: #222222 #222222 #000000;
  2804. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  2805. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
  2806. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  2807. }
  2808. .btn-inverse:hover,
  2809. .btn-inverse:active,
  2810. .btn-inverse.active,
  2811. .btn-inverse.disabled,
  2812. .btn-inverse[disabled] {
  2813. color: #ffffff;
  2814. background-color: #222222;
  2815. *background-color: #151515;
  2816. }
  2817. .btn-inverse:active,
  2818. .btn-inverse.active {
  2819. background-color: #080808 \9;
  2820. }
  2821. button.btn,
  2822. input[type="submit"].btn {
  2823. *padding-top: 3px;
  2824. *padding-bottom: 3px;
  2825. }
  2826. button.btn::-moz-focus-inner,
  2827. input[type="submit"].btn::-moz-focus-inner {
  2828. padding: 0;
  2829. border: 0;
  2830. }
  2831. button.btn.btn-large,
  2832. input[type="submit"].btn.btn-large {
  2833. *padding-top: 7px;
  2834. *padding-bottom: 7px;
  2835. }
  2836. button.btn.btn-small,
  2837. input[type="submit"].btn.btn-small {
  2838. *padding-top: 3px;
  2839. *padding-bottom: 3px;
  2840. }
  2841. button.btn.btn-mini,
  2842. input[type="submit"].btn.btn-mini {
  2843. *padding-top: 1px;
  2844. *padding-bottom: 1px;
  2845. }
  2846. .btn-link,
  2847. .btn-link:active,
  2848. .btn-link[disabled] {
  2849. background-color: transparent;
  2850. background-image: none;
  2851. -webkit-box-shadow: none;
  2852. -moz-box-shadow: none;
  2853. box-shadow: none;
  2854. }
  2855. .btn-link {
  2856. color: #0088cc;
  2857. cursor: pointer;
  2858. border-color: transparent;
  2859. -webkit-border-radius: 0;
  2860. -moz-border-radius: 0;
  2861. border-radius: 0;
  2862. }
  2863. .btn-link:hover {
  2864. color: #005580;
  2865. text-decoration: underline;
  2866. background-color: transparent;
  2867. }
  2868. .btn-link[disabled]:hover {
  2869. color: #333333;
  2870. text-decoration: none;
  2871. }
  2872. .btn-group {
  2873. position: relative;
  2874. *margin-left: .3em;
  2875. font-size: 0;
  2876. white-space: nowrap;
  2877. vertical-align: middle;
  2878. }
  2879. .btn-group:first-child {
  2880. *margin-left: 0;
  2881. }
  2882. .btn-group + .btn-group {
  2883. margin-left: 5px;
  2884. }
  2885. .btn-toolbar {
  2886. margin-top: 10px;
  2887. margin-bottom: 10px;
  2888. font-size: 0;
  2889. }
  2890. .btn-toolbar .btn-group {
  2891. display: inline-block;
  2892. *display: inline;
  2893. /* IE7 inline-block hack */
  2894. *zoom: 1;
  2895. }
  2896. .btn-toolbar .btn + .btn,
  2897. .btn-toolbar .btn-group + .btn,
  2898. .btn-toolbar .btn + .btn-group {
  2899. margin-left: 5px;
  2900. }
  2901. .btn-group > .btn {
  2902. position: relative;
  2903. -webkit-border-radius: 0;
  2904. -moz-border-radius: 0;
  2905. border-radius: 0;
  2906. }
  2907. .btn-group > .btn + .btn {
  2908. margin-left: -1px;
  2909. }
  2910. .btn-group > .btn,
  2911. .btn-group > .dropdown-menu {
  2912. font-size: 14px;
  2913. }
  2914. .btn-group > .btn-mini {
  2915. font-size: 11px;
  2916. }
  2917. .btn-group > .btn-small {
  2918. font-size: 12px;
  2919. }
  2920. .btn-group > .btn-large {
  2921. font-size: 16px;
  2922. }
  2923. .btn-group > .btn:first-child {
  2924. margin-left: 0;
  2925. -webkit-border-bottom-left-radius: 4px;
  2926. border-bottom-left-radius: 4px;
  2927. -webkit-border-top-left-radius: 4px;
  2928. border-top-left-radius: 4px;
  2929. -moz-border-radius-bottomleft: 4px;
  2930. -moz-border-radius-topleft: 4px;
  2931. }
  2932. .btn-group > .btn:last-child,
  2933. .btn-group > .dropdown-toggle {
  2934. -webkit-border-top-right-radius: 4px;
  2935. border-top-right-radius: 4px;
  2936. -webkit-border-bottom-right-radius: 4px;
  2937. border-bottom-right-radius: 4px;
  2938. -moz-border-radius-topright: 4px;
  2939. -moz-border-radius-bottomright: 4px;
  2940. }
  2941. .btn-group > .btn.large:first-child {
  2942. margin-left: 0;
  2943. -webkit-border-bottom-left-radius: 6px;
  2944. border-bottom-left-radius: 6px;
  2945. -webkit-border-top-left-radius: 6px;
  2946. border-top-left-radius: 6px;
  2947. -moz-border-radius-bottomleft: 6px;
  2948. -moz-border-radius-topleft: 6px;
  2949. }
  2950. .btn-group > .btn.large:last-child,
  2951. .btn-group > .large.dropdown-toggle {
  2952. -webkit-border-top-right-radius: 6px;
  2953. border-top-right-radius: 6px;
  2954. -webkit-border-bottom-right-radius: 6px;
  2955. border-bottom-right-radius: 6px;
  2956. -moz-border-radius-topright: 6px;
  2957. -moz-border-radius-bottomright: 6px;
  2958. }
  2959. .btn-group > .btn:hover,
  2960. .btn-group > .btn:focus,
  2961. .btn-group > .btn:active,
  2962. .btn-group > .btn.active {
  2963. z-index: 2;
  2964. }
  2965. .btn-group .dropdown-toggle:active,
  2966. .btn-group.open .dropdown-toggle {
  2967. outline: 0;
  2968. }
  2969. .btn-group > .btn + .dropdown-toggle {
  2970. *padding-top: 5px;
  2971. padding-right: 8px;
  2972. *padding-bottom: 5px;
  2973. padding-left: 8px;
  2974. -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);
  2975. -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);
  2976. 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);
  2977. }
  2978. .btn-group > .btn-mini + .dropdown-toggle {
  2979. *padding-top: 2px;
  2980. padding-right: 5px;
  2981. *padding-bottom: 2px;
  2982. padding-left: 5px;
  2983. }
  2984. .btn-group > .btn-small + .dropdown-toggle {
  2985. *padding-top: 5px;
  2986. *padding-bottom: 4px;
  2987. }
  2988. .btn-group > .btn-large + .dropdown-toggle {
  2989. *padding-top: 7px;
  2990. padding-right: 12px;
  2991. *padding-bottom: 7px;
  2992. padding-left: 12px;
  2993. }
  2994. .btn-group.open .dropdown-toggle {
  2995. background-image: none;
  2996. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2997. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2998. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  2999. }
  3000. .btn-group.open .btn.dropdown-toggle {
  3001. background-color: #e6e6e6;
  3002. }
  3003. .btn-group.open .btn-primary.dropdown-toggle {
  3004. background-color: #0044cc;
  3005. }
  3006. .btn-group.open .btn-warning.dropdown-toggle {
  3007. background-color: #f89406;
  3008. }
  3009. .btn-group.open .btn-danger.dropdown-toggle {
  3010. background-color: #bd362f;
  3011. }
  3012. .btn-group.open .btn-success.dropdown-toggle {
  3013. background-color: #51a351;
  3014. }
  3015. .btn-group.open .btn-info.dropdown-toggle {
  3016. background-color: #2f96b4;
  3017. }
  3018. .btn-group.open .btn-inverse.dropdown-toggle {
  3019. background-color: #222222;
  3020. }
  3021. .btn .caret {
  3022. margin-top: 8px;
  3023. margin-left: 0;
  3024. }
  3025. .btn-mini .caret,
  3026. .btn-small .caret,
  3027. .btn-large .caret {
  3028. margin-top: 6px;
  3029. }
  3030. .btn-large .caret {
  3031. border-top-width: 5px;
  3032. border-right-width: 5px;
  3033. border-left-width: 5px;
  3034. }
  3035. .dropup .btn-large .caret {
  3036. border-top: 0;
  3037. border-bottom: 5px solid #000000;
  3038. }
  3039. .btn-primary .caret,
  3040. .btn-warning .caret,
  3041. .btn-danger .caret,
  3042. .btn-info .caret,
  3043. .btn-success .caret,
  3044. .btn-inverse .caret {
  3045. border-top-color: #ffffff;
  3046. border-bottom-color: #ffffff;
  3047. }
  3048. .btn-group-vertical {
  3049. display: inline-block;
  3050. *display: inline;
  3051. /* IE7 inline-block hack */
  3052. *zoom: 1;
  3053. }
  3054. .btn-group-vertical .btn {
  3055. display: block;
  3056. float: none;
  3057. width: 100%;
  3058. -webkit-border-radius: 0;
  3059. -moz-border-radius: 0;
  3060. border-radius: 0;
  3061. }
  3062. .btn-group-vertical .btn + .btn {
  3063. margin-top: -1px;
  3064. margin-left: 0;
  3065. }
  3066. .btn-group-vertical .btn:first-child {
  3067. -webkit-border-radius: 4px 4px 0 0;
  3068. -moz-border-radius: 4px 4px 0 0;
  3069. border-radius: 4px 4px 0 0;
  3070. }
  3071. .btn-group-vertical .btn:last-child {
  3072. -webkit-border-radius: 0 0 4px 4px;
  3073. -moz-border-radius: 0 0 4px 4px;
  3074. border-radius: 0 0 4px 4px;
  3075. }
  3076. .btn-group-vertical .btn-large:first-child {
  3077. -webkit-border-radius: 6px 6px 0 0;
  3078. -moz-border-radius: 6px 6px 0 0;
  3079. border-radius: 6px 6px 0 0;
  3080. }
  3081. .btn-group-vertical .btn-large:last-child {
  3082. -webkit-border-radius: 0 0 6px 6px;
  3083. -moz-border-radius: 0 0 6px 6px;
  3084. border-radius: 0 0 6px 6px;
  3085. }
  3086. .alert {
  3087. padding: 8px 35px 8px 14px;
  3088. margin-bottom: 20px;
  3089. color: #c09853;
  3090. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  3091. background-color: #fcf8e3;
  3092. border: 1px solid #fbeed5;
  3093. -webkit-border-radius: 4px;
  3094. -moz-border-radius: 4px;
  3095. border-radius: 4px;
  3096. }
  3097. .alert h4 {
  3098. margin: 0;
  3099. }
  3100. .alert .close {
  3101. position: relative;
  3102. top: -2px;
  3103. right: -21px;
  3104. line-height: 20px;
  3105. }
  3106. .alert-success {
  3107. color: #468847;
  3108. background-color: #dff0d8;
  3109. border-color: #d6e9c6;
  3110. }
  3111. .alert-danger,
  3112. .alert-error {
  3113. color: #b94a48;
  3114. background-color: #f2dede;
  3115. border-color: #eed3d7;
  3116. }
  3117. .alert-info {
  3118. color: #3a87ad;
  3119. background-color: #d9edf7;
  3120. border-color: #bce8f1;
  3121. }
  3122. .alert-block {
  3123. padding-top: 14px;
  3124. padding-bottom: 14px;
  3125. }
  3126. .alert-block > p,
  3127. .alert-block > ul {
  3128. margin-bottom: 0;
  3129. }
  3130. .alert-block p + p {
  3131. margin-top: 5px;
  3132. }
  3133. .nav {
  3134. margin-bottom: 20px;
  3135. margin-left: 0;
  3136. list-style: none;
  3137. }
  3138. .nav > li > a {
  3139. display: block;
  3140. }
  3141. .nav > li > a:hover {
  3142. text-decoration: none;
  3143. background-color: #eeeeee;
  3144. }
  3145. .nav > .pull-right {
  3146. float: right;
  3147. }
  3148. .nav-header {
  3149. display: block;
  3150. padding: 3px 15px;
  3151. font-size: 11px;
  3152. font-weight: bold;
  3153. line-height: 20px;
  3154. color: #999999;
  3155. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  3156. text-transform: uppercase;
  3157. }
  3158. .nav li + .nav-header {
  3159. margin-top: 9px;
  3160. }
  3161. .nav-list {
  3162. padding-right: 15px;
  3163. padding-left: 15px;
  3164. margin-bottom: 0;
  3165. }
  3166. .nav-list > li > a,
  3167. .nav-list .nav-header {
  3168. margin-right: -15px;
  3169. margin-left: -15px;
  3170. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  3171. }
  3172. .nav-list > li > a {
  3173. padding: 3px 15px;
  3174. }
  3175. .nav-list > .active > a,
  3176. .nav-list > .active > a:hover {
  3177. color: #ffffff;
  3178. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  3179. background-color: #0088cc;
  3180. }
  3181. .nav-list [class^="icon-"] {
  3182. margin-right: 2px;
  3183. }
  3184. .nav-list .divider {
  3185. *width: 100%;
  3186. height: 1px;
  3187. margin: 9px 1px;
  3188. *margin: -5px 0 5px;
  3189. overflow: hidden;
  3190. background-color: #e5e5e5;
  3191. border-bottom: 1px solid #ffffff;
  3192. }
  3193. .nav-tabs,
  3194. .nav-pills {
  3195. *zoom: 1;
  3196. }
  3197. .nav-tabs:before,
  3198. .nav-pills:before,
  3199. .nav-tabs:after,
  3200. .nav-pills:after {
  3201. display: table;
  3202. line-height: 0;
  3203. content: "";
  3204. }
  3205. .nav-tabs:after,
  3206. .nav-pills:after {
  3207. clear: both;
  3208. }
  3209. .nav-tabs > li,
  3210. .nav-pills > li {
  3211. float: left;
  3212. }
  3213. .nav-tabs > li > a,
  3214. .nav-pills > li > a {
  3215. padding-right: 12px;
  3216. padding-left: 12px;
  3217. margin-right: 2px;
  3218. line-height: 14px;
  3219. }
  3220. .nav-tabs {
  3221. border-bottom: 1px solid #ddd;
  3222. }
  3223. .nav-tabs > li {
  3224. margin-bottom: -1px;
  3225. }
  3226. .nav-tabs > li > a {
  3227. padding-top: 8px;
  3228. padding-bottom: 8px;
  3229. line-height: 20px;
  3230. border: 1px solid transparent;
  3231. -webkit-border-radius: 4px 4px 0 0;
  3232. -moz-border-radius: 4px 4px 0 0;
  3233. border-radius: 4px 4px 0 0;
  3234. }
  3235. .nav-tabs > li > a:hover {
  3236. border-color: #eeeeee #eeeeee #dddddd;
  3237. }
  3238. .nav-tabs > .active > a,
  3239. .nav-tabs > .active > a:hover {
  3240. color: #555555;
  3241. cursor: default;
  3242. background-color: #ffffff;
  3243. border: 1px solid #ddd;
  3244. border-bottom-color: transparent;
  3245. }
  3246. .nav-pills > li > a {
  3247. padding-top: 8px;
  3248. padding-bottom: 8px;
  3249. margin-top: 2px;
  3250. margin-bottom: 2px;
  3251. -webkit-border-radius: 5px;
  3252. -moz-border-radius: 5px;
  3253. border-radius: 5px;
  3254. }
  3255. .nav-pills > .active > a,
  3256. .nav-pills > .active > a:hover {
  3257. color: #ffffff;
  3258. background-color: #0088cc;
  3259. }
  3260. .nav-stacked > li {
  3261. float: none;
  3262. }
  3263. .nav-stacked > li > a {
  3264. margin-right: 0;
  3265. }
  3266. .nav-tabs.nav-stacked {
  3267. border-bottom: 0;
  3268. }
  3269. .nav-tabs.nav-stacked > li > a {
  3270. border: 1px solid #ddd;
  3271. -webkit-border-radius: 0;
  3272. -moz-border-radius: 0;
  3273. border-radius: 0;
  3274. }
  3275. .nav-tabs.nav-stacked > li:first-child > a {
  3276. -webkit-border-top-right-radius: 4px;
  3277. border-top-right-radius: 4px;
  3278. -webkit-border-top-left-radius: 4px;
  3279. border-top-left-radius: 4px;
  3280. -moz-border-radius-topright: 4px;
  3281. -moz-border-radius-topleft: 4px;
  3282. }
  3283. .nav-tabs.nav-stacked > li:last-child > a {
  3284. -webkit-border-bottom-right-radius: 4px;
  3285. border-bottom-right-radius: 4px;
  3286. -webkit-border-bottom-left-radius: 4px;
  3287. border-bottom-left-radius: 4px;
  3288. -moz-border-radius-bottomright: 4px;
  3289. -moz-border-radius-bottomleft: 4px;
  3290. }
  3291. .nav-tabs.nav-stacked > li > a:hover {
  3292. z-index: 2;
  3293. border-color: #ddd;
  3294. }
  3295. .nav-pills.nav-stacked > li > a {
  3296. margin-bottom: 3px;
  3297. }
  3298. .nav-pills.nav-stacked > li:last-child > a {
  3299. margin-bottom: 1px;
  3300. }
  3301. .nav-tabs .dropdown-menu {
  3302. -webkit-border-radius: 0 0 6px 6px;
  3303. -moz-border-radius: 0 0 6px 6px;
  3304. border-radius: 0 0 6px 6px;
  3305. }
  3306. .nav-pills .dropdown-menu {
  3307. -webkit-border-radius: 6px;
  3308. -moz-border-radius: 6px;
  3309. border-radius: 6px;
  3310. }
  3311. .nav .dropdown-toggle .caret {
  3312. margin-top: 6px;
  3313. border-top-color: #0088cc;
  3314. border-bottom-color: #0088cc;
  3315. }
  3316. .nav .dropdown-toggle:hover .caret {
  3317. border-top-color: #005580;
  3318. border-bottom-color: #005580;
  3319. }
  3320. /* move down carets for tabs */
  3321. .nav-tabs .dropdown-toggle .caret {
  3322. margin-top: 8px;
  3323. }
  3324. .nav .active .dropdown-toggle .caret {
  3325. border-top-color: #fff;
  3326. border-bottom-color: #fff;
  3327. }
  3328. .nav-tabs .active .dropdown-toggle .caret {
  3329. border-top-color: #555555;
  3330. border-bottom-color: #555555;
  3331. }
  3332. .nav > .dropdown.active > a:hover {
  3333. cursor: pointer;
  3334. }
  3335. .nav-tabs .open .dropdown-toggle,
  3336. .nav-pills .open .dropdown-toggle,
  3337. .nav > li.dropdown.open.active > a:hover {
  3338. color: #ffffff;
  3339. background-color: #999999;
  3340. border-color: #999999;
  3341. }
  3342. .nav li.dropdown.open .caret,
  3343. .nav li.dropdown.open.active .caret,
  3344. .nav li.dropdown.open a:hover .caret {
  3345. border-top-color: #ffffff;
  3346. border-bottom-color: #ffffff;
  3347. opacity: 1;
  3348. filter: alpha(opacity=100);
  3349. }
  3350. .tabs-stacked .open > a:hover {
  3351. border-color: #999999;
  3352. }
  3353. .tabbable {
  3354. *zoom: 1;
  3355. }
  3356. .tabbable:before,
  3357. .tabbable:after {
  3358. display: table;
  3359. line-height: 0;
  3360. content: "";
  3361. }
  3362. .tabbable:after {
  3363. clear: both;
  3364. }
  3365. .tab-content {
  3366. overflow: auto;
  3367. }
  3368. .tabs-below > .nav-tabs,
  3369. .tabs-right > .nav-tabs,
  3370. .tabs-left > .nav-tabs {
  3371. border-bottom: 0;
  3372. }
  3373. .tab-content > .tab-pane,
  3374. .pill-content > .pill-pane {
  3375. display: none;
  3376. }
  3377. .tab-content > .active,
  3378. .pill-content > .active {
  3379. display: block;
  3380. }
  3381. .tabs-below > .nav-tabs {
  3382. border-top: 1px solid #ddd;
  3383. }
  3384. .tabs-below > .nav-tabs > li {
  3385. margin-top: -1px;
  3386. margin-bottom: 0;
  3387. }
  3388. .tabs-below > .nav-tabs > li > a {
  3389. -webkit-border-radius: 0 0 4px 4px;
  3390. -moz-border-radius: 0 0 4px 4px;
  3391. border-radius: 0 0 4px 4px;
  3392. }
  3393. .tabs-below > .nav-tabs > li > a:hover {
  3394. border-top-color: #ddd;
  3395. border-bottom-color: transparent;
  3396. }
  3397. .tabs-below > .nav-tabs > .active > a,
  3398. .tabs-below > .nav-tabs > .active > a:hover {
  3399. border-color: transparent #ddd #ddd #ddd;
  3400. }
  3401. .tabs-left > .nav-tabs > li,
  3402. .tabs-right > .nav-tabs > li {
  3403. float: none;
  3404. }
  3405. .tabs-left > .nav-tabs > li > a,
  3406. .tabs-right > .nav-tabs > li > a {
  3407. min-width: 74px;
  3408. margin-right: 0;
  3409. margin-bottom: 3px;
  3410. }
  3411. .tabs-left > .nav-tabs {
  3412. float: left;
  3413. margin-right: 19px;
  3414. border-right: 1px solid #ddd;
  3415. }
  3416. .tabs-left > .nav-tabs > li > a {
  3417. margin-right: -1px;
  3418. -webkit-border-radius: 4px 0 0 4px;
  3419. -moz-border-radius: 4px 0 0 4px;
  3420. border-radius: 4px 0 0 4px;
  3421. }
  3422. .tabs-left > .nav-tabs > li > a:hover {
  3423. border-color: #eeeeee #dddddd #eeeeee #eeeeee;
  3424. }
  3425. .tabs-left > .nav-tabs .active > a,
  3426. .tabs-left > .nav-tabs .active > a:hover {
  3427. border-color: #ddd transparent #ddd #ddd;
  3428. *border-right-color: #ffffff;
  3429. }
  3430. .tabs-right > .nav-tabs {
  3431. float: right;
  3432. margin-left: 19px;
  3433. border-left: 1px solid #ddd;
  3434. }
  3435. .tabs-right > .nav-tabs > li > a {
  3436. margin-left: -1px;
  3437. -webkit-border-radius: 0 4px 4px 0;
  3438. -moz-border-radius: 0 4px 4px 0;
  3439. border-radius: 0 4px 4px 0;
  3440. }
  3441. .tabs-right > .nav-tabs > li > a:hover {
  3442. border-color: #eeeeee #eeeeee #eeeeee #dddddd;
  3443. }
  3444. .tabs-right > .nav-tabs .active > a,
  3445. .tabs-right > .nav-tabs .active > a:hover {
  3446. border-color: #ddd #ddd #ddd transparent;
  3447. *border-left-color: #ffffff;
  3448. }
  3449. .nav > .disabled > a {
  3450. color: #999999;
  3451. }
  3452. .nav > .disabled > a:hover {
  3453. text-decoration: none;
  3454. cursor: default;
  3455. background-color: transparent;
  3456. }
  3457. .navbar {
  3458. *position: relative;
  3459. *z-index: 2;
  3460. margin-bottom: 20px;
  3461. overflow: visible;
  3462. color: #777777;
  3463. }
  3464. .navbar-inner {
  3465. min-height: 40px;
  3466. padding-right: 20px;
  3467. padding-left: 20px;
  3468. background-color: #fafafa;
  3469. background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
  3470. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
  3471. background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
  3472. background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
  3473. background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
  3474. background-repeat: repeat-x;
  3475. border: 1px solid #d4d4d4;
  3476. -webkit-border-radius: 4px;
  3477. -moz-border-radius: 4px;
  3478. border-radius: 4px;
  3479. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
  3480. *zoom: 1;
  3481. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  3482. -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  3483. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  3484. }
  3485. .navbar-inner:before,
  3486. .navbar-inner:after {
  3487. display: table;
  3488. line-height: 0;
  3489. content: "";
  3490. }
  3491. .navbar-inner:after {
  3492. clear: both;
  3493. }
  3494. .navbar .container {
  3495. width: auto;
  3496. }
  3497. .nav-collapse.collapse {
  3498. height: auto;
  3499. }
  3500. .navbar .brand {
  3501. display: block;
  3502. float: left;
  3503. padding: 10px 20px 10px;
  3504. margin-left: -20px;
  3505. font-size: 20px;
  3506. font-weight: 200;
  3507. color: #777777;
  3508. text-shadow: 0 1px 0 #ffffff;
  3509. }
  3510. .navbar .brand:hover {
  3511. text-decoration: none;
  3512. }
  3513. .navbar-text {
  3514. margin-bottom: 0;
  3515. line-height: 40px;
  3516. }
  3517. .navbar-link {
  3518. color: #777777;
  3519. }
  3520. .navbar-link:hover {
  3521. color: #333333;
  3522. }
  3523. .navbar .divider-vertical {
  3524. height: 40px;
  3525. margin: 0 9px;
  3526. border-right: 1px solid #ffffff;
  3527. border-left: 1px solid #f2f2f2;
  3528. }
  3529. .navbar .btn,
  3530. .navbar .btn-group {
  3531. margin-top: 5px;
  3532. }
  3533. .navbar .btn-group .btn,
  3534. .navbar .input-prepend .btn,
  3535. .navbar .input-append .btn {
  3536. margin-top: 0;
  3537. }
  3538. .navbar-form {
  3539. margin-bottom: 0;
  3540. *zoom: 1;
  3541. }
  3542. .navbar-form:before,
  3543. .navbar-form:after {
  3544. display: table;
  3545. line-height: 0;
  3546. content: "";
  3547. }
  3548. .navbar-form:after {
  3549. clear: both;
  3550. }
  3551. .navbar-form input,
  3552. .navbar-form select,
  3553. .navbar-form .radio,
  3554. .navbar-form .checkbox {
  3555. margin-top: 5px;
  3556. }
  3557. .navbar-form input,
  3558. .navbar-form select,
  3559. .navbar-form .btn {
  3560. display: inline-block;
  3561. margin-bottom: 0;
  3562. }
  3563. .navbar-form input[type="image"],
  3564. .navbar-form input[type="checkbox"],
  3565. .navbar-form input[type="radio"] {
  3566. margin-top: 3px;
  3567. }
  3568. .navbar-form .input-append,
  3569. .navbar-form .input-prepend {
  3570. margin-top: 6px;
  3571. white-space: nowrap;
  3572. }
  3573. .navbar-form .input-append input,
  3574. .navbar-form .input-prepend input {
  3575. margin-top: 0;
  3576. }
  3577. .navbar-search {
  3578. position: relative;
  3579. float: left;
  3580. margin-top: 5px;
  3581. margin-bottom: 0;
  3582. }
  3583. .navbar-search .search-query {
  3584. padding: 4px 14px;
  3585. margin-bottom: 0;
  3586. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  3587. font-size: 13px;
  3588. font-weight: normal;
  3589. line-height: 1;
  3590. -webkit-border-radius: 15px;
  3591. -moz-border-radius: 15px;
  3592. border-radius: 15px;
  3593. }
  3594. .navbar-static-top {
  3595. position: static;
  3596. width: 100%;
  3597. margin-bottom: 0;
  3598. }
  3599. .navbar-static-top .navbar-inner {
  3600. -webkit-border-radius: 0;
  3601. -moz-border-radius: 0;
  3602. border-radius: 0;
  3603. }
  3604. .navbar-fixed-top,
  3605. .navbar-fixed-bottom {
  3606. position: fixed;
  3607. right: 0;
  3608. left: 0;
  3609. z-index: 1030;
  3610. margin-bottom: 0;
  3611. }
  3612. .navbar-fixed-top .navbar-inner,
  3613. .navbar-static-top .navbar-inner {
  3614. border-width: 0 0 1px;
  3615. }
  3616. .navbar-fixed-bottom .navbar-inner {
  3617. border-width: 1px 0 0;
  3618. }
  3619. .navbar-fixed-top .navbar-inner,
  3620. .navbar-fixed-bottom .navbar-inner {
  3621. padding-right: 0;
  3622. padding-left: 0;
  3623. -webkit-border-radius: 0;
  3624. -moz-border-radius: 0;
  3625. border-radius: 0;
  3626. }
  3627. .navbar-static-top .container,
  3628. .navbar-fixed-top .container,
  3629. .navbar-fixed-bottom .container {
  3630. width: 940px;
  3631. }
  3632. .navbar-fixed-top {
  3633. top: 0;
  3634. }
  3635. .navbar-fixed-top .navbar-inner,
  3636. .navbar-static-top .navbar-inner {
  3637. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  3638. -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  3639. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 1px 10px rgba(0, 0, 0, 0.1);
  3640. }
  3641. .navbar-fixed-bottom {
  3642. bottom: 0;
  3643. }
  3644. .navbar-fixed-bottom .navbar-inner {
  3645. -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
  3646. -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
  3647. box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 -1px 10px rgba(0, 0, 0, 0.1);
  3648. }
  3649. .navbar .nav {
  3650. position: relative;
  3651. left: 0;
  3652. display: block;
  3653. float: left;
  3654. margin: 0 10px 0 0;
  3655. }
  3656. .navbar .nav.pull-right {
  3657. float: right;
  3658. margin-right: 0;
  3659. }
  3660. .navbar .nav > li {
  3661. float: left;
  3662. }
  3663. .navbar .nav > li > a {
  3664. float: none;
  3665. padding: 10px 15px 10px;
  3666. color: #777777;
  3667. text-decoration: none;
  3668. text-shadow: 0 1px 0 #ffffff;
  3669. }
  3670. .navbar .nav .dropdown-toggle .caret {
  3671. margin-top: 8px;
  3672. }
  3673. .navbar .nav > li > a:focus,
  3674. .navbar .nav > li > a:hover {
  3675. color: #333333;
  3676. text-decoration: none;
  3677. background-color: transparent;
  3678. }
  3679. .navbar .nav > .active > a,
  3680. .navbar .nav > .active > a:hover,
  3681. .navbar .nav > .active > a:focus {
  3682. color: #555555;
  3683. text-decoration: none;
  3684. background-color: #e5e5e5;
  3685. -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3686. -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3687. box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  3688. }
  3689. .navbar .btn-navbar {
  3690. display: none;
  3691. float: right;
  3692. padding: 7px 10px;
  3693. margin-right: 5px;
  3694. margin-left: 5px;
  3695. color: #ffffff;
  3696. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3697. background-color: #ededed;
  3698. *background-color: #e5e5e5;
  3699. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
  3700. background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
  3701. background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
  3702. background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
  3703. background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
  3704. background-repeat: repeat-x;
  3705. border-color: #e5e5e5 #e5e5e5 #bfbfbf;
  3706. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  3707. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
  3708. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  3709. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  3710. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  3711. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  3712. }
  3713. .navbar .btn-navbar:hover,
  3714. .navbar .btn-navbar:active,
  3715. .navbar .btn-navbar.active,
  3716. .navbar .btn-navbar.disabled,
  3717. .navbar .btn-navbar[disabled] {
  3718. color: #ffffff;
  3719. background-color: #e5e5e5;
  3720. *background-color: #d9d9d9;
  3721. }
  3722. .navbar .btn-navbar:active,
  3723. .navbar .btn-navbar.active {
  3724. background-color: #cccccc \9;
  3725. }
  3726. .navbar .btn-navbar .icon-bar {
  3727. display: block;
  3728. width: 18px;
  3729. height: 2px;
  3730. background-color: #f5f5f5;
  3731. -webkit-border-radius: 1px;
  3732. -moz-border-radius: 1px;
  3733. border-radius: 1px;
  3734. -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  3735. -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  3736. box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  3737. }
  3738. .btn-navbar .icon-bar + .icon-bar {
  3739. margin-top: 3px;
  3740. }
  3741. .navbar .nav > li > .dropdown-menu:before {
  3742. position: absolute;
  3743. top: -7px;
  3744. left: 9px;
  3745. display: inline-block;
  3746. border-right: 7px solid transparent;
  3747. border-bottom: 7px solid #ccc;
  3748. border-left: 7px solid transparent;
  3749. border-bottom-color: rgba(0, 0, 0, 0.2);
  3750. content: '';
  3751. }
  3752. .navbar .nav > li > .dropdown-menu:after {
  3753. position: absolute;
  3754. top: -6px;
  3755. left: 10px;
  3756. display: inline-block;
  3757. border-right: 6px solid transparent;
  3758. border-bottom: 6px solid #ffffff;
  3759. border-left: 6px solid transparent;
  3760. content: '';
  3761. }
  3762. .navbar-fixed-bottom .nav > li > .dropdown-menu:before {
  3763. top: auto;
  3764. bottom: -7px;
  3765. border-top: 7px solid #ccc;
  3766. border-bottom: 0;
  3767. border-top-color: rgba(0, 0, 0, 0.2);
  3768. }
  3769. .navbar-fixed-bottom .nav > li > .dropdown-menu:after {
  3770. top: auto;
  3771. bottom: -6px;
  3772. border-top: 6px solid #ffffff;
  3773. border-bottom: 0;
  3774. }
  3775. .navbar .nav li.dropdown.open > .dropdown-toggle,
  3776. .navbar .nav li.dropdown.active > .dropdown-toggle,
  3777. .navbar .nav li.dropdown.open.active > .dropdown-toggle {
  3778. color: #555555;
  3779. background-color: #e5e5e5;
  3780. }
  3781. .navbar .nav li.dropdown > .dropdown-toggle .caret {
  3782. border-top-color: #777777;
  3783. border-bottom-color: #777777;
  3784. }
  3785. .navbar .nav li.dropdown.open > .dropdown-toggle .caret,
  3786. .navbar .nav li.dropdown.active > .dropdown-toggle .caret,
  3787. .navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
  3788. border-top-color: #555555;
  3789. border-bottom-color: #555555;
  3790. }
  3791. .navbar .pull-right > li > .dropdown-menu,
  3792. .navbar .nav > li > .dropdown-menu.pull-right {
  3793. right: 0;
  3794. left: auto;
  3795. }
  3796. .navbar .pull-right > li > .dropdown-menu:before,
  3797. .navbar .nav > li > .dropdown-menu.pull-right:before {
  3798. right: 12px;
  3799. left: auto;
  3800. }
  3801. .navbar .pull-right > li > .dropdown-menu:after,
  3802. .navbar .nav > li > .dropdown-menu.pull-right:after {
  3803. right: 13px;
  3804. left: auto;
  3805. }
  3806. .navbar .pull-right > li > .dropdown-menu .dropdown-menu,
  3807. .navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
  3808. right: 100%;
  3809. left: auto;
  3810. margin-right: -1px;
  3811. margin-left: 0;
  3812. -webkit-border-radius: 6px 0 6px 6px;
  3813. -moz-border-radius: 6px 0 6px 6px;
  3814. border-radius: 6px 0 6px 6px;
  3815. }
  3816. .navbar-inverse {
  3817. color: #999999;
  3818. }
  3819. .navbar-inverse .navbar-inner {
  3820. background-color: #1b1b1b;
  3821. background-image: -moz-linear-gradient(top, #222222, #111111);
  3822. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
  3823. background-image: -webkit-linear-gradient(top, #222222, #111111);
  3824. background-image: -o-linear-gradient(top, #222222, #111111);
  3825. background-image: linear-gradient(to bottom, #222222, #111111);
  3826. background-repeat: repeat-x;
  3827. border-color: #252525;
  3828. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
  3829. }
  3830. .navbar-inverse .brand,
  3831. .navbar-inverse .nav > li > a {
  3832. color: #999999;
  3833. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3834. }
  3835. .navbar-inverse .brand:hover,
  3836. .navbar-inverse .nav > li > a:hover {
  3837. color: #ffffff;
  3838. }
  3839. .navbar-inverse .nav > li > a:focus,
  3840. .navbar-inverse .nav > li > a:hover {
  3841. color: #ffffff;
  3842. background-color: transparent;
  3843. }
  3844. .navbar-inverse .nav .active > a,
  3845. .navbar-inverse .nav .active > a:hover,
  3846. .navbar-inverse .nav .active > a:focus {
  3847. color: #ffffff;
  3848. background-color: #111111;
  3849. }
  3850. .navbar-inverse .navbar-link {
  3851. color: #999999;
  3852. }
  3853. .navbar-inverse .navbar-link:hover {
  3854. color: #ffffff;
  3855. }
  3856. .navbar-inverse .divider-vertical {
  3857. border-right-color: #222222;
  3858. border-left-color: #111111;
  3859. }
  3860. .navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
  3861. .navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
  3862. .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  3863. color: #ffffff;
  3864. background-color: #111111;
  3865. }
  3866. .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  3867. border-top-color: #999999;
  3868. border-bottom-color: #999999;
  3869. }
  3870. .navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
  3871. .navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
  3872. .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
  3873. border-top-color: #ffffff;
  3874. border-bottom-color: #ffffff;
  3875. }
  3876. .navbar-inverse .navbar-search .search-query {
  3877. color: #ffffff;
  3878. background-color: #515151;
  3879. border-color: #111111;
  3880. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  3881. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  3882. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  3883. -webkit-transition: none;
  3884. -moz-transition: none;
  3885. -o-transition: none;
  3886. transition: none;
  3887. }
  3888. .navbar-inverse .navbar-search .search-query:-moz-placeholder {
  3889. color: #cccccc;
  3890. }
  3891. .navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
  3892. color: #cccccc;
  3893. }
  3894. .navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
  3895. color: #cccccc;
  3896. }
  3897. .navbar-inverse .navbar-search .search-query:focus,
  3898. .navbar-inverse .navbar-search .search-query.focused {
  3899. padding: 5px 15px;
  3900. color: #333333;
  3901. text-shadow: 0 1px 0 #ffffff;
  3902. background-color: #ffffff;
  3903. border: 0;
  3904. outline: 0;
  3905. -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  3906. -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  3907. box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  3908. }
  3909. .navbar-inverse .btn-navbar {
  3910. color: #ffffff;
  3911. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  3912. background-color: #0e0e0e;
  3913. *background-color: #040404;
  3914. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
  3915. background-image: -webkit-linear-gradient(top, #151515, #040404);
  3916. background-image: -o-linear-gradient(top, #151515, #040404);
  3917. background-image: linear-gradient(to bottom, #151515, #040404);
  3918. background-image: -moz-linear-gradient(top, #151515, #040404);
  3919. background-repeat: repeat-x;
  3920. border-color: #040404 #040404 #000000;
  3921. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  3922. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
  3923. filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  3924. }
  3925. .navbar-inverse .btn-navbar:hover,
  3926. .navbar-inverse .btn-navbar:active,
  3927. .navbar-inverse .btn-navbar.active,
  3928. .navbar-inverse .btn-navbar.disabled,
  3929. .navbar-inverse .btn-navbar[disabled] {
  3930. color: #ffffff;
  3931. background-color: #040404;
  3932. *background-color: #000000;
  3933. }
  3934. .navbar-inverse .btn-navbar:active,
  3935. .navbar-inverse .btn-navbar.active {
  3936. background-color: #000000 \9;
  3937. }
  3938. .breadcrumb {
  3939. padding: 8px 15px;
  3940. margin: 0 0 20px;
  3941. list-style: none;
  3942. background-color: #f5f5f5;
  3943. -webkit-border-radius: 4px;
  3944. -moz-border-radius: 4px;
  3945. border-radius: 4px;
  3946. }
  3947. .breadcrumb li {
  3948. display: inline-block;
  3949. *display: inline;
  3950. text-shadow: 0 1px 0 #ffffff;
  3951. *zoom: 1;
  3952. }
  3953. .breadcrumb .divider {
  3954. padding: 0 5px;
  3955. color: #ccc;
  3956. }
  3957. .breadcrumb .active {
  3958. color: #999999;
  3959. }
  3960. .pagination {
  3961. height: 40px;
  3962. margin: 20px 0;
  3963. }
  3964. .pagination ul {
  3965. display: inline-block;
  3966. *display: inline;
  3967. margin-bottom: 0;
  3968. margin-left: 0;
  3969. -webkit-border-radius: 3px;
  3970. -moz-border-radius: 3px;
  3971. border-radius: 3px;
  3972. *zoom: 1;
  3973. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3974. -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3975. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  3976. }
  3977. .pagination ul > li {
  3978. display: inline;
  3979. }
  3980. .pagination ul > li > a,
  3981. .pagination ul > li > span {
  3982. float: left;
  3983. padding: 0 14px;
  3984. line-height: 38px;
  3985. text-decoration: none;
  3986. background-color: #ffffff;
  3987. border: 1px solid #dddddd;
  3988. border-left-width: 0;
  3989. }
  3990. .pagination ul > li > a:hover,
  3991. .pagination ul > .active > a,
  3992. .pagination ul > .active > span {
  3993. background-color: #f5f5f5;
  3994. }
  3995. .pagination ul > .active > a,
  3996. .pagination ul > .active > span {
  3997. color: #999999;
  3998. cursor: default;
  3999. }
  4000. .pagination ul > .disabled > span,
  4001. .pagination ul > .disabled > a,
  4002. .pagination ul > .disabled > a:hover {
  4003. color: #999999;
  4004. cursor: default;
  4005. background-color: transparent;
  4006. }
  4007. .pagination ul > li:first-child > a,
  4008. .pagination ul > li:first-child > span {
  4009. border-left-width: 1px;
  4010. -webkit-border-radius: 3px 0 0 3px;
  4011. -moz-border-radius: 3px 0 0 3px;
  4012. border-radius: 3px 0 0 3px;
  4013. }
  4014. .pagination ul > li:last-child > a,
  4015. .pagination ul > li:last-child > span {
  4016. -webkit-border-radius: 0 3px 3px 0;
  4017. -moz-border-radius: 0 3px 3px 0;
  4018. border-radius: 0 3px 3px 0;
  4019. }
  4020. .pagination-centered {
  4021. text-align: center;
  4022. }
  4023. .pagination-right {
  4024. text-align: right;
  4025. }
  4026. .pager {
  4027. margin: 20px 0;
  4028. text-align: center;
  4029. list-style: none;
  4030. *zoom: 1;
  4031. }
  4032. .pager:before,
  4033. .pager:after {
  4034. display: table;
  4035. line-height: 0;
  4036. content: "";
  4037. }
  4038. .pager:after {
  4039. clear: both;
  4040. }
  4041. .pager li {
  4042. display: inline;
  4043. }
  4044. .pager a,
  4045. .pager span {
  4046. display: inline-block;
  4047. padding: 5px 14px;
  4048. background-color: #fff;
  4049. border: 1px solid #ddd;
  4050. -webkit-border-radius: 15px;
  4051. -moz-border-radius: 15px;
  4052. border-radius: 15px;
  4053. }
  4054. .pager a:hover {
  4055. text-decoration: none;
  4056. background-color: #f5f5f5;
  4057. }
  4058. .pager .next a,
  4059. .pager .next span {
  4060. float: right;
  4061. }
  4062. .pager .previous a {
  4063. float: left;
  4064. }
  4065. .pager .disabled a,
  4066. .pager .disabled a:hover,
  4067. .pager .disabled span {
  4068. color: #999999;
  4069. cursor: default;
  4070. background-color: #fff;
  4071. }
  4072. .modal-open .modal .dropdown-menu {
  4073. z-index: 2050;
  4074. }
  4075. .modal-open .modal .dropdown.open {
  4076. *z-index: 2050;
  4077. }
  4078. .modal-open .modal .popover {
  4079. z-index: 2060;
  4080. }
  4081. .modal-open .modal .tooltip {
  4082. z-index: 2080;
  4083. }
  4084. .modal-backdrop {
  4085. position: fixed;
  4086. top: 0;
  4087. right: 0;
  4088. bottom: 0;
  4089. left: 0;
  4090. z-index: 1040;
  4091. background-color: #000000;
  4092. }
  4093. .modal-backdrop.fade {
  4094. opacity: 0;
  4095. }
  4096. .modal-backdrop,
  4097. .modal-backdrop.fade.in {
  4098. opacity: 0.8;
  4099. filter: alpha(opacity=80);
  4100. }
  4101. .modal {
  4102. position: fixed;
  4103. top: 50%;
  4104. left: 50%;
  4105. z-index: 1050;
  4106. width: 560px;
  4107. margin: -250px 0 0 -280px;
  4108. overflow: auto;
  4109. background-color: #ffffff;
  4110. border: 1px solid #999;
  4111. border: 1px solid rgba(0, 0, 0, 0.3);
  4112. *border: 1px solid #999;
  4113. -webkit-border-radius: 6px;
  4114. -moz-border-radius: 6px;
  4115. border-radius: 6px;
  4116. -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  4117. -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  4118. box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  4119. -webkit-background-clip: padding-box;
  4120. -moz-background-clip: padding-box;
  4121. background-clip: padding-box;
  4122. }
  4123. .modal.fade {
  4124. top: -25%;
  4125. -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  4126. -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  4127. -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  4128. transition: opacity 0.3s linear, top 0.3s ease-out;
  4129. }
  4130. .modal.fade.in {
  4131. top: 50%;
  4132. }
  4133. .modal-header {
  4134. padding: 9px 15px;
  4135. border-bottom: 1px solid #eee;
  4136. }
  4137. .modal-header .close {
  4138. margin-top: 2px;
  4139. }
  4140. .modal-header h3 {
  4141. margin: 0;
  4142. line-height: 30px;
  4143. }
  4144. .modal-body {
  4145. max-height: 400px;
  4146. padding: 15px;
  4147. overflow-y: auto;
  4148. }
  4149. .modal-form {
  4150. margin-bottom: 0;
  4151. }
  4152. .modal-footer {
  4153. padding: 14px 15px 15px;
  4154. margin-bottom: 0;
  4155. text-align: right;
  4156. background-color: #f5f5f5;
  4157. border-top: 1px solid #ddd;
  4158. -webkit-border-radius: 0 0 6px 6px;
  4159. -moz-border-radius: 0 0 6px 6px;
  4160. border-radius: 0 0 6px 6px;
  4161. *zoom: 1;
  4162. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  4163. -moz-box-shadow: inset 0 1px 0 #ffffff;
  4164. box-shadow: inset 0 1px 0 #ffffff;
  4165. }
  4166. .modal-footer:before,
  4167. .modal-footer:after {
  4168. display: table;
  4169. line-height: 0;
  4170. content: "";
  4171. }
  4172. .modal-footer:after {
  4173. clear: both;
  4174. }
  4175. .modal-footer .btn + .btn {
  4176. margin-bottom: 0;
  4177. margin-left: 5px;
  4178. }
  4179. .modal-footer .btn-group .btn + .btn {
  4180. margin-left: -1px;
  4181. }
  4182. .tooltip {
  4183. position: absolute;
  4184. z-index: 1030;
  4185. display: block;
  4186. padding: 5px;
  4187. font-size: 11px;
  4188. opacity: 0;
  4189. filter: alpha(opacity=0);
  4190. visibility: visible;
  4191. }
  4192. .tooltip.in {
  4193. opacity: 0.8;
  4194. filter: alpha(opacity=80);
  4195. }
  4196. .tooltip.top {
  4197. margin-top: -3px;
  4198. }
  4199. .tooltip.right {
  4200. margin-left: 3px;
  4201. }
  4202. .tooltip.bottom {
  4203. margin-top: 3px;
  4204. }
  4205. .tooltip.left {
  4206. margin-left: -3px;
  4207. }
  4208. .tooltip-inner {
  4209. max-width: 200px;
  4210. padding: 3px 8px;
  4211. color: #ffffff;
  4212. text-align: center;
  4213. text-decoration: none;
  4214. background-color: #000000;
  4215. -webkit-border-radius: 4px;
  4216. -moz-border-radius: 4px;
  4217. border-radius: 4px;
  4218. }
  4219. .tooltip-arrow {
  4220. position: absolute;
  4221. width: 0;
  4222. height: 0;
  4223. border-color: transparent;
  4224. border-style: solid;
  4225. }
  4226. .tooltip.top .tooltip-arrow {
  4227. bottom: 0;
  4228. left: 50%;
  4229. margin-left: -5px;
  4230. border-top-color: #000000;
  4231. border-width: 5px 5px 0;
  4232. }
  4233. .tooltip.right .tooltip-arrow {
  4234. top: 50%;
  4235. left: 0;
  4236. margin-top: -5px;
  4237. border-right-color: #000000;
  4238. border-width: 5px 5px 5px 0;
  4239. }
  4240. .tooltip.left .tooltip-arrow {
  4241. top: 50%;
  4242. right: 0;
  4243. margin-top: -5px;
  4244. border-left-color: #000000;
  4245. border-width: 5px 0 5px 5px;
  4246. }
  4247. .tooltip.bottom .tooltip-arrow {
  4248. top: 0;
  4249. left: 50%;
  4250. margin-left: -5px;
  4251. border-bottom-color: #000000;
  4252. border-width: 0 5px 5px;
  4253. }
  4254. .popover {
  4255. position: absolute;
  4256. top: 0;
  4257. left: 0;
  4258. z-index: 1010;
  4259. display: none;
  4260. width: 236px;
  4261. padding: 1px;
  4262. background-color: #ffffff;
  4263. border: 1px solid #ccc;
  4264. border: 1px solid rgba(0, 0, 0, 0.2);
  4265. -webkit-border-radius: 6px;
  4266. -moz-border-radius: 6px;
  4267. border-radius: 6px;
  4268. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  4269. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  4270. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  4271. -webkit-background-clip: padding-box;
  4272. -moz-background-clip: padding;
  4273. background-clip: padding-box;
  4274. }
  4275. .popover.top {
  4276. margin-bottom: 10px;
  4277. }
  4278. .popover.right {
  4279. margin-left: 10px;
  4280. }
  4281. .popover.bottom {
  4282. margin-top: 10px;
  4283. }
  4284. .popover.left {
  4285. margin-right: 10px;
  4286. }
  4287. .popover-title {
  4288. padding: 8px 14px;
  4289. margin: 0;
  4290. font-size: 14px;
  4291. font-weight: normal;
  4292. line-height: 18px;
  4293. background-color: #f7f7f7;
  4294. border-bottom: 1px solid #ebebeb;
  4295. -webkit-border-radius: 5px 5px 0 0;
  4296. -moz-border-radius: 5px 5px 0 0;
  4297. border-radius: 5px 5px 0 0;
  4298. }
  4299. .popover-content {
  4300. padding: 9px 14px;
  4301. }
  4302. .popover-content p,
  4303. .popover-content ul,
  4304. .popover-content ol {
  4305. margin-bottom: 0;
  4306. }
  4307. .popover .arrow,
  4308. .popover .arrow:after {
  4309. position: absolute;
  4310. display: inline-block;
  4311. width: 0;
  4312. height: 0;
  4313. border-color: transparent;
  4314. border-style: solid;
  4315. }
  4316. .popover .arrow:after {
  4317. z-index: -1;
  4318. content: "";
  4319. }
  4320. .popover.top .arrow {
  4321. bottom: -10px;
  4322. left: 50%;
  4323. margin-left: -10px;
  4324. border-top-color: #ffffff;
  4325. border-width: 10px 10px 0;
  4326. }
  4327. .popover.top .arrow:after {
  4328. bottom: -1px;
  4329. left: -11px;
  4330. border-top-color: rgba(0, 0, 0, 0.25);
  4331. border-width: 11px 11px 0;
  4332. }
  4333. .popover.right .arrow {
  4334. top: 50%;
  4335. left: -10px;
  4336. margin-top: -10px;
  4337. border-right-color: #ffffff;
  4338. border-width: 10px 10px 10px 0;
  4339. }
  4340. .popover.right .arrow:after {
  4341. bottom: -11px;
  4342. left: -1px;
  4343. border-right-color: rgba(0, 0, 0, 0.25);
  4344. border-width: 11px 11px 11px 0;
  4345. }
  4346. .popover.bottom .arrow {
  4347. top: -10px;
  4348. left: 50%;
  4349. margin-left: -10px;
  4350. border-bottom-color: #ffffff;
  4351. border-width: 0 10px 10px;
  4352. }
  4353. .popover.bottom .arrow:after {
  4354. top: -1px;
  4355. left: -11px;
  4356. border-bottom-color: rgba(0, 0, 0, 0.25);
  4357. border-width: 0 11px 11px;
  4358. }
  4359. .popover.left .arrow {
  4360. top: 50%;
  4361. right: -10px;
  4362. margin-top: -10px;
  4363. border-left-color: #ffffff;
  4364. border-width: 10px 0 10px 10px;
  4365. }
  4366. .popover.left .arrow:after {
  4367. right: -1px;
  4368. bottom: -11px;
  4369. border-left-color: rgba(0, 0, 0, 0.25);
  4370. border-width: 11px 0 11px 11px;
  4371. }
  4372. .thumbnails {
  4373. margin-left: -20px;
  4374. list-style: none;
  4375. *zoom: 1;
  4376. }
  4377. .thumbnails:before,
  4378. .thumbnails:after {
  4379. display: table;
  4380. line-height: 0;
  4381. content: "";
  4382. }
  4383. .thumbnails:after {
  4384. clear: both;
  4385. }
  4386. .row-fluid .thumbnails {
  4387. margin-left: 0;
  4388. }
  4389. .thumbnails > li {
  4390. float: left;
  4391. margin-bottom: 20px;
  4392. margin-left: 20px;
  4393. }
  4394. .thumbnail {
  4395. display: block;
  4396. padding: 4px;
  4397. line-height: 20px;
  4398. border: 1px solid #ddd;
  4399. -webkit-border-radius: 4px;
  4400. -moz-border-radius: 4px;
  4401. border-radius: 4px;
  4402. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  4403. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  4404. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  4405. -webkit-transition: all 0.2s ease-in-out;
  4406. -moz-transition: all 0.2s ease-in-out;
  4407. -o-transition: all 0.2s ease-in-out;
  4408. transition: all 0.2s ease-in-out;
  4409. }
  4410. a.thumbnail:hover {
  4411. border-color: #0088cc;
  4412. -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  4413. -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  4414. box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  4415. }
  4416. .thumbnail > img {
  4417. display: block;
  4418. max-width: 100%;
  4419. margin-right: auto;
  4420. margin-left: auto;
  4421. }
  4422. .thumbnail .caption {
  4423. padding: 9px;
  4424. color: #555555;
  4425. }
  4426. .label,
  4427. .badge {
  4428. font-size: 11.844px;
  4429. font-weight: bold;
  4430. line-height: 14px;
  4431. color: #ffffff;
  4432. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  4433. white-space: nowrap;
  4434. vertical-align: baseline;
  4435. background-color: #999999;
  4436. }
  4437. .label {
  4438. padding: 1px 4px 2px;
  4439. -webkit-border-radius: 3px;
  4440. -moz-border-radius: 3px;
  4441. border-radius: 3px;
  4442. }
  4443. .badge {
  4444. padding: 1px 9px 2px;
  4445. -webkit-border-radius: 9px;
  4446. -moz-border-radius: 9px;
  4447. border-radius: 9px;
  4448. }
  4449. a.label:hover,
  4450. a.badge:hover {
  4451. color: #ffffff;
  4452. text-decoration: none;
  4453. cursor: pointer;
  4454. }
  4455. .label-important,
  4456. .badge-important {
  4457. background-color: #b94a48;
  4458. }
  4459. .label-important[href],
  4460. .badge-important[href] {
  4461. background-color: #953b39;
  4462. }
  4463. .label-warning,
  4464. .badge-warning {
  4465. background-color: #f89406;
  4466. }
  4467. .label-warning[href],
  4468. .badge-warning[href] {
  4469. background-color: #c67605;
  4470. }
  4471. .label-success,
  4472. .badge-success {
  4473. background-color: #468847;
  4474. }
  4475. .label-success[href],
  4476. .badge-success[href] {
  4477. background-color: #356635;
  4478. }
  4479. .label-info,
  4480. .badge-info {
  4481. background-color: #3a87ad;
  4482. }
  4483. .label-info[href],
  4484. .badge-info[href] {
  4485. background-color: #2d6987;
  4486. }
  4487. .label-inverse,
  4488. .badge-inverse {
  4489. background-color: #333333;
  4490. }
  4491. .label-inverse[href],
  4492. .badge-inverse[href] {
  4493. background-color: #1a1a1a;
  4494. }
  4495. .btn .label,
  4496. .btn .badge {
  4497. position: relative;
  4498. top: -1px;
  4499. }
  4500. .btn-mini .label,
  4501. .btn-mini .badge {
  4502. top: 0;
  4503. }
  4504. @-webkit-keyframes progress-bar-stripes {
  4505. from {
  4506. background-position: 40px 0;
  4507. }
  4508. to {
  4509. background-position: 0 0;
  4510. }
  4511. }
  4512. @-moz-keyframes progress-bar-stripes {
  4513. from {
  4514. background-position: 40px 0;
  4515. }
  4516. to {
  4517. background-position: 0 0;
  4518. }
  4519. }
  4520. @-ms-keyframes progress-bar-stripes {
  4521. from {
  4522. background-position: 40px 0;
  4523. }
  4524. to {
  4525. background-position: 0 0;
  4526. }
  4527. }
  4528. @-o-keyframes progress-bar-stripes {
  4529. from {
  4530. background-position: 0 0;
  4531. }
  4532. to {
  4533. background-position: 40px 0;
  4534. }
  4535. }
  4536. @keyframes progress-bar-stripes {
  4537. from {
  4538. background-position: 40px 0;
  4539. }
  4540. to {
  4541. background-position: 0 0;
  4542. }
  4543. }
  4544. .progress {
  4545. height: 20px;
  4546. margin-bottom: 20px;
  4547. overflow: hidden;
  4548. background-color: #f7f7f7;
  4549. background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  4550. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  4551. background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  4552. background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  4553. background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  4554. background-repeat: repeat-x;
  4555. -webkit-border-radius: 4px;
  4556. -moz-border-radius: 4px;
  4557. border-radius: 4px;
  4558. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  4559. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4560. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4561. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4562. }
  4563. .progress .bar {
  4564. float: left;
  4565. width: 0;
  4566. height: 100%;
  4567. font-size: 12px;
  4568. color: #ffffff;
  4569. text-align: center;
  4570. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  4571. background-color: #0e90d2;
  4572. background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  4573. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  4574. background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  4575. background-image: -o-linear-gradient(top, #149bdf, #0480be);
  4576. background-image: linear-gradient(to bottom, #149bdf, #0480be);
  4577. background-repeat: repeat-x;
  4578. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  4579. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4580. -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4581. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4582. -webkit-box-sizing: border-box;
  4583. -moz-box-sizing: border-box;
  4584. box-sizing: border-box;
  4585. -webkit-transition: width 0.6s ease;
  4586. -moz-transition: width 0.6s ease;
  4587. -o-transition: width 0.6s ease;
  4588. transition: width 0.6s ease;
  4589. }
  4590. .progress .bar + .bar {
  4591. -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4592. -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4593. box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4594. }
  4595. .progress-striped .bar {
  4596. background-color: #149bdf;
  4597. 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));
  4598. 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);
  4599. 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);
  4600. 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);
  4601. 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);
  4602. -webkit-background-size: 40px 40px;
  4603. -moz-background-size: 40px 40px;
  4604. -o-background-size: 40px 40px;
  4605. background-size: 40px 40px;
  4606. }
  4607. .progress.active .bar {
  4608. -webkit-animation: progress-bar-stripes 2s linear infinite;
  4609. -moz-animation: progress-bar-stripes 2s linear infinite;
  4610. -ms-animation: progress-bar-stripes 2s linear infinite;
  4611. -o-animation: progress-bar-stripes 2s linear infinite;
  4612. animation: progress-bar-stripes 2s linear infinite;
  4613. }
  4614. .progress-danger .bar,
  4615. .progress .bar-danger {
  4616. background-color: #dd514c;
  4617. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  4618. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  4619. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  4620. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  4621. background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  4622. background-repeat: repeat-x;
  4623. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
  4624. }
  4625. .progress-danger.progress-striped .bar,
  4626. .progress-striped .bar-danger {
  4627. background-color: #ee5f5b;
  4628. 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));
  4629. 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);
  4630. 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);
  4631. 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);
  4632. 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);
  4633. }
  4634. .progress-success .bar,
  4635. .progress .bar-success {
  4636. background-color: #5eb95e;
  4637. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  4638. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  4639. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  4640. background-image: -o-linear-gradient(top, #62c462, #57a957);
  4641. background-image: linear-gradient(to bottom, #62c462, #57a957);
  4642. background-repeat: repeat-x;
  4643. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
  4644. }
  4645. .progress-success.progress-striped .bar,
  4646. .progress-striped .bar-success {
  4647. background-color: #62c462;
  4648. 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));
  4649. 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);
  4650. 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);
  4651. 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);
  4652. 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);
  4653. }
  4654. .progress-info .bar,
  4655. .progress .bar-info {
  4656. background-color: #4bb1cf;
  4657. background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  4658. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  4659. background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  4660. background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  4661. background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
  4662. background-repeat: repeat-x;
  4663. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
  4664. }
  4665. .progress-info.progress-striped .bar,
  4666. .progress-striped .bar-info {
  4667. background-color: #5bc0de;
  4668. 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));
  4669. 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);
  4670. 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);
  4671. 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);
  4672. 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);
  4673. }
  4674. .progress-warning .bar,
  4675. .progress .bar-warning {
  4676. background-color: #faa732;
  4677. background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  4678. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  4679. background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  4680. background-image: -o-linear-gradient(top, #fbb450, #f89406);
  4681. background-image: linear-gradient(to bottom, #fbb450, #f89406);
  4682. background-repeat: repeat-x;
  4683. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  4684. }
  4685. .progress-warning.progress-striped .bar,
  4686. .progress-striped .bar-warning {
  4687. background-color: #fbb450;
  4688. 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));
  4689. 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);
  4690. 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);
  4691. 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);
  4692. 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);
  4693. }
  4694. .accordion {
  4695. margin-bottom: 20px;
  4696. }
  4697. .accordion-group {
  4698. margin-bottom: 2px;
  4699. border: 1px solid #e5e5e5;
  4700. -webkit-border-radius: 4px;
  4701. -moz-border-radius: 4px;
  4702. border-radius: 4px;
  4703. }
  4704. .accordion-heading {
  4705. border-bottom: 0;
  4706. }
  4707. .accordion-heading .accordion-toggle {
  4708. display: block;
  4709. padding: 8px 15px;
  4710. }
  4711. .accordion-toggle {
  4712. cursor: pointer;
  4713. }
  4714. .accordion-inner {
  4715. padding: 9px 15px;
  4716. border-top: 1px solid #e5e5e5;
  4717. }
  4718. .carousel {
  4719. position: relative;
  4720. margin-bottom: 20px;
  4721. line-height: 1;
  4722. }
  4723. .carousel-inner {
  4724. position: relative;
  4725. width: 100%;
  4726. overflow: hidden;
  4727. }
  4728. .carousel .item {
  4729. position: relative;
  4730. display: none;
  4731. -webkit-transition: 0.6s ease-in-out left;
  4732. -moz-transition: 0.6s ease-in-out left;
  4733. -o-transition: 0.6s ease-in-out left;
  4734. transition: 0.6s ease-in-out left;
  4735. }
  4736. .carousel .item > img {
  4737. display: block;
  4738. line-height: 1;
  4739. }
  4740. .carousel .active,
  4741. .carousel .next,
  4742. .carousel .prev {
  4743. display: block;
  4744. }
  4745. .carousel .active {
  4746. left: 0;
  4747. }
  4748. .carousel .next,
  4749. .carousel .prev {
  4750. position: absolute;
  4751. top: 0;
  4752. width: 100%;
  4753. }
  4754. .carousel .next {
  4755. left: 100%;
  4756. }
  4757. .carousel .prev {
  4758. left: -100%;
  4759. }
  4760. .carousel .next.left,
  4761. .carousel .prev.right {
  4762. left: 0;
  4763. }
  4764. .carousel .active.left {
  4765. left: -100%;
  4766. }
  4767. .carousel .active.right {
  4768. left: 100%;
  4769. }
  4770. .carousel-control {
  4771. position: absolute;
  4772. top: 40%;
  4773. left: 15px;
  4774. width: 40px;
  4775. height: 40px;
  4776. margin-top: -20px;
  4777. font-size: 60px;
  4778. font-weight: 100;
  4779. line-height: 30px;
  4780. color: #ffffff;
  4781. text-align: center;
  4782. background: #222222;
  4783. border: 3px solid #ffffff;
  4784. -webkit-border-radius: 23px;
  4785. -moz-border-radius: 23px;
  4786. border-radius: 23px;
  4787. opacity: 0.5;
  4788. filter: alpha(opacity=50);
  4789. }
  4790. .carousel-control.right {
  4791. right: 15px;
  4792. left: auto;
  4793. }
  4794. .carousel-control:hover {
  4795. color: #ffffff;
  4796. text-decoration: none;
  4797. opacity: 0.9;
  4798. filter: alpha(opacity=90);
  4799. }
  4800. .carousel-caption {
  4801. position: absolute;
  4802. right: 0;
  4803. bottom: 0;
  4804. left: 0;
  4805. padding: 15px;
  4806. background: #333333;
  4807. background: rgba(0, 0, 0, 0.75);
  4808. }
  4809. .carousel-caption h4,
  4810. .carousel-caption p {
  4811. line-height: 20px;
  4812. color: #ffffff;
  4813. }
  4814. .carousel-caption h4 {
  4815. margin: 0 0 5px;
  4816. }
  4817. .carousel-caption p {
  4818. margin-bottom: 0;
  4819. }
  4820. .hero-unit {
  4821. padding: 60px;
  4822. margin-bottom: 30px;
  4823. background-color: #eeeeee;
  4824. -webkit-border-radius: 6px;
  4825. -moz-border-radius: 6px;
  4826. border-radius: 6px;
  4827. }
  4828. .hero-unit h1 {
  4829. margin-bottom: 0;
  4830. font-size: 60px;
  4831. line-height: 1;
  4832. letter-spacing: -1px;
  4833. color: inherit;
  4834. }
  4835. .hero-unit p {
  4836. font-size: 18px;
  4837. font-weight: 200;
  4838. line-height: 30px;
  4839. color: inherit;
  4840. }
  4841. .pull-right {
  4842. float: right;
  4843. }
  4844. .pull-left {
  4845. float: left;
  4846. }
  4847. .hide {
  4848. display: none;
  4849. }
  4850. .show {
  4851. display: block;
  4852. }
  4853. .invisible {
  4854. visibility: hidden;
  4855. }
  4856. .affix {
  4857. position: fixed;
  4858. }