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