bootstrap.css 134 KB

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