bootstrap.css 180 KB

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