style.min.css 261 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015
  1. /*!
  2. *
  3. * Twitter Bootstrap
  4. *
  5. */
  6. /*!
  7. * Bootstrap v3.4.1 (https://getbootstrap.com/)
  8. * Copyright 2011-2019 Twitter, Inc.
  9. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  10. */
  11. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  12. html {
  13. font-family: sans-serif;
  14. -ms-text-size-adjust: 100%;
  15. -webkit-text-size-adjust: 100%;
  16. }
  17. body {
  18. margin: 0;
  19. }
  20. article,
  21. aside,
  22. details,
  23. figcaption,
  24. figure,
  25. footer,
  26. header,
  27. hgroup,
  28. main,
  29. menu,
  30. nav,
  31. section,
  32. summary {
  33. display: block;
  34. }
  35. audio,
  36. canvas,
  37. progress,
  38. video {
  39. display: inline-block;
  40. vertical-align: baseline;
  41. }
  42. audio:not([controls]) {
  43. display: none;
  44. height: 0;
  45. }
  46. [hidden],
  47. template {
  48. display: none;
  49. }
  50. a {
  51. background-color: transparent;
  52. }
  53. a:active,
  54. a:hover {
  55. outline: 0;
  56. }
  57. abbr[title] {
  58. border-bottom: none;
  59. text-decoration: underline;
  60. text-decoration: underline dotted;
  61. }
  62. b,
  63. strong {
  64. font-weight: bold;
  65. }
  66. dfn {
  67. font-style: italic;
  68. }
  69. h1 {
  70. font-size: 2em;
  71. margin: 0.67em 0;
  72. }
  73. mark {
  74. background: #ff0;
  75. color: #000;
  76. }
  77. small {
  78. font-size: 80%;
  79. }
  80. sub,
  81. sup {
  82. font-size: 75%;
  83. line-height: 0;
  84. position: relative;
  85. vertical-align: baseline;
  86. }
  87. sup {
  88. top: -0.5em;
  89. }
  90. sub {
  91. bottom: -0.25em;
  92. }
  93. img {
  94. border: 0;
  95. }
  96. svg:not(:root) {
  97. overflow: hidden;
  98. }
  99. figure {
  100. margin: 1em 40px;
  101. }
  102. hr {
  103. box-sizing: content-box;
  104. height: 0;
  105. }
  106. pre {
  107. overflow: auto;
  108. }
  109. code,
  110. kbd,
  111. pre,
  112. samp {
  113. font-family: monospace, monospace;
  114. font-size: 1em;
  115. }
  116. button,
  117. input,
  118. optgroup,
  119. select,
  120. textarea {
  121. color: inherit;
  122. font: inherit;
  123. margin: 0;
  124. }
  125. button {
  126. overflow: visible;
  127. }
  128. button,
  129. select {
  130. text-transform: none;
  131. }
  132. button,
  133. html input[type="button"],
  134. input[type="reset"],
  135. input[type="submit"] {
  136. -webkit-appearance: button;
  137. cursor: pointer;
  138. }
  139. button[disabled],
  140. html input[disabled] {
  141. cursor: default;
  142. }
  143. button::-moz-focus-inner,
  144. input::-moz-focus-inner {
  145. border: 0;
  146. padding: 0;
  147. }
  148. input {
  149. line-height: normal;
  150. }
  151. input[type="checkbox"],
  152. input[type="radio"] {
  153. box-sizing: border-box;
  154. padding: 0;
  155. }
  156. input[type="number"]::-webkit-inner-spin-button,
  157. input[type="number"]::-webkit-outer-spin-button {
  158. height: auto;
  159. }
  160. input[type="search"] {
  161. -webkit-appearance: textfield;
  162. box-sizing: content-box;
  163. }
  164. input[type="search"]::-webkit-search-cancel-button,
  165. input[type="search"]::-webkit-search-decoration {
  166. -webkit-appearance: none;
  167. }
  168. fieldset {
  169. border: 1px solid #c0c0c0;
  170. margin: 0 2px;
  171. padding: 0.35em 0.625em 0.75em;
  172. }
  173. legend {
  174. border: 0;
  175. padding: 0;
  176. }
  177. textarea {
  178. overflow: auto;
  179. }
  180. optgroup {
  181. font-weight: bold;
  182. }
  183. table {
  184. border-collapse: collapse;
  185. border-spacing: 0;
  186. }
  187. td,
  188. th {
  189. padding: 0;
  190. }
  191. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  192. @media print {
  193. *,
  194. *:before,
  195. *:after {
  196. text-shadow: none !important;
  197. background: transparent !important;
  198. box-shadow: none !important;
  199. }
  200. a,
  201. a:visited {
  202. text-decoration: underline;
  203. }
  204. a[href]:after {
  205. content: " (" attr(href) ")";
  206. }
  207. abbr[title]:after {
  208. content: " (" attr(title) ")";
  209. }
  210. a[href^="#"]:after,
  211. a[href^="javascript:"]:after {
  212. content: "";
  213. }
  214. pre,
  215. blockquote {
  216. border: 1px solid #999;
  217. page-break-inside: avoid;
  218. }
  219. thead {
  220. display: table-header-group;
  221. }
  222. tr,
  223. img {
  224. page-break-inside: avoid;
  225. }
  226. img {
  227. max-width: 100% !important;
  228. }
  229. p,
  230. h2,
  231. h3 {
  232. orphans: 3;
  233. widows: 3;
  234. }
  235. h2,
  236. h3 {
  237. page-break-after: avoid;
  238. }
  239. .navbar {
  240. display: none;
  241. }
  242. .btn > .caret,
  243. .dropup > .btn > .caret {
  244. border-top-color: #000 !important;
  245. }
  246. .label {
  247. border: 1px solid #000;
  248. }
  249. .table {
  250. border-collapse: collapse !important;
  251. }
  252. .table td,
  253. .table th {
  254. background-color: #fff !important;
  255. }
  256. .table-bordered th,
  257. .table-bordered td {
  258. border: 1px solid #ddd !important;
  259. }
  260. }
  261. @font-face {
  262. font-family: "Glyphicons Halflings";
  263. src: url("../components/bootstrap/fonts/glyphicons-halflings-regular.eot");
  264. src: url("../components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.woff") format("woff"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
  265. }
  266. .glyphicon {
  267. position: relative;
  268. top: 1px;
  269. display: inline-block;
  270. font-family: "Glyphicons Halflings";
  271. font-style: normal;
  272. font-weight: 400;
  273. line-height: 1;
  274. -webkit-font-smoothing: antialiased;
  275. -moz-osx-font-smoothing: grayscale;
  276. }
  277. .glyphicon-asterisk:before {
  278. content: "\002a";
  279. }
  280. .glyphicon-plus:before {
  281. content: "\002b";
  282. }
  283. .glyphicon-euro:before,
  284. .glyphicon-eur:before {
  285. content: "\20ac";
  286. }
  287. .glyphicon-minus:before {
  288. content: "\2212";
  289. }
  290. .glyphicon-cloud:before {
  291. content: "\2601";
  292. }
  293. .glyphicon-envelope:before {
  294. content: "\2709";
  295. }
  296. .glyphicon-pencil:before {
  297. content: "\270f";
  298. }
  299. .glyphicon-glass:before {
  300. content: "\e001";
  301. }
  302. .glyphicon-music:before {
  303. content: "\e002";
  304. }
  305. .glyphicon-search:before {
  306. content: "\e003";
  307. }
  308. .glyphicon-heart:before {
  309. content: "\e005";
  310. }
  311. .glyphicon-star:before {
  312. content: "\e006";
  313. }
  314. .glyphicon-star-empty:before {
  315. content: "\e007";
  316. }
  317. .glyphicon-user:before {
  318. content: "\e008";
  319. }
  320. .glyphicon-film:before {
  321. content: "\e009";
  322. }
  323. .glyphicon-th-large:before {
  324. content: "\e010";
  325. }
  326. .glyphicon-th:before {
  327. content: "\e011";
  328. }
  329. .glyphicon-th-list:before {
  330. content: "\e012";
  331. }
  332. .glyphicon-ok:before {
  333. content: "\e013";
  334. }
  335. .glyphicon-remove:before {
  336. content: "\e014";
  337. }
  338. .glyphicon-zoom-in:before {
  339. content: "\e015";
  340. }
  341. .glyphicon-zoom-out:before {
  342. content: "\e016";
  343. }
  344. .glyphicon-off:before {
  345. content: "\e017";
  346. }
  347. .glyphicon-signal:before {
  348. content: "\e018";
  349. }
  350. .glyphicon-cog:before {
  351. content: "\e019";
  352. }
  353. .glyphicon-trash:before {
  354. content: "\e020";
  355. }
  356. .glyphicon-home:before {
  357. content: "\e021";
  358. }
  359. .glyphicon-file:before {
  360. content: "\e022";
  361. }
  362. .glyphicon-time:before {
  363. content: "\e023";
  364. }
  365. .glyphicon-road:before {
  366. content: "\e024";
  367. }
  368. .glyphicon-download-alt:before {
  369. content: "\e025";
  370. }
  371. .glyphicon-download:before {
  372. content: "\e026";
  373. }
  374. .glyphicon-upload:before {
  375. content: "\e027";
  376. }
  377. .glyphicon-inbox:before {
  378. content: "\e028";
  379. }
  380. .glyphicon-play-circle:before {
  381. content: "\e029";
  382. }
  383. .glyphicon-repeat:before {
  384. content: "\e030";
  385. }
  386. .glyphicon-refresh:before {
  387. content: "\e031";
  388. }
  389. .glyphicon-list-alt:before {
  390. content: "\e032";
  391. }
  392. .glyphicon-lock:before {
  393. content: "\e033";
  394. }
  395. .glyphicon-flag:before {
  396. content: "\e034";
  397. }
  398. .glyphicon-headphones:before {
  399. content: "\e035";
  400. }
  401. .glyphicon-volume-off:before {
  402. content: "\e036";
  403. }
  404. .glyphicon-volume-down:before {
  405. content: "\e037";
  406. }
  407. .glyphicon-volume-up:before {
  408. content: "\e038";
  409. }
  410. .glyphicon-qrcode:before {
  411. content: "\e039";
  412. }
  413. .glyphicon-barcode:before {
  414. content: "\e040";
  415. }
  416. .glyphicon-tag:before {
  417. content: "\e041";
  418. }
  419. .glyphicon-tags:before {
  420. content: "\e042";
  421. }
  422. .glyphicon-book:before {
  423. content: "\e043";
  424. }
  425. .glyphicon-bookmark:before {
  426. content: "\e044";
  427. }
  428. .glyphicon-print:before {
  429. content: "\e045";
  430. }
  431. .glyphicon-camera:before {
  432. content: "\e046";
  433. }
  434. .glyphicon-font:before {
  435. content: "\e047";
  436. }
  437. .glyphicon-bold:before {
  438. content: "\e048";
  439. }
  440. .glyphicon-italic:before {
  441. content: "\e049";
  442. }
  443. .glyphicon-text-height:before {
  444. content: "\e050";
  445. }
  446. .glyphicon-text-width:before {
  447. content: "\e051";
  448. }
  449. .glyphicon-align-left:before {
  450. content: "\e052";
  451. }
  452. .glyphicon-align-center:before {
  453. content: "\e053";
  454. }
  455. .glyphicon-align-right:before {
  456. content: "\e054";
  457. }
  458. .glyphicon-align-justify:before {
  459. content: "\e055";
  460. }
  461. .glyphicon-list:before {
  462. content: "\e056";
  463. }
  464. .glyphicon-indent-left:before {
  465. content: "\e057";
  466. }
  467. .glyphicon-indent-right:before {
  468. content: "\e058";
  469. }
  470. .glyphicon-facetime-video:before {
  471. content: "\e059";
  472. }
  473. .glyphicon-picture:before {
  474. content: "\e060";
  475. }
  476. .glyphicon-map-marker:before {
  477. content: "\e062";
  478. }
  479. .glyphicon-adjust:before {
  480. content: "\e063";
  481. }
  482. .glyphicon-tint:before {
  483. content: "\e064";
  484. }
  485. .glyphicon-edit:before {
  486. content: "\e065";
  487. }
  488. .glyphicon-share:before {
  489. content: "\e066";
  490. }
  491. .glyphicon-check:before {
  492. content: "\e067";
  493. }
  494. .glyphicon-move:before {
  495. content: "\e068";
  496. }
  497. .glyphicon-step-backward:before {
  498. content: "\e069";
  499. }
  500. .glyphicon-fast-backward:before {
  501. content: "\e070";
  502. }
  503. .glyphicon-backward:before {
  504. content: "\e071";
  505. }
  506. .glyphicon-play:before {
  507. content: "\e072";
  508. }
  509. .glyphicon-pause:before {
  510. content: "\e073";
  511. }
  512. .glyphicon-stop:before {
  513. content: "\e074";
  514. }
  515. .glyphicon-forward:before {
  516. content: "\e075";
  517. }
  518. .glyphicon-fast-forward:before {
  519. content: "\e076";
  520. }
  521. .glyphicon-step-forward:before {
  522. content: "\e077";
  523. }
  524. .glyphicon-eject:before {
  525. content: "\e078";
  526. }
  527. .glyphicon-chevron-left:before {
  528. content: "\e079";
  529. }
  530. .glyphicon-chevron-right:before {
  531. content: "\e080";
  532. }
  533. .glyphicon-plus-sign:before {
  534. content: "\e081";
  535. }
  536. .glyphicon-minus-sign:before {
  537. content: "\e082";
  538. }
  539. .glyphicon-remove-sign:before {
  540. content: "\e083";
  541. }
  542. .glyphicon-ok-sign:before {
  543. content: "\e084";
  544. }
  545. .glyphicon-question-sign:before {
  546. content: "\e085";
  547. }
  548. .glyphicon-info-sign:before {
  549. content: "\e086";
  550. }
  551. .glyphicon-screenshot:before {
  552. content: "\e087";
  553. }
  554. .glyphicon-remove-circle:before {
  555. content: "\e088";
  556. }
  557. .glyphicon-ok-circle:before {
  558. content: "\e089";
  559. }
  560. .glyphicon-ban-circle:before {
  561. content: "\e090";
  562. }
  563. .glyphicon-arrow-left:before {
  564. content: "\e091";
  565. }
  566. .glyphicon-arrow-right:before {
  567. content: "\e092";
  568. }
  569. .glyphicon-arrow-up:before {
  570. content: "\e093";
  571. }
  572. .glyphicon-arrow-down:before {
  573. content: "\e094";
  574. }
  575. .glyphicon-share-alt:before {
  576. content: "\e095";
  577. }
  578. .glyphicon-resize-full:before {
  579. content: "\e096";
  580. }
  581. .glyphicon-resize-small:before {
  582. content: "\e097";
  583. }
  584. .glyphicon-exclamation-sign:before {
  585. content: "\e101";
  586. }
  587. .glyphicon-gift:before {
  588. content: "\e102";
  589. }
  590. .glyphicon-leaf:before {
  591. content: "\e103";
  592. }
  593. .glyphicon-fire:before {
  594. content: "\e104";
  595. }
  596. .glyphicon-eye-open:before {
  597. content: "\e105";
  598. }
  599. .glyphicon-eye-close:before {
  600. content: "\e106";
  601. }
  602. .glyphicon-warning-sign:before {
  603. content: "\e107";
  604. }
  605. .glyphicon-plane:before {
  606. content: "\e108";
  607. }
  608. .glyphicon-calendar:before {
  609. content: "\e109";
  610. }
  611. .glyphicon-random:before {
  612. content: "\e110";
  613. }
  614. .glyphicon-comment:before {
  615. content: "\e111";
  616. }
  617. .glyphicon-magnet:before {
  618. content: "\e112";
  619. }
  620. .glyphicon-chevron-up:before {
  621. content: "\e113";
  622. }
  623. .glyphicon-chevron-down:before {
  624. content: "\e114";
  625. }
  626. .glyphicon-retweet:before {
  627. content: "\e115";
  628. }
  629. .glyphicon-shopping-cart:before {
  630. content: "\e116";
  631. }
  632. .glyphicon-folder-close:before {
  633. content: "\e117";
  634. }
  635. .glyphicon-folder-open:before {
  636. content: "\e118";
  637. }
  638. .glyphicon-resize-vertical:before {
  639. content: "\e119";
  640. }
  641. .glyphicon-resize-horizontal:before {
  642. content: "\e120";
  643. }
  644. .glyphicon-hdd:before {
  645. content: "\e121";
  646. }
  647. .glyphicon-bullhorn:before {
  648. content: "\e122";
  649. }
  650. .glyphicon-bell:before {
  651. content: "\e123";
  652. }
  653. .glyphicon-certificate:before {
  654. content: "\e124";
  655. }
  656. .glyphicon-thumbs-up:before {
  657. content: "\e125";
  658. }
  659. .glyphicon-thumbs-down:before {
  660. content: "\e126";
  661. }
  662. .glyphicon-hand-right:before {
  663. content: "\e127";
  664. }
  665. .glyphicon-hand-left:before {
  666. content: "\e128";
  667. }
  668. .glyphicon-hand-up:before {
  669. content: "\e129";
  670. }
  671. .glyphicon-hand-down:before {
  672. content: "\e130";
  673. }
  674. .glyphicon-circle-arrow-right:before {
  675. content: "\e131";
  676. }
  677. .glyphicon-circle-arrow-left:before {
  678. content: "\e132";
  679. }
  680. .glyphicon-circle-arrow-up:before {
  681. content: "\e133";
  682. }
  683. .glyphicon-circle-arrow-down:before {
  684. content: "\e134";
  685. }
  686. .glyphicon-globe:before {
  687. content: "\e135";
  688. }
  689. .glyphicon-wrench:before {
  690. content: "\e136";
  691. }
  692. .glyphicon-tasks:before {
  693. content: "\e137";
  694. }
  695. .glyphicon-filter:before {
  696. content: "\e138";
  697. }
  698. .glyphicon-briefcase:before {
  699. content: "\e139";
  700. }
  701. .glyphicon-fullscreen:before {
  702. content: "\e140";
  703. }
  704. .glyphicon-dashboard:before {
  705. content: "\e141";
  706. }
  707. .glyphicon-paperclip:before {
  708. content: "\e142";
  709. }
  710. .glyphicon-heart-empty:before {
  711. content: "\e143";
  712. }
  713. .glyphicon-link:before {
  714. content: "\e144";
  715. }
  716. .glyphicon-phone:before {
  717. content: "\e145";
  718. }
  719. .glyphicon-pushpin:before {
  720. content: "\e146";
  721. }
  722. .glyphicon-usd:before {
  723. content: "\e148";
  724. }
  725. .glyphicon-gbp:before {
  726. content: "\e149";
  727. }
  728. .glyphicon-sort:before {
  729. content: "\e150";
  730. }
  731. .glyphicon-sort-by-alphabet:before {
  732. content: "\e151";
  733. }
  734. .glyphicon-sort-by-alphabet-alt:before {
  735. content: "\e152";
  736. }
  737. .glyphicon-sort-by-order:before {
  738. content: "\e153";
  739. }
  740. .glyphicon-sort-by-order-alt:before {
  741. content: "\e154";
  742. }
  743. .glyphicon-sort-by-attributes:before {
  744. content: "\e155";
  745. }
  746. .glyphicon-sort-by-attributes-alt:before {
  747. content: "\e156";
  748. }
  749. .glyphicon-unchecked:before {
  750. content: "\e157";
  751. }
  752. .glyphicon-expand:before {
  753. content: "\e158";
  754. }
  755. .glyphicon-collapse-down:before {
  756. content: "\e159";
  757. }
  758. .glyphicon-collapse-up:before {
  759. content: "\e160";
  760. }
  761. .glyphicon-log-in:before {
  762. content: "\e161";
  763. }
  764. .glyphicon-flash:before {
  765. content: "\e162";
  766. }
  767. .glyphicon-log-out:before {
  768. content: "\e163";
  769. }
  770. .glyphicon-new-window:before {
  771. content: "\e164";
  772. }
  773. .glyphicon-record:before {
  774. content: "\e165";
  775. }
  776. .glyphicon-save:before {
  777. content: "\e166";
  778. }
  779. .glyphicon-open:before {
  780. content: "\e167";
  781. }
  782. .glyphicon-saved:before {
  783. content: "\e168";
  784. }
  785. .glyphicon-import:before {
  786. content: "\e169";
  787. }
  788. .glyphicon-export:before {
  789. content: "\e170";
  790. }
  791. .glyphicon-send:before {
  792. content: "\e171";
  793. }
  794. .glyphicon-floppy-disk:before {
  795. content: "\e172";
  796. }
  797. .glyphicon-floppy-saved:before {
  798. content: "\e173";
  799. }
  800. .glyphicon-floppy-remove:before {
  801. content: "\e174";
  802. }
  803. .glyphicon-floppy-save:before {
  804. content: "\e175";
  805. }
  806. .glyphicon-floppy-open:before {
  807. content: "\e176";
  808. }
  809. .glyphicon-credit-card:before {
  810. content: "\e177";
  811. }
  812. .glyphicon-transfer:before {
  813. content: "\e178";
  814. }
  815. .glyphicon-cutlery:before {
  816. content: "\e179";
  817. }
  818. .glyphicon-header:before {
  819. content: "\e180";
  820. }
  821. .glyphicon-compressed:before {
  822. content: "\e181";
  823. }
  824. .glyphicon-earphone:before {
  825. content: "\e182";
  826. }
  827. .glyphicon-phone-alt:before {
  828. content: "\e183";
  829. }
  830. .glyphicon-tower:before {
  831. content: "\e184";
  832. }
  833. .glyphicon-stats:before {
  834. content: "\e185";
  835. }
  836. .glyphicon-sd-video:before {
  837. content: "\e186";
  838. }
  839. .glyphicon-hd-video:before {
  840. content: "\e187";
  841. }
  842. .glyphicon-subtitles:before {
  843. content: "\e188";
  844. }
  845. .glyphicon-sound-stereo:before {
  846. content: "\e189";
  847. }
  848. .glyphicon-sound-dolby:before {
  849. content: "\e190";
  850. }
  851. .glyphicon-sound-5-1:before {
  852. content: "\e191";
  853. }
  854. .glyphicon-sound-6-1:before {
  855. content: "\e192";
  856. }
  857. .glyphicon-sound-7-1:before {
  858. content: "\e193";
  859. }
  860. .glyphicon-copyright-mark:before {
  861. content: "\e194";
  862. }
  863. .glyphicon-registration-mark:before {
  864. content: "\e195";
  865. }
  866. .glyphicon-cloud-download:before {
  867. content: "\e197";
  868. }
  869. .glyphicon-cloud-upload:before {
  870. content: "\e198";
  871. }
  872. .glyphicon-tree-conifer:before {
  873. content: "\e199";
  874. }
  875. .glyphicon-tree-deciduous:before {
  876. content: "\e200";
  877. }
  878. .glyphicon-cd:before {
  879. content: "\e201";
  880. }
  881. .glyphicon-save-file:before {
  882. content: "\e202";
  883. }
  884. .glyphicon-open-file:before {
  885. content: "\e203";
  886. }
  887. .glyphicon-level-up:before {
  888. content: "\e204";
  889. }
  890. .glyphicon-copy:before {
  891. content: "\e205";
  892. }
  893. .glyphicon-paste:before {
  894. content: "\e206";
  895. }
  896. .glyphicon-alert:before {
  897. content: "\e209";
  898. }
  899. .glyphicon-equalizer:before {
  900. content: "\e210";
  901. }
  902. .glyphicon-king:before {
  903. content: "\e211";
  904. }
  905. .glyphicon-queen:before {
  906. content: "\e212";
  907. }
  908. .glyphicon-pawn:before {
  909. content: "\e213";
  910. }
  911. .glyphicon-bishop:before {
  912. content: "\e214";
  913. }
  914. .glyphicon-knight:before {
  915. content: "\e215";
  916. }
  917. .glyphicon-baby-formula:before {
  918. content: "\e216";
  919. }
  920. .glyphicon-tent:before {
  921. content: "\26fa";
  922. }
  923. .glyphicon-blackboard:before {
  924. content: "\e218";
  925. }
  926. .glyphicon-bed:before {
  927. content: "\e219";
  928. }
  929. .glyphicon-apple:before {
  930. content: "\f8ff";
  931. }
  932. .glyphicon-erase:before {
  933. content: "\e221";
  934. }
  935. .glyphicon-hourglass:before {
  936. content: "\231b";
  937. }
  938. .glyphicon-lamp:before {
  939. content: "\e223";
  940. }
  941. .glyphicon-duplicate:before {
  942. content: "\e224";
  943. }
  944. .glyphicon-piggy-bank:before {
  945. content: "\e225";
  946. }
  947. .glyphicon-scissors:before {
  948. content: "\e226";
  949. }
  950. .glyphicon-bitcoin:before {
  951. content: "\e227";
  952. }
  953. .glyphicon-btc:before {
  954. content: "\e227";
  955. }
  956. .glyphicon-xbt:before {
  957. content: "\e227";
  958. }
  959. .glyphicon-yen:before {
  960. content: "\00a5";
  961. }
  962. .glyphicon-jpy:before {
  963. content: "\00a5";
  964. }
  965. .glyphicon-ruble:before {
  966. content: "\20bd";
  967. }
  968. .glyphicon-rub:before {
  969. content: "\20bd";
  970. }
  971. .glyphicon-scale:before {
  972. content: "\e230";
  973. }
  974. .glyphicon-ice-lolly:before {
  975. content: "\e231";
  976. }
  977. .glyphicon-ice-lolly-tasted:before {
  978. content: "\e232";
  979. }
  980. .glyphicon-education:before {
  981. content: "\e233";
  982. }
  983. .glyphicon-option-horizontal:before {
  984. content: "\e234";
  985. }
  986. .glyphicon-option-vertical:before {
  987. content: "\e235";
  988. }
  989. .glyphicon-menu-hamburger:before {
  990. content: "\e236";
  991. }
  992. .glyphicon-modal-window:before {
  993. content: "\e237";
  994. }
  995. .glyphicon-oil:before {
  996. content: "\e238";
  997. }
  998. .glyphicon-grain:before {
  999. content: "\e239";
  1000. }
  1001. .glyphicon-sunglasses:before {
  1002. content: "\e240";
  1003. }
  1004. .glyphicon-text-size:before {
  1005. content: "\e241";
  1006. }
  1007. .glyphicon-text-color:before {
  1008. content: "\e242";
  1009. }
  1010. .glyphicon-text-background:before {
  1011. content: "\e243";
  1012. }
  1013. .glyphicon-object-align-top:before {
  1014. content: "\e244";
  1015. }
  1016. .glyphicon-object-align-bottom:before {
  1017. content: "\e245";
  1018. }
  1019. .glyphicon-object-align-horizontal:before {
  1020. content: "\e246";
  1021. }
  1022. .glyphicon-object-align-left:before {
  1023. content: "\e247";
  1024. }
  1025. .glyphicon-object-align-vertical:before {
  1026. content: "\e248";
  1027. }
  1028. .glyphicon-object-align-right:before {
  1029. content: "\e249";
  1030. }
  1031. .glyphicon-triangle-right:before {
  1032. content: "\e250";
  1033. }
  1034. .glyphicon-triangle-left:before {
  1035. content: "\e251";
  1036. }
  1037. .glyphicon-triangle-bottom:before {
  1038. content: "\e252";
  1039. }
  1040. .glyphicon-triangle-top:before {
  1041. content: "\e253";
  1042. }
  1043. .glyphicon-console:before {
  1044. content: "\e254";
  1045. }
  1046. .glyphicon-superscript:before {
  1047. content: "\e255";
  1048. }
  1049. .glyphicon-subscript:before {
  1050. content: "\e256";
  1051. }
  1052. .glyphicon-menu-left:before {
  1053. content: "\e257";
  1054. }
  1055. .glyphicon-menu-right:before {
  1056. content: "\e258";
  1057. }
  1058. .glyphicon-menu-down:before {
  1059. content: "\e259";
  1060. }
  1061. .glyphicon-menu-up:before {
  1062. content: "\e260";
  1063. }
  1064. * {
  1065. -webkit-box-sizing: border-box;
  1066. -moz-box-sizing: border-box;
  1067. box-sizing: border-box;
  1068. }
  1069. *:before,
  1070. *:after {
  1071. -webkit-box-sizing: border-box;
  1072. -moz-box-sizing: border-box;
  1073. box-sizing: border-box;
  1074. }
  1075. html {
  1076. font-size: 10px;
  1077. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1078. }
  1079. body {
  1080. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1081. font-size: 13px;
  1082. line-height: 1.42857143;
  1083. color: #000;
  1084. background-color: #fff;
  1085. }
  1086. input,
  1087. button,
  1088. select,
  1089. textarea {
  1090. font-family: inherit;
  1091. font-size: inherit;
  1092. line-height: inherit;
  1093. }
  1094. a {
  1095. color: #296eaa;
  1096. text-decoration: none;
  1097. }
  1098. a:hover,
  1099. a:focus {
  1100. color: #1a466c;
  1101. text-decoration: underline;
  1102. }
  1103. a:focus {
  1104. outline: 5px auto -webkit-focus-ring-color;
  1105. outline-offset: -2px;
  1106. }
  1107. figure {
  1108. margin: 0;
  1109. }
  1110. img {
  1111. vertical-align: middle;
  1112. }
  1113. .img-responsive,
  1114. .thumbnail > img,
  1115. .thumbnail a > img,
  1116. .carousel-inner > .item > img,
  1117. .carousel-inner > .item > a > img {
  1118. display: block;
  1119. max-width: 100%;
  1120. height: auto;
  1121. }
  1122. .img-rounded {
  1123. border-radius: 3px;
  1124. }
  1125. .img-thumbnail {
  1126. padding: 4px;
  1127. line-height: 1.42857143;
  1128. background-color: #fff;
  1129. border: 1px solid #ddd;
  1130. border-radius: 2px;
  1131. -webkit-transition: all 0.2s ease-in-out;
  1132. -o-transition: all 0.2s ease-in-out;
  1133. transition: all 0.2s ease-in-out;
  1134. display: inline-block;
  1135. max-width: 100%;
  1136. height: auto;
  1137. }
  1138. .img-circle {
  1139. border-radius: 50%;
  1140. }
  1141. hr {
  1142. margin-top: 18px;
  1143. margin-bottom: 18px;
  1144. border: 0;
  1145. border-top: 1px solid #eeeeee;
  1146. }
  1147. .sr-only {
  1148. position: absolute;
  1149. width: 1px;
  1150. height: 1px;
  1151. padding: 0;
  1152. margin: -1px;
  1153. overflow: hidden;
  1154. clip: rect(0, 0, 0, 0);
  1155. border: 0;
  1156. }
  1157. .sr-only-focusable:active,
  1158. .sr-only-focusable:focus {
  1159. position: static;
  1160. width: auto;
  1161. height: auto;
  1162. margin: 0;
  1163. overflow: visible;
  1164. clip: auto;
  1165. }
  1166. [role="button"] {
  1167. cursor: pointer;
  1168. }
  1169. h1,
  1170. h2,
  1171. h3,
  1172. h4,
  1173. h5,
  1174. h6,
  1175. .h1,
  1176. .h2,
  1177. .h3,
  1178. .h4,
  1179. .h5,
  1180. .h6 {
  1181. font-family: inherit;
  1182. font-weight: 500;
  1183. line-height: 1.1;
  1184. color: inherit;
  1185. }
  1186. h1 small,
  1187. h2 small,
  1188. h3 small,
  1189. h4 small,
  1190. h5 small,
  1191. h6 small,
  1192. .h1 small,
  1193. .h2 small,
  1194. .h3 small,
  1195. .h4 small,
  1196. .h5 small,
  1197. .h6 small,
  1198. h1 .small,
  1199. h2 .small,
  1200. h3 .small,
  1201. h4 .small,
  1202. h5 .small,
  1203. h6 .small,
  1204. .h1 .small,
  1205. .h2 .small,
  1206. .h3 .small,
  1207. .h4 .small,
  1208. .h5 .small,
  1209. .h6 .small {
  1210. font-weight: 400;
  1211. line-height: 1;
  1212. color: #777777;
  1213. }
  1214. h1,
  1215. .h1,
  1216. h2,
  1217. .h2,
  1218. h3,
  1219. .h3 {
  1220. margin-top: 18px;
  1221. margin-bottom: 9px;
  1222. }
  1223. h1 small,
  1224. .h1 small,
  1225. h2 small,
  1226. .h2 small,
  1227. h3 small,
  1228. .h3 small,
  1229. h1 .small,
  1230. .h1 .small,
  1231. h2 .small,
  1232. .h2 .small,
  1233. h3 .small,
  1234. .h3 .small {
  1235. font-size: 65%;
  1236. }
  1237. h4,
  1238. .h4,
  1239. h5,
  1240. .h5,
  1241. h6,
  1242. .h6 {
  1243. margin-top: 9px;
  1244. margin-bottom: 9px;
  1245. }
  1246. h4 small,
  1247. .h4 small,
  1248. h5 small,
  1249. .h5 small,
  1250. h6 small,
  1251. .h6 small,
  1252. h4 .small,
  1253. .h4 .small,
  1254. h5 .small,
  1255. .h5 .small,
  1256. h6 .small,
  1257. .h6 .small {
  1258. font-size: 75%;
  1259. }
  1260. h1,
  1261. .h1 {
  1262. font-size: 33px;
  1263. }
  1264. h2,
  1265. .h2 {
  1266. font-size: 27px;
  1267. }
  1268. h3,
  1269. .h3 {
  1270. font-size: 23px;
  1271. }
  1272. h4,
  1273. .h4 {
  1274. font-size: 17px;
  1275. }
  1276. h5,
  1277. .h5 {
  1278. font-size: 13px;
  1279. }
  1280. h6,
  1281. .h6 {
  1282. font-size: 12px;
  1283. }
  1284. p {
  1285. margin: 0 0 9px;
  1286. }
  1287. .lead {
  1288. margin-bottom: 18px;
  1289. font-size: 14px;
  1290. font-weight: 300;
  1291. line-height: 1.4;
  1292. }
  1293. @media (min-width: 768px) {
  1294. .lead {
  1295. font-size: 19.5px;
  1296. }
  1297. }
  1298. small,
  1299. .small {
  1300. font-size: 92%;
  1301. }
  1302. mark,
  1303. .mark {
  1304. padding: .2em;
  1305. background-color: #fcf8e3;
  1306. }
  1307. .text-left {
  1308. text-align: left;
  1309. }
  1310. .text-right {
  1311. text-align: right;
  1312. }
  1313. .text-center {
  1314. text-align: center;
  1315. }
  1316. .text-justify {
  1317. text-align: justify;
  1318. }
  1319. .text-nowrap {
  1320. white-space: nowrap;
  1321. }
  1322. .text-lowercase {
  1323. text-transform: lowercase;
  1324. }
  1325. .text-uppercase {
  1326. text-transform: uppercase;
  1327. }
  1328. .text-capitalize {
  1329. text-transform: capitalize;
  1330. }
  1331. .text-muted {
  1332. color: #777777;
  1333. }
  1334. .text-primary {
  1335. color: #337ab7;
  1336. }
  1337. a.text-primary:hover,
  1338. a.text-primary:focus {
  1339. color: #286090;
  1340. }
  1341. .text-success {
  1342. color: #3c763d;
  1343. }
  1344. a.text-success:hover,
  1345. a.text-success:focus {
  1346. color: #2b542c;
  1347. }
  1348. .text-info {
  1349. color: #31708f;
  1350. }
  1351. a.text-info:hover,
  1352. a.text-info:focus {
  1353. color: #245269;
  1354. }
  1355. .text-warning {
  1356. color: #8a6d3b;
  1357. }
  1358. a.text-warning:hover,
  1359. a.text-warning:focus {
  1360. color: #66512c;
  1361. }
  1362. .text-danger {
  1363. color: #a94442;
  1364. }
  1365. a.text-danger:hover,
  1366. a.text-danger:focus {
  1367. color: #843534;
  1368. }
  1369. .bg-primary {
  1370. color: #fff;
  1371. background-color: #337ab7;
  1372. }
  1373. a.bg-primary:hover,
  1374. a.bg-primary:focus {
  1375. background-color: #286090;
  1376. }
  1377. .bg-success {
  1378. background-color: #dff0d8;
  1379. }
  1380. a.bg-success:hover,
  1381. a.bg-success:focus {
  1382. background-color: #c1e2b3;
  1383. }
  1384. .bg-info {
  1385. background-color: #d9edf7;
  1386. }
  1387. a.bg-info:hover,
  1388. a.bg-info:focus {
  1389. background-color: #afd9ee;
  1390. }
  1391. .bg-warning {
  1392. background-color: #fcf8e3;
  1393. }
  1394. a.bg-warning:hover,
  1395. a.bg-warning:focus {
  1396. background-color: #f7ecb5;
  1397. }
  1398. .bg-danger {
  1399. background-color: #f2dede;
  1400. }
  1401. a.bg-danger:hover,
  1402. a.bg-danger:focus {
  1403. background-color: #e4b9b9;
  1404. }
  1405. .page-header {
  1406. padding-bottom: 8px;
  1407. margin: 36px 0 18px;
  1408. border-bottom: 1px solid #eeeeee;
  1409. }
  1410. ul,
  1411. ol {
  1412. margin-top: 0;
  1413. margin-bottom: 9px;
  1414. }
  1415. ul ul,
  1416. ol ul,
  1417. ul ol,
  1418. ol ol {
  1419. margin-bottom: 0;
  1420. }
  1421. .list-unstyled {
  1422. padding-left: 0;
  1423. list-style: none;
  1424. }
  1425. .list-inline {
  1426. padding-left: 0;
  1427. list-style: none;
  1428. margin-left: -5px;
  1429. }
  1430. .list-inline > li {
  1431. display: inline-block;
  1432. padding-right: 5px;
  1433. padding-left: 5px;
  1434. }
  1435. dl {
  1436. margin-top: 0;
  1437. margin-bottom: 18px;
  1438. }
  1439. dt,
  1440. dd {
  1441. line-height: 1.42857143;
  1442. }
  1443. dt {
  1444. font-weight: 700;
  1445. }
  1446. dd {
  1447. margin-left: 0;
  1448. }
  1449. @media (min-width: 541px) {
  1450. .dl-horizontal dt {
  1451. float: left;
  1452. width: 160px;
  1453. clear: left;
  1454. text-align: right;
  1455. overflow: hidden;
  1456. text-overflow: ellipsis;
  1457. white-space: nowrap;
  1458. }
  1459. .dl-horizontal dd {
  1460. margin-left: 180px;
  1461. }
  1462. }
  1463. abbr[title],
  1464. abbr[data-original-title] {
  1465. cursor: help;
  1466. }
  1467. .initialism {
  1468. font-size: 90%;
  1469. text-transform: uppercase;
  1470. }
  1471. blockquote {
  1472. padding: 9px 18px;
  1473. margin: 0 0 18px;
  1474. font-size: inherit;
  1475. border-left: 5px solid #eeeeee;
  1476. }
  1477. blockquote p:last-child,
  1478. blockquote ul:last-child,
  1479. blockquote ol:last-child {
  1480. margin-bottom: 0;
  1481. }
  1482. blockquote footer,
  1483. blockquote small,
  1484. blockquote .small {
  1485. display: block;
  1486. font-size: 80%;
  1487. line-height: 1.42857143;
  1488. color: #777777;
  1489. }
  1490. blockquote footer:before,
  1491. blockquote small:before,
  1492. blockquote .small:before {
  1493. content: "\2014 \00A0";
  1494. }
  1495. .blockquote-reverse,
  1496. blockquote.pull-right {
  1497. padding-right: 15px;
  1498. padding-left: 0;
  1499. text-align: right;
  1500. border-right: 5px solid #eeeeee;
  1501. border-left: 0;
  1502. }
  1503. .blockquote-reverse footer:before,
  1504. blockquote.pull-right footer:before,
  1505. .blockquote-reverse small:before,
  1506. blockquote.pull-right small:before,
  1507. .blockquote-reverse .small:before,
  1508. blockquote.pull-right .small:before {
  1509. content: "";
  1510. }
  1511. .blockquote-reverse footer:after,
  1512. blockquote.pull-right footer:after,
  1513. .blockquote-reverse small:after,
  1514. blockquote.pull-right small:after,
  1515. .blockquote-reverse .small:after,
  1516. blockquote.pull-right .small:after {
  1517. content: "\00A0 \2014";
  1518. }
  1519. address {
  1520. margin-bottom: 18px;
  1521. font-style: normal;
  1522. line-height: 1.42857143;
  1523. }
  1524. code,
  1525. kbd,
  1526. pre,
  1527. samp {
  1528. font-family: monospace;
  1529. }
  1530. code {
  1531. padding: 2px 4px;
  1532. font-size: 90%;
  1533. color: #c7254e;
  1534. background-color: #f9f2f4;
  1535. border-radius: 2px;
  1536. }
  1537. kbd {
  1538. padding: 2px 4px;
  1539. font-size: 90%;
  1540. color: #888;
  1541. background-color: transparent;
  1542. border-radius: 1px;
  1543. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1544. }
  1545. kbd kbd {
  1546. padding: 0;
  1547. font-size: 100%;
  1548. font-weight: 700;
  1549. box-shadow: none;
  1550. }
  1551. pre {
  1552. display: block;
  1553. padding: 8.5px;
  1554. margin: 0 0 9px;
  1555. font-size: 12px;
  1556. line-height: 1.42857143;
  1557. color: #333333;
  1558. word-break: break-all;
  1559. word-wrap: break-word;
  1560. background-color: #f5f5f5;
  1561. border: 1px solid #ccc;
  1562. border-radius: 2px;
  1563. }
  1564. pre code {
  1565. padding: 0;
  1566. font-size: inherit;
  1567. color: inherit;
  1568. white-space: pre-wrap;
  1569. background-color: transparent;
  1570. border-radius: 0;
  1571. }
  1572. .pre-scrollable {
  1573. max-height: 340px;
  1574. overflow-y: scroll;
  1575. }
  1576. .container {
  1577. padding-right: 0px;
  1578. padding-left: 0px;
  1579. margin-right: auto;
  1580. margin-left: auto;
  1581. }
  1582. @media (min-width: 768px) {
  1583. .container {
  1584. width: 768px;
  1585. }
  1586. }
  1587. @media (min-width: 992px) {
  1588. .container {
  1589. width: 940px;
  1590. }
  1591. }
  1592. @media (min-width: 1200px) {
  1593. .container {
  1594. width: 1140px;
  1595. }
  1596. }
  1597. .container-fluid {
  1598. padding-right: 0px;
  1599. padding-left: 0px;
  1600. margin-right: auto;
  1601. margin-left: auto;
  1602. }
  1603. .row {
  1604. margin-right: 0px;
  1605. margin-left: 0px;
  1606. }
  1607. .row-no-gutters {
  1608. margin-right: 0;
  1609. margin-left: 0;
  1610. }
  1611. .row-no-gutters [class*="col-"] {
  1612. padding-right: 0;
  1613. padding-left: 0;
  1614. }
  1615. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  1616. position: relative;
  1617. min-height: 1px;
  1618. padding-right: 0px;
  1619. padding-left: 0px;
  1620. }
  1621. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  1622. float: left;
  1623. }
  1624. .col-xs-12 {
  1625. width: 100%;
  1626. }
  1627. .col-xs-11 {
  1628. width: 91.66666667%;
  1629. }
  1630. .col-xs-10 {
  1631. width: 83.33333333%;
  1632. }
  1633. .col-xs-9 {
  1634. width: 75%;
  1635. }
  1636. .col-xs-8 {
  1637. width: 66.66666667%;
  1638. }
  1639. .col-xs-7 {
  1640. width: 58.33333333%;
  1641. }
  1642. .col-xs-6 {
  1643. width: 50%;
  1644. }
  1645. .col-xs-5 {
  1646. width: 41.66666667%;
  1647. }
  1648. .col-xs-4 {
  1649. width: 33.33333333%;
  1650. }
  1651. .col-xs-3 {
  1652. width: 25%;
  1653. }
  1654. .col-xs-2 {
  1655. width: 16.66666667%;
  1656. }
  1657. .col-xs-1 {
  1658. width: 8.33333333%;
  1659. }
  1660. .col-xs-pull-12 {
  1661. right: 100%;
  1662. }
  1663. .col-xs-pull-11 {
  1664. right: 91.66666667%;
  1665. }
  1666. .col-xs-pull-10 {
  1667. right: 83.33333333%;
  1668. }
  1669. .col-xs-pull-9 {
  1670. right: 75%;
  1671. }
  1672. .col-xs-pull-8 {
  1673. right: 66.66666667%;
  1674. }
  1675. .col-xs-pull-7 {
  1676. right: 58.33333333%;
  1677. }
  1678. .col-xs-pull-6 {
  1679. right: 50%;
  1680. }
  1681. .col-xs-pull-5 {
  1682. right: 41.66666667%;
  1683. }
  1684. .col-xs-pull-4 {
  1685. right: 33.33333333%;
  1686. }
  1687. .col-xs-pull-3 {
  1688. right: 25%;
  1689. }
  1690. .col-xs-pull-2 {
  1691. right: 16.66666667%;
  1692. }
  1693. .col-xs-pull-1 {
  1694. right: 8.33333333%;
  1695. }
  1696. .col-xs-pull-0 {
  1697. right: auto;
  1698. }
  1699. .col-xs-push-12 {
  1700. left: 100%;
  1701. }
  1702. .col-xs-push-11 {
  1703. left: 91.66666667%;
  1704. }
  1705. .col-xs-push-10 {
  1706. left: 83.33333333%;
  1707. }
  1708. .col-xs-push-9 {
  1709. left: 75%;
  1710. }
  1711. .col-xs-push-8 {
  1712. left: 66.66666667%;
  1713. }
  1714. .col-xs-push-7 {
  1715. left: 58.33333333%;
  1716. }
  1717. .col-xs-push-6 {
  1718. left: 50%;
  1719. }
  1720. .col-xs-push-5 {
  1721. left: 41.66666667%;
  1722. }
  1723. .col-xs-push-4 {
  1724. left: 33.33333333%;
  1725. }
  1726. .col-xs-push-3 {
  1727. left: 25%;
  1728. }
  1729. .col-xs-push-2 {
  1730. left: 16.66666667%;
  1731. }
  1732. .col-xs-push-1 {
  1733. left: 8.33333333%;
  1734. }
  1735. .col-xs-push-0 {
  1736. left: auto;
  1737. }
  1738. .col-xs-offset-12 {
  1739. margin-left: 100%;
  1740. }
  1741. .col-xs-offset-11 {
  1742. margin-left: 91.66666667%;
  1743. }
  1744. .col-xs-offset-10 {
  1745. margin-left: 83.33333333%;
  1746. }
  1747. .col-xs-offset-9 {
  1748. margin-left: 75%;
  1749. }
  1750. .col-xs-offset-8 {
  1751. margin-left: 66.66666667%;
  1752. }
  1753. .col-xs-offset-7 {
  1754. margin-left: 58.33333333%;
  1755. }
  1756. .col-xs-offset-6 {
  1757. margin-left: 50%;
  1758. }
  1759. .col-xs-offset-5 {
  1760. margin-left: 41.66666667%;
  1761. }
  1762. .col-xs-offset-4 {
  1763. margin-left: 33.33333333%;
  1764. }
  1765. .col-xs-offset-3 {
  1766. margin-left: 25%;
  1767. }
  1768. .col-xs-offset-2 {
  1769. margin-left: 16.66666667%;
  1770. }
  1771. .col-xs-offset-1 {
  1772. margin-left: 8.33333333%;
  1773. }
  1774. .col-xs-offset-0 {
  1775. margin-left: 0%;
  1776. }
  1777. @media (min-width: 768px) {
  1778. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  1779. float: left;
  1780. }
  1781. .col-sm-12 {
  1782. width: 100%;
  1783. }
  1784. .col-sm-11 {
  1785. width: 91.66666667%;
  1786. }
  1787. .col-sm-10 {
  1788. width: 83.33333333%;
  1789. }
  1790. .col-sm-9 {
  1791. width: 75%;
  1792. }
  1793. .col-sm-8 {
  1794. width: 66.66666667%;
  1795. }
  1796. .col-sm-7 {
  1797. width: 58.33333333%;
  1798. }
  1799. .col-sm-6 {
  1800. width: 50%;
  1801. }
  1802. .col-sm-5 {
  1803. width: 41.66666667%;
  1804. }
  1805. .col-sm-4 {
  1806. width: 33.33333333%;
  1807. }
  1808. .col-sm-3 {
  1809. width: 25%;
  1810. }
  1811. .col-sm-2 {
  1812. width: 16.66666667%;
  1813. }
  1814. .col-sm-1 {
  1815. width: 8.33333333%;
  1816. }
  1817. .col-sm-pull-12 {
  1818. right: 100%;
  1819. }
  1820. .col-sm-pull-11 {
  1821. right: 91.66666667%;
  1822. }
  1823. .col-sm-pull-10 {
  1824. right: 83.33333333%;
  1825. }
  1826. .col-sm-pull-9 {
  1827. right: 75%;
  1828. }
  1829. .col-sm-pull-8 {
  1830. right: 66.66666667%;
  1831. }
  1832. .col-sm-pull-7 {
  1833. right: 58.33333333%;
  1834. }
  1835. .col-sm-pull-6 {
  1836. right: 50%;
  1837. }
  1838. .col-sm-pull-5 {
  1839. right: 41.66666667%;
  1840. }
  1841. .col-sm-pull-4 {
  1842. right: 33.33333333%;
  1843. }
  1844. .col-sm-pull-3 {
  1845. right: 25%;
  1846. }
  1847. .col-sm-pull-2 {
  1848. right: 16.66666667%;
  1849. }
  1850. .col-sm-pull-1 {
  1851. right: 8.33333333%;
  1852. }
  1853. .col-sm-pull-0 {
  1854. right: auto;
  1855. }
  1856. .col-sm-push-12 {
  1857. left: 100%;
  1858. }
  1859. .col-sm-push-11 {
  1860. left: 91.66666667%;
  1861. }
  1862. .col-sm-push-10 {
  1863. left: 83.33333333%;
  1864. }
  1865. .col-sm-push-9 {
  1866. left: 75%;
  1867. }
  1868. .col-sm-push-8 {
  1869. left: 66.66666667%;
  1870. }
  1871. .col-sm-push-7 {
  1872. left: 58.33333333%;
  1873. }
  1874. .col-sm-push-6 {
  1875. left: 50%;
  1876. }
  1877. .col-sm-push-5 {
  1878. left: 41.66666667%;
  1879. }
  1880. .col-sm-push-4 {
  1881. left: 33.33333333%;
  1882. }
  1883. .col-sm-push-3 {
  1884. left: 25%;
  1885. }
  1886. .col-sm-push-2 {
  1887. left: 16.66666667%;
  1888. }
  1889. .col-sm-push-1 {
  1890. left: 8.33333333%;
  1891. }
  1892. .col-sm-push-0 {
  1893. left: auto;
  1894. }
  1895. .col-sm-offset-12 {
  1896. margin-left: 100%;
  1897. }
  1898. .col-sm-offset-11 {
  1899. margin-left: 91.66666667%;
  1900. }
  1901. .col-sm-offset-10 {
  1902. margin-left: 83.33333333%;
  1903. }
  1904. .col-sm-offset-9 {
  1905. margin-left: 75%;
  1906. }
  1907. .col-sm-offset-8 {
  1908. margin-left: 66.66666667%;
  1909. }
  1910. .col-sm-offset-7 {
  1911. margin-left: 58.33333333%;
  1912. }
  1913. .col-sm-offset-6 {
  1914. margin-left: 50%;
  1915. }
  1916. .col-sm-offset-5 {
  1917. margin-left: 41.66666667%;
  1918. }
  1919. .col-sm-offset-4 {
  1920. margin-left: 33.33333333%;
  1921. }
  1922. .col-sm-offset-3 {
  1923. margin-left: 25%;
  1924. }
  1925. .col-sm-offset-2 {
  1926. margin-left: 16.66666667%;
  1927. }
  1928. .col-sm-offset-1 {
  1929. margin-left: 8.33333333%;
  1930. }
  1931. .col-sm-offset-0 {
  1932. margin-left: 0%;
  1933. }
  1934. }
  1935. @media (min-width: 992px) {
  1936. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  1937. float: left;
  1938. }
  1939. .col-md-12 {
  1940. width: 100%;
  1941. }
  1942. .col-md-11 {
  1943. width: 91.66666667%;
  1944. }
  1945. .col-md-10 {
  1946. width: 83.33333333%;
  1947. }
  1948. .col-md-9 {
  1949. width: 75%;
  1950. }
  1951. .col-md-8 {
  1952. width: 66.66666667%;
  1953. }
  1954. .col-md-7 {
  1955. width: 58.33333333%;
  1956. }
  1957. .col-md-6 {
  1958. width: 50%;
  1959. }
  1960. .col-md-5 {
  1961. width: 41.66666667%;
  1962. }
  1963. .col-md-4 {
  1964. width: 33.33333333%;
  1965. }
  1966. .col-md-3 {
  1967. width: 25%;
  1968. }
  1969. .col-md-2 {
  1970. width: 16.66666667%;
  1971. }
  1972. .col-md-1 {
  1973. width: 8.33333333%;
  1974. }
  1975. .col-md-pull-12 {
  1976. right: 100%;
  1977. }
  1978. .col-md-pull-11 {
  1979. right: 91.66666667%;
  1980. }
  1981. .col-md-pull-10 {
  1982. right: 83.33333333%;
  1983. }
  1984. .col-md-pull-9 {
  1985. right: 75%;
  1986. }
  1987. .col-md-pull-8 {
  1988. right: 66.66666667%;
  1989. }
  1990. .col-md-pull-7 {
  1991. right: 58.33333333%;
  1992. }
  1993. .col-md-pull-6 {
  1994. right: 50%;
  1995. }
  1996. .col-md-pull-5 {
  1997. right: 41.66666667%;
  1998. }
  1999. .col-md-pull-4 {
  2000. right: 33.33333333%;
  2001. }
  2002. .col-md-pull-3 {
  2003. right: 25%;
  2004. }
  2005. .col-md-pull-2 {
  2006. right: 16.66666667%;
  2007. }
  2008. .col-md-pull-1 {
  2009. right: 8.33333333%;
  2010. }
  2011. .col-md-pull-0 {
  2012. right: auto;
  2013. }
  2014. .col-md-push-12 {
  2015. left: 100%;
  2016. }
  2017. .col-md-push-11 {
  2018. left: 91.66666667%;
  2019. }
  2020. .col-md-push-10 {
  2021. left: 83.33333333%;
  2022. }
  2023. .col-md-push-9 {
  2024. left: 75%;
  2025. }
  2026. .col-md-push-8 {
  2027. left: 66.66666667%;
  2028. }
  2029. .col-md-push-7 {
  2030. left: 58.33333333%;
  2031. }
  2032. .col-md-push-6 {
  2033. left: 50%;
  2034. }
  2035. .col-md-push-5 {
  2036. left: 41.66666667%;
  2037. }
  2038. .col-md-push-4 {
  2039. left: 33.33333333%;
  2040. }
  2041. .col-md-push-3 {
  2042. left: 25%;
  2043. }
  2044. .col-md-push-2 {
  2045. left: 16.66666667%;
  2046. }
  2047. .col-md-push-1 {
  2048. left: 8.33333333%;
  2049. }
  2050. .col-md-push-0 {
  2051. left: auto;
  2052. }
  2053. .col-md-offset-12 {
  2054. margin-left: 100%;
  2055. }
  2056. .col-md-offset-11 {
  2057. margin-left: 91.66666667%;
  2058. }
  2059. .col-md-offset-10 {
  2060. margin-left: 83.33333333%;
  2061. }
  2062. .col-md-offset-9 {
  2063. margin-left: 75%;
  2064. }
  2065. .col-md-offset-8 {
  2066. margin-left: 66.66666667%;
  2067. }
  2068. .col-md-offset-7 {
  2069. margin-left: 58.33333333%;
  2070. }
  2071. .col-md-offset-6 {
  2072. margin-left: 50%;
  2073. }
  2074. .col-md-offset-5 {
  2075. margin-left: 41.66666667%;
  2076. }
  2077. .col-md-offset-4 {
  2078. margin-left: 33.33333333%;
  2079. }
  2080. .col-md-offset-3 {
  2081. margin-left: 25%;
  2082. }
  2083. .col-md-offset-2 {
  2084. margin-left: 16.66666667%;
  2085. }
  2086. .col-md-offset-1 {
  2087. margin-left: 8.33333333%;
  2088. }
  2089. .col-md-offset-0 {
  2090. margin-left: 0%;
  2091. }
  2092. }
  2093. @media (min-width: 1200px) {
  2094. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  2095. float: left;
  2096. }
  2097. .col-lg-12 {
  2098. width: 100%;
  2099. }
  2100. .col-lg-11 {
  2101. width: 91.66666667%;
  2102. }
  2103. .col-lg-10 {
  2104. width: 83.33333333%;
  2105. }
  2106. .col-lg-9 {
  2107. width: 75%;
  2108. }
  2109. .col-lg-8 {
  2110. width: 66.66666667%;
  2111. }
  2112. .col-lg-7 {
  2113. width: 58.33333333%;
  2114. }
  2115. .col-lg-6 {
  2116. width: 50%;
  2117. }
  2118. .col-lg-5 {
  2119. width: 41.66666667%;
  2120. }
  2121. .col-lg-4 {
  2122. width: 33.33333333%;
  2123. }
  2124. .col-lg-3 {
  2125. width: 25%;
  2126. }
  2127. .col-lg-2 {
  2128. width: 16.66666667%;
  2129. }
  2130. .col-lg-1 {
  2131. width: 8.33333333%;
  2132. }
  2133. .col-lg-pull-12 {
  2134. right: 100%;
  2135. }
  2136. .col-lg-pull-11 {
  2137. right: 91.66666667%;
  2138. }
  2139. .col-lg-pull-10 {
  2140. right: 83.33333333%;
  2141. }
  2142. .col-lg-pull-9 {
  2143. right: 75%;
  2144. }
  2145. .col-lg-pull-8 {
  2146. right: 66.66666667%;
  2147. }
  2148. .col-lg-pull-7 {
  2149. right: 58.33333333%;
  2150. }
  2151. .col-lg-pull-6 {
  2152. right: 50%;
  2153. }
  2154. .col-lg-pull-5 {
  2155. right: 41.66666667%;
  2156. }
  2157. .col-lg-pull-4 {
  2158. right: 33.33333333%;
  2159. }
  2160. .col-lg-pull-3 {
  2161. right: 25%;
  2162. }
  2163. .col-lg-pull-2 {
  2164. right: 16.66666667%;
  2165. }
  2166. .col-lg-pull-1 {
  2167. right: 8.33333333%;
  2168. }
  2169. .col-lg-pull-0 {
  2170. right: auto;
  2171. }
  2172. .col-lg-push-12 {
  2173. left: 100%;
  2174. }
  2175. .col-lg-push-11 {
  2176. left: 91.66666667%;
  2177. }
  2178. .col-lg-push-10 {
  2179. left: 83.33333333%;
  2180. }
  2181. .col-lg-push-9 {
  2182. left: 75%;
  2183. }
  2184. .col-lg-push-8 {
  2185. left: 66.66666667%;
  2186. }
  2187. .col-lg-push-7 {
  2188. left: 58.33333333%;
  2189. }
  2190. .col-lg-push-6 {
  2191. left: 50%;
  2192. }
  2193. .col-lg-push-5 {
  2194. left: 41.66666667%;
  2195. }
  2196. .col-lg-push-4 {
  2197. left: 33.33333333%;
  2198. }
  2199. .col-lg-push-3 {
  2200. left: 25%;
  2201. }
  2202. .col-lg-push-2 {
  2203. left: 16.66666667%;
  2204. }
  2205. .col-lg-push-1 {
  2206. left: 8.33333333%;
  2207. }
  2208. .col-lg-push-0 {
  2209. left: auto;
  2210. }
  2211. .col-lg-offset-12 {
  2212. margin-left: 100%;
  2213. }
  2214. .col-lg-offset-11 {
  2215. margin-left: 91.66666667%;
  2216. }
  2217. .col-lg-offset-10 {
  2218. margin-left: 83.33333333%;
  2219. }
  2220. .col-lg-offset-9 {
  2221. margin-left: 75%;
  2222. }
  2223. .col-lg-offset-8 {
  2224. margin-left: 66.66666667%;
  2225. }
  2226. .col-lg-offset-7 {
  2227. margin-left: 58.33333333%;
  2228. }
  2229. .col-lg-offset-6 {
  2230. margin-left: 50%;
  2231. }
  2232. .col-lg-offset-5 {
  2233. margin-left: 41.66666667%;
  2234. }
  2235. .col-lg-offset-4 {
  2236. margin-left: 33.33333333%;
  2237. }
  2238. .col-lg-offset-3 {
  2239. margin-left: 25%;
  2240. }
  2241. .col-lg-offset-2 {
  2242. margin-left: 16.66666667%;
  2243. }
  2244. .col-lg-offset-1 {
  2245. margin-left: 8.33333333%;
  2246. }
  2247. .col-lg-offset-0 {
  2248. margin-left: 0%;
  2249. }
  2250. }
  2251. table {
  2252. background-color: transparent;
  2253. }
  2254. table col[class*="col-"] {
  2255. position: static;
  2256. display: table-column;
  2257. float: none;
  2258. }
  2259. table td[class*="col-"],
  2260. table th[class*="col-"] {
  2261. position: static;
  2262. display: table-cell;
  2263. float: none;
  2264. }
  2265. caption {
  2266. padding-top: 8px;
  2267. padding-bottom: 8px;
  2268. color: #777777;
  2269. text-align: left;
  2270. }
  2271. th {
  2272. text-align: left;
  2273. }
  2274. .table {
  2275. width: 100%;
  2276. max-width: 100%;
  2277. margin-bottom: 18px;
  2278. }
  2279. .table > thead > tr > th,
  2280. .table > tbody > tr > th,
  2281. .table > tfoot > tr > th,
  2282. .table > thead > tr > td,
  2283. .table > tbody > tr > td,
  2284. .table > tfoot > tr > td {
  2285. padding: 8px;
  2286. line-height: 1.42857143;
  2287. vertical-align: top;
  2288. border-top: 1px solid #ddd;
  2289. }
  2290. .table > thead > tr > th {
  2291. vertical-align: bottom;
  2292. border-bottom: 2px solid #ddd;
  2293. }
  2294. .table > caption + thead > tr:first-child > th,
  2295. .table > colgroup + thead > tr:first-child > th,
  2296. .table > thead:first-child > tr:first-child > th,
  2297. .table > caption + thead > tr:first-child > td,
  2298. .table > colgroup + thead > tr:first-child > td,
  2299. .table > thead:first-child > tr:first-child > td {
  2300. border-top: 0;
  2301. }
  2302. .table > tbody + tbody {
  2303. border-top: 2px solid #ddd;
  2304. }
  2305. .table .table {
  2306. background-color: #fff;
  2307. }
  2308. .table-condensed > thead > tr > th,
  2309. .table-condensed > tbody > tr > th,
  2310. .table-condensed > tfoot > tr > th,
  2311. .table-condensed > thead > tr > td,
  2312. .table-condensed > tbody > tr > td,
  2313. .table-condensed > tfoot > tr > td {
  2314. padding: 5px;
  2315. }
  2316. .table-bordered {
  2317. border: 1px solid #ddd;
  2318. }
  2319. .table-bordered > thead > tr > th,
  2320. .table-bordered > tbody > tr > th,
  2321. .table-bordered > tfoot > tr > th,
  2322. .table-bordered > thead > tr > td,
  2323. .table-bordered > tbody > tr > td,
  2324. .table-bordered > tfoot > tr > td {
  2325. border: 1px solid #ddd;
  2326. }
  2327. .table-bordered > thead > tr > th,
  2328. .table-bordered > thead > tr > td {
  2329. border-bottom-width: 2px;
  2330. }
  2331. .table-striped > tbody > tr:nth-of-type(odd) {
  2332. background-color: #f9f9f9;
  2333. }
  2334. .table-hover > tbody > tr:hover {
  2335. background-color: #f5f5f5;
  2336. }
  2337. .table > thead > tr > td.active,
  2338. .table > tbody > tr > td.active,
  2339. .table > tfoot > tr > td.active,
  2340. .table > thead > tr > th.active,
  2341. .table > tbody > tr > th.active,
  2342. .table > tfoot > tr > th.active,
  2343. .table > thead > tr.active > td,
  2344. .table > tbody > tr.active > td,
  2345. .table > tfoot > tr.active > td,
  2346. .table > thead > tr.active > th,
  2347. .table > tbody > tr.active > th,
  2348. .table > tfoot > tr.active > th {
  2349. background-color: #f5f5f5;
  2350. }
  2351. .table-hover > tbody > tr > td.active:hover,
  2352. .table-hover > tbody > tr > th.active:hover,
  2353. .table-hover > tbody > tr.active:hover > td,
  2354. .table-hover > tbody > tr:hover > .active,
  2355. .table-hover > tbody > tr.active:hover > th {
  2356. background-color: #e8e8e8;
  2357. }
  2358. .table > thead > tr > td.success,
  2359. .table > tbody > tr > td.success,
  2360. .table > tfoot > tr > td.success,
  2361. .table > thead > tr > th.success,
  2362. .table > tbody > tr > th.success,
  2363. .table > tfoot > tr > th.success,
  2364. .table > thead > tr.success > td,
  2365. .table > tbody > tr.success > td,
  2366. .table > tfoot > tr.success > td,
  2367. .table > thead > tr.success > th,
  2368. .table > tbody > tr.success > th,
  2369. .table > tfoot > tr.success > th {
  2370. background-color: #dff0d8;
  2371. }
  2372. .table-hover > tbody > tr > td.success:hover,
  2373. .table-hover > tbody > tr > th.success:hover,
  2374. .table-hover > tbody > tr.success:hover > td,
  2375. .table-hover > tbody > tr:hover > .success,
  2376. .table-hover > tbody > tr.success:hover > th {
  2377. background-color: #d0e9c6;
  2378. }
  2379. .table > thead > tr > td.info,
  2380. .table > tbody > tr > td.info,
  2381. .table > tfoot > tr > td.info,
  2382. .table > thead > tr > th.info,
  2383. .table > tbody > tr > th.info,
  2384. .table > tfoot > tr > th.info,
  2385. .table > thead > tr.info > td,
  2386. .table > tbody > tr.info > td,
  2387. .table > tfoot > tr.info > td,
  2388. .table > thead > tr.info > th,
  2389. .table > tbody > tr.info > th,
  2390. .table > tfoot > tr.info > th {
  2391. background-color: #d9edf7;
  2392. }
  2393. .table-hover > tbody > tr > td.info:hover,
  2394. .table-hover > tbody > tr > th.info:hover,
  2395. .table-hover > tbody > tr.info:hover > td,
  2396. .table-hover > tbody > tr:hover > .info,
  2397. .table-hover > tbody > tr.info:hover > th {
  2398. background-color: #c4e3f3;
  2399. }
  2400. .table > thead > tr > td.warning,
  2401. .table > tbody > tr > td.warning,
  2402. .table > tfoot > tr > td.warning,
  2403. .table > thead > tr > th.warning,
  2404. .table > tbody > tr > th.warning,
  2405. .table > tfoot > tr > th.warning,
  2406. .table > thead > tr.warning > td,
  2407. .table > tbody > tr.warning > td,
  2408. .table > tfoot > tr.warning > td,
  2409. .table > thead > tr.warning > th,
  2410. .table > tbody > tr.warning > th,
  2411. .table > tfoot > tr.warning > th {
  2412. background-color: #fcf8e3;
  2413. }
  2414. .table-hover > tbody > tr > td.warning:hover,
  2415. .table-hover > tbody > tr > th.warning:hover,
  2416. .table-hover > tbody > tr.warning:hover > td,
  2417. .table-hover > tbody > tr:hover > .warning,
  2418. .table-hover > tbody > tr.warning:hover > th {
  2419. background-color: #faf2cc;
  2420. }
  2421. .table > thead > tr > td.danger,
  2422. .table > tbody > tr > td.danger,
  2423. .table > tfoot > tr > td.danger,
  2424. .table > thead > tr > th.danger,
  2425. .table > tbody > tr > th.danger,
  2426. .table > tfoot > tr > th.danger,
  2427. .table > thead > tr.danger > td,
  2428. .table > tbody > tr.danger > td,
  2429. .table > tfoot > tr.danger > td,
  2430. .table > thead > tr.danger > th,
  2431. .table > tbody > tr.danger > th,
  2432. .table > tfoot > tr.danger > th {
  2433. background-color: #f2dede;
  2434. }
  2435. .table-hover > tbody > tr > td.danger:hover,
  2436. .table-hover > tbody > tr > th.danger:hover,
  2437. .table-hover > tbody > tr.danger:hover > td,
  2438. .table-hover > tbody > tr:hover > .danger,
  2439. .table-hover > tbody > tr.danger:hover > th {
  2440. background-color: #ebcccc;
  2441. }
  2442. .table-responsive {
  2443. min-height: .01%;
  2444. overflow-x: auto;
  2445. }
  2446. @media screen and (max-width: 767px) {
  2447. .table-responsive {
  2448. width: 100%;
  2449. margin-bottom: 13.5px;
  2450. overflow-y: hidden;
  2451. -ms-overflow-style: -ms-autohiding-scrollbar;
  2452. border: 1px solid #ddd;
  2453. }
  2454. .table-responsive > .table {
  2455. margin-bottom: 0;
  2456. }
  2457. .table-responsive > .table > thead > tr > th,
  2458. .table-responsive > .table > tbody > tr > th,
  2459. .table-responsive > .table > tfoot > tr > th,
  2460. .table-responsive > .table > thead > tr > td,
  2461. .table-responsive > .table > tbody > tr > td,
  2462. .table-responsive > .table > tfoot > tr > td {
  2463. white-space: nowrap;
  2464. }
  2465. .table-responsive > .table-bordered {
  2466. border: 0;
  2467. }
  2468. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2469. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2470. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2471. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2472. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2473. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2474. border-left: 0;
  2475. }
  2476. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2477. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2478. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2479. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2480. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2481. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2482. border-right: 0;
  2483. }
  2484. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2485. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2486. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2487. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2488. border-bottom: 0;
  2489. }
  2490. }
  2491. fieldset {
  2492. min-width: 0;
  2493. padding: 0;
  2494. margin: 0;
  2495. border: 0;
  2496. }
  2497. legend {
  2498. display: block;
  2499. width: 100%;
  2500. padding: 0;
  2501. margin-bottom: 18px;
  2502. font-size: 19.5px;
  2503. line-height: inherit;
  2504. color: #333333;
  2505. border: 0;
  2506. border-bottom: 1px solid #e5e5e5;
  2507. }
  2508. label {
  2509. display: inline-block;
  2510. max-width: 100%;
  2511. margin-bottom: 5px;
  2512. font-weight: 700;
  2513. }
  2514. input[type="search"] {
  2515. -webkit-box-sizing: border-box;
  2516. -moz-box-sizing: border-box;
  2517. box-sizing: border-box;
  2518. -webkit-appearance: none;
  2519. appearance: none;
  2520. }
  2521. input[type="radio"],
  2522. input[type="checkbox"] {
  2523. margin: 4px 0 0;
  2524. margin-top: 1px \9;
  2525. line-height: normal;
  2526. }
  2527. input[type="radio"][disabled],
  2528. input[type="checkbox"][disabled],
  2529. input[type="radio"].disabled,
  2530. input[type="checkbox"].disabled,
  2531. fieldset[disabled] input[type="radio"],
  2532. fieldset[disabled] input[type="checkbox"] {
  2533. cursor: not-allowed;
  2534. }
  2535. input[type="file"] {
  2536. display: block;
  2537. }
  2538. input[type="range"] {
  2539. display: block;
  2540. width: 100%;
  2541. }
  2542. select[multiple],
  2543. select[size] {
  2544. height: auto;
  2545. }
  2546. input[type="file"]:focus,
  2547. input[type="radio"]:focus,
  2548. input[type="checkbox"]:focus {
  2549. outline: 5px auto -webkit-focus-ring-color;
  2550. outline-offset: -2px;
  2551. }
  2552. output {
  2553. display: block;
  2554. padding-top: 7px;
  2555. font-size: 13px;
  2556. line-height: 1.42857143;
  2557. color: #555555;
  2558. }
  2559. .form-control {
  2560. display: block;
  2561. width: 100%;
  2562. height: 32px;
  2563. padding: 6px 12px;
  2564. font-size: 13px;
  2565. line-height: 1.42857143;
  2566. color: #555555;
  2567. background-color: #fff;
  2568. background-image: none;
  2569. border: 1px solid #ccc;
  2570. border-radius: 2px;
  2571. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2572. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2573. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2574. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2575. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2576. }
  2577. .form-control:focus {
  2578. border-color: #66afe9;
  2579. outline: 0;
  2580. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  2581. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  2582. }
  2583. .form-control::-moz-placeholder {
  2584. color: #999;
  2585. opacity: 1;
  2586. }
  2587. .form-control:-ms-input-placeholder {
  2588. color: #999;
  2589. }
  2590. .form-control::-webkit-input-placeholder {
  2591. color: #999;
  2592. }
  2593. .form-control::-ms-expand {
  2594. background-color: transparent;
  2595. border: 0;
  2596. }
  2597. .form-control[disabled],
  2598. .form-control[readonly],
  2599. fieldset[disabled] .form-control {
  2600. background-color: #eeeeee;
  2601. opacity: 1;
  2602. }
  2603. .form-control[disabled],
  2604. fieldset[disabled] .form-control {
  2605. cursor: not-allowed;
  2606. }
  2607. textarea.form-control {
  2608. height: auto;
  2609. }
  2610. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2611. input[type="date"].form-control,
  2612. input[type="time"].form-control,
  2613. input[type="datetime-local"].form-control,
  2614. input[type="month"].form-control {
  2615. line-height: 32px;
  2616. }
  2617. input[type="date"].input-sm,
  2618. input[type="time"].input-sm,
  2619. input[type="datetime-local"].input-sm,
  2620. input[type="month"].input-sm,
  2621. .input-group-sm input[type="date"],
  2622. .input-group-sm input[type="time"],
  2623. .input-group-sm input[type="datetime-local"],
  2624. .input-group-sm input[type="month"] {
  2625. line-height: 30px;
  2626. }
  2627. input[type="date"].input-lg,
  2628. input[type="time"].input-lg,
  2629. input[type="datetime-local"].input-lg,
  2630. input[type="month"].input-lg,
  2631. .input-group-lg input[type="date"],
  2632. .input-group-lg input[type="time"],
  2633. .input-group-lg input[type="datetime-local"],
  2634. .input-group-lg input[type="month"] {
  2635. line-height: 45px;
  2636. }
  2637. }
  2638. .form-group {
  2639. margin-bottom: 15px;
  2640. }
  2641. .radio,
  2642. .checkbox {
  2643. position: relative;
  2644. display: block;
  2645. margin-top: 10px;
  2646. margin-bottom: 10px;
  2647. }
  2648. .radio.disabled label,
  2649. .checkbox.disabled label,
  2650. fieldset[disabled] .radio label,
  2651. fieldset[disabled] .checkbox label {
  2652. cursor: not-allowed;
  2653. }
  2654. .radio label,
  2655. .checkbox label {
  2656. min-height: 18px;
  2657. padding-left: 20px;
  2658. margin-bottom: 0;
  2659. font-weight: 400;
  2660. cursor: pointer;
  2661. }
  2662. .radio input[type="radio"],
  2663. .radio-inline input[type="radio"],
  2664. .checkbox input[type="checkbox"],
  2665. .checkbox-inline input[type="checkbox"] {
  2666. position: absolute;
  2667. margin-top: 4px \9;
  2668. margin-left: -20px;
  2669. }
  2670. .radio + .radio,
  2671. .checkbox + .checkbox {
  2672. margin-top: -5px;
  2673. }
  2674. .radio-inline,
  2675. .checkbox-inline {
  2676. position: relative;
  2677. display: inline-block;
  2678. padding-left: 20px;
  2679. margin-bottom: 0;
  2680. font-weight: 400;
  2681. vertical-align: middle;
  2682. cursor: pointer;
  2683. }
  2684. .radio-inline.disabled,
  2685. .checkbox-inline.disabled,
  2686. fieldset[disabled] .radio-inline,
  2687. fieldset[disabled] .checkbox-inline {
  2688. cursor: not-allowed;
  2689. }
  2690. .radio-inline + .radio-inline,
  2691. .checkbox-inline + .checkbox-inline {
  2692. margin-top: 0;
  2693. margin-left: 10px;
  2694. }
  2695. .form-control-static {
  2696. min-height: 31px;
  2697. padding-top: 7px;
  2698. padding-bottom: 7px;
  2699. margin-bottom: 0;
  2700. }
  2701. .form-control-static.input-lg,
  2702. .form-control-static.input-sm {
  2703. padding-right: 0;
  2704. padding-left: 0;
  2705. }
  2706. .input-sm {
  2707. height: 30px;
  2708. padding: 5px 10px;
  2709. font-size: 12px;
  2710. line-height: 1.5;
  2711. border-radius: 1px;
  2712. }
  2713. select.input-sm {
  2714. height: 30px;
  2715. line-height: 30px;
  2716. }
  2717. textarea.input-sm,
  2718. select[multiple].input-sm {
  2719. height: auto;
  2720. }
  2721. .form-group-sm .form-control {
  2722. height: 30px;
  2723. padding: 5px 10px;
  2724. font-size: 12px;
  2725. line-height: 1.5;
  2726. border-radius: 1px;
  2727. }
  2728. .form-group-sm select.form-control {
  2729. height: 30px;
  2730. line-height: 30px;
  2731. }
  2732. .form-group-sm textarea.form-control,
  2733. .form-group-sm select[multiple].form-control {
  2734. height: auto;
  2735. }
  2736. .form-group-sm .form-control-static {
  2737. height: 30px;
  2738. min-height: 30px;
  2739. padding: 6px 10px;
  2740. font-size: 12px;
  2741. line-height: 1.5;
  2742. }
  2743. .input-lg {
  2744. height: 45px;
  2745. padding: 10px 16px;
  2746. font-size: 17px;
  2747. line-height: 1.3333333;
  2748. border-radius: 3px;
  2749. }
  2750. select.input-lg {
  2751. height: 45px;
  2752. line-height: 45px;
  2753. }
  2754. textarea.input-lg,
  2755. select[multiple].input-lg {
  2756. height: auto;
  2757. }
  2758. .form-group-lg .form-control {
  2759. height: 45px;
  2760. padding: 10px 16px;
  2761. font-size: 17px;
  2762. line-height: 1.3333333;
  2763. border-radius: 3px;
  2764. }
  2765. .form-group-lg select.form-control {
  2766. height: 45px;
  2767. line-height: 45px;
  2768. }
  2769. .form-group-lg textarea.form-control,
  2770. .form-group-lg select[multiple].form-control {
  2771. height: auto;
  2772. }
  2773. .form-group-lg .form-control-static {
  2774. height: 45px;
  2775. min-height: 35px;
  2776. padding: 11px 16px;
  2777. font-size: 17px;
  2778. line-height: 1.3333333;
  2779. }
  2780. .has-feedback {
  2781. position: relative;
  2782. }
  2783. .has-feedback .form-control {
  2784. padding-right: 40px;
  2785. }
  2786. .form-control-feedback {
  2787. position: absolute;
  2788. top: 0;
  2789. right: 0;
  2790. z-index: 2;
  2791. display: block;
  2792. width: 32px;
  2793. height: 32px;
  2794. line-height: 32px;
  2795. text-align: center;
  2796. pointer-events: none;
  2797. }
  2798. .input-lg + .form-control-feedback,
  2799. .input-group-lg + .form-control-feedback,
  2800. .form-group-lg .form-control + .form-control-feedback {
  2801. width: 45px;
  2802. height: 45px;
  2803. line-height: 45px;
  2804. }
  2805. .input-sm + .form-control-feedback,
  2806. .input-group-sm + .form-control-feedback,
  2807. .form-group-sm .form-control + .form-control-feedback {
  2808. width: 30px;
  2809. height: 30px;
  2810. line-height: 30px;
  2811. }
  2812. .has-success .help-block,
  2813. .has-success .control-label,
  2814. .has-success .radio,
  2815. .has-success .checkbox,
  2816. .has-success .radio-inline,
  2817. .has-success .checkbox-inline,
  2818. .has-success.radio label,
  2819. .has-success.checkbox label,
  2820. .has-success.radio-inline label,
  2821. .has-success.checkbox-inline label {
  2822. color: #3c763d;
  2823. }
  2824. .has-success .form-control {
  2825. border-color: #3c763d;
  2826. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2827. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2828. }
  2829. .has-success .form-control:focus {
  2830. border-color: #2b542c;
  2831. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2832. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2833. }
  2834. .has-success .input-group-addon {
  2835. color: #3c763d;
  2836. background-color: #dff0d8;
  2837. border-color: #3c763d;
  2838. }
  2839. .has-success .form-control-feedback {
  2840. color: #3c763d;
  2841. }
  2842. .has-warning .help-block,
  2843. .has-warning .control-label,
  2844. .has-warning .radio,
  2845. .has-warning .checkbox,
  2846. .has-warning .radio-inline,
  2847. .has-warning .checkbox-inline,
  2848. .has-warning.radio label,
  2849. .has-warning.checkbox label,
  2850. .has-warning.radio-inline label,
  2851. .has-warning.checkbox-inline label {
  2852. color: #8a6d3b;
  2853. }
  2854. .has-warning .form-control {
  2855. border-color: #8a6d3b;
  2856. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2857. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2858. }
  2859. .has-warning .form-control:focus {
  2860. border-color: #66512c;
  2861. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2862. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2863. }
  2864. .has-warning .input-group-addon {
  2865. color: #8a6d3b;
  2866. background-color: #fcf8e3;
  2867. border-color: #8a6d3b;
  2868. }
  2869. .has-warning .form-control-feedback {
  2870. color: #8a6d3b;
  2871. }
  2872. .has-error .help-block,
  2873. .has-error .control-label,
  2874. .has-error .radio,
  2875. .has-error .checkbox,
  2876. .has-error .radio-inline,
  2877. .has-error .checkbox-inline,
  2878. .has-error.radio label,
  2879. .has-error.checkbox label,
  2880. .has-error.radio-inline label,
  2881. .has-error.checkbox-inline label {
  2882. color: #a94442;
  2883. }
  2884. .has-error .form-control {
  2885. border-color: #a94442;
  2886. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2887. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2888. }
  2889. .has-error .form-control:focus {
  2890. border-color: #843534;
  2891. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2892. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2893. }
  2894. .has-error .input-group-addon {
  2895. color: #a94442;
  2896. background-color: #f2dede;
  2897. border-color: #a94442;
  2898. }
  2899. .has-error .form-control-feedback {
  2900. color: #a94442;
  2901. }
  2902. .has-feedback label ~ .form-control-feedback {
  2903. top: 23px;
  2904. }
  2905. .has-feedback label.sr-only ~ .form-control-feedback {
  2906. top: 0;
  2907. }
  2908. .help-block {
  2909. display: block;
  2910. margin-top: 5px;
  2911. margin-bottom: 10px;
  2912. color: #404040;
  2913. }
  2914. @media (min-width: 768px) {
  2915. .form-inline .form-group {
  2916. display: inline-block;
  2917. margin-bottom: 0;
  2918. vertical-align: middle;
  2919. }
  2920. .form-inline .form-control {
  2921. display: inline-block;
  2922. width: auto;
  2923. vertical-align: middle;
  2924. }
  2925. .form-inline .form-control-static {
  2926. display: inline-block;
  2927. }
  2928. .form-inline .input-group {
  2929. display: inline-table;
  2930. vertical-align: middle;
  2931. }
  2932. .form-inline .input-group .input-group-addon,
  2933. .form-inline .input-group .input-group-btn,
  2934. .form-inline .input-group .form-control {
  2935. width: auto;
  2936. }
  2937. .form-inline .input-group > .form-control {
  2938. width: 100%;
  2939. }
  2940. .form-inline .control-label {
  2941. margin-bottom: 0;
  2942. vertical-align: middle;
  2943. }
  2944. .form-inline .radio,
  2945. .form-inline .checkbox {
  2946. display: inline-block;
  2947. margin-top: 0;
  2948. margin-bottom: 0;
  2949. vertical-align: middle;
  2950. }
  2951. .form-inline .radio label,
  2952. .form-inline .checkbox label {
  2953. padding-left: 0;
  2954. }
  2955. .form-inline .radio input[type="radio"],
  2956. .form-inline .checkbox input[type="checkbox"] {
  2957. position: relative;
  2958. margin-left: 0;
  2959. }
  2960. .form-inline .has-feedback .form-control-feedback {
  2961. top: 0;
  2962. }
  2963. }
  2964. .form-horizontal .radio,
  2965. .form-horizontal .checkbox,
  2966. .form-horizontal .radio-inline,
  2967. .form-horizontal .checkbox-inline {
  2968. padding-top: 7px;
  2969. margin-top: 0;
  2970. margin-bottom: 0;
  2971. }
  2972. .form-horizontal .radio,
  2973. .form-horizontal .checkbox {
  2974. min-height: 25px;
  2975. }
  2976. .form-horizontal .form-group {
  2977. margin-right: 0px;
  2978. margin-left: 0px;
  2979. }
  2980. @media (min-width: 768px) {
  2981. .form-horizontal .control-label {
  2982. padding-top: 7px;
  2983. margin-bottom: 0;
  2984. text-align: right;
  2985. }
  2986. }
  2987. .form-horizontal .has-feedback .form-control-feedback {
  2988. right: 0px;
  2989. }
  2990. @media (min-width: 768px) {
  2991. .form-horizontal .form-group-lg .control-label {
  2992. padding-top: 11px;
  2993. font-size: 17px;
  2994. }
  2995. }
  2996. @media (min-width: 768px) {
  2997. .form-horizontal .form-group-sm .control-label {
  2998. padding-top: 6px;
  2999. font-size: 12px;
  3000. }
  3001. }
  3002. .btn {
  3003. display: inline-block;
  3004. margin-bottom: 0;
  3005. font-weight: normal;
  3006. text-align: center;
  3007. white-space: nowrap;
  3008. vertical-align: middle;
  3009. touch-action: manipulation;
  3010. cursor: pointer;
  3011. background-image: none;
  3012. border: 1px solid transparent;
  3013. padding: 6px 12px;
  3014. font-size: 13px;
  3015. line-height: 1.42857143;
  3016. border-radius: 2px;
  3017. -webkit-user-select: none;
  3018. -moz-user-select: none;
  3019. -ms-user-select: none;
  3020. user-select: none;
  3021. }
  3022. .btn:focus,
  3023. .btn:active:focus,
  3024. .btn.active:focus,
  3025. .btn.focus,
  3026. .btn:active.focus,
  3027. .btn.active.focus {
  3028. outline: 5px auto -webkit-focus-ring-color;
  3029. outline-offset: -2px;
  3030. }
  3031. .btn:hover,
  3032. .btn:focus,
  3033. .btn.focus {
  3034. color: #333;
  3035. text-decoration: none;
  3036. }
  3037. .btn:active,
  3038. .btn.active {
  3039. background-image: none;
  3040. outline: 0;
  3041. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3042. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3043. }
  3044. .btn.disabled,
  3045. .btn[disabled],
  3046. fieldset[disabled] .btn {
  3047. cursor: not-allowed;
  3048. filter: alpha(opacity=65);
  3049. opacity: 0.65;
  3050. -webkit-box-shadow: none;
  3051. box-shadow: none;
  3052. }
  3053. a.btn.disabled,
  3054. fieldset[disabled] a.btn {
  3055. pointer-events: none;
  3056. }
  3057. .btn-default {
  3058. color: #333;
  3059. background-color: #fff;
  3060. border-color: #ccc;
  3061. }
  3062. .btn-default:focus,
  3063. .btn-default.focus {
  3064. color: #333;
  3065. background-color: #e6e6e6;
  3066. border-color: #8c8c8c;
  3067. }
  3068. .btn-default:hover {
  3069. color: #333;
  3070. background-color: #e6e6e6;
  3071. border-color: #adadad;
  3072. }
  3073. .btn-default:active,
  3074. .btn-default.active,
  3075. .open > .dropdown-toggle.btn-default {
  3076. color: #333;
  3077. background-color: #e6e6e6;
  3078. background-image: none;
  3079. border-color: #adadad;
  3080. }
  3081. .btn-default:active:hover,
  3082. .btn-default.active:hover,
  3083. .open > .dropdown-toggle.btn-default:hover,
  3084. .btn-default:active:focus,
  3085. .btn-default.active:focus,
  3086. .open > .dropdown-toggle.btn-default:focus,
  3087. .btn-default:active.focus,
  3088. .btn-default.active.focus,
  3089. .open > .dropdown-toggle.btn-default.focus {
  3090. color: #333;
  3091. background-color: #d4d4d4;
  3092. border-color: #8c8c8c;
  3093. }
  3094. .btn-default.disabled:hover,
  3095. .btn-default[disabled]:hover,
  3096. fieldset[disabled] .btn-default:hover,
  3097. .btn-default.disabled:focus,
  3098. .btn-default[disabled]:focus,
  3099. fieldset[disabled] .btn-default:focus,
  3100. .btn-default.disabled.focus,
  3101. .btn-default[disabled].focus,
  3102. fieldset[disabled] .btn-default.focus {
  3103. background-color: #fff;
  3104. border-color: #ccc;
  3105. }
  3106. .btn-default .badge {
  3107. color: #fff;
  3108. background-color: #333;
  3109. }
  3110. .btn-primary {
  3111. color: #fff;
  3112. background-color: #337ab7;
  3113. border-color: #2e6da4;
  3114. }
  3115. .btn-primary:focus,
  3116. .btn-primary.focus {
  3117. color: #fff;
  3118. background-color: #286090;
  3119. border-color: #122b40;
  3120. }
  3121. .btn-primary:hover {
  3122. color: #fff;
  3123. background-color: #286090;
  3124. border-color: #204d74;
  3125. }
  3126. .btn-primary:active,
  3127. .btn-primary.active,
  3128. .open > .dropdown-toggle.btn-primary {
  3129. color: #fff;
  3130. background-color: #286090;
  3131. background-image: none;
  3132. border-color: #204d74;
  3133. }
  3134. .btn-primary:active:hover,
  3135. .btn-primary.active:hover,
  3136. .open > .dropdown-toggle.btn-primary:hover,
  3137. .btn-primary:active:focus,
  3138. .btn-primary.active:focus,
  3139. .open > .dropdown-toggle.btn-primary:focus,
  3140. .btn-primary:active.focus,
  3141. .btn-primary.active.focus,
  3142. .open > .dropdown-toggle.btn-primary.focus {
  3143. color: #fff;
  3144. background-color: #204d74;
  3145. border-color: #122b40;
  3146. }
  3147. .btn-primary.disabled:hover,
  3148. .btn-primary[disabled]:hover,
  3149. fieldset[disabled] .btn-primary:hover,
  3150. .btn-primary.disabled:focus,
  3151. .btn-primary[disabled]:focus,
  3152. fieldset[disabled] .btn-primary:focus,
  3153. .btn-primary.disabled.focus,
  3154. .btn-primary[disabled].focus,
  3155. fieldset[disabled] .btn-primary.focus {
  3156. background-color: #337ab7;
  3157. border-color: #2e6da4;
  3158. }
  3159. .btn-primary .badge {
  3160. color: #337ab7;
  3161. background-color: #fff;
  3162. }
  3163. .btn-success {
  3164. color: #fff;
  3165. background-color: #5cb85c;
  3166. border-color: #4cae4c;
  3167. }
  3168. .btn-success:focus,
  3169. .btn-success.focus {
  3170. color: #fff;
  3171. background-color: #449d44;
  3172. border-color: #255625;
  3173. }
  3174. .btn-success:hover {
  3175. color: #fff;
  3176. background-color: #449d44;
  3177. border-color: #398439;
  3178. }
  3179. .btn-success:active,
  3180. .btn-success.active,
  3181. .open > .dropdown-toggle.btn-success {
  3182. color: #fff;
  3183. background-color: #449d44;
  3184. background-image: none;
  3185. border-color: #398439;
  3186. }
  3187. .btn-success:active:hover,
  3188. .btn-success.active:hover,
  3189. .open > .dropdown-toggle.btn-success:hover,
  3190. .btn-success:active:focus,
  3191. .btn-success.active:focus,
  3192. .open > .dropdown-toggle.btn-success:focus,
  3193. .btn-success:active.focus,
  3194. .btn-success.active.focus,
  3195. .open > .dropdown-toggle.btn-success.focus {
  3196. color: #fff;
  3197. background-color: #398439;
  3198. border-color: #255625;
  3199. }
  3200. .btn-success.disabled:hover,
  3201. .btn-success[disabled]:hover,
  3202. fieldset[disabled] .btn-success:hover,
  3203. .btn-success.disabled:focus,
  3204. .btn-success[disabled]:focus,
  3205. fieldset[disabled] .btn-success:focus,
  3206. .btn-success.disabled.focus,
  3207. .btn-success[disabled].focus,
  3208. fieldset[disabled] .btn-success.focus {
  3209. background-color: #5cb85c;
  3210. border-color: #4cae4c;
  3211. }
  3212. .btn-success .badge {
  3213. color: #5cb85c;
  3214. background-color: #fff;
  3215. }
  3216. .btn-info {
  3217. color: #fff;
  3218. background-color: #5bc0de;
  3219. border-color: #46b8da;
  3220. }
  3221. .btn-info:focus,
  3222. .btn-info.focus {
  3223. color: #fff;
  3224. background-color: #31b0d5;
  3225. border-color: #1b6d85;
  3226. }
  3227. .btn-info:hover {
  3228. color: #fff;
  3229. background-color: #31b0d5;
  3230. border-color: #269abc;
  3231. }
  3232. .btn-info:active,
  3233. .btn-info.active,
  3234. .open > .dropdown-toggle.btn-info {
  3235. color: #fff;
  3236. background-color: #31b0d5;
  3237. background-image: none;
  3238. border-color: #269abc;
  3239. }
  3240. .btn-info:active:hover,
  3241. .btn-info.active:hover,
  3242. .open > .dropdown-toggle.btn-info:hover,
  3243. .btn-info:active:focus,
  3244. .btn-info.active:focus,
  3245. .open > .dropdown-toggle.btn-info:focus,
  3246. .btn-info:active.focus,
  3247. .btn-info.active.focus,
  3248. .open > .dropdown-toggle.btn-info.focus {
  3249. color: #fff;
  3250. background-color: #269abc;
  3251. border-color: #1b6d85;
  3252. }
  3253. .btn-info.disabled:hover,
  3254. .btn-info[disabled]:hover,
  3255. fieldset[disabled] .btn-info:hover,
  3256. .btn-info.disabled:focus,
  3257. .btn-info[disabled]:focus,
  3258. fieldset[disabled] .btn-info:focus,
  3259. .btn-info.disabled.focus,
  3260. .btn-info[disabled].focus,
  3261. fieldset[disabled] .btn-info.focus {
  3262. background-color: #5bc0de;
  3263. border-color: #46b8da;
  3264. }
  3265. .btn-info .badge {
  3266. color: #5bc0de;
  3267. background-color: #fff;
  3268. }
  3269. .btn-warning {
  3270. color: #fff;
  3271. background-color: #f0ad4e;
  3272. border-color: #eea236;
  3273. }
  3274. .btn-warning:focus,
  3275. .btn-warning.focus {
  3276. color: #fff;
  3277. background-color: #ec971f;
  3278. border-color: #985f0d;
  3279. }
  3280. .btn-warning:hover {
  3281. color: #fff;
  3282. background-color: #ec971f;
  3283. border-color: #d58512;
  3284. }
  3285. .btn-warning:active,
  3286. .btn-warning.active,
  3287. .open > .dropdown-toggle.btn-warning {
  3288. color: #fff;
  3289. background-color: #ec971f;
  3290. background-image: none;
  3291. border-color: #d58512;
  3292. }
  3293. .btn-warning:active:hover,
  3294. .btn-warning.active:hover,
  3295. .open > .dropdown-toggle.btn-warning:hover,
  3296. .btn-warning:active:focus,
  3297. .btn-warning.active:focus,
  3298. .open > .dropdown-toggle.btn-warning:focus,
  3299. .btn-warning:active.focus,
  3300. .btn-warning.active.focus,
  3301. .open > .dropdown-toggle.btn-warning.focus {
  3302. color: #fff;
  3303. background-color: #d58512;
  3304. border-color: #985f0d;
  3305. }
  3306. .btn-warning.disabled:hover,
  3307. .btn-warning[disabled]:hover,
  3308. fieldset[disabled] .btn-warning:hover,
  3309. .btn-warning.disabled:focus,
  3310. .btn-warning[disabled]:focus,
  3311. fieldset[disabled] .btn-warning:focus,
  3312. .btn-warning.disabled.focus,
  3313. .btn-warning[disabled].focus,
  3314. fieldset[disabled] .btn-warning.focus {
  3315. background-color: #f0ad4e;
  3316. border-color: #eea236;
  3317. }
  3318. .btn-warning .badge {
  3319. color: #f0ad4e;
  3320. background-color: #fff;
  3321. }
  3322. .btn-danger {
  3323. color: #fff;
  3324. background-color: #d9534f;
  3325. border-color: #d43f3a;
  3326. }
  3327. .btn-danger:focus,
  3328. .btn-danger.focus {
  3329. color: #fff;
  3330. background-color: #c9302c;
  3331. border-color: #761c19;
  3332. }
  3333. .btn-danger:hover {
  3334. color: #fff;
  3335. background-color: #c9302c;
  3336. border-color: #ac2925;
  3337. }
  3338. .btn-danger:active,
  3339. .btn-danger.active,
  3340. .open > .dropdown-toggle.btn-danger {
  3341. color: #fff;
  3342. background-color: #c9302c;
  3343. background-image: none;
  3344. border-color: #ac2925;
  3345. }
  3346. .btn-danger:active:hover,
  3347. .btn-danger.active:hover,
  3348. .open > .dropdown-toggle.btn-danger:hover,
  3349. .btn-danger:active:focus,
  3350. .btn-danger.active:focus,
  3351. .open > .dropdown-toggle.btn-danger:focus,
  3352. .btn-danger:active.focus,
  3353. .btn-danger.active.focus,
  3354. .open > .dropdown-toggle.btn-danger.focus {
  3355. color: #fff;
  3356. background-color: #ac2925;
  3357. border-color: #761c19;
  3358. }
  3359. .btn-danger.disabled:hover,
  3360. .btn-danger[disabled]:hover,
  3361. fieldset[disabled] .btn-danger:hover,
  3362. .btn-danger.disabled:focus,
  3363. .btn-danger[disabled]:focus,
  3364. fieldset[disabled] .btn-danger:focus,
  3365. .btn-danger.disabled.focus,
  3366. .btn-danger[disabled].focus,
  3367. fieldset[disabled] .btn-danger.focus {
  3368. background-color: #d9534f;
  3369. border-color: #d43f3a;
  3370. }
  3371. .btn-danger .badge {
  3372. color: #d9534f;
  3373. background-color: #fff;
  3374. }
  3375. .btn-link {
  3376. font-weight: 400;
  3377. color: #296eaa;
  3378. border-radius: 0;
  3379. }
  3380. .btn-link,
  3381. .btn-link:active,
  3382. .btn-link.active,
  3383. .btn-link[disabled],
  3384. fieldset[disabled] .btn-link {
  3385. background-color: transparent;
  3386. -webkit-box-shadow: none;
  3387. box-shadow: none;
  3388. }
  3389. .btn-link,
  3390. .btn-link:hover,
  3391. .btn-link:focus,
  3392. .btn-link:active {
  3393. border-color: transparent;
  3394. }
  3395. .btn-link:hover,
  3396. .btn-link:focus {
  3397. color: #1a466c;
  3398. text-decoration: underline;
  3399. background-color: transparent;
  3400. }
  3401. .btn-link[disabled]:hover,
  3402. fieldset[disabled] .btn-link:hover,
  3403. .btn-link[disabled]:focus,
  3404. fieldset[disabled] .btn-link:focus {
  3405. color: #777777;
  3406. text-decoration: none;
  3407. }
  3408. .btn-lg,
  3409. .btn-group-lg > .btn {
  3410. padding: 10px 16px;
  3411. font-size: 17px;
  3412. line-height: 1.3333333;
  3413. border-radius: 3px;
  3414. }
  3415. .btn-sm,
  3416. .btn-group-sm > .btn {
  3417. padding: 5px 10px;
  3418. font-size: 12px;
  3419. line-height: 1.5;
  3420. border-radius: 1px;
  3421. }
  3422. .btn-xs,
  3423. .btn-group-xs > .btn {
  3424. padding: 1px 5px;
  3425. font-size: 12px;
  3426. line-height: 1.5;
  3427. border-radius: 1px;
  3428. }
  3429. .btn-block {
  3430. display: block;
  3431. width: 100%;
  3432. }
  3433. .btn-block + .btn-block {
  3434. margin-top: 5px;
  3435. }
  3436. input[type="submit"].btn-block,
  3437. input[type="reset"].btn-block,
  3438. input[type="button"].btn-block {
  3439. width: 100%;
  3440. }
  3441. .fade {
  3442. opacity: 0;
  3443. -webkit-transition: opacity 0.15s linear;
  3444. -o-transition: opacity 0.15s linear;
  3445. transition: opacity 0.15s linear;
  3446. }
  3447. .fade.in {
  3448. opacity: 1;
  3449. }
  3450. .collapse {
  3451. display: none;
  3452. }
  3453. .collapse.in {
  3454. display: block;
  3455. }
  3456. tr.collapse.in {
  3457. display: table-row;
  3458. }
  3459. tbody.collapse.in {
  3460. display: table-row-group;
  3461. }
  3462. .collapsing {
  3463. position: relative;
  3464. height: 0;
  3465. overflow: hidden;
  3466. -webkit-transition-property: height, visibility;
  3467. transition-property: height, visibility;
  3468. -webkit-transition-duration: 0.35s;
  3469. transition-duration: 0.35s;
  3470. -webkit-transition-timing-function: ease;
  3471. transition-timing-function: ease;
  3472. }
  3473. .caret {
  3474. display: inline-block;
  3475. width: 0;
  3476. height: 0;
  3477. margin-left: 2px;
  3478. vertical-align: middle;
  3479. border-top: 4px dashed;
  3480. border-top: 4px solid \9;
  3481. border-right: 4px solid transparent;
  3482. border-left: 4px solid transparent;
  3483. }
  3484. .dropup,
  3485. .dropdown {
  3486. position: relative;
  3487. }
  3488. .dropdown-toggle:focus {
  3489. outline: 0;
  3490. }
  3491. .dropdown-menu {
  3492. position: absolute;
  3493. top: 100%;
  3494. left: 0;
  3495. z-index: 1000;
  3496. display: none;
  3497. float: left;
  3498. min-width: 160px;
  3499. padding: 5px 0;
  3500. margin: 2px 0 0;
  3501. font-size: 13px;
  3502. text-align: left;
  3503. list-style: none;
  3504. background-color: #fff;
  3505. background-clip: padding-box;
  3506. border: 1px solid #ccc;
  3507. border: 1px solid rgba(0, 0, 0, 0.15);
  3508. border-radius: 2px;
  3509. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3510. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3511. }
  3512. .dropdown-menu.pull-right {
  3513. right: 0;
  3514. left: auto;
  3515. }
  3516. .dropdown-menu .divider {
  3517. height: 1px;
  3518. margin: 8px 0;
  3519. overflow: hidden;
  3520. background-color: #e5e5e5;
  3521. }
  3522. .dropdown-menu > li > a {
  3523. display: block;
  3524. padding: 3px 20px;
  3525. clear: both;
  3526. font-weight: 400;
  3527. line-height: 1.42857143;
  3528. color: #333333;
  3529. white-space: nowrap;
  3530. }
  3531. .dropdown-menu > li > a:hover,
  3532. .dropdown-menu > li > a:focus {
  3533. color: #262626;
  3534. text-decoration: none;
  3535. background-color: #f5f5f5;
  3536. }
  3537. .dropdown-menu > .active > a,
  3538. .dropdown-menu > .active > a:hover,
  3539. .dropdown-menu > .active > a:focus {
  3540. color: #fff;
  3541. text-decoration: none;
  3542. background-color: #337ab7;
  3543. outline: 0;
  3544. }
  3545. .dropdown-menu > .disabled > a,
  3546. .dropdown-menu > .disabled > a:hover,
  3547. .dropdown-menu > .disabled > a:focus {
  3548. color: #777777;
  3549. }
  3550. .dropdown-menu > .disabled > a:hover,
  3551. .dropdown-menu > .disabled > a:focus {
  3552. text-decoration: none;
  3553. cursor: not-allowed;
  3554. background-color: transparent;
  3555. background-image: none;
  3556. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3557. }
  3558. .open > .dropdown-menu {
  3559. display: block;
  3560. }
  3561. .open > a {
  3562. outline: 0;
  3563. }
  3564. .dropdown-menu-right {
  3565. right: 0;
  3566. left: auto;
  3567. }
  3568. .dropdown-menu-left {
  3569. right: auto;
  3570. left: 0;
  3571. }
  3572. .dropdown-header {
  3573. display: block;
  3574. padding: 3px 20px;
  3575. font-size: 12px;
  3576. line-height: 1.42857143;
  3577. color: #777777;
  3578. white-space: nowrap;
  3579. }
  3580. .dropdown-backdrop {
  3581. position: fixed;
  3582. top: 0;
  3583. right: 0;
  3584. bottom: 0;
  3585. left: 0;
  3586. z-index: 990;
  3587. }
  3588. .pull-right > .dropdown-menu {
  3589. right: 0;
  3590. left: auto;
  3591. }
  3592. .dropup .caret,
  3593. .navbar-fixed-bottom .dropdown .caret {
  3594. content: "";
  3595. border-top: 0;
  3596. border-bottom: 4px dashed;
  3597. border-bottom: 4px solid \9;
  3598. }
  3599. .dropup .dropdown-menu,
  3600. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3601. top: auto;
  3602. bottom: 100%;
  3603. margin-bottom: 2px;
  3604. }
  3605. @media (min-width: 541px) {
  3606. .navbar-right .dropdown-menu {
  3607. right: 0;
  3608. left: auto;
  3609. }
  3610. .navbar-right .dropdown-menu-left {
  3611. right: auto;
  3612. left: 0;
  3613. }
  3614. }
  3615. .btn-group,
  3616. .btn-group-vertical {
  3617. position: relative;
  3618. display: inline-block;
  3619. vertical-align: middle;
  3620. }
  3621. .btn-group > .btn,
  3622. .btn-group-vertical > .btn {
  3623. position: relative;
  3624. float: left;
  3625. }
  3626. .btn-group > .btn:hover,
  3627. .btn-group-vertical > .btn:hover,
  3628. .btn-group > .btn:focus,
  3629. .btn-group-vertical > .btn:focus,
  3630. .btn-group > .btn:active,
  3631. .btn-group-vertical > .btn:active,
  3632. .btn-group > .btn.active,
  3633. .btn-group-vertical > .btn.active {
  3634. z-index: 2;
  3635. }
  3636. .btn-group .btn + .btn,
  3637. .btn-group .btn + .btn-group,
  3638. .btn-group .btn-group + .btn,
  3639. .btn-group .btn-group + .btn-group {
  3640. margin-left: -1px;
  3641. }
  3642. .btn-toolbar {
  3643. margin-left: -5px;
  3644. }
  3645. .btn-toolbar .btn,
  3646. .btn-toolbar .btn-group,
  3647. .btn-toolbar .input-group {
  3648. float: left;
  3649. }
  3650. .btn-toolbar > .btn,
  3651. .btn-toolbar > .btn-group,
  3652. .btn-toolbar > .input-group {
  3653. margin-left: 5px;
  3654. }
  3655. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3656. border-radius: 0;
  3657. }
  3658. .btn-group > .btn:first-child {
  3659. margin-left: 0;
  3660. }
  3661. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3662. border-top-right-radius: 0;
  3663. border-bottom-right-radius: 0;
  3664. }
  3665. .btn-group > .btn:last-child:not(:first-child),
  3666. .btn-group > .dropdown-toggle:not(:first-child) {
  3667. border-top-left-radius: 0;
  3668. border-bottom-left-radius: 0;
  3669. }
  3670. .btn-group > .btn-group {
  3671. float: left;
  3672. }
  3673. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3674. border-radius: 0;
  3675. }
  3676. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3677. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3678. border-top-right-radius: 0;
  3679. border-bottom-right-radius: 0;
  3680. }
  3681. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3682. border-top-left-radius: 0;
  3683. border-bottom-left-radius: 0;
  3684. }
  3685. .btn-group .dropdown-toggle:active,
  3686. .btn-group.open .dropdown-toggle {
  3687. outline: 0;
  3688. }
  3689. .btn-group > .btn + .dropdown-toggle {
  3690. padding-right: 8px;
  3691. padding-left: 8px;
  3692. }
  3693. .btn-group > .btn-lg + .dropdown-toggle {
  3694. padding-right: 12px;
  3695. padding-left: 12px;
  3696. }
  3697. .btn-group.open .dropdown-toggle {
  3698. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3699. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3700. }
  3701. .btn-group.open .dropdown-toggle.btn-link {
  3702. -webkit-box-shadow: none;
  3703. box-shadow: none;
  3704. }
  3705. .btn .caret {
  3706. margin-left: 0;
  3707. }
  3708. .btn-lg .caret {
  3709. border-width: 5px 5px 0;
  3710. border-bottom-width: 0;
  3711. }
  3712. .dropup .btn-lg .caret {
  3713. border-width: 0 5px 5px;
  3714. }
  3715. .btn-group-vertical > .btn,
  3716. .btn-group-vertical > .btn-group,
  3717. .btn-group-vertical > .btn-group > .btn {
  3718. display: block;
  3719. float: none;
  3720. width: 100%;
  3721. max-width: 100%;
  3722. }
  3723. .btn-group-vertical > .btn-group > .btn {
  3724. float: none;
  3725. }
  3726. .btn-group-vertical > .btn + .btn,
  3727. .btn-group-vertical > .btn + .btn-group,
  3728. .btn-group-vertical > .btn-group + .btn,
  3729. .btn-group-vertical > .btn-group + .btn-group {
  3730. margin-top: -1px;
  3731. margin-left: 0;
  3732. }
  3733. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3734. border-radius: 0;
  3735. }
  3736. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3737. border-top-left-radius: 2px;
  3738. border-top-right-radius: 2px;
  3739. border-bottom-right-radius: 0;
  3740. border-bottom-left-radius: 0;
  3741. }
  3742. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3743. border-top-left-radius: 0;
  3744. border-top-right-radius: 0;
  3745. border-bottom-right-radius: 2px;
  3746. border-bottom-left-radius: 2px;
  3747. }
  3748. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3749. border-radius: 0;
  3750. }
  3751. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3752. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3753. border-bottom-right-radius: 0;
  3754. border-bottom-left-radius: 0;
  3755. }
  3756. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3757. border-top-left-radius: 0;
  3758. border-top-right-radius: 0;
  3759. }
  3760. .btn-group-justified {
  3761. display: table;
  3762. width: 100%;
  3763. table-layout: fixed;
  3764. border-collapse: separate;
  3765. }
  3766. .btn-group-justified > .btn,
  3767. .btn-group-justified > .btn-group {
  3768. display: table-cell;
  3769. float: none;
  3770. width: 1%;
  3771. }
  3772. .btn-group-justified > .btn-group .btn {
  3773. width: 100%;
  3774. }
  3775. .btn-group-justified > .btn-group .dropdown-menu {
  3776. left: auto;
  3777. }
  3778. [data-toggle="buttons"] > .btn input[type="radio"],
  3779. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3780. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3781. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3782. position: absolute;
  3783. clip: rect(0, 0, 0, 0);
  3784. pointer-events: none;
  3785. }
  3786. .input-group {
  3787. position: relative;
  3788. display: table;
  3789. border-collapse: separate;
  3790. }
  3791. .input-group[class*="col-"] {
  3792. float: none;
  3793. padding-right: 0;
  3794. padding-left: 0;
  3795. }
  3796. .input-group .form-control {
  3797. position: relative;
  3798. z-index: 2;
  3799. float: left;
  3800. width: 100%;
  3801. margin-bottom: 0;
  3802. }
  3803. .input-group .form-control:focus {
  3804. z-index: 3;
  3805. }
  3806. .input-group-lg > .form-control,
  3807. .input-group-lg > .input-group-addon,
  3808. .input-group-lg > .input-group-btn > .btn {
  3809. height: 45px;
  3810. padding: 10px 16px;
  3811. font-size: 17px;
  3812. line-height: 1.3333333;
  3813. border-radius: 3px;
  3814. }
  3815. select.input-group-lg > .form-control,
  3816. select.input-group-lg > .input-group-addon,
  3817. select.input-group-lg > .input-group-btn > .btn {
  3818. height: 45px;
  3819. line-height: 45px;
  3820. }
  3821. textarea.input-group-lg > .form-control,
  3822. textarea.input-group-lg > .input-group-addon,
  3823. textarea.input-group-lg > .input-group-btn > .btn,
  3824. select[multiple].input-group-lg > .form-control,
  3825. select[multiple].input-group-lg > .input-group-addon,
  3826. select[multiple].input-group-lg > .input-group-btn > .btn {
  3827. height: auto;
  3828. }
  3829. .input-group-sm > .form-control,
  3830. .input-group-sm > .input-group-addon,
  3831. .input-group-sm > .input-group-btn > .btn {
  3832. height: 30px;
  3833. padding: 5px 10px;
  3834. font-size: 12px;
  3835. line-height: 1.5;
  3836. border-radius: 1px;
  3837. }
  3838. select.input-group-sm > .form-control,
  3839. select.input-group-sm > .input-group-addon,
  3840. select.input-group-sm > .input-group-btn > .btn {
  3841. height: 30px;
  3842. line-height: 30px;
  3843. }
  3844. textarea.input-group-sm > .form-control,
  3845. textarea.input-group-sm > .input-group-addon,
  3846. textarea.input-group-sm > .input-group-btn > .btn,
  3847. select[multiple].input-group-sm > .form-control,
  3848. select[multiple].input-group-sm > .input-group-addon,
  3849. select[multiple].input-group-sm > .input-group-btn > .btn {
  3850. height: auto;
  3851. }
  3852. .input-group-addon,
  3853. .input-group-btn,
  3854. .input-group .form-control {
  3855. display: table-cell;
  3856. }
  3857. .input-group-addon:not(:first-child):not(:last-child),
  3858. .input-group-btn:not(:first-child):not(:last-child),
  3859. .input-group .form-control:not(:first-child):not(:last-child) {
  3860. border-radius: 0;
  3861. }
  3862. .input-group-addon,
  3863. .input-group-btn {
  3864. width: 1%;
  3865. white-space: nowrap;
  3866. vertical-align: middle;
  3867. }
  3868. .input-group-addon {
  3869. padding: 6px 12px;
  3870. font-size: 13px;
  3871. font-weight: 400;
  3872. line-height: 1;
  3873. color: #555555;
  3874. text-align: center;
  3875. background-color: #eeeeee;
  3876. border: 1px solid #ccc;
  3877. border-radius: 2px;
  3878. }
  3879. .input-group-addon.input-sm {
  3880. padding: 5px 10px;
  3881. font-size: 12px;
  3882. border-radius: 1px;
  3883. }
  3884. .input-group-addon.input-lg {
  3885. padding: 10px 16px;
  3886. font-size: 17px;
  3887. border-radius: 3px;
  3888. }
  3889. .input-group-addon input[type="radio"],
  3890. .input-group-addon input[type="checkbox"] {
  3891. margin-top: 0;
  3892. }
  3893. .input-group .form-control:first-child,
  3894. .input-group-addon:first-child,
  3895. .input-group-btn:first-child > .btn,
  3896. .input-group-btn:first-child > .btn-group > .btn,
  3897. .input-group-btn:first-child > .dropdown-toggle,
  3898. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3899. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3900. border-top-right-radius: 0;
  3901. border-bottom-right-radius: 0;
  3902. }
  3903. .input-group-addon:first-child {
  3904. border-right: 0;
  3905. }
  3906. .input-group .form-control:last-child,
  3907. .input-group-addon:last-child,
  3908. .input-group-btn:last-child > .btn,
  3909. .input-group-btn:last-child > .btn-group > .btn,
  3910. .input-group-btn:last-child > .dropdown-toggle,
  3911. .input-group-btn:first-child > .btn:not(:first-child),
  3912. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3913. border-top-left-radius: 0;
  3914. border-bottom-left-radius: 0;
  3915. }
  3916. .input-group-addon:last-child {
  3917. border-left: 0;
  3918. }
  3919. .input-group-btn {
  3920. position: relative;
  3921. font-size: 0;
  3922. white-space: nowrap;
  3923. }
  3924. .input-group-btn > .btn {
  3925. position: relative;
  3926. }
  3927. .input-group-btn > .btn + .btn {
  3928. margin-left: -1px;
  3929. }
  3930. .input-group-btn > .btn:hover,
  3931. .input-group-btn > .btn:focus,
  3932. .input-group-btn > .btn:active {
  3933. z-index: 2;
  3934. }
  3935. .input-group-btn:first-child > .btn,
  3936. .input-group-btn:first-child > .btn-group {
  3937. margin-right: -1px;
  3938. }
  3939. .input-group-btn:last-child > .btn,
  3940. .input-group-btn:last-child > .btn-group {
  3941. z-index: 2;
  3942. margin-left: -1px;
  3943. }
  3944. .nav {
  3945. padding-left: 0;
  3946. margin-bottom: 0;
  3947. list-style: none;
  3948. }
  3949. .nav > li {
  3950. position: relative;
  3951. display: block;
  3952. }
  3953. .nav > li > a {
  3954. position: relative;
  3955. display: block;
  3956. padding: 10px 15px;
  3957. }
  3958. .nav > li > a:hover,
  3959. .nav > li > a:focus {
  3960. text-decoration: none;
  3961. background-color: #eeeeee;
  3962. }
  3963. .nav > li.disabled > a {
  3964. color: #777777;
  3965. }
  3966. .nav > li.disabled > a:hover,
  3967. .nav > li.disabled > a:focus {
  3968. color: #777777;
  3969. text-decoration: none;
  3970. cursor: not-allowed;
  3971. background-color: transparent;
  3972. }
  3973. .nav .open > a,
  3974. .nav .open > a:hover,
  3975. .nav .open > a:focus {
  3976. background-color: #eeeeee;
  3977. border-color: #296eaa;
  3978. }
  3979. .nav .nav-divider {
  3980. height: 1px;
  3981. margin: 8px 0;
  3982. overflow: hidden;
  3983. background-color: #e5e5e5;
  3984. }
  3985. .nav > li > a > img {
  3986. max-width: none;
  3987. }
  3988. .nav-tabs {
  3989. border-bottom: 1px solid #ddd;
  3990. }
  3991. .nav-tabs > li {
  3992. float: left;
  3993. margin-bottom: -1px;
  3994. }
  3995. .nav-tabs > li > a {
  3996. margin-right: 2px;
  3997. line-height: 1.42857143;
  3998. border: 1px solid transparent;
  3999. border-radius: 2px 2px 0 0;
  4000. }
  4001. .nav-tabs > li > a:hover {
  4002. border-color: #eeeeee #eeeeee #ddd;
  4003. }
  4004. .nav-tabs > li.active > a,
  4005. .nav-tabs > li.active > a:hover,
  4006. .nav-tabs > li.active > a:focus {
  4007. color: #555555;
  4008. cursor: default;
  4009. background-color: #fff;
  4010. border: 1px solid #ddd;
  4011. border-bottom-color: transparent;
  4012. }
  4013. .nav-tabs.nav-justified {
  4014. width: 100%;
  4015. border-bottom: 0;
  4016. }
  4017. .nav-tabs.nav-justified > li {
  4018. float: none;
  4019. }
  4020. .nav-tabs.nav-justified > li > a {
  4021. margin-bottom: 5px;
  4022. text-align: center;
  4023. }
  4024. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4025. top: auto;
  4026. left: auto;
  4027. }
  4028. @media (min-width: 768px) {
  4029. .nav-tabs.nav-justified > li {
  4030. display: table-cell;
  4031. width: 1%;
  4032. }
  4033. .nav-tabs.nav-justified > li > a {
  4034. margin-bottom: 0;
  4035. }
  4036. }
  4037. .nav-tabs.nav-justified > li > a {
  4038. margin-right: 0;
  4039. border-radius: 2px;
  4040. }
  4041. .nav-tabs.nav-justified > .active > a,
  4042. .nav-tabs.nav-justified > .active > a:hover,
  4043. .nav-tabs.nav-justified > .active > a:focus {
  4044. border: 1px solid #ddd;
  4045. }
  4046. @media (min-width: 768px) {
  4047. .nav-tabs.nav-justified > li > a {
  4048. border-bottom: 1px solid #ddd;
  4049. border-radius: 2px 2px 0 0;
  4050. }
  4051. .nav-tabs.nav-justified > .active > a,
  4052. .nav-tabs.nav-justified > .active > a:hover,
  4053. .nav-tabs.nav-justified > .active > a:focus {
  4054. border-bottom-color: #fff;
  4055. }
  4056. }
  4057. .nav-pills > li {
  4058. float: left;
  4059. }
  4060. .nav-pills > li > a {
  4061. border-radius: 2px;
  4062. }
  4063. .nav-pills > li + li {
  4064. margin-left: 2px;
  4065. }
  4066. .nav-pills > li.active > a,
  4067. .nav-pills > li.active > a:hover,
  4068. .nav-pills > li.active > a:focus {
  4069. color: #fff;
  4070. background-color: #337ab7;
  4071. }
  4072. .nav-stacked > li {
  4073. float: none;
  4074. }
  4075. .nav-stacked > li + li {
  4076. margin-top: 2px;
  4077. margin-left: 0;
  4078. }
  4079. .nav-justified {
  4080. width: 100%;
  4081. }
  4082. .nav-justified > li {
  4083. float: none;
  4084. }
  4085. .nav-justified > li > a {
  4086. margin-bottom: 5px;
  4087. text-align: center;
  4088. }
  4089. .nav-justified > .dropdown .dropdown-menu {
  4090. top: auto;
  4091. left: auto;
  4092. }
  4093. @media (min-width: 768px) {
  4094. .nav-justified > li {
  4095. display: table-cell;
  4096. width: 1%;
  4097. }
  4098. .nav-justified > li > a {
  4099. margin-bottom: 0;
  4100. }
  4101. }
  4102. .nav-tabs-justified {
  4103. border-bottom: 0;
  4104. }
  4105. .nav-tabs-justified > li > a {
  4106. margin-right: 0;
  4107. border-radius: 2px;
  4108. }
  4109. .nav-tabs-justified > .active > a,
  4110. .nav-tabs-justified > .active > a:hover,
  4111. .nav-tabs-justified > .active > a:focus {
  4112. border: 1px solid #ddd;
  4113. }
  4114. @media (min-width: 768px) {
  4115. .nav-tabs-justified > li > a {
  4116. border-bottom: 1px solid #ddd;
  4117. border-radius: 2px 2px 0 0;
  4118. }
  4119. .nav-tabs-justified > .active > a,
  4120. .nav-tabs-justified > .active > a:hover,
  4121. .nav-tabs-justified > .active > a:focus {
  4122. border-bottom-color: #fff;
  4123. }
  4124. }
  4125. .tab-content > .tab-pane {
  4126. display: none;
  4127. }
  4128. .tab-content > .active {
  4129. display: block;
  4130. }
  4131. .nav-tabs .dropdown-menu {
  4132. margin-top: -1px;
  4133. border-top-left-radius: 0;
  4134. border-top-right-radius: 0;
  4135. }
  4136. .navbar {
  4137. position: relative;
  4138. min-height: 30px;
  4139. margin-bottom: 18px;
  4140. border: 1px solid transparent;
  4141. }
  4142. @media (min-width: 541px) {
  4143. .navbar {
  4144. border-radius: 2px;
  4145. }
  4146. }
  4147. @media (min-width: 541px) {
  4148. .navbar-header {
  4149. float: left;
  4150. }
  4151. }
  4152. .navbar-collapse {
  4153. padding-right: 0px;
  4154. padding-left: 0px;
  4155. overflow-x: visible;
  4156. border-top: 1px solid transparent;
  4157. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4158. -webkit-overflow-scrolling: touch;
  4159. }
  4160. .navbar-collapse.in {
  4161. overflow-y: auto;
  4162. }
  4163. @media (min-width: 541px) {
  4164. .navbar-collapse {
  4165. width: auto;
  4166. border-top: 0;
  4167. box-shadow: none;
  4168. }
  4169. .navbar-collapse.collapse {
  4170. display: block !important;
  4171. height: auto !important;
  4172. padding-bottom: 0;
  4173. overflow: visible !important;
  4174. }
  4175. .navbar-collapse.in {
  4176. overflow-y: visible;
  4177. }
  4178. .navbar-fixed-top .navbar-collapse,
  4179. .navbar-static-top .navbar-collapse,
  4180. .navbar-fixed-bottom .navbar-collapse {
  4181. padding-right: 0;
  4182. padding-left: 0;
  4183. }
  4184. }
  4185. .navbar-fixed-top,
  4186. .navbar-fixed-bottom {
  4187. position: fixed;
  4188. right: 0;
  4189. left: 0;
  4190. z-index: 1030;
  4191. }
  4192. .navbar-fixed-top .navbar-collapse,
  4193. .navbar-fixed-bottom .navbar-collapse {
  4194. max-height: 340px;
  4195. }
  4196. @media (max-device-width: 540px) and (orientation: landscape) {
  4197. .navbar-fixed-top .navbar-collapse,
  4198. .navbar-fixed-bottom .navbar-collapse {
  4199. max-height: 200px;
  4200. }
  4201. }
  4202. @media (min-width: 541px) {
  4203. .navbar-fixed-top,
  4204. .navbar-fixed-bottom {
  4205. border-radius: 0;
  4206. }
  4207. }
  4208. .navbar-fixed-top {
  4209. top: 0;
  4210. border-width: 0 0 1px;
  4211. }
  4212. .navbar-fixed-bottom {
  4213. bottom: 0;
  4214. margin-bottom: 0;
  4215. border-width: 1px 0 0;
  4216. }
  4217. .container > .navbar-header,
  4218. .container-fluid > .navbar-header,
  4219. .container > .navbar-collapse,
  4220. .container-fluid > .navbar-collapse {
  4221. margin-right: 0px;
  4222. margin-left: 0px;
  4223. }
  4224. @media (min-width: 541px) {
  4225. .container > .navbar-header,
  4226. .container-fluid > .navbar-header,
  4227. .container > .navbar-collapse,
  4228. .container-fluid > .navbar-collapse {
  4229. margin-right: 0;
  4230. margin-left: 0;
  4231. }
  4232. }
  4233. .navbar-static-top {
  4234. z-index: 1000;
  4235. border-width: 0 0 1px;
  4236. }
  4237. @media (min-width: 541px) {
  4238. .navbar-static-top {
  4239. border-radius: 0;
  4240. }
  4241. }
  4242. .navbar-brand {
  4243. float: left;
  4244. height: 30px;
  4245. padding: 6px 0px;
  4246. font-size: 17px;
  4247. line-height: 18px;
  4248. }
  4249. .navbar-brand:hover,
  4250. .navbar-brand:focus {
  4251. text-decoration: none;
  4252. }
  4253. .navbar-brand > img {
  4254. display: block;
  4255. }
  4256. @media (min-width: 541px) {
  4257. .navbar > .container .navbar-brand,
  4258. .navbar > .container-fluid .navbar-brand {
  4259. margin-left: 0px;
  4260. }
  4261. }
  4262. .navbar-toggle {
  4263. position: relative;
  4264. float: right;
  4265. padding: 9px 10px;
  4266. margin-right: 0px;
  4267. margin-top: -2px;
  4268. margin-bottom: -2px;
  4269. background-color: transparent;
  4270. background-image: none;
  4271. border: 1px solid transparent;
  4272. border-radius: 2px;
  4273. }
  4274. .navbar-toggle:focus {
  4275. outline: 0;
  4276. }
  4277. .navbar-toggle .icon-bar {
  4278. display: block;
  4279. width: 22px;
  4280. height: 2px;
  4281. border-radius: 1px;
  4282. }
  4283. .navbar-toggle .icon-bar + .icon-bar {
  4284. margin-top: 4px;
  4285. }
  4286. @media (min-width: 541px) {
  4287. .navbar-toggle {
  4288. display: none;
  4289. }
  4290. }
  4291. .navbar-nav {
  4292. margin: 3px 0px;
  4293. }
  4294. .navbar-nav > li > a {
  4295. padding-top: 10px;
  4296. padding-bottom: 10px;
  4297. line-height: 18px;
  4298. }
  4299. @media (max-width: 540px) {
  4300. .navbar-nav .open .dropdown-menu {
  4301. position: static;
  4302. float: none;
  4303. width: auto;
  4304. margin-top: 0;
  4305. background-color: transparent;
  4306. border: 0;
  4307. box-shadow: none;
  4308. }
  4309. .navbar-nav .open .dropdown-menu > li > a,
  4310. .navbar-nav .open .dropdown-menu .dropdown-header {
  4311. padding: 5px 15px 5px 25px;
  4312. }
  4313. .navbar-nav .open .dropdown-menu > li > a {
  4314. line-height: 18px;
  4315. }
  4316. .navbar-nav .open .dropdown-menu > li > a:hover,
  4317. .navbar-nav .open .dropdown-menu > li > a:focus {
  4318. background-image: none;
  4319. }
  4320. }
  4321. @media (min-width: 541px) {
  4322. .navbar-nav {
  4323. float: left;
  4324. margin: 0;
  4325. }
  4326. .navbar-nav > li {
  4327. float: left;
  4328. }
  4329. .navbar-nav > li > a {
  4330. padding-top: 6px;
  4331. padding-bottom: 6px;
  4332. }
  4333. }
  4334. .navbar-form {
  4335. padding: 10px 0px;
  4336. margin-right: 0px;
  4337. margin-left: 0px;
  4338. border-top: 1px solid transparent;
  4339. border-bottom: 1px solid transparent;
  4340. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4341. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4342. margin-top: -1px;
  4343. margin-bottom: -1px;
  4344. }
  4345. @media (min-width: 768px) {
  4346. .navbar-form .form-group {
  4347. display: inline-block;
  4348. margin-bottom: 0;
  4349. vertical-align: middle;
  4350. }
  4351. .navbar-form .form-control {
  4352. display: inline-block;
  4353. width: auto;
  4354. vertical-align: middle;
  4355. }
  4356. .navbar-form .form-control-static {
  4357. display: inline-block;
  4358. }
  4359. .navbar-form .input-group {
  4360. display: inline-table;
  4361. vertical-align: middle;
  4362. }
  4363. .navbar-form .input-group .input-group-addon,
  4364. .navbar-form .input-group .input-group-btn,
  4365. .navbar-form .input-group .form-control {
  4366. width: auto;
  4367. }
  4368. .navbar-form .input-group > .form-control {
  4369. width: 100%;
  4370. }
  4371. .navbar-form .control-label {
  4372. margin-bottom: 0;
  4373. vertical-align: middle;
  4374. }
  4375. .navbar-form .radio,
  4376. .navbar-form .checkbox {
  4377. display: inline-block;
  4378. margin-top: 0;
  4379. margin-bottom: 0;
  4380. vertical-align: middle;
  4381. }
  4382. .navbar-form .radio label,
  4383. .navbar-form .checkbox label {
  4384. padding-left: 0;
  4385. }
  4386. .navbar-form .radio input[type="radio"],
  4387. .navbar-form .checkbox input[type="checkbox"] {
  4388. position: relative;
  4389. margin-left: 0;
  4390. }
  4391. .navbar-form .has-feedback .form-control-feedback {
  4392. top: 0;
  4393. }
  4394. }
  4395. @media (max-width: 540px) {
  4396. .navbar-form .form-group {
  4397. margin-bottom: 5px;
  4398. }
  4399. .navbar-form .form-group:last-child {
  4400. margin-bottom: 0;
  4401. }
  4402. }
  4403. @media (min-width: 541px) {
  4404. .navbar-form {
  4405. width: auto;
  4406. padding-top: 0;
  4407. padding-bottom: 0;
  4408. margin-right: 0;
  4409. margin-left: 0;
  4410. border: 0;
  4411. -webkit-box-shadow: none;
  4412. box-shadow: none;
  4413. }
  4414. }
  4415. .navbar-nav > li > .dropdown-menu {
  4416. margin-top: 0;
  4417. border-top-left-radius: 0;
  4418. border-top-right-radius: 0;
  4419. }
  4420. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4421. margin-bottom: 0;
  4422. border-top-left-radius: 2px;
  4423. border-top-right-radius: 2px;
  4424. border-bottom-right-radius: 0;
  4425. border-bottom-left-radius: 0;
  4426. }
  4427. .navbar-btn {
  4428. margin-top: -1px;
  4429. margin-bottom: -1px;
  4430. }
  4431. .navbar-btn.btn-sm {
  4432. margin-top: 0px;
  4433. margin-bottom: 0px;
  4434. }
  4435. .navbar-btn.btn-xs {
  4436. margin-top: 4px;
  4437. margin-bottom: 4px;
  4438. }
  4439. .navbar-text {
  4440. margin-top: 6px;
  4441. margin-bottom: 6px;
  4442. }
  4443. @media (min-width: 541px) {
  4444. .navbar-text {
  4445. float: left;
  4446. margin-right: 0px;
  4447. margin-left: 0px;
  4448. }
  4449. }
  4450. @media (min-width: 541px) {
  4451. .navbar-left {
  4452. float: left !important;
  4453. float: left;
  4454. }
  4455. .navbar-right {
  4456. float: right !important;
  4457. float: right;
  4458. margin-right: 0px;
  4459. }
  4460. .navbar-right ~ .navbar-right {
  4461. margin-right: 0;
  4462. }
  4463. }
  4464. .navbar-default {
  4465. background-color: #f8f8f8;
  4466. border-color: #e7e7e7;
  4467. }
  4468. .navbar-default .navbar-brand {
  4469. color: #565656;
  4470. }
  4471. .navbar-default .navbar-brand:hover,
  4472. .navbar-default .navbar-brand:focus {
  4473. color: #3c3c3c;
  4474. background-color: transparent;
  4475. }
  4476. .navbar-default .navbar-text {
  4477. color: #777;
  4478. }
  4479. .navbar-default .navbar-nav > li > a {
  4480. color: #565656;
  4481. }
  4482. .navbar-default .navbar-nav > li > a:hover,
  4483. .navbar-default .navbar-nav > li > a:focus {
  4484. color: #333;
  4485. background-color: transparent;
  4486. }
  4487. .navbar-default .navbar-nav > .active > a,
  4488. .navbar-default .navbar-nav > .active > a:hover,
  4489. .navbar-default .navbar-nav > .active > a:focus {
  4490. color: #555;
  4491. background-color: #e7e7e7;
  4492. }
  4493. .navbar-default .navbar-nav > .disabled > a,
  4494. .navbar-default .navbar-nav > .disabled > a:hover,
  4495. .navbar-default .navbar-nav > .disabled > a:focus {
  4496. color: #ccc;
  4497. background-color: transparent;
  4498. }
  4499. .navbar-default .navbar-nav > .open > a,
  4500. .navbar-default .navbar-nav > .open > a:hover,
  4501. .navbar-default .navbar-nav > .open > a:focus {
  4502. color: #555;
  4503. background-color: #e7e7e7;
  4504. }
  4505. @media (max-width: 540px) {
  4506. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4507. color: #565656;
  4508. }
  4509. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4510. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4511. color: #333;
  4512. background-color: transparent;
  4513. }
  4514. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4515. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4516. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4517. color: #555;
  4518. background-color: #e7e7e7;
  4519. }
  4520. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4521. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4522. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4523. color: #ccc;
  4524. background-color: transparent;
  4525. }
  4526. }
  4527. .navbar-default .navbar-toggle {
  4528. border-color: #ddd;
  4529. }
  4530. .navbar-default .navbar-toggle:hover,
  4531. .navbar-default .navbar-toggle:focus {
  4532. background-color: #ddd;
  4533. }
  4534. .navbar-default .navbar-toggle .icon-bar {
  4535. background-color: #888;
  4536. }
  4537. .navbar-default .navbar-collapse,
  4538. .navbar-default .navbar-form {
  4539. border-color: #e7e7e7;
  4540. }
  4541. .navbar-default .navbar-link {
  4542. color: #565656;
  4543. }
  4544. .navbar-default .navbar-link:hover {
  4545. color: #333;
  4546. }
  4547. .navbar-default .btn-link {
  4548. color: #565656;
  4549. }
  4550. .navbar-default .btn-link:hover,
  4551. .navbar-default .btn-link:focus {
  4552. color: #333;
  4553. }
  4554. .navbar-default .btn-link[disabled]:hover,
  4555. fieldset[disabled] .navbar-default .btn-link:hover,
  4556. .navbar-default .btn-link[disabled]:focus,
  4557. fieldset[disabled] .navbar-default .btn-link:focus {
  4558. color: #ccc;
  4559. }
  4560. .navbar-inverse {
  4561. background-color: #222;
  4562. border-color: #080808;
  4563. }
  4564. .navbar-inverse .navbar-brand {
  4565. color: #9d9d9d;
  4566. }
  4567. .navbar-inverse .navbar-brand:hover,
  4568. .navbar-inverse .navbar-brand:focus {
  4569. color: #fff;
  4570. background-color: transparent;
  4571. }
  4572. .navbar-inverse .navbar-text {
  4573. color: #9d9d9d;
  4574. }
  4575. .navbar-inverse .navbar-nav > li > a {
  4576. color: #9d9d9d;
  4577. }
  4578. .navbar-inverse .navbar-nav > li > a:hover,
  4579. .navbar-inverse .navbar-nav > li > a:focus {
  4580. color: #fff;
  4581. background-color: transparent;
  4582. }
  4583. .navbar-inverse .navbar-nav > .active > a,
  4584. .navbar-inverse .navbar-nav > .active > a:hover,
  4585. .navbar-inverse .navbar-nav > .active > a:focus {
  4586. color: #fff;
  4587. background-color: #080808;
  4588. }
  4589. .navbar-inverse .navbar-nav > .disabled > a,
  4590. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4591. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4592. color: #444;
  4593. background-color: transparent;
  4594. }
  4595. .navbar-inverse .navbar-nav > .open > a,
  4596. .navbar-inverse .navbar-nav > .open > a:hover,
  4597. .navbar-inverse .navbar-nav > .open > a:focus {
  4598. color: #fff;
  4599. background-color: #080808;
  4600. }
  4601. @media (max-width: 540px) {
  4602. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4603. border-color: #080808;
  4604. }
  4605. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4606. background-color: #080808;
  4607. }
  4608. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4609. color: #9d9d9d;
  4610. }
  4611. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4612. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4613. color: #fff;
  4614. background-color: transparent;
  4615. }
  4616. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4617. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4618. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4619. color: #fff;
  4620. background-color: #080808;
  4621. }
  4622. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4623. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4624. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4625. color: #444;
  4626. background-color: transparent;
  4627. }
  4628. }
  4629. .navbar-inverse .navbar-toggle {
  4630. border-color: #333;
  4631. }
  4632. .navbar-inverse .navbar-toggle:hover,
  4633. .navbar-inverse .navbar-toggle:focus {
  4634. background-color: #333;
  4635. }
  4636. .navbar-inverse .navbar-toggle .icon-bar {
  4637. background-color: #fff;
  4638. }
  4639. .navbar-inverse .navbar-collapse,
  4640. .navbar-inverse .navbar-form {
  4641. border-color: #101010;
  4642. }
  4643. .navbar-inverse .navbar-link {
  4644. color: #9d9d9d;
  4645. }
  4646. .navbar-inverse .navbar-link:hover {
  4647. color: #fff;
  4648. }
  4649. .navbar-inverse .btn-link {
  4650. color: #9d9d9d;
  4651. }
  4652. .navbar-inverse .btn-link:hover,
  4653. .navbar-inverse .btn-link:focus {
  4654. color: #fff;
  4655. }
  4656. .navbar-inverse .btn-link[disabled]:hover,
  4657. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4658. .navbar-inverse .btn-link[disabled]:focus,
  4659. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4660. color: #444;
  4661. }
  4662. .breadcrumb {
  4663. padding: 8px 15px;
  4664. margin-bottom: 18px;
  4665. list-style: none;
  4666. background-color: #f5f5f5;
  4667. border-radius: 2px;
  4668. }
  4669. .breadcrumb > li {
  4670. display: inline-block;
  4671. }
  4672. .breadcrumb > li + li:before {
  4673. padding: 0 5px;
  4674. color: #5e5e5e;
  4675. content: "/\00a0";
  4676. }
  4677. .breadcrumb > .active {
  4678. color: #777777;
  4679. }
  4680. .pagination {
  4681. display: inline-block;
  4682. padding-left: 0;
  4683. margin: 18px 0;
  4684. border-radius: 2px;
  4685. }
  4686. .pagination > li {
  4687. display: inline;
  4688. }
  4689. .pagination > li > a,
  4690. .pagination > li > span {
  4691. position: relative;
  4692. float: left;
  4693. padding: 6px 12px;
  4694. margin-left: -1px;
  4695. line-height: 1.42857143;
  4696. color: #296eaa;
  4697. text-decoration: none;
  4698. background-color: #fff;
  4699. border: 1px solid #ddd;
  4700. }
  4701. .pagination > li > a:hover,
  4702. .pagination > li > span:hover,
  4703. .pagination > li > a:focus,
  4704. .pagination > li > span:focus {
  4705. z-index: 2;
  4706. color: #1a466c;
  4707. background-color: #eeeeee;
  4708. border-color: #ddd;
  4709. }
  4710. .pagination > li:first-child > a,
  4711. .pagination > li:first-child > span {
  4712. margin-left: 0;
  4713. border-top-left-radius: 2px;
  4714. border-bottom-left-radius: 2px;
  4715. }
  4716. .pagination > li:last-child > a,
  4717. .pagination > li:last-child > span {
  4718. border-top-right-radius: 2px;
  4719. border-bottom-right-radius: 2px;
  4720. }
  4721. .pagination > .active > a,
  4722. .pagination > .active > span,
  4723. .pagination > .active > a:hover,
  4724. .pagination > .active > span:hover,
  4725. .pagination > .active > a:focus,
  4726. .pagination > .active > span:focus {
  4727. z-index: 3;
  4728. color: #fff;
  4729. cursor: default;
  4730. background-color: #337ab7;
  4731. border-color: #337ab7;
  4732. }
  4733. .pagination > .disabled > span,
  4734. .pagination > .disabled > span:hover,
  4735. .pagination > .disabled > span:focus,
  4736. .pagination > .disabled > a,
  4737. .pagination > .disabled > a:hover,
  4738. .pagination > .disabled > a:focus {
  4739. color: #777777;
  4740. cursor: not-allowed;
  4741. background-color: #fff;
  4742. border-color: #ddd;
  4743. }
  4744. .pagination-lg > li > a,
  4745. .pagination-lg > li > span {
  4746. padding: 10px 16px;
  4747. font-size: 17px;
  4748. line-height: 1.3333333;
  4749. }
  4750. .pagination-lg > li:first-child > a,
  4751. .pagination-lg > li:first-child > span {
  4752. border-top-left-radius: 3px;
  4753. border-bottom-left-radius: 3px;
  4754. }
  4755. .pagination-lg > li:last-child > a,
  4756. .pagination-lg > li:last-child > span {
  4757. border-top-right-radius: 3px;
  4758. border-bottom-right-radius: 3px;
  4759. }
  4760. .pagination-sm > li > a,
  4761. .pagination-sm > li > span {
  4762. padding: 5px 10px;
  4763. font-size: 12px;
  4764. line-height: 1.5;
  4765. }
  4766. .pagination-sm > li:first-child > a,
  4767. .pagination-sm > li:first-child > span {
  4768. border-top-left-radius: 1px;
  4769. border-bottom-left-radius: 1px;
  4770. }
  4771. .pagination-sm > li:last-child > a,
  4772. .pagination-sm > li:last-child > span {
  4773. border-top-right-radius: 1px;
  4774. border-bottom-right-radius: 1px;
  4775. }
  4776. .pager {
  4777. padding-left: 0;
  4778. margin: 18px 0;
  4779. text-align: center;
  4780. list-style: none;
  4781. }
  4782. .pager li {
  4783. display: inline;
  4784. }
  4785. .pager li > a,
  4786. .pager li > span {
  4787. display: inline-block;
  4788. padding: 5px 14px;
  4789. background-color: #fff;
  4790. border: 1px solid #ddd;
  4791. border-radius: 15px;
  4792. }
  4793. .pager li > a:hover,
  4794. .pager li > a:focus {
  4795. text-decoration: none;
  4796. background-color: #eeeeee;
  4797. }
  4798. .pager .next > a,
  4799. .pager .next > span {
  4800. float: right;
  4801. }
  4802. .pager .previous > a,
  4803. .pager .previous > span {
  4804. float: left;
  4805. }
  4806. .pager .disabled > a,
  4807. .pager .disabled > a:hover,
  4808. .pager .disabled > a:focus,
  4809. .pager .disabled > span {
  4810. color: #777777;
  4811. cursor: not-allowed;
  4812. background-color: #fff;
  4813. }
  4814. .label {
  4815. display: inline;
  4816. padding: .2em .6em .3em;
  4817. font-size: 75%;
  4818. font-weight: 700;
  4819. line-height: 1;
  4820. color: #fff;
  4821. text-align: center;
  4822. white-space: nowrap;
  4823. vertical-align: baseline;
  4824. border-radius: .25em;
  4825. }
  4826. a.label:hover,
  4827. a.label:focus {
  4828. color: #fff;
  4829. text-decoration: none;
  4830. cursor: pointer;
  4831. }
  4832. .label:empty {
  4833. display: none;
  4834. }
  4835. .btn .label {
  4836. position: relative;
  4837. top: -1px;
  4838. }
  4839. .label-default {
  4840. background-color: #777777;
  4841. }
  4842. .label-default[href]:hover,
  4843. .label-default[href]:focus {
  4844. background-color: #5e5e5e;
  4845. }
  4846. .label-primary {
  4847. background-color: #337ab7;
  4848. }
  4849. .label-primary[href]:hover,
  4850. .label-primary[href]:focus {
  4851. background-color: #286090;
  4852. }
  4853. .label-success {
  4854. background-color: #5cb85c;
  4855. }
  4856. .label-success[href]:hover,
  4857. .label-success[href]:focus {
  4858. background-color: #449d44;
  4859. }
  4860. .label-info {
  4861. background-color: #5bc0de;
  4862. }
  4863. .label-info[href]:hover,
  4864. .label-info[href]:focus {
  4865. background-color: #31b0d5;
  4866. }
  4867. .label-warning {
  4868. background-color: #f0ad4e;
  4869. }
  4870. .label-warning[href]:hover,
  4871. .label-warning[href]:focus {
  4872. background-color: #ec971f;
  4873. }
  4874. .label-danger {
  4875. background-color: #d9534f;
  4876. }
  4877. .label-danger[href]:hover,
  4878. .label-danger[href]:focus {
  4879. background-color: #c9302c;
  4880. }
  4881. .badge {
  4882. display: inline-block;
  4883. min-width: 10px;
  4884. padding: 3px 7px;
  4885. font-size: 12px;
  4886. font-weight: bold;
  4887. line-height: 1;
  4888. color: #fff;
  4889. text-align: center;
  4890. white-space: nowrap;
  4891. vertical-align: middle;
  4892. background-color: #777777;
  4893. border-radius: 10px;
  4894. }
  4895. .badge:empty {
  4896. display: none;
  4897. }
  4898. .btn .badge {
  4899. position: relative;
  4900. top: -1px;
  4901. }
  4902. .btn-xs .badge,
  4903. .btn-group-xs > .btn .badge {
  4904. top: 0;
  4905. padding: 1px 5px;
  4906. }
  4907. a.badge:hover,
  4908. a.badge:focus {
  4909. color: #fff;
  4910. text-decoration: none;
  4911. cursor: pointer;
  4912. }
  4913. .list-group-item.active > .badge,
  4914. .nav-pills > .active > a > .badge {
  4915. color: #296eaa;
  4916. background-color: #fff;
  4917. }
  4918. .list-group-item > .badge {
  4919. float: right;
  4920. }
  4921. .list-group-item > .badge + .badge {
  4922. margin-right: 5px;
  4923. }
  4924. .nav-pills > li > a > .badge {
  4925. margin-left: 3px;
  4926. }
  4927. .jumbotron {
  4928. padding-top: 30px;
  4929. padding-bottom: 30px;
  4930. margin-bottom: 30px;
  4931. color: inherit;
  4932. background-color: #eeeeee;
  4933. }
  4934. .jumbotron h1,
  4935. .jumbotron .h1 {
  4936. color: inherit;
  4937. }
  4938. .jumbotron p {
  4939. margin-bottom: 15px;
  4940. font-size: 20px;
  4941. font-weight: 200;
  4942. }
  4943. .jumbotron > hr {
  4944. border-top-color: #d5d5d5;
  4945. }
  4946. .container .jumbotron,
  4947. .container-fluid .jumbotron {
  4948. padding-right: 0px;
  4949. padding-left: 0px;
  4950. border-radius: 3px;
  4951. }
  4952. .jumbotron .container {
  4953. max-width: 100%;
  4954. }
  4955. @media screen and (min-width: 768px) {
  4956. .jumbotron {
  4957. padding-top: 48px;
  4958. padding-bottom: 48px;
  4959. }
  4960. .container .jumbotron,
  4961. .container-fluid .jumbotron {
  4962. padding-right: 60px;
  4963. padding-left: 60px;
  4964. }
  4965. .jumbotron h1,
  4966. .jumbotron .h1 {
  4967. font-size: 59px;
  4968. }
  4969. }
  4970. .thumbnail {
  4971. display: block;
  4972. padding: 4px;
  4973. margin-bottom: 18px;
  4974. line-height: 1.42857143;
  4975. background-color: #fff;
  4976. border: 1px solid #ddd;
  4977. border-radius: 2px;
  4978. -webkit-transition: border 0.2s ease-in-out;
  4979. -o-transition: border 0.2s ease-in-out;
  4980. transition: border 0.2s ease-in-out;
  4981. }
  4982. .thumbnail > img,
  4983. .thumbnail a > img {
  4984. margin-right: auto;
  4985. margin-left: auto;
  4986. }
  4987. a.thumbnail:hover,
  4988. a.thumbnail:focus,
  4989. a.thumbnail.active {
  4990. border-color: #296eaa;
  4991. }
  4992. .thumbnail .caption {
  4993. padding: 9px;
  4994. color: #000;
  4995. }
  4996. .alert {
  4997. padding: 15px;
  4998. margin-bottom: 18px;
  4999. border: 1px solid transparent;
  5000. border-radius: 2px;
  5001. }
  5002. .alert h4 {
  5003. margin-top: 0;
  5004. color: inherit;
  5005. }
  5006. .alert .alert-link {
  5007. font-weight: bold;
  5008. }
  5009. .alert > p,
  5010. .alert > ul {
  5011. margin-bottom: 0;
  5012. }
  5013. .alert > p + p {
  5014. margin-top: 5px;
  5015. }
  5016. .alert-dismissable,
  5017. .alert-dismissible {
  5018. padding-right: 35px;
  5019. }
  5020. .alert-dismissable .close,
  5021. .alert-dismissible .close {
  5022. position: relative;
  5023. top: -2px;
  5024. right: -21px;
  5025. color: inherit;
  5026. }
  5027. .alert-success {
  5028. color: #3c763d;
  5029. background-color: #dff0d8;
  5030. border-color: #d6e9c6;
  5031. }
  5032. .alert-success hr {
  5033. border-top-color: #c9e2b3;
  5034. }
  5035. .alert-success .alert-link {
  5036. color: #2b542c;
  5037. }
  5038. .alert-info {
  5039. color: #31708f;
  5040. background-color: #d9edf7;
  5041. border-color: #bce8f1;
  5042. }
  5043. .alert-info hr {
  5044. border-top-color: #a6e1ec;
  5045. }
  5046. .alert-info .alert-link {
  5047. color: #245269;
  5048. }
  5049. .alert-warning {
  5050. color: #8a6d3b;
  5051. background-color: #fcf8e3;
  5052. border-color: #faebcc;
  5053. }
  5054. .alert-warning hr {
  5055. border-top-color: #f7e1b5;
  5056. }
  5057. .alert-warning .alert-link {
  5058. color: #66512c;
  5059. }
  5060. .alert-danger {
  5061. color: #a94442;
  5062. background-color: #f2dede;
  5063. border-color: #ebccd1;
  5064. }
  5065. .alert-danger hr {
  5066. border-top-color: #e4b9c0;
  5067. }
  5068. .alert-danger .alert-link {
  5069. color: #843534;
  5070. }
  5071. @-webkit-keyframes progress-bar-stripes {
  5072. from {
  5073. background-position: 40px 0;
  5074. }
  5075. to {
  5076. background-position: 0 0;
  5077. }
  5078. }
  5079. @keyframes progress-bar-stripes {
  5080. from {
  5081. background-position: 40px 0;
  5082. }
  5083. to {
  5084. background-position: 0 0;
  5085. }
  5086. }
  5087. .progress {
  5088. height: 18px;
  5089. margin-bottom: 18px;
  5090. overflow: hidden;
  5091. background-color: #f5f5f5;
  5092. border-radius: 2px;
  5093. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5094. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5095. }
  5096. .progress-bar {
  5097. float: left;
  5098. width: 0%;
  5099. height: 100%;
  5100. font-size: 12px;
  5101. line-height: 18px;
  5102. color: #fff;
  5103. text-align: center;
  5104. background-color: #337ab7;
  5105. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5106. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5107. -webkit-transition: width 0.6s ease;
  5108. -o-transition: width 0.6s ease;
  5109. transition: width 0.6s ease;
  5110. }
  5111. .progress-striped .progress-bar,
  5112. .progress-bar-striped {
  5113. 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);
  5114. 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);
  5115. 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);
  5116. background-size: 40px 40px;
  5117. }
  5118. .progress.active .progress-bar,
  5119. .progress-bar.active {
  5120. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5121. -o-animation: progress-bar-stripes 2s linear infinite;
  5122. animation: progress-bar-stripes 2s linear infinite;
  5123. }
  5124. .progress-bar-success {
  5125. background-color: #5cb85c;
  5126. }
  5127. .progress-striped .progress-bar-success {
  5128. 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);
  5129. 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);
  5130. 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);
  5131. }
  5132. .progress-bar-info {
  5133. background-color: #5bc0de;
  5134. }
  5135. .progress-striped .progress-bar-info {
  5136. 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);
  5137. 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);
  5138. 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);
  5139. }
  5140. .progress-bar-warning {
  5141. background-color: #f0ad4e;
  5142. }
  5143. .progress-striped .progress-bar-warning {
  5144. 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);
  5145. 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);
  5146. 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);
  5147. }
  5148. .progress-bar-danger {
  5149. background-color: #d9534f;
  5150. }
  5151. .progress-striped .progress-bar-danger {
  5152. 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);
  5153. 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);
  5154. 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);
  5155. }
  5156. .media {
  5157. margin-top: 15px;
  5158. }
  5159. .media:first-child {
  5160. margin-top: 0;
  5161. }
  5162. .media,
  5163. .media-body {
  5164. overflow: hidden;
  5165. zoom: 1;
  5166. }
  5167. .media-body {
  5168. width: 10000px;
  5169. }
  5170. .media-object {
  5171. display: block;
  5172. }
  5173. .media-object.img-thumbnail {
  5174. max-width: none;
  5175. }
  5176. .media-right,
  5177. .media > .pull-right {
  5178. padding-left: 10px;
  5179. }
  5180. .media-left,
  5181. .media > .pull-left {
  5182. padding-right: 10px;
  5183. }
  5184. .media-left,
  5185. .media-right,
  5186. .media-body {
  5187. display: table-cell;
  5188. vertical-align: top;
  5189. }
  5190. .media-middle {
  5191. vertical-align: middle;
  5192. }
  5193. .media-bottom {
  5194. vertical-align: bottom;
  5195. }
  5196. .media-heading {
  5197. margin-top: 0;
  5198. margin-bottom: 5px;
  5199. }
  5200. .media-list {
  5201. padding-left: 0;
  5202. list-style: none;
  5203. }
  5204. .list-group {
  5205. padding-left: 0;
  5206. margin-bottom: 20px;
  5207. }
  5208. .list-group-item {
  5209. position: relative;
  5210. display: block;
  5211. padding: 10px 15px;
  5212. margin-bottom: -1px;
  5213. background-color: #fff;
  5214. border: 1px solid #ddd;
  5215. }
  5216. .list-group-item:first-child {
  5217. border-top-left-radius: 2px;
  5218. border-top-right-radius: 2px;
  5219. }
  5220. .list-group-item:last-child {
  5221. margin-bottom: 0;
  5222. border-bottom-right-radius: 2px;
  5223. border-bottom-left-radius: 2px;
  5224. }
  5225. .list-group-item.disabled,
  5226. .list-group-item.disabled:hover,
  5227. .list-group-item.disabled:focus {
  5228. color: #777777;
  5229. cursor: not-allowed;
  5230. background-color: #eeeeee;
  5231. }
  5232. .list-group-item.disabled .list-group-item-heading,
  5233. .list-group-item.disabled:hover .list-group-item-heading,
  5234. .list-group-item.disabled:focus .list-group-item-heading {
  5235. color: inherit;
  5236. }
  5237. .list-group-item.disabled .list-group-item-text,
  5238. .list-group-item.disabled:hover .list-group-item-text,
  5239. .list-group-item.disabled:focus .list-group-item-text {
  5240. color: #777777;
  5241. }
  5242. .list-group-item.active,
  5243. .list-group-item.active:hover,
  5244. .list-group-item.active:focus {
  5245. z-index: 2;
  5246. color: #fff;
  5247. background-color: #337ab7;
  5248. border-color: #337ab7;
  5249. }
  5250. .list-group-item.active .list-group-item-heading,
  5251. .list-group-item.active:hover .list-group-item-heading,
  5252. .list-group-item.active:focus .list-group-item-heading,
  5253. .list-group-item.active .list-group-item-heading > small,
  5254. .list-group-item.active:hover .list-group-item-heading > small,
  5255. .list-group-item.active:focus .list-group-item-heading > small,
  5256. .list-group-item.active .list-group-item-heading > .small,
  5257. .list-group-item.active:hover .list-group-item-heading > .small,
  5258. .list-group-item.active:focus .list-group-item-heading > .small {
  5259. color: inherit;
  5260. }
  5261. .list-group-item.active .list-group-item-text,
  5262. .list-group-item.active:hover .list-group-item-text,
  5263. .list-group-item.active:focus .list-group-item-text {
  5264. color: #c7ddef;
  5265. }
  5266. a.list-group-item,
  5267. button.list-group-item {
  5268. color: #555;
  5269. }
  5270. a.list-group-item .list-group-item-heading,
  5271. button.list-group-item .list-group-item-heading {
  5272. color: #333;
  5273. }
  5274. a.list-group-item:hover,
  5275. button.list-group-item:hover,
  5276. a.list-group-item:focus,
  5277. button.list-group-item:focus {
  5278. color: #555;
  5279. text-decoration: none;
  5280. background-color: #f5f5f5;
  5281. }
  5282. button.list-group-item {
  5283. width: 100%;
  5284. text-align: left;
  5285. }
  5286. .list-group-item-success {
  5287. color: #3c763d;
  5288. background-color: #dff0d8;
  5289. }
  5290. a.list-group-item-success,
  5291. button.list-group-item-success {
  5292. color: #3c763d;
  5293. }
  5294. a.list-group-item-success .list-group-item-heading,
  5295. button.list-group-item-success .list-group-item-heading {
  5296. color: inherit;
  5297. }
  5298. a.list-group-item-success:hover,
  5299. button.list-group-item-success:hover,
  5300. a.list-group-item-success:focus,
  5301. button.list-group-item-success:focus {
  5302. color: #3c763d;
  5303. background-color: #d0e9c6;
  5304. }
  5305. a.list-group-item-success.active,
  5306. button.list-group-item-success.active,
  5307. a.list-group-item-success.active:hover,
  5308. button.list-group-item-success.active:hover,
  5309. a.list-group-item-success.active:focus,
  5310. button.list-group-item-success.active:focus {
  5311. color: #fff;
  5312. background-color: #3c763d;
  5313. border-color: #3c763d;
  5314. }
  5315. .list-group-item-info {
  5316. color: #31708f;
  5317. background-color: #d9edf7;
  5318. }
  5319. a.list-group-item-info,
  5320. button.list-group-item-info {
  5321. color: #31708f;
  5322. }
  5323. a.list-group-item-info .list-group-item-heading,
  5324. button.list-group-item-info .list-group-item-heading {
  5325. color: inherit;
  5326. }
  5327. a.list-group-item-info:hover,
  5328. button.list-group-item-info:hover,
  5329. a.list-group-item-info:focus,
  5330. button.list-group-item-info:focus {
  5331. color: #31708f;
  5332. background-color: #c4e3f3;
  5333. }
  5334. a.list-group-item-info.active,
  5335. button.list-group-item-info.active,
  5336. a.list-group-item-info.active:hover,
  5337. button.list-group-item-info.active:hover,
  5338. a.list-group-item-info.active:focus,
  5339. button.list-group-item-info.active:focus {
  5340. color: #fff;
  5341. background-color: #31708f;
  5342. border-color: #31708f;
  5343. }
  5344. .list-group-item-warning {
  5345. color: #8a6d3b;
  5346. background-color: #fcf8e3;
  5347. }
  5348. a.list-group-item-warning,
  5349. button.list-group-item-warning {
  5350. color: #8a6d3b;
  5351. }
  5352. a.list-group-item-warning .list-group-item-heading,
  5353. button.list-group-item-warning .list-group-item-heading {
  5354. color: inherit;
  5355. }
  5356. a.list-group-item-warning:hover,
  5357. button.list-group-item-warning:hover,
  5358. a.list-group-item-warning:focus,
  5359. button.list-group-item-warning:focus {
  5360. color: #8a6d3b;
  5361. background-color: #faf2cc;
  5362. }
  5363. a.list-group-item-warning.active,
  5364. button.list-group-item-warning.active,
  5365. a.list-group-item-warning.active:hover,
  5366. button.list-group-item-warning.active:hover,
  5367. a.list-group-item-warning.active:focus,
  5368. button.list-group-item-warning.active:focus {
  5369. color: #fff;
  5370. background-color: #8a6d3b;
  5371. border-color: #8a6d3b;
  5372. }
  5373. .list-group-item-danger {
  5374. color: #a94442;
  5375. background-color: #f2dede;
  5376. }
  5377. a.list-group-item-danger,
  5378. button.list-group-item-danger {
  5379. color: #a94442;
  5380. }
  5381. a.list-group-item-danger .list-group-item-heading,
  5382. button.list-group-item-danger .list-group-item-heading {
  5383. color: inherit;
  5384. }
  5385. a.list-group-item-danger:hover,
  5386. button.list-group-item-danger:hover,
  5387. a.list-group-item-danger:focus,
  5388. button.list-group-item-danger:focus {
  5389. color: #a94442;
  5390. background-color: #ebcccc;
  5391. }
  5392. a.list-group-item-danger.active,
  5393. button.list-group-item-danger.active,
  5394. a.list-group-item-danger.active:hover,
  5395. button.list-group-item-danger.active:hover,
  5396. a.list-group-item-danger.active:focus,
  5397. button.list-group-item-danger.active:focus {
  5398. color: #fff;
  5399. background-color: #a94442;
  5400. border-color: #a94442;
  5401. }
  5402. .list-group-item-heading {
  5403. margin-top: 0;
  5404. margin-bottom: 5px;
  5405. }
  5406. .list-group-item-text {
  5407. margin-bottom: 0;
  5408. line-height: 1.3;
  5409. }
  5410. .panel {
  5411. margin-bottom: 18px;
  5412. background-color: #fff;
  5413. border: 1px solid transparent;
  5414. border-radius: 2px;
  5415. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5416. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5417. }
  5418. .panel-body {
  5419. padding: 15px;
  5420. }
  5421. .panel-heading {
  5422. padding: 10px 15px;
  5423. border-bottom: 1px solid transparent;
  5424. border-top-left-radius: 1px;
  5425. border-top-right-radius: 1px;
  5426. }
  5427. .panel-heading > .dropdown .dropdown-toggle {
  5428. color: inherit;
  5429. }
  5430. .panel-title {
  5431. margin-top: 0;
  5432. margin-bottom: 0;
  5433. font-size: 15px;
  5434. color: inherit;
  5435. }
  5436. .panel-title > a,
  5437. .panel-title > small,
  5438. .panel-title > .small,
  5439. .panel-title > small > a,
  5440. .panel-title > .small > a {
  5441. color: inherit;
  5442. }
  5443. .panel-footer {
  5444. padding: 10px 15px;
  5445. background-color: #f5f5f5;
  5446. border-top: 1px solid #ddd;
  5447. border-bottom-right-radius: 1px;
  5448. border-bottom-left-radius: 1px;
  5449. }
  5450. .panel > .list-group,
  5451. .panel > .panel-collapse > .list-group {
  5452. margin-bottom: 0;
  5453. }
  5454. .panel > .list-group .list-group-item,
  5455. .panel > .panel-collapse > .list-group .list-group-item {
  5456. border-width: 1px 0;
  5457. border-radius: 0;
  5458. }
  5459. .panel > .list-group:first-child .list-group-item:first-child,
  5460. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5461. border-top: 0;
  5462. border-top-left-radius: 1px;
  5463. border-top-right-radius: 1px;
  5464. }
  5465. .panel > .list-group:last-child .list-group-item:last-child,
  5466. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5467. border-bottom: 0;
  5468. border-bottom-right-radius: 1px;
  5469. border-bottom-left-radius: 1px;
  5470. }
  5471. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5472. border-top-left-radius: 0;
  5473. border-top-right-radius: 0;
  5474. }
  5475. .panel-heading + .list-group .list-group-item:first-child {
  5476. border-top-width: 0;
  5477. }
  5478. .list-group + .panel-footer {
  5479. border-top-width: 0;
  5480. }
  5481. .panel > .table,
  5482. .panel > .table-responsive > .table,
  5483. .panel > .panel-collapse > .table {
  5484. margin-bottom: 0;
  5485. }
  5486. .panel > .table caption,
  5487. .panel > .table-responsive > .table caption,
  5488. .panel > .panel-collapse > .table caption {
  5489. padding-right: 15px;
  5490. padding-left: 15px;
  5491. }
  5492. .panel > .table:first-child,
  5493. .panel > .table-responsive:first-child > .table:first-child {
  5494. border-top-left-radius: 1px;
  5495. border-top-right-radius: 1px;
  5496. }
  5497. .panel > .table:first-child > thead:first-child > tr:first-child,
  5498. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5499. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5500. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5501. border-top-left-radius: 1px;
  5502. border-top-right-radius: 1px;
  5503. }
  5504. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5505. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5506. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5507. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5508. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5509. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5510. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5511. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5512. border-top-left-radius: 1px;
  5513. }
  5514. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5515. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5516. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5517. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5518. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5519. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5520. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5521. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5522. border-top-right-radius: 1px;
  5523. }
  5524. .panel > .table:last-child,
  5525. .panel > .table-responsive:last-child > .table:last-child {
  5526. border-bottom-right-radius: 1px;
  5527. border-bottom-left-radius: 1px;
  5528. }
  5529. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5530. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5531. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5532. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5533. border-bottom-right-radius: 1px;
  5534. border-bottom-left-radius: 1px;
  5535. }
  5536. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5537. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5538. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5539. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5540. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5541. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5542. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5543. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5544. border-bottom-left-radius: 1px;
  5545. }
  5546. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5547. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5548. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5549. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5550. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5551. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5552. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5553. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5554. border-bottom-right-radius: 1px;
  5555. }
  5556. .panel > .panel-body + .table,
  5557. .panel > .panel-body + .table-responsive,
  5558. .panel > .table + .panel-body,
  5559. .panel > .table-responsive + .panel-body {
  5560. border-top: 1px solid #ddd;
  5561. }
  5562. .panel > .table > tbody:first-child > tr:first-child th,
  5563. .panel > .table > tbody:first-child > tr:first-child td {
  5564. border-top: 0;
  5565. }
  5566. .panel > .table-bordered,
  5567. .panel > .table-responsive > .table-bordered {
  5568. border: 0;
  5569. }
  5570. .panel > .table-bordered > thead > tr > th:first-child,
  5571. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5572. .panel > .table-bordered > tbody > tr > th:first-child,
  5573. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5574. .panel > .table-bordered > tfoot > tr > th:first-child,
  5575. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5576. .panel > .table-bordered > thead > tr > td:first-child,
  5577. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5578. .panel > .table-bordered > tbody > tr > td:first-child,
  5579. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5580. .panel > .table-bordered > tfoot > tr > td:first-child,
  5581. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5582. border-left: 0;
  5583. }
  5584. .panel > .table-bordered > thead > tr > th:last-child,
  5585. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5586. .panel > .table-bordered > tbody > tr > th:last-child,
  5587. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5588. .panel > .table-bordered > tfoot > tr > th:last-child,
  5589. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5590. .panel > .table-bordered > thead > tr > td:last-child,
  5591. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5592. .panel > .table-bordered > tbody > tr > td:last-child,
  5593. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5594. .panel > .table-bordered > tfoot > tr > td:last-child,
  5595. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5596. border-right: 0;
  5597. }
  5598. .panel > .table-bordered > thead > tr:first-child > td,
  5599. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5600. .panel > .table-bordered > tbody > tr:first-child > td,
  5601. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5602. .panel > .table-bordered > thead > tr:first-child > th,
  5603. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5604. .panel > .table-bordered > tbody > tr:first-child > th,
  5605. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5606. border-bottom: 0;
  5607. }
  5608. .panel > .table-bordered > tbody > tr:last-child > td,
  5609. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5610. .panel > .table-bordered > tfoot > tr:last-child > td,
  5611. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5612. .panel > .table-bordered > tbody > tr:last-child > th,
  5613. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5614. .panel > .table-bordered > tfoot > tr:last-child > th,
  5615. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5616. border-bottom: 0;
  5617. }
  5618. .panel > .table-responsive {
  5619. margin-bottom: 0;
  5620. border: 0;
  5621. }
  5622. .panel-group {
  5623. margin-bottom: 18px;
  5624. }
  5625. .panel-group .panel {
  5626. margin-bottom: 0;
  5627. border-radius: 2px;
  5628. }
  5629. .panel-group .panel + .panel {
  5630. margin-top: 5px;
  5631. }
  5632. .panel-group .panel-heading {
  5633. border-bottom: 0;
  5634. }
  5635. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5636. .panel-group .panel-heading + .panel-collapse > .list-group {
  5637. border-top: 1px solid #ddd;
  5638. }
  5639. .panel-group .panel-footer {
  5640. border-top: 0;
  5641. }
  5642. .panel-group .panel-footer + .panel-collapse .panel-body {
  5643. border-bottom: 1px solid #ddd;
  5644. }
  5645. .panel-default {
  5646. border-color: #ddd;
  5647. }
  5648. .panel-default > .panel-heading {
  5649. color: #333333;
  5650. background-color: #f5f5f5;
  5651. border-color: #ddd;
  5652. }
  5653. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5654. border-top-color: #ddd;
  5655. }
  5656. .panel-default > .panel-heading .badge {
  5657. color: #f5f5f5;
  5658. background-color: #333333;
  5659. }
  5660. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5661. border-bottom-color: #ddd;
  5662. }
  5663. .panel-primary {
  5664. border-color: #337ab7;
  5665. }
  5666. .panel-primary > .panel-heading {
  5667. color: #fff;
  5668. background-color: #337ab7;
  5669. border-color: #337ab7;
  5670. }
  5671. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5672. border-top-color: #337ab7;
  5673. }
  5674. .panel-primary > .panel-heading .badge {
  5675. color: #337ab7;
  5676. background-color: #fff;
  5677. }
  5678. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5679. border-bottom-color: #337ab7;
  5680. }
  5681. .panel-success {
  5682. border-color: #d6e9c6;
  5683. }
  5684. .panel-success > .panel-heading {
  5685. color: #3c763d;
  5686. background-color: #dff0d8;
  5687. border-color: #d6e9c6;
  5688. }
  5689. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5690. border-top-color: #d6e9c6;
  5691. }
  5692. .panel-success > .panel-heading .badge {
  5693. color: #dff0d8;
  5694. background-color: #3c763d;
  5695. }
  5696. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5697. border-bottom-color: #d6e9c6;
  5698. }
  5699. .panel-info {
  5700. border-color: #bce8f1;
  5701. }
  5702. .panel-info > .panel-heading {
  5703. color: #31708f;
  5704. background-color: #d9edf7;
  5705. border-color: #bce8f1;
  5706. }
  5707. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5708. border-top-color: #bce8f1;
  5709. }
  5710. .panel-info > .panel-heading .badge {
  5711. color: #d9edf7;
  5712. background-color: #31708f;
  5713. }
  5714. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5715. border-bottom-color: #bce8f1;
  5716. }
  5717. .panel-warning {
  5718. border-color: #faebcc;
  5719. }
  5720. .panel-warning > .panel-heading {
  5721. color: #8a6d3b;
  5722. background-color: #fcf8e3;
  5723. border-color: #faebcc;
  5724. }
  5725. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5726. border-top-color: #faebcc;
  5727. }
  5728. .panel-warning > .panel-heading .badge {
  5729. color: #fcf8e3;
  5730. background-color: #8a6d3b;
  5731. }
  5732. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5733. border-bottom-color: #faebcc;
  5734. }
  5735. .panel-danger {
  5736. border-color: #ebccd1;
  5737. }
  5738. .panel-danger > .panel-heading {
  5739. color: #a94442;
  5740. background-color: #f2dede;
  5741. border-color: #ebccd1;
  5742. }
  5743. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5744. border-top-color: #ebccd1;
  5745. }
  5746. .panel-danger > .panel-heading .badge {
  5747. color: #f2dede;
  5748. background-color: #a94442;
  5749. }
  5750. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5751. border-bottom-color: #ebccd1;
  5752. }
  5753. .embed-responsive {
  5754. position: relative;
  5755. display: block;
  5756. height: 0;
  5757. padding: 0;
  5758. overflow: hidden;
  5759. }
  5760. .embed-responsive .embed-responsive-item,
  5761. .embed-responsive iframe,
  5762. .embed-responsive embed,
  5763. .embed-responsive object,
  5764. .embed-responsive video {
  5765. position: absolute;
  5766. top: 0;
  5767. bottom: 0;
  5768. left: 0;
  5769. width: 100%;
  5770. height: 100%;
  5771. border: 0;
  5772. }
  5773. .embed-responsive-16by9 {
  5774. padding-bottom: 56.25%;
  5775. }
  5776. .embed-responsive-4by3 {
  5777. padding-bottom: 75%;
  5778. }
  5779. .well {
  5780. min-height: 20px;
  5781. padding: 19px;
  5782. margin-bottom: 20px;
  5783. background-color: #f5f5f5;
  5784. border: 1px solid #e3e3e3;
  5785. border-radius: 2px;
  5786. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5787. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5788. }
  5789. .well blockquote {
  5790. border-color: #ddd;
  5791. border-color: rgba(0, 0, 0, 0.15);
  5792. }
  5793. .well-lg {
  5794. padding: 24px;
  5795. border-radius: 3px;
  5796. }
  5797. .well-sm {
  5798. padding: 9px;
  5799. border-radius: 1px;
  5800. }
  5801. .close {
  5802. float: right;
  5803. font-size: 19.5px;
  5804. font-weight: bold;
  5805. line-height: 1;
  5806. color: #000;
  5807. text-shadow: 0 1px 0 #fff;
  5808. filter: alpha(opacity=20);
  5809. opacity: 0.2;
  5810. }
  5811. .close:hover,
  5812. .close:focus {
  5813. color: #000;
  5814. text-decoration: none;
  5815. cursor: pointer;
  5816. filter: alpha(opacity=50);
  5817. opacity: 0.5;
  5818. }
  5819. button.close {
  5820. padding: 0;
  5821. cursor: pointer;
  5822. background: transparent;
  5823. border: 0;
  5824. -webkit-appearance: none;
  5825. appearance: none;
  5826. }
  5827. .modal-open {
  5828. overflow: hidden;
  5829. }
  5830. .modal {
  5831. position: fixed;
  5832. top: 0;
  5833. right: 0;
  5834. bottom: 0;
  5835. left: 0;
  5836. z-index: 1050;
  5837. display: none;
  5838. overflow: hidden;
  5839. -webkit-overflow-scrolling: touch;
  5840. outline: 0;
  5841. }
  5842. .modal.fade .modal-dialog {
  5843. -webkit-transform: translate(0, -25%);
  5844. -ms-transform: translate(0, -25%);
  5845. -o-transform: translate(0, -25%);
  5846. transform: translate(0, -25%);
  5847. -webkit-transition: -webkit-transform 0.3s ease-out;
  5848. -moz-transition: -moz-transform 0.3s ease-out;
  5849. -o-transition: -o-transform 0.3s ease-out;
  5850. transition: transform 0.3s ease-out;
  5851. }
  5852. .modal.in .modal-dialog {
  5853. -webkit-transform: translate(0, 0);
  5854. -ms-transform: translate(0, 0);
  5855. -o-transform: translate(0, 0);
  5856. transform: translate(0, 0);
  5857. }
  5858. .modal-open .modal {
  5859. overflow-x: hidden;
  5860. overflow-y: auto;
  5861. }
  5862. .modal-dialog {
  5863. position: relative;
  5864. width: auto;
  5865. margin: 10px;
  5866. }
  5867. .modal-content {
  5868. position: relative;
  5869. background-color: #fff;
  5870. background-clip: padding-box;
  5871. border: 1px solid #999;
  5872. border: 1px solid rgba(0, 0, 0, 0.2);
  5873. border-radius: 3px;
  5874. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5875. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5876. outline: 0;
  5877. }
  5878. .modal-backdrop {
  5879. position: fixed;
  5880. top: 0;
  5881. right: 0;
  5882. bottom: 0;
  5883. left: 0;
  5884. z-index: 1040;
  5885. background-color: #000;
  5886. }
  5887. .modal-backdrop.fade {
  5888. filter: alpha(opacity=0);
  5889. opacity: 0;
  5890. }
  5891. .modal-backdrop.in {
  5892. filter: alpha(opacity=50);
  5893. opacity: 0.5;
  5894. }
  5895. .modal-header {
  5896. padding: 15px;
  5897. border-bottom: 1px solid #e5e5e5;
  5898. }
  5899. .modal-header .close {
  5900. margin-top: -2px;
  5901. }
  5902. .modal-title {
  5903. margin: 0;
  5904. line-height: 1.42857143;
  5905. }
  5906. .modal-body {
  5907. position: relative;
  5908. padding: 15px;
  5909. }
  5910. .modal-footer {
  5911. padding: 15px;
  5912. text-align: right;
  5913. border-top: 1px solid #e5e5e5;
  5914. }
  5915. .modal-footer .btn + .btn {
  5916. margin-bottom: 0;
  5917. margin-left: 5px;
  5918. }
  5919. .modal-footer .btn-group .btn + .btn {
  5920. margin-left: -1px;
  5921. }
  5922. .modal-footer .btn-block + .btn-block {
  5923. margin-left: 0;
  5924. }
  5925. .modal-scrollbar-measure {
  5926. position: absolute;
  5927. top: -9999px;
  5928. width: 50px;
  5929. height: 50px;
  5930. overflow: scroll;
  5931. }
  5932. @media (min-width: 768px) {
  5933. .modal-dialog {
  5934. width: 600px;
  5935. margin: 30px auto;
  5936. }
  5937. .modal-content {
  5938. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5939. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5940. }
  5941. .modal-sm {
  5942. width: 300px;
  5943. }
  5944. }
  5945. @media (min-width: 992px) {
  5946. .modal-lg {
  5947. width: 900px;
  5948. }
  5949. }
  5950. .tooltip {
  5951. position: absolute;
  5952. z-index: 1070;
  5953. display: block;
  5954. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5955. font-style: normal;
  5956. font-weight: 400;
  5957. line-height: 1.42857143;
  5958. line-break: auto;
  5959. text-align: left;
  5960. text-align: start;
  5961. text-decoration: none;
  5962. text-shadow: none;
  5963. text-transform: none;
  5964. letter-spacing: normal;
  5965. word-break: normal;
  5966. word-spacing: normal;
  5967. word-wrap: normal;
  5968. white-space: normal;
  5969. font-size: 12px;
  5970. filter: alpha(opacity=0);
  5971. opacity: 0;
  5972. }
  5973. .tooltip.in {
  5974. filter: alpha(opacity=90);
  5975. opacity: 0.9;
  5976. }
  5977. .tooltip.top {
  5978. padding: 5px 0;
  5979. margin-top: -3px;
  5980. }
  5981. .tooltip.right {
  5982. padding: 0 5px;
  5983. margin-left: 3px;
  5984. }
  5985. .tooltip.bottom {
  5986. padding: 5px 0;
  5987. margin-top: 3px;
  5988. }
  5989. .tooltip.left {
  5990. padding: 0 5px;
  5991. margin-left: -3px;
  5992. }
  5993. .tooltip.top .tooltip-arrow {
  5994. bottom: 0;
  5995. left: 50%;
  5996. margin-left: -5px;
  5997. border-width: 5px 5px 0;
  5998. border-top-color: #000;
  5999. }
  6000. .tooltip.top-left .tooltip-arrow {
  6001. right: 5px;
  6002. bottom: 0;
  6003. margin-bottom: -5px;
  6004. border-width: 5px 5px 0;
  6005. border-top-color: #000;
  6006. }
  6007. .tooltip.top-right .tooltip-arrow {
  6008. bottom: 0;
  6009. left: 5px;
  6010. margin-bottom: -5px;
  6011. border-width: 5px 5px 0;
  6012. border-top-color: #000;
  6013. }
  6014. .tooltip.right .tooltip-arrow {
  6015. top: 50%;
  6016. left: 0;
  6017. margin-top: -5px;
  6018. border-width: 5px 5px 5px 0;
  6019. border-right-color: #000;
  6020. }
  6021. .tooltip.left .tooltip-arrow {
  6022. top: 50%;
  6023. right: 0;
  6024. margin-top: -5px;
  6025. border-width: 5px 0 5px 5px;
  6026. border-left-color: #000;
  6027. }
  6028. .tooltip.bottom .tooltip-arrow {
  6029. top: 0;
  6030. left: 50%;
  6031. margin-left: -5px;
  6032. border-width: 0 5px 5px;
  6033. border-bottom-color: #000;
  6034. }
  6035. .tooltip.bottom-left .tooltip-arrow {
  6036. top: 0;
  6037. right: 5px;
  6038. margin-top: -5px;
  6039. border-width: 0 5px 5px;
  6040. border-bottom-color: #000;
  6041. }
  6042. .tooltip.bottom-right .tooltip-arrow {
  6043. top: 0;
  6044. left: 5px;
  6045. margin-top: -5px;
  6046. border-width: 0 5px 5px;
  6047. border-bottom-color: #000;
  6048. }
  6049. .tooltip-inner {
  6050. max-width: 200px;
  6051. padding: 3px 8px;
  6052. color: #fff;
  6053. text-align: center;
  6054. background-color: #000;
  6055. border-radius: 2px;
  6056. }
  6057. .tooltip-arrow {
  6058. position: absolute;
  6059. width: 0;
  6060. height: 0;
  6061. border-color: transparent;
  6062. border-style: solid;
  6063. }
  6064. .popover {
  6065. position: absolute;
  6066. top: 0;
  6067. left: 0;
  6068. z-index: 1060;
  6069. display: none;
  6070. max-width: 276px;
  6071. padding: 1px;
  6072. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6073. font-style: normal;
  6074. font-weight: 400;
  6075. line-height: 1.42857143;
  6076. line-break: auto;
  6077. text-align: left;
  6078. text-align: start;
  6079. text-decoration: none;
  6080. text-shadow: none;
  6081. text-transform: none;
  6082. letter-spacing: normal;
  6083. word-break: normal;
  6084. word-spacing: normal;
  6085. word-wrap: normal;
  6086. white-space: normal;
  6087. font-size: 13px;
  6088. background-color: #fff;
  6089. background-clip: padding-box;
  6090. border: 1px solid #ccc;
  6091. border: 1px solid rgba(0, 0, 0, 0.2);
  6092. border-radius: 3px;
  6093. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6094. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6095. }
  6096. .popover.top {
  6097. margin-top: -10px;
  6098. }
  6099. .popover.right {
  6100. margin-left: 10px;
  6101. }
  6102. .popover.bottom {
  6103. margin-top: 10px;
  6104. }
  6105. .popover.left {
  6106. margin-left: -10px;
  6107. }
  6108. .popover > .arrow {
  6109. border-width: 11px;
  6110. }
  6111. .popover > .arrow,
  6112. .popover > .arrow:after {
  6113. position: absolute;
  6114. display: block;
  6115. width: 0;
  6116. height: 0;
  6117. border-color: transparent;
  6118. border-style: solid;
  6119. }
  6120. .popover > .arrow:after {
  6121. content: "";
  6122. border-width: 10px;
  6123. }
  6124. .popover.top > .arrow {
  6125. bottom: -11px;
  6126. left: 50%;
  6127. margin-left: -11px;
  6128. border-top-color: #999999;
  6129. border-top-color: rgba(0, 0, 0, 0.25);
  6130. border-bottom-width: 0;
  6131. }
  6132. .popover.top > .arrow:after {
  6133. bottom: 1px;
  6134. margin-left: -10px;
  6135. content: " ";
  6136. border-top-color: #fff;
  6137. border-bottom-width: 0;
  6138. }
  6139. .popover.right > .arrow {
  6140. top: 50%;
  6141. left: -11px;
  6142. margin-top: -11px;
  6143. border-right-color: #999999;
  6144. border-right-color: rgba(0, 0, 0, 0.25);
  6145. border-left-width: 0;
  6146. }
  6147. .popover.right > .arrow:after {
  6148. bottom: -10px;
  6149. left: 1px;
  6150. content: " ";
  6151. border-right-color: #fff;
  6152. border-left-width: 0;
  6153. }
  6154. .popover.bottom > .arrow {
  6155. top: -11px;
  6156. left: 50%;
  6157. margin-left: -11px;
  6158. border-top-width: 0;
  6159. border-bottom-color: #999999;
  6160. border-bottom-color: rgba(0, 0, 0, 0.25);
  6161. }
  6162. .popover.bottom > .arrow:after {
  6163. top: 1px;
  6164. margin-left: -10px;
  6165. content: " ";
  6166. border-top-width: 0;
  6167. border-bottom-color: #fff;
  6168. }
  6169. .popover.left > .arrow {
  6170. top: 50%;
  6171. right: -11px;
  6172. margin-top: -11px;
  6173. border-right-width: 0;
  6174. border-left-color: #999999;
  6175. border-left-color: rgba(0, 0, 0, 0.25);
  6176. }
  6177. .popover.left > .arrow:after {
  6178. right: 1px;
  6179. bottom: -10px;
  6180. content: " ";
  6181. border-right-width: 0;
  6182. border-left-color: #fff;
  6183. }
  6184. .popover-title {
  6185. padding: 8px 14px;
  6186. margin: 0;
  6187. font-size: 13px;
  6188. background-color: #f7f7f7;
  6189. border-bottom: 1px solid #ebebeb;
  6190. border-radius: 2px 2px 0 0;
  6191. }
  6192. .popover-content {
  6193. padding: 9px 14px;
  6194. }
  6195. .carousel {
  6196. position: relative;
  6197. }
  6198. .carousel-inner {
  6199. position: relative;
  6200. width: 100%;
  6201. overflow: hidden;
  6202. }
  6203. .carousel-inner > .item {
  6204. position: relative;
  6205. display: none;
  6206. -webkit-transition: 0.6s ease-in-out left;
  6207. -o-transition: 0.6s ease-in-out left;
  6208. transition: 0.6s ease-in-out left;
  6209. }
  6210. .carousel-inner > .item > img,
  6211. .carousel-inner > .item > a > img {
  6212. line-height: 1;
  6213. }
  6214. @media all and (transform-3d), (-webkit-transform-3d) {
  6215. .carousel-inner > .item {
  6216. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6217. -moz-transition: -moz-transform 0.6s ease-in-out;
  6218. -o-transition: -o-transform 0.6s ease-in-out;
  6219. transition: transform 0.6s ease-in-out;
  6220. -webkit-backface-visibility: hidden;
  6221. -moz-backface-visibility: hidden;
  6222. backface-visibility: hidden;
  6223. -webkit-perspective: 1000px;
  6224. -moz-perspective: 1000px;
  6225. perspective: 1000px;
  6226. }
  6227. .carousel-inner > .item.next,
  6228. .carousel-inner > .item.active.right {
  6229. -webkit-transform: translate3d(100%, 0, 0);
  6230. transform: translate3d(100%, 0, 0);
  6231. left: 0;
  6232. }
  6233. .carousel-inner > .item.prev,
  6234. .carousel-inner > .item.active.left {
  6235. -webkit-transform: translate3d(-100%, 0, 0);
  6236. transform: translate3d(-100%, 0, 0);
  6237. left: 0;
  6238. }
  6239. .carousel-inner > .item.next.left,
  6240. .carousel-inner > .item.prev.right,
  6241. .carousel-inner > .item.active {
  6242. -webkit-transform: translate3d(0, 0, 0);
  6243. transform: translate3d(0, 0, 0);
  6244. left: 0;
  6245. }
  6246. }
  6247. .carousel-inner > .active,
  6248. .carousel-inner > .next,
  6249. .carousel-inner > .prev {
  6250. display: block;
  6251. }
  6252. .carousel-inner > .active {
  6253. left: 0;
  6254. }
  6255. .carousel-inner > .next,
  6256. .carousel-inner > .prev {
  6257. position: absolute;
  6258. top: 0;
  6259. width: 100%;
  6260. }
  6261. .carousel-inner > .next {
  6262. left: 100%;
  6263. }
  6264. .carousel-inner > .prev {
  6265. left: -100%;
  6266. }
  6267. .carousel-inner > .next.left,
  6268. .carousel-inner > .prev.right {
  6269. left: 0;
  6270. }
  6271. .carousel-inner > .active.left {
  6272. left: -100%;
  6273. }
  6274. .carousel-inner > .active.right {
  6275. left: 100%;
  6276. }
  6277. .carousel-control {
  6278. position: absolute;
  6279. top: 0;
  6280. bottom: 0;
  6281. left: 0;
  6282. width: 15%;
  6283. font-size: 20px;
  6284. color: #fff;
  6285. text-align: center;
  6286. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6287. background-color: rgba(0, 0, 0, 0);
  6288. filter: alpha(opacity=50);
  6289. opacity: 0.5;
  6290. }
  6291. .carousel-control.left {
  6292. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6293. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6294. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6295. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6296. background-repeat: repeat-x;
  6297. }
  6298. .carousel-control.right {
  6299. right: 0;
  6300. left: auto;
  6301. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6302. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6303. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6304. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6305. background-repeat: repeat-x;
  6306. }
  6307. .carousel-control:hover,
  6308. .carousel-control:focus {
  6309. color: #fff;
  6310. text-decoration: none;
  6311. outline: 0;
  6312. filter: alpha(opacity=90);
  6313. opacity: 0.9;
  6314. }
  6315. .carousel-control .icon-prev,
  6316. .carousel-control .icon-next,
  6317. .carousel-control .glyphicon-chevron-left,
  6318. .carousel-control .glyphicon-chevron-right {
  6319. position: absolute;
  6320. top: 50%;
  6321. z-index: 5;
  6322. display: inline-block;
  6323. margin-top: -10px;
  6324. }
  6325. .carousel-control .icon-prev,
  6326. .carousel-control .glyphicon-chevron-left {
  6327. left: 50%;
  6328. margin-left: -10px;
  6329. }
  6330. .carousel-control .icon-next,
  6331. .carousel-control .glyphicon-chevron-right {
  6332. right: 50%;
  6333. margin-right: -10px;
  6334. }
  6335. .carousel-control .icon-prev,
  6336. .carousel-control .icon-next {
  6337. width: 20px;
  6338. height: 20px;
  6339. font-family: serif;
  6340. line-height: 1;
  6341. }
  6342. .carousel-control .icon-prev:before {
  6343. content: "\2039";
  6344. }
  6345. .carousel-control .icon-next:before {
  6346. content: "\203a";
  6347. }
  6348. .carousel-indicators {
  6349. position: absolute;
  6350. bottom: 10px;
  6351. left: 50%;
  6352. z-index: 15;
  6353. width: 60%;
  6354. padding-left: 0;
  6355. margin-left: -30%;
  6356. text-align: center;
  6357. list-style: none;
  6358. }
  6359. .carousel-indicators li {
  6360. display: inline-block;
  6361. width: 10px;
  6362. height: 10px;
  6363. margin: 1px;
  6364. text-indent: -999px;
  6365. cursor: pointer;
  6366. background-color: #000 \9;
  6367. background-color: rgba(0, 0, 0, 0);
  6368. border: 1px solid #fff;
  6369. border-radius: 10px;
  6370. }
  6371. .carousel-indicators .active {
  6372. width: 12px;
  6373. height: 12px;
  6374. margin: 0;
  6375. background-color: #fff;
  6376. }
  6377. .carousel-caption {
  6378. position: absolute;
  6379. right: 15%;
  6380. bottom: 20px;
  6381. left: 15%;
  6382. z-index: 10;
  6383. padding-top: 20px;
  6384. padding-bottom: 20px;
  6385. color: #fff;
  6386. text-align: center;
  6387. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6388. }
  6389. .carousel-caption .btn {
  6390. text-shadow: none;
  6391. }
  6392. @media screen and (min-width: 768px) {
  6393. .carousel-control .glyphicon-chevron-left,
  6394. .carousel-control .glyphicon-chevron-right,
  6395. .carousel-control .icon-prev,
  6396. .carousel-control .icon-next {
  6397. width: 30px;
  6398. height: 30px;
  6399. margin-top: -10px;
  6400. font-size: 30px;
  6401. }
  6402. .carousel-control .glyphicon-chevron-left,
  6403. .carousel-control .icon-prev {
  6404. margin-left: -10px;
  6405. }
  6406. .carousel-control .glyphicon-chevron-right,
  6407. .carousel-control .icon-next {
  6408. margin-right: -10px;
  6409. }
  6410. .carousel-caption {
  6411. right: 20%;
  6412. left: 20%;
  6413. padding-bottom: 30px;
  6414. }
  6415. .carousel-indicators {
  6416. bottom: 20px;
  6417. }
  6418. }
  6419. .clearfix:before,
  6420. .clearfix:after,
  6421. .dl-horizontal dd:before,
  6422. .dl-horizontal dd:after,
  6423. .container:before,
  6424. .container:after,
  6425. .container-fluid:before,
  6426. .container-fluid:after,
  6427. .row:before,
  6428. .row:after,
  6429. .form-horizontal .form-group:before,
  6430. .form-horizontal .form-group:after,
  6431. .btn-toolbar:before,
  6432. .btn-toolbar:after,
  6433. .btn-group-vertical > .btn-group:before,
  6434. .btn-group-vertical > .btn-group:after,
  6435. .nav:before,
  6436. .nav:after,
  6437. .navbar:before,
  6438. .navbar:after,
  6439. .navbar-header:before,
  6440. .navbar-header:after,
  6441. .navbar-collapse:before,
  6442. .navbar-collapse:after,
  6443. .pager:before,
  6444. .pager:after,
  6445. .panel-body:before,
  6446. .panel-body:after,
  6447. .modal-header:before,
  6448. .modal-header:after,
  6449. .modal-footer:before,
  6450. .modal-footer:after,
  6451. .item_buttons:before,
  6452. .item_buttons:after {
  6453. display: table;
  6454. content: " ";
  6455. }
  6456. .clearfix:after,
  6457. .dl-horizontal dd:after,
  6458. .container:after,
  6459. .container-fluid:after,
  6460. .row:after,
  6461. .form-horizontal .form-group:after,
  6462. .btn-toolbar:after,
  6463. .btn-group-vertical > .btn-group:after,
  6464. .nav:after,
  6465. .navbar:after,
  6466. .navbar-header:after,
  6467. .navbar-collapse:after,
  6468. .pager:after,
  6469. .panel-body:after,
  6470. .modal-header:after,
  6471. .modal-footer:after,
  6472. .item_buttons:after {
  6473. clear: both;
  6474. }
  6475. .center-block {
  6476. display: block;
  6477. margin-right: auto;
  6478. margin-left: auto;
  6479. }
  6480. .pull-right {
  6481. float: right !important;
  6482. }
  6483. .pull-left {
  6484. float: left !important;
  6485. }
  6486. .hide {
  6487. display: none !important;
  6488. }
  6489. .show {
  6490. display: block !important;
  6491. }
  6492. .invisible {
  6493. visibility: hidden;
  6494. }
  6495. .text-hide {
  6496. font: 0/0 a;
  6497. color: transparent;
  6498. text-shadow: none;
  6499. background-color: transparent;
  6500. border: 0;
  6501. }
  6502. .hidden {
  6503. display: none !important;
  6504. }
  6505. .affix {
  6506. position: fixed;
  6507. }
  6508. @-ms-viewport {
  6509. width: device-width;
  6510. }
  6511. .visible-xs,
  6512. .visible-sm,
  6513. .visible-md,
  6514. .visible-lg {
  6515. display: none !important;
  6516. }
  6517. .visible-xs-block,
  6518. .visible-xs-inline,
  6519. .visible-xs-inline-block,
  6520. .visible-sm-block,
  6521. .visible-sm-inline,
  6522. .visible-sm-inline-block,
  6523. .visible-md-block,
  6524. .visible-md-inline,
  6525. .visible-md-inline-block,
  6526. .visible-lg-block,
  6527. .visible-lg-inline,
  6528. .visible-lg-inline-block {
  6529. display: none !important;
  6530. }
  6531. @media (max-width: 767px) {
  6532. .visible-xs {
  6533. display: block !important;
  6534. }
  6535. table.visible-xs {
  6536. display: table !important;
  6537. }
  6538. tr.visible-xs {
  6539. display: table-row !important;
  6540. }
  6541. th.visible-xs,
  6542. td.visible-xs {
  6543. display: table-cell !important;
  6544. }
  6545. }
  6546. @media (max-width: 767px) {
  6547. .visible-xs-block {
  6548. display: block !important;
  6549. }
  6550. }
  6551. @media (max-width: 767px) {
  6552. .visible-xs-inline {
  6553. display: inline !important;
  6554. }
  6555. }
  6556. @media (max-width: 767px) {
  6557. .visible-xs-inline-block {
  6558. display: inline-block !important;
  6559. }
  6560. }
  6561. @media (min-width: 768px) and (max-width: 991px) {
  6562. .visible-sm {
  6563. display: block !important;
  6564. }
  6565. table.visible-sm {
  6566. display: table !important;
  6567. }
  6568. tr.visible-sm {
  6569. display: table-row !important;
  6570. }
  6571. th.visible-sm,
  6572. td.visible-sm {
  6573. display: table-cell !important;
  6574. }
  6575. }
  6576. @media (min-width: 768px) and (max-width: 991px) {
  6577. .visible-sm-block {
  6578. display: block !important;
  6579. }
  6580. }
  6581. @media (min-width: 768px) and (max-width: 991px) {
  6582. .visible-sm-inline {
  6583. display: inline !important;
  6584. }
  6585. }
  6586. @media (min-width: 768px) and (max-width: 991px) {
  6587. .visible-sm-inline-block {
  6588. display: inline-block !important;
  6589. }
  6590. }
  6591. @media (min-width: 992px) and (max-width: 1199px) {
  6592. .visible-md {
  6593. display: block !important;
  6594. }
  6595. table.visible-md {
  6596. display: table !important;
  6597. }
  6598. tr.visible-md {
  6599. display: table-row !important;
  6600. }
  6601. th.visible-md,
  6602. td.visible-md {
  6603. display: table-cell !important;
  6604. }
  6605. }
  6606. @media (min-width: 992px) and (max-width: 1199px) {
  6607. .visible-md-block {
  6608. display: block !important;
  6609. }
  6610. }
  6611. @media (min-width: 992px) and (max-width: 1199px) {
  6612. .visible-md-inline {
  6613. display: inline !important;
  6614. }
  6615. }
  6616. @media (min-width: 992px) and (max-width: 1199px) {
  6617. .visible-md-inline-block {
  6618. display: inline-block !important;
  6619. }
  6620. }
  6621. @media (min-width: 1200px) {
  6622. .visible-lg {
  6623. display: block !important;
  6624. }
  6625. table.visible-lg {
  6626. display: table !important;
  6627. }
  6628. tr.visible-lg {
  6629. display: table-row !important;
  6630. }
  6631. th.visible-lg,
  6632. td.visible-lg {
  6633. display: table-cell !important;
  6634. }
  6635. }
  6636. @media (min-width: 1200px) {
  6637. .visible-lg-block {
  6638. display: block !important;
  6639. }
  6640. }
  6641. @media (min-width: 1200px) {
  6642. .visible-lg-inline {
  6643. display: inline !important;
  6644. }
  6645. }
  6646. @media (min-width: 1200px) {
  6647. .visible-lg-inline-block {
  6648. display: inline-block !important;
  6649. }
  6650. }
  6651. @media (max-width: 767px) {
  6652. .hidden-xs {
  6653. display: none !important;
  6654. }
  6655. }
  6656. @media (min-width: 768px) and (max-width: 991px) {
  6657. .hidden-sm {
  6658. display: none !important;
  6659. }
  6660. }
  6661. @media (min-width: 992px) and (max-width: 1199px) {
  6662. .hidden-md {
  6663. display: none !important;
  6664. }
  6665. }
  6666. @media (min-width: 1200px) {
  6667. .hidden-lg {
  6668. display: none !important;
  6669. }
  6670. }
  6671. .visible-print {
  6672. display: none !important;
  6673. }
  6674. @media print {
  6675. .visible-print {
  6676. display: block !important;
  6677. }
  6678. table.visible-print {
  6679. display: table !important;
  6680. }
  6681. tr.visible-print {
  6682. display: table-row !important;
  6683. }
  6684. th.visible-print,
  6685. td.visible-print {
  6686. display: table-cell !important;
  6687. }
  6688. }
  6689. .visible-print-block {
  6690. display: none !important;
  6691. }
  6692. @media print {
  6693. .visible-print-block {
  6694. display: block !important;
  6695. }
  6696. }
  6697. .visible-print-inline {
  6698. display: none !important;
  6699. }
  6700. @media print {
  6701. .visible-print-inline {
  6702. display: inline !important;
  6703. }
  6704. }
  6705. .visible-print-inline-block {
  6706. display: none !important;
  6707. }
  6708. @media print {
  6709. .visible-print-inline-block {
  6710. display: inline-block !important;
  6711. }
  6712. }
  6713. @media print {
  6714. .hidden-print {
  6715. display: none !important;
  6716. }
  6717. }
  6718. /*!
  6719. *
  6720. * Font Awesome
  6721. *
  6722. */
  6723. /*!
  6724. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  6725. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  6726. */
  6727. /* FONT PATH
  6728. * -------------------------- */
  6729. @font-face {
  6730. font-family: 'FontAwesome';
  6731. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0');
  6732. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  6733. font-weight: normal;
  6734. font-style: normal;
  6735. }
  6736. .fa {
  6737. display: inline-block;
  6738. font: normal normal normal 14px/1 FontAwesome;
  6739. font-size: inherit;
  6740. text-rendering: auto;
  6741. -webkit-font-smoothing: antialiased;
  6742. -moz-osx-font-smoothing: grayscale;
  6743. }
  6744. /* makes the font 33% larger relative to the icon container */
  6745. .fa-lg {
  6746. font-size: 1.33333333em;
  6747. line-height: 0.75em;
  6748. vertical-align: -15%;
  6749. }
  6750. .fa-2x {
  6751. font-size: 2em;
  6752. }
  6753. .fa-3x {
  6754. font-size: 3em;
  6755. }
  6756. .fa-4x {
  6757. font-size: 4em;
  6758. }
  6759. .fa-5x {
  6760. font-size: 5em;
  6761. }
  6762. .fa-fw {
  6763. width: 1.28571429em;
  6764. text-align: center;
  6765. }
  6766. .fa-ul {
  6767. padding-left: 0;
  6768. margin-left: 2.14285714em;
  6769. list-style-type: none;
  6770. }
  6771. .fa-ul > li {
  6772. position: relative;
  6773. }
  6774. .fa-li {
  6775. position: absolute;
  6776. left: -2.14285714em;
  6777. width: 2.14285714em;
  6778. top: 0.14285714em;
  6779. text-align: center;
  6780. }
  6781. .fa-li.fa-lg {
  6782. left: -1.85714286em;
  6783. }
  6784. .fa-border {
  6785. padding: .2em .25em .15em;
  6786. border: solid 0.08em #eee;
  6787. border-radius: .1em;
  6788. }
  6789. .fa-pull-left {
  6790. float: left;
  6791. }
  6792. .fa-pull-right {
  6793. float: right;
  6794. }
  6795. .fa.fa-pull-left {
  6796. margin-right: .3em;
  6797. }
  6798. .fa.fa-pull-right {
  6799. margin-left: .3em;
  6800. }
  6801. /* Deprecated as of 4.4.0 */
  6802. .pull-right {
  6803. float: right;
  6804. }
  6805. .pull-left {
  6806. float: left;
  6807. }
  6808. .fa.pull-left {
  6809. margin-right: .3em;
  6810. }
  6811. .fa.pull-right {
  6812. margin-left: .3em;
  6813. }
  6814. .fa-spin {
  6815. -webkit-animation: fa-spin 2s infinite linear;
  6816. animation: fa-spin 2s infinite linear;
  6817. }
  6818. .fa-pulse {
  6819. -webkit-animation: fa-spin 1s infinite steps(8);
  6820. animation: fa-spin 1s infinite steps(8);
  6821. }
  6822. @-webkit-keyframes fa-spin {
  6823. 0% {
  6824. -webkit-transform: rotate(0deg);
  6825. transform: rotate(0deg);
  6826. }
  6827. 100% {
  6828. -webkit-transform: rotate(359deg);
  6829. transform: rotate(359deg);
  6830. }
  6831. }
  6832. @keyframes fa-spin {
  6833. 0% {
  6834. -webkit-transform: rotate(0deg);
  6835. transform: rotate(0deg);
  6836. }
  6837. 100% {
  6838. -webkit-transform: rotate(359deg);
  6839. transform: rotate(359deg);
  6840. }
  6841. }
  6842. .fa-rotate-90 {
  6843. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  6844. -webkit-transform: rotate(90deg);
  6845. -ms-transform: rotate(90deg);
  6846. transform: rotate(90deg);
  6847. }
  6848. .fa-rotate-180 {
  6849. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  6850. -webkit-transform: rotate(180deg);
  6851. -ms-transform: rotate(180deg);
  6852. transform: rotate(180deg);
  6853. }
  6854. .fa-rotate-270 {
  6855. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  6856. -webkit-transform: rotate(270deg);
  6857. -ms-transform: rotate(270deg);
  6858. transform: rotate(270deg);
  6859. }
  6860. .fa-flip-horizontal {
  6861. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  6862. -webkit-transform: scale(-1, 1);
  6863. -ms-transform: scale(-1, 1);
  6864. transform: scale(-1, 1);
  6865. }
  6866. .fa-flip-vertical {
  6867. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  6868. -webkit-transform: scale(1, -1);
  6869. -ms-transform: scale(1, -1);
  6870. transform: scale(1, -1);
  6871. }
  6872. :root .fa-rotate-90,
  6873. :root .fa-rotate-180,
  6874. :root .fa-rotate-270,
  6875. :root .fa-flip-horizontal,
  6876. :root .fa-flip-vertical {
  6877. filter: none;
  6878. }
  6879. .fa-stack {
  6880. position: relative;
  6881. display: inline-block;
  6882. width: 2em;
  6883. height: 2em;
  6884. line-height: 2em;
  6885. vertical-align: middle;
  6886. }
  6887. .fa-stack-1x,
  6888. .fa-stack-2x {
  6889. position: absolute;
  6890. left: 0;
  6891. width: 100%;
  6892. text-align: center;
  6893. }
  6894. .fa-stack-1x {
  6895. line-height: inherit;
  6896. }
  6897. .fa-stack-2x {
  6898. font-size: 2em;
  6899. }
  6900. .fa-inverse {
  6901. color: #fff;
  6902. }
  6903. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  6904. readers do not read off random characters that represent icons */
  6905. .fa-glass:before {
  6906. content: "\f000";
  6907. }
  6908. .fa-music:before {
  6909. content: "\f001";
  6910. }
  6911. .fa-search:before {
  6912. content: "\f002";
  6913. }
  6914. .fa-envelope-o:before {
  6915. content: "\f003";
  6916. }
  6917. .fa-heart:before {
  6918. content: "\f004";
  6919. }
  6920. .fa-star:before {
  6921. content: "\f005";
  6922. }
  6923. .fa-star-o:before {
  6924. content: "\f006";
  6925. }
  6926. .fa-user:before {
  6927. content: "\f007";
  6928. }
  6929. .fa-film:before {
  6930. content: "\f008";
  6931. }
  6932. .fa-th-large:before {
  6933. content: "\f009";
  6934. }
  6935. .fa-th:before {
  6936. content: "\f00a";
  6937. }
  6938. .fa-th-list:before {
  6939. content: "\f00b";
  6940. }
  6941. .fa-check:before {
  6942. content: "\f00c";
  6943. }
  6944. .fa-remove:before,
  6945. .fa-close:before,
  6946. .fa-times:before {
  6947. content: "\f00d";
  6948. }
  6949. .fa-search-plus:before {
  6950. content: "\f00e";
  6951. }
  6952. .fa-search-minus:before {
  6953. content: "\f010";
  6954. }
  6955. .fa-power-off:before {
  6956. content: "\f011";
  6957. }
  6958. .fa-signal:before {
  6959. content: "\f012";
  6960. }
  6961. .fa-gear:before,
  6962. .fa-cog:before {
  6963. content: "\f013";
  6964. }
  6965. .fa-trash-o:before {
  6966. content: "\f014";
  6967. }
  6968. .fa-home:before {
  6969. content: "\f015";
  6970. }
  6971. .fa-file-o:before {
  6972. content: "\f016";
  6973. }
  6974. .fa-clock-o:before {
  6975. content: "\f017";
  6976. }
  6977. .fa-road:before {
  6978. content: "\f018";
  6979. }
  6980. .fa-download:before {
  6981. content: "\f019";
  6982. }
  6983. .fa-arrow-circle-o-down:before {
  6984. content: "\f01a";
  6985. }
  6986. .fa-arrow-circle-o-up:before {
  6987. content: "\f01b";
  6988. }
  6989. .fa-inbox:before {
  6990. content: "\f01c";
  6991. }
  6992. .fa-play-circle-o:before {
  6993. content: "\f01d";
  6994. }
  6995. .fa-rotate-right:before,
  6996. .fa-repeat:before {
  6997. content: "\f01e";
  6998. }
  6999. .fa-refresh:before {
  7000. content: "\f021";
  7001. }
  7002. .fa-list-alt:before {
  7003. content: "\f022";
  7004. }
  7005. .fa-lock:before {
  7006. content: "\f023";
  7007. }
  7008. .fa-flag:before {
  7009. content: "\f024";
  7010. }
  7011. .fa-headphones:before {
  7012. content: "\f025";
  7013. }
  7014. .fa-volume-off:before {
  7015. content: "\f026";
  7016. }
  7017. .fa-volume-down:before {
  7018. content: "\f027";
  7019. }
  7020. .fa-volume-up:before {
  7021. content: "\f028";
  7022. }
  7023. .fa-qrcode:before {
  7024. content: "\f029";
  7025. }
  7026. .fa-barcode:before {
  7027. content: "\f02a";
  7028. }
  7029. .fa-tag:before {
  7030. content: "\f02b";
  7031. }
  7032. .fa-tags:before {
  7033. content: "\f02c";
  7034. }
  7035. .fa-book:before {
  7036. content: "\f02d";
  7037. }
  7038. .fa-bookmark:before {
  7039. content: "\f02e";
  7040. }
  7041. .fa-print:before {
  7042. content: "\f02f";
  7043. }
  7044. .fa-camera:before {
  7045. content: "\f030";
  7046. }
  7047. .fa-font:before {
  7048. content: "\f031";
  7049. }
  7050. .fa-bold:before {
  7051. content: "\f032";
  7052. }
  7053. .fa-italic:before {
  7054. content: "\f033";
  7055. }
  7056. .fa-text-height:before {
  7057. content: "\f034";
  7058. }
  7059. .fa-text-width:before {
  7060. content: "\f035";
  7061. }
  7062. .fa-align-left:before {
  7063. content: "\f036";
  7064. }
  7065. .fa-align-center:before {
  7066. content: "\f037";
  7067. }
  7068. .fa-align-right:before {
  7069. content: "\f038";
  7070. }
  7071. .fa-align-justify:before {
  7072. content: "\f039";
  7073. }
  7074. .fa-list:before {
  7075. content: "\f03a";
  7076. }
  7077. .fa-dedent:before,
  7078. .fa-outdent:before {
  7079. content: "\f03b";
  7080. }
  7081. .fa-indent:before {
  7082. content: "\f03c";
  7083. }
  7084. .fa-video-camera:before {
  7085. content: "\f03d";
  7086. }
  7087. .fa-photo:before,
  7088. .fa-image:before,
  7089. .fa-picture-o:before {
  7090. content: "\f03e";
  7091. }
  7092. .fa-pencil:before {
  7093. content: "\f040";
  7094. }
  7095. .fa-map-marker:before {
  7096. content: "\f041";
  7097. }
  7098. .fa-adjust:before {
  7099. content: "\f042";
  7100. }
  7101. .fa-tint:before {
  7102. content: "\f043";
  7103. }
  7104. .fa-edit:before,
  7105. .fa-pencil-square-o:before {
  7106. content: "\f044";
  7107. }
  7108. .fa-share-square-o:before {
  7109. content: "\f045";
  7110. }
  7111. .fa-check-square-o:before {
  7112. content: "\f046";
  7113. }
  7114. .fa-arrows:before {
  7115. content: "\f047";
  7116. }
  7117. .fa-step-backward:before {
  7118. content: "\f048";
  7119. }
  7120. .fa-fast-backward:before {
  7121. content: "\f049";
  7122. }
  7123. .fa-backward:before {
  7124. content: "\f04a";
  7125. }
  7126. .fa-play:before {
  7127. content: "\f04b";
  7128. }
  7129. .fa-pause:before {
  7130. content: "\f04c";
  7131. }
  7132. .fa-stop:before {
  7133. content: "\f04d";
  7134. }
  7135. .fa-forward:before {
  7136. content: "\f04e";
  7137. }
  7138. .fa-fast-forward:before {
  7139. content: "\f050";
  7140. }
  7141. .fa-step-forward:before {
  7142. content: "\f051";
  7143. }
  7144. .fa-eject:before {
  7145. content: "\f052";
  7146. }
  7147. .fa-chevron-left:before {
  7148. content: "\f053";
  7149. }
  7150. .fa-chevron-right:before {
  7151. content: "\f054";
  7152. }
  7153. .fa-plus-circle:before {
  7154. content: "\f055";
  7155. }
  7156. .fa-minus-circle:before {
  7157. content: "\f056";
  7158. }
  7159. .fa-times-circle:before {
  7160. content: "\f057";
  7161. }
  7162. .fa-check-circle:before {
  7163. content: "\f058";
  7164. }
  7165. .fa-question-circle:before {
  7166. content: "\f059";
  7167. }
  7168. .fa-info-circle:before {
  7169. content: "\f05a";
  7170. }
  7171. .fa-crosshairs:before {
  7172. content: "\f05b";
  7173. }
  7174. .fa-times-circle-o:before {
  7175. content: "\f05c";
  7176. }
  7177. .fa-check-circle-o:before {
  7178. content: "\f05d";
  7179. }
  7180. .fa-ban:before {
  7181. content: "\f05e";
  7182. }
  7183. .fa-arrow-left:before {
  7184. content: "\f060";
  7185. }
  7186. .fa-arrow-right:before {
  7187. content: "\f061";
  7188. }
  7189. .fa-arrow-up:before {
  7190. content: "\f062";
  7191. }
  7192. .fa-arrow-down:before {
  7193. content: "\f063";
  7194. }
  7195. .fa-mail-forward:before,
  7196. .fa-share:before {
  7197. content: "\f064";
  7198. }
  7199. .fa-expand:before {
  7200. content: "\f065";
  7201. }
  7202. .fa-compress:before {
  7203. content: "\f066";
  7204. }
  7205. .fa-plus:before {
  7206. content: "\f067";
  7207. }
  7208. .fa-minus:before {
  7209. content: "\f068";
  7210. }
  7211. .fa-asterisk:before {
  7212. content: "\f069";
  7213. }
  7214. .fa-exclamation-circle:before {
  7215. content: "\f06a";
  7216. }
  7217. .fa-gift:before {
  7218. content: "\f06b";
  7219. }
  7220. .fa-leaf:before {
  7221. content: "\f06c";
  7222. }
  7223. .fa-fire:before {
  7224. content: "\f06d";
  7225. }
  7226. .fa-eye:before {
  7227. content: "\f06e";
  7228. }
  7229. .fa-eye-slash:before {
  7230. content: "\f070";
  7231. }
  7232. .fa-warning:before,
  7233. .fa-exclamation-triangle:before {
  7234. content: "\f071";
  7235. }
  7236. .fa-plane:before {
  7237. content: "\f072";
  7238. }
  7239. .fa-calendar:before {
  7240. content: "\f073";
  7241. }
  7242. .fa-random:before {
  7243. content: "\f074";
  7244. }
  7245. .fa-comment:before {
  7246. content: "\f075";
  7247. }
  7248. .fa-magnet:before {
  7249. content: "\f076";
  7250. }
  7251. .fa-chevron-up:before {
  7252. content: "\f077";
  7253. }
  7254. .fa-chevron-down:before {
  7255. content: "\f078";
  7256. }
  7257. .fa-retweet:before {
  7258. content: "\f079";
  7259. }
  7260. .fa-shopping-cart:before {
  7261. content: "\f07a";
  7262. }
  7263. .fa-folder:before {
  7264. content: "\f07b";
  7265. }
  7266. .fa-folder-open:before {
  7267. content: "\f07c";
  7268. }
  7269. .fa-arrows-v:before {
  7270. content: "\f07d";
  7271. }
  7272. .fa-arrows-h:before {
  7273. content: "\f07e";
  7274. }
  7275. .fa-bar-chart-o:before,
  7276. .fa-bar-chart:before {
  7277. content: "\f080";
  7278. }
  7279. .fa-twitter-square:before {
  7280. content: "\f081";
  7281. }
  7282. .fa-facebook-square:before {
  7283. content: "\f082";
  7284. }
  7285. .fa-camera-retro:before {
  7286. content: "\f083";
  7287. }
  7288. .fa-key:before {
  7289. content: "\f084";
  7290. }
  7291. .fa-gears:before,
  7292. .fa-cogs:before {
  7293. content: "\f085";
  7294. }
  7295. .fa-comments:before {
  7296. content: "\f086";
  7297. }
  7298. .fa-thumbs-o-up:before {
  7299. content: "\f087";
  7300. }
  7301. .fa-thumbs-o-down:before {
  7302. content: "\f088";
  7303. }
  7304. .fa-star-half:before {
  7305. content: "\f089";
  7306. }
  7307. .fa-heart-o:before {
  7308. content: "\f08a";
  7309. }
  7310. .fa-sign-out:before {
  7311. content: "\f08b";
  7312. }
  7313. .fa-linkedin-square:before {
  7314. content: "\f08c";
  7315. }
  7316. .fa-thumb-tack:before {
  7317. content: "\f08d";
  7318. }
  7319. .fa-external-link:before {
  7320. content: "\f08e";
  7321. }
  7322. .fa-sign-in:before {
  7323. content: "\f090";
  7324. }
  7325. .fa-trophy:before {
  7326. content: "\f091";
  7327. }
  7328. .fa-github-square:before {
  7329. content: "\f092";
  7330. }
  7331. .fa-upload:before {
  7332. content: "\f093";
  7333. }
  7334. .fa-lemon-o:before {
  7335. content: "\f094";
  7336. }
  7337. .fa-phone:before {
  7338. content: "\f095";
  7339. }
  7340. .fa-square-o:before {
  7341. content: "\f096";
  7342. }
  7343. .fa-bookmark-o:before {
  7344. content: "\f097";
  7345. }
  7346. .fa-phone-square:before {
  7347. content: "\f098";
  7348. }
  7349. .fa-twitter:before {
  7350. content: "\f099";
  7351. }
  7352. .fa-facebook-f:before,
  7353. .fa-facebook:before {
  7354. content: "\f09a";
  7355. }
  7356. .fa-github:before {
  7357. content: "\f09b";
  7358. }
  7359. .fa-unlock:before {
  7360. content: "\f09c";
  7361. }
  7362. .fa-credit-card:before {
  7363. content: "\f09d";
  7364. }
  7365. .fa-feed:before,
  7366. .fa-rss:before {
  7367. content: "\f09e";
  7368. }
  7369. .fa-hdd-o:before {
  7370. content: "\f0a0";
  7371. }
  7372. .fa-bullhorn:before {
  7373. content: "\f0a1";
  7374. }
  7375. .fa-bell:before {
  7376. content: "\f0f3";
  7377. }
  7378. .fa-certificate:before {
  7379. content: "\f0a3";
  7380. }
  7381. .fa-hand-o-right:before {
  7382. content: "\f0a4";
  7383. }
  7384. .fa-hand-o-left:before {
  7385. content: "\f0a5";
  7386. }
  7387. .fa-hand-o-up:before {
  7388. content: "\f0a6";
  7389. }
  7390. .fa-hand-o-down:before {
  7391. content: "\f0a7";
  7392. }
  7393. .fa-arrow-circle-left:before {
  7394. content: "\f0a8";
  7395. }
  7396. .fa-arrow-circle-right:before {
  7397. content: "\f0a9";
  7398. }
  7399. .fa-arrow-circle-up:before {
  7400. content: "\f0aa";
  7401. }
  7402. .fa-arrow-circle-down:before {
  7403. content: "\f0ab";
  7404. }
  7405. .fa-globe:before {
  7406. content: "\f0ac";
  7407. }
  7408. .fa-wrench:before {
  7409. content: "\f0ad";
  7410. }
  7411. .fa-tasks:before {
  7412. content: "\f0ae";
  7413. }
  7414. .fa-filter:before {
  7415. content: "\f0b0";
  7416. }
  7417. .fa-briefcase:before {
  7418. content: "\f0b1";
  7419. }
  7420. .fa-arrows-alt:before {
  7421. content: "\f0b2";
  7422. }
  7423. .fa-group:before,
  7424. .fa-users:before {
  7425. content: "\f0c0";
  7426. }
  7427. .fa-chain:before,
  7428. .fa-link:before {
  7429. content: "\f0c1";
  7430. }
  7431. .fa-cloud:before {
  7432. content: "\f0c2";
  7433. }
  7434. .fa-flask:before {
  7435. content: "\f0c3";
  7436. }
  7437. .fa-cut:before,
  7438. .fa-scissors:before {
  7439. content: "\f0c4";
  7440. }
  7441. .fa-copy:before,
  7442. .fa-files-o:before {
  7443. content: "\f0c5";
  7444. }
  7445. .fa-paperclip:before {
  7446. content: "\f0c6";
  7447. }
  7448. .fa-save:before,
  7449. .fa-floppy-o:before {
  7450. content: "\f0c7";
  7451. }
  7452. .fa-square:before {
  7453. content: "\f0c8";
  7454. }
  7455. .fa-navicon:before,
  7456. .fa-reorder:before,
  7457. .fa-bars:before {
  7458. content: "\f0c9";
  7459. }
  7460. .fa-list-ul:before {
  7461. content: "\f0ca";
  7462. }
  7463. .fa-list-ol:before {
  7464. content: "\f0cb";
  7465. }
  7466. .fa-strikethrough:before {
  7467. content: "\f0cc";
  7468. }
  7469. .fa-underline:before {
  7470. content: "\f0cd";
  7471. }
  7472. .fa-table:before {
  7473. content: "\f0ce";
  7474. }
  7475. .fa-magic:before {
  7476. content: "\f0d0";
  7477. }
  7478. .fa-truck:before {
  7479. content: "\f0d1";
  7480. }
  7481. .fa-pinterest:before {
  7482. content: "\f0d2";
  7483. }
  7484. .fa-pinterest-square:before {
  7485. content: "\f0d3";
  7486. }
  7487. .fa-google-plus-square:before {
  7488. content: "\f0d4";
  7489. }
  7490. .fa-google-plus:before {
  7491. content: "\f0d5";
  7492. }
  7493. .fa-money:before {
  7494. content: "\f0d6";
  7495. }
  7496. .fa-caret-down:before {
  7497. content: "\f0d7";
  7498. }
  7499. .fa-caret-up:before {
  7500. content: "\f0d8";
  7501. }
  7502. .fa-caret-left:before {
  7503. content: "\f0d9";
  7504. }
  7505. .fa-caret-right:before {
  7506. content: "\f0da";
  7507. }
  7508. .fa-columns:before {
  7509. content: "\f0db";
  7510. }
  7511. .fa-unsorted:before,
  7512. .fa-sort:before {
  7513. content: "\f0dc";
  7514. }
  7515. .fa-sort-down:before,
  7516. .fa-sort-desc:before {
  7517. content: "\f0dd";
  7518. }
  7519. .fa-sort-up:before,
  7520. .fa-sort-asc:before {
  7521. content: "\f0de";
  7522. }
  7523. .fa-envelope:before {
  7524. content: "\f0e0";
  7525. }
  7526. .fa-linkedin:before {
  7527. content: "\f0e1";
  7528. }
  7529. .fa-rotate-left:before,
  7530. .fa-undo:before {
  7531. content: "\f0e2";
  7532. }
  7533. .fa-legal:before,
  7534. .fa-gavel:before {
  7535. content: "\f0e3";
  7536. }
  7537. .fa-dashboard:before,
  7538. .fa-tachometer:before {
  7539. content: "\f0e4";
  7540. }
  7541. .fa-comment-o:before {
  7542. content: "\f0e5";
  7543. }
  7544. .fa-comments-o:before {
  7545. content: "\f0e6";
  7546. }
  7547. .fa-flash:before,
  7548. .fa-bolt:before {
  7549. content: "\f0e7";
  7550. }
  7551. .fa-sitemap:before {
  7552. content: "\f0e8";
  7553. }
  7554. .fa-umbrella:before {
  7555. content: "\f0e9";
  7556. }
  7557. .fa-paste:before,
  7558. .fa-clipboard:before {
  7559. content: "\f0ea";
  7560. }
  7561. .fa-lightbulb-o:before {
  7562. content: "\f0eb";
  7563. }
  7564. .fa-exchange:before {
  7565. content: "\f0ec";
  7566. }
  7567. .fa-cloud-download:before {
  7568. content: "\f0ed";
  7569. }
  7570. .fa-cloud-upload:before {
  7571. content: "\f0ee";
  7572. }
  7573. .fa-user-md:before {
  7574. content: "\f0f0";
  7575. }
  7576. .fa-stethoscope:before {
  7577. content: "\f0f1";
  7578. }
  7579. .fa-suitcase:before {
  7580. content: "\f0f2";
  7581. }
  7582. .fa-bell-o:before {
  7583. content: "\f0a2";
  7584. }
  7585. .fa-coffee:before {
  7586. content: "\f0f4";
  7587. }
  7588. .fa-cutlery:before {
  7589. content: "\f0f5";
  7590. }
  7591. .fa-file-text-o:before {
  7592. content: "\f0f6";
  7593. }
  7594. .fa-building-o:before {
  7595. content: "\f0f7";
  7596. }
  7597. .fa-hospital-o:before {
  7598. content: "\f0f8";
  7599. }
  7600. .fa-ambulance:before {
  7601. content: "\f0f9";
  7602. }
  7603. .fa-medkit:before {
  7604. content: "\f0fa";
  7605. }
  7606. .fa-fighter-jet:before {
  7607. content: "\f0fb";
  7608. }
  7609. .fa-beer:before {
  7610. content: "\f0fc";
  7611. }
  7612. .fa-h-square:before {
  7613. content: "\f0fd";
  7614. }
  7615. .fa-plus-square:before {
  7616. content: "\f0fe";
  7617. }
  7618. .fa-angle-double-left:before {
  7619. content: "\f100";
  7620. }
  7621. .fa-angle-double-right:before {
  7622. content: "\f101";
  7623. }
  7624. .fa-angle-double-up:before {
  7625. content: "\f102";
  7626. }
  7627. .fa-angle-double-down:before {
  7628. content: "\f103";
  7629. }
  7630. .fa-angle-left:before {
  7631. content: "\f104";
  7632. }
  7633. .fa-angle-right:before {
  7634. content: "\f105";
  7635. }
  7636. .fa-angle-up:before {
  7637. content: "\f106";
  7638. }
  7639. .fa-angle-down:before {
  7640. content: "\f107";
  7641. }
  7642. .fa-desktop:before {
  7643. content: "\f108";
  7644. }
  7645. .fa-laptop:before {
  7646. content: "\f109";
  7647. }
  7648. .fa-tablet:before {
  7649. content: "\f10a";
  7650. }
  7651. .fa-mobile-phone:before,
  7652. .fa-mobile:before {
  7653. content: "\f10b";
  7654. }
  7655. .fa-circle-o:before {
  7656. content: "\f10c";
  7657. }
  7658. .fa-quote-left:before {
  7659. content: "\f10d";
  7660. }
  7661. .fa-quote-right:before {
  7662. content: "\f10e";
  7663. }
  7664. .fa-spinner:before {
  7665. content: "\f110";
  7666. }
  7667. .fa-circle:before {
  7668. content: "\f111";
  7669. }
  7670. .fa-mail-reply:before,
  7671. .fa-reply:before {
  7672. content: "\f112";
  7673. }
  7674. .fa-github-alt:before {
  7675. content: "\f113";
  7676. }
  7677. .fa-folder-o:before {
  7678. content: "\f114";
  7679. }
  7680. .fa-folder-open-o:before {
  7681. content: "\f115";
  7682. }
  7683. .fa-smile-o:before {
  7684. content: "\f118";
  7685. }
  7686. .fa-frown-o:before {
  7687. content: "\f119";
  7688. }
  7689. .fa-meh-o:before {
  7690. content: "\f11a";
  7691. }
  7692. .fa-gamepad:before {
  7693. content: "\f11b";
  7694. }
  7695. .fa-keyboard-o:before {
  7696. content: "\f11c";
  7697. }
  7698. .fa-flag-o:before {
  7699. content: "\f11d";
  7700. }
  7701. .fa-flag-checkered:before {
  7702. content: "\f11e";
  7703. }
  7704. .fa-terminal:before {
  7705. content: "\f120";
  7706. }
  7707. .fa-code:before {
  7708. content: "\f121";
  7709. }
  7710. .fa-mail-reply-all:before,
  7711. .fa-reply-all:before {
  7712. content: "\f122";
  7713. }
  7714. .fa-star-half-empty:before,
  7715. .fa-star-half-full:before,
  7716. .fa-star-half-o:before {
  7717. content: "\f123";
  7718. }
  7719. .fa-location-arrow:before {
  7720. content: "\f124";
  7721. }
  7722. .fa-crop:before {
  7723. content: "\f125";
  7724. }
  7725. .fa-code-fork:before {
  7726. content: "\f126";
  7727. }
  7728. .fa-unlink:before,
  7729. .fa-chain-broken:before {
  7730. content: "\f127";
  7731. }
  7732. .fa-question:before {
  7733. content: "\f128";
  7734. }
  7735. .fa-info:before {
  7736. content: "\f129";
  7737. }
  7738. .fa-exclamation:before {
  7739. content: "\f12a";
  7740. }
  7741. .fa-superscript:before {
  7742. content: "\f12b";
  7743. }
  7744. .fa-subscript:before {
  7745. content: "\f12c";
  7746. }
  7747. .fa-eraser:before {
  7748. content: "\f12d";
  7749. }
  7750. .fa-puzzle-piece:before {
  7751. content: "\f12e";
  7752. }
  7753. .fa-microphone:before {
  7754. content: "\f130";
  7755. }
  7756. .fa-microphone-slash:before {
  7757. content: "\f131";
  7758. }
  7759. .fa-shield:before {
  7760. content: "\f132";
  7761. }
  7762. .fa-calendar-o:before {
  7763. content: "\f133";
  7764. }
  7765. .fa-fire-extinguisher:before {
  7766. content: "\f134";
  7767. }
  7768. .fa-rocket:before {
  7769. content: "\f135";
  7770. }
  7771. .fa-maxcdn:before {
  7772. content: "\f136";
  7773. }
  7774. .fa-chevron-circle-left:before {
  7775. content: "\f137";
  7776. }
  7777. .fa-chevron-circle-right:before {
  7778. content: "\f138";
  7779. }
  7780. .fa-chevron-circle-up:before {
  7781. content: "\f139";
  7782. }
  7783. .fa-chevron-circle-down:before {
  7784. content: "\f13a";
  7785. }
  7786. .fa-html5:before {
  7787. content: "\f13b";
  7788. }
  7789. .fa-css3:before {
  7790. content: "\f13c";
  7791. }
  7792. .fa-anchor:before {
  7793. content: "\f13d";
  7794. }
  7795. .fa-unlock-alt:before {
  7796. content: "\f13e";
  7797. }
  7798. .fa-bullseye:before {
  7799. content: "\f140";
  7800. }
  7801. .fa-ellipsis-h:before {
  7802. content: "\f141";
  7803. }
  7804. .fa-ellipsis-v:before {
  7805. content: "\f142";
  7806. }
  7807. .fa-rss-square:before {
  7808. content: "\f143";
  7809. }
  7810. .fa-play-circle:before {
  7811. content: "\f144";
  7812. }
  7813. .fa-ticket:before {
  7814. content: "\f145";
  7815. }
  7816. .fa-minus-square:before {
  7817. content: "\f146";
  7818. }
  7819. .fa-minus-square-o:before {
  7820. content: "\f147";
  7821. }
  7822. .fa-level-up:before {
  7823. content: "\f148";
  7824. }
  7825. .fa-level-down:before {
  7826. content: "\f149";
  7827. }
  7828. .fa-check-square:before {
  7829. content: "\f14a";
  7830. }
  7831. .fa-pencil-square:before {
  7832. content: "\f14b";
  7833. }
  7834. .fa-external-link-square:before {
  7835. content: "\f14c";
  7836. }
  7837. .fa-share-square:before {
  7838. content: "\f14d";
  7839. }
  7840. .fa-compass:before {
  7841. content: "\f14e";
  7842. }
  7843. .fa-toggle-down:before,
  7844. .fa-caret-square-o-down:before {
  7845. content: "\f150";
  7846. }
  7847. .fa-toggle-up:before,
  7848. .fa-caret-square-o-up:before {
  7849. content: "\f151";
  7850. }
  7851. .fa-toggle-right:before,
  7852. .fa-caret-square-o-right:before {
  7853. content: "\f152";
  7854. }
  7855. .fa-euro:before,
  7856. .fa-eur:before {
  7857. content: "\f153";
  7858. }
  7859. .fa-gbp:before {
  7860. content: "\f154";
  7861. }
  7862. .fa-dollar:before,
  7863. .fa-usd:before {
  7864. content: "\f155";
  7865. }
  7866. .fa-rupee:before,
  7867. .fa-inr:before {
  7868. content: "\f156";
  7869. }
  7870. .fa-cny:before,
  7871. .fa-rmb:before,
  7872. .fa-yen:before,
  7873. .fa-jpy:before {
  7874. content: "\f157";
  7875. }
  7876. .fa-ruble:before,
  7877. .fa-rouble:before,
  7878. .fa-rub:before {
  7879. content: "\f158";
  7880. }
  7881. .fa-won:before,
  7882. .fa-krw:before {
  7883. content: "\f159";
  7884. }
  7885. .fa-bitcoin:before,
  7886. .fa-btc:before {
  7887. content: "\f15a";
  7888. }
  7889. .fa-file:before {
  7890. content: "\f15b";
  7891. }
  7892. .fa-file-text:before {
  7893. content: "\f15c";
  7894. }
  7895. .fa-sort-alpha-asc:before {
  7896. content: "\f15d";
  7897. }
  7898. .fa-sort-alpha-desc:before {
  7899. content: "\f15e";
  7900. }
  7901. .fa-sort-amount-asc:before {
  7902. content: "\f160";
  7903. }
  7904. .fa-sort-amount-desc:before {
  7905. content: "\f161";
  7906. }
  7907. .fa-sort-numeric-asc:before {
  7908. content: "\f162";
  7909. }
  7910. .fa-sort-numeric-desc:before {
  7911. content: "\f163";
  7912. }
  7913. .fa-thumbs-up:before {
  7914. content: "\f164";
  7915. }
  7916. .fa-thumbs-down:before {
  7917. content: "\f165";
  7918. }
  7919. .fa-youtube-square:before {
  7920. content: "\f166";
  7921. }
  7922. .fa-youtube:before {
  7923. content: "\f167";
  7924. }
  7925. .fa-xing:before {
  7926. content: "\f168";
  7927. }
  7928. .fa-xing-square:before {
  7929. content: "\f169";
  7930. }
  7931. .fa-youtube-play:before {
  7932. content: "\f16a";
  7933. }
  7934. .fa-dropbox:before {
  7935. content: "\f16b";
  7936. }
  7937. .fa-stack-overflow:before {
  7938. content: "\f16c";
  7939. }
  7940. .fa-instagram:before {
  7941. content: "\f16d";
  7942. }
  7943. .fa-flickr:before {
  7944. content: "\f16e";
  7945. }
  7946. .fa-adn:before {
  7947. content: "\f170";
  7948. }
  7949. .fa-bitbucket:before {
  7950. content: "\f171";
  7951. }
  7952. .fa-bitbucket-square:before {
  7953. content: "\f172";
  7954. }
  7955. .fa-tumblr:before {
  7956. content: "\f173";
  7957. }
  7958. .fa-tumblr-square:before {
  7959. content: "\f174";
  7960. }
  7961. .fa-long-arrow-down:before {
  7962. content: "\f175";
  7963. }
  7964. .fa-long-arrow-up:before {
  7965. content: "\f176";
  7966. }
  7967. .fa-long-arrow-left:before {
  7968. content: "\f177";
  7969. }
  7970. .fa-long-arrow-right:before {
  7971. content: "\f178";
  7972. }
  7973. .fa-apple:before {
  7974. content: "\f179";
  7975. }
  7976. .fa-windows:before {
  7977. content: "\f17a";
  7978. }
  7979. .fa-android:before {
  7980. content: "\f17b";
  7981. }
  7982. .fa-linux:before {
  7983. content: "\f17c";
  7984. }
  7985. .fa-dribbble:before {
  7986. content: "\f17d";
  7987. }
  7988. .fa-skype:before {
  7989. content: "\f17e";
  7990. }
  7991. .fa-foursquare:before {
  7992. content: "\f180";
  7993. }
  7994. .fa-trello:before {
  7995. content: "\f181";
  7996. }
  7997. .fa-female:before {
  7998. content: "\f182";
  7999. }
  8000. .fa-male:before {
  8001. content: "\f183";
  8002. }
  8003. .fa-gittip:before,
  8004. .fa-gratipay:before {
  8005. content: "\f184";
  8006. }
  8007. .fa-sun-o:before {
  8008. content: "\f185";
  8009. }
  8010. .fa-moon-o:before {
  8011. content: "\f186";
  8012. }
  8013. .fa-archive:before {
  8014. content: "\f187";
  8015. }
  8016. .fa-bug:before {
  8017. content: "\f188";
  8018. }
  8019. .fa-vk:before {
  8020. content: "\f189";
  8021. }
  8022. .fa-weibo:before {
  8023. content: "\f18a";
  8024. }
  8025. .fa-renren:before {
  8026. content: "\f18b";
  8027. }
  8028. .fa-pagelines:before {
  8029. content: "\f18c";
  8030. }
  8031. .fa-stack-exchange:before {
  8032. content: "\f18d";
  8033. }
  8034. .fa-arrow-circle-o-right:before {
  8035. content: "\f18e";
  8036. }
  8037. .fa-arrow-circle-o-left:before {
  8038. content: "\f190";
  8039. }
  8040. .fa-toggle-left:before,
  8041. .fa-caret-square-o-left:before {
  8042. content: "\f191";
  8043. }
  8044. .fa-dot-circle-o:before {
  8045. content: "\f192";
  8046. }
  8047. .fa-wheelchair:before {
  8048. content: "\f193";
  8049. }
  8050. .fa-vimeo-square:before {
  8051. content: "\f194";
  8052. }
  8053. .fa-turkish-lira:before,
  8054. .fa-try:before {
  8055. content: "\f195";
  8056. }
  8057. .fa-plus-square-o:before {
  8058. content: "\f196";
  8059. }
  8060. .fa-space-shuttle:before {
  8061. content: "\f197";
  8062. }
  8063. .fa-slack:before {
  8064. content: "\f198";
  8065. }
  8066. .fa-envelope-square:before {
  8067. content: "\f199";
  8068. }
  8069. .fa-wordpress:before {
  8070. content: "\f19a";
  8071. }
  8072. .fa-openid:before {
  8073. content: "\f19b";
  8074. }
  8075. .fa-institution:before,
  8076. .fa-bank:before,
  8077. .fa-university:before {
  8078. content: "\f19c";
  8079. }
  8080. .fa-mortar-board:before,
  8081. .fa-graduation-cap:before {
  8082. content: "\f19d";
  8083. }
  8084. .fa-yahoo:before {
  8085. content: "\f19e";
  8086. }
  8087. .fa-google:before {
  8088. content: "\f1a0";
  8089. }
  8090. .fa-reddit:before {
  8091. content: "\f1a1";
  8092. }
  8093. .fa-reddit-square:before {
  8094. content: "\f1a2";
  8095. }
  8096. .fa-stumbleupon-circle:before {
  8097. content: "\f1a3";
  8098. }
  8099. .fa-stumbleupon:before {
  8100. content: "\f1a4";
  8101. }
  8102. .fa-delicious:before {
  8103. content: "\f1a5";
  8104. }
  8105. .fa-digg:before {
  8106. content: "\f1a6";
  8107. }
  8108. .fa-pied-piper-pp:before {
  8109. content: "\f1a7";
  8110. }
  8111. .fa-pied-piper-alt:before {
  8112. content: "\f1a8";
  8113. }
  8114. .fa-drupal:before {
  8115. content: "\f1a9";
  8116. }
  8117. .fa-joomla:before {
  8118. content: "\f1aa";
  8119. }
  8120. .fa-language:before {
  8121. content: "\f1ab";
  8122. }
  8123. .fa-fax:before {
  8124. content: "\f1ac";
  8125. }
  8126. .fa-building:before {
  8127. content: "\f1ad";
  8128. }
  8129. .fa-child:before {
  8130. content: "\f1ae";
  8131. }
  8132. .fa-paw:before {
  8133. content: "\f1b0";
  8134. }
  8135. .fa-spoon:before {
  8136. content: "\f1b1";
  8137. }
  8138. .fa-cube:before {
  8139. content: "\f1b2";
  8140. }
  8141. .fa-cubes:before {
  8142. content: "\f1b3";
  8143. }
  8144. .fa-behance:before {
  8145. content: "\f1b4";
  8146. }
  8147. .fa-behance-square:before {
  8148. content: "\f1b5";
  8149. }
  8150. .fa-steam:before {
  8151. content: "\f1b6";
  8152. }
  8153. .fa-steam-square:before {
  8154. content: "\f1b7";
  8155. }
  8156. .fa-recycle:before {
  8157. content: "\f1b8";
  8158. }
  8159. .fa-automobile:before,
  8160. .fa-car:before {
  8161. content: "\f1b9";
  8162. }
  8163. .fa-cab:before,
  8164. .fa-taxi:before {
  8165. content: "\f1ba";
  8166. }
  8167. .fa-tree:before {
  8168. content: "\f1bb";
  8169. }
  8170. .fa-spotify:before {
  8171. content: "\f1bc";
  8172. }
  8173. .fa-deviantart:before {
  8174. content: "\f1bd";
  8175. }
  8176. .fa-soundcloud:before {
  8177. content: "\f1be";
  8178. }
  8179. .fa-database:before {
  8180. content: "\f1c0";
  8181. }
  8182. .fa-file-pdf-o:before {
  8183. content: "\f1c1";
  8184. }
  8185. .fa-file-word-o:before {
  8186. content: "\f1c2";
  8187. }
  8188. .fa-file-excel-o:before {
  8189. content: "\f1c3";
  8190. }
  8191. .fa-file-powerpoint-o:before {
  8192. content: "\f1c4";
  8193. }
  8194. .fa-file-photo-o:before,
  8195. .fa-file-picture-o:before,
  8196. .fa-file-image-o:before {
  8197. content: "\f1c5";
  8198. }
  8199. .fa-file-zip-o:before,
  8200. .fa-file-archive-o:before {
  8201. content: "\f1c6";
  8202. }
  8203. .fa-file-sound-o:before,
  8204. .fa-file-audio-o:before {
  8205. content: "\f1c7";
  8206. }
  8207. .fa-file-movie-o:before,
  8208. .fa-file-video-o:before {
  8209. content: "\f1c8";
  8210. }
  8211. .fa-file-code-o:before {
  8212. content: "\f1c9";
  8213. }
  8214. .fa-vine:before {
  8215. content: "\f1ca";
  8216. }
  8217. .fa-codepen:before {
  8218. content: "\f1cb";
  8219. }
  8220. .fa-jsfiddle:before {
  8221. content: "\f1cc";
  8222. }
  8223. .fa-life-bouy:before,
  8224. .fa-life-buoy:before,
  8225. .fa-life-saver:before,
  8226. .fa-support:before,
  8227. .fa-life-ring:before {
  8228. content: "\f1cd";
  8229. }
  8230. .fa-circle-o-notch:before {
  8231. content: "\f1ce";
  8232. }
  8233. .fa-ra:before,
  8234. .fa-resistance:before,
  8235. .fa-rebel:before {
  8236. content: "\f1d0";
  8237. }
  8238. .fa-ge:before,
  8239. .fa-empire:before {
  8240. content: "\f1d1";
  8241. }
  8242. .fa-git-square:before {
  8243. content: "\f1d2";
  8244. }
  8245. .fa-git:before {
  8246. content: "\f1d3";
  8247. }
  8248. .fa-y-combinator-square:before,
  8249. .fa-yc-square:before,
  8250. .fa-hacker-news:before {
  8251. content: "\f1d4";
  8252. }
  8253. .fa-tencent-weibo:before {
  8254. content: "\f1d5";
  8255. }
  8256. .fa-qq:before {
  8257. content: "\f1d6";
  8258. }
  8259. .fa-wechat:before,
  8260. .fa-weixin:before {
  8261. content: "\f1d7";
  8262. }
  8263. .fa-send:before,
  8264. .fa-paper-plane:before {
  8265. content: "\f1d8";
  8266. }
  8267. .fa-send-o:before,
  8268. .fa-paper-plane-o:before {
  8269. content: "\f1d9";
  8270. }
  8271. .fa-history:before {
  8272. content: "\f1da";
  8273. }
  8274. .fa-circle-thin:before {
  8275. content: "\f1db";
  8276. }
  8277. .fa-header:before {
  8278. content: "\f1dc";
  8279. }
  8280. .fa-paragraph:before {
  8281. content: "\f1dd";
  8282. }
  8283. .fa-sliders:before {
  8284. content: "\f1de";
  8285. }
  8286. .fa-share-alt:before {
  8287. content: "\f1e0";
  8288. }
  8289. .fa-share-alt-square:before {
  8290. content: "\f1e1";
  8291. }
  8292. .fa-bomb:before {
  8293. content: "\f1e2";
  8294. }
  8295. .fa-soccer-ball-o:before,
  8296. .fa-futbol-o:before {
  8297. content: "\f1e3";
  8298. }
  8299. .fa-tty:before {
  8300. content: "\f1e4";
  8301. }
  8302. .fa-binoculars:before {
  8303. content: "\f1e5";
  8304. }
  8305. .fa-plug:before {
  8306. content: "\f1e6";
  8307. }
  8308. .fa-slideshare:before {
  8309. content: "\f1e7";
  8310. }
  8311. .fa-twitch:before {
  8312. content: "\f1e8";
  8313. }
  8314. .fa-yelp:before {
  8315. content: "\f1e9";
  8316. }
  8317. .fa-newspaper-o:before {
  8318. content: "\f1ea";
  8319. }
  8320. .fa-wifi:before {
  8321. content: "\f1eb";
  8322. }
  8323. .fa-calculator:before {
  8324. content: "\f1ec";
  8325. }
  8326. .fa-paypal:before {
  8327. content: "\f1ed";
  8328. }
  8329. .fa-google-wallet:before {
  8330. content: "\f1ee";
  8331. }
  8332. .fa-cc-visa:before {
  8333. content: "\f1f0";
  8334. }
  8335. .fa-cc-mastercard:before {
  8336. content: "\f1f1";
  8337. }
  8338. .fa-cc-discover:before {
  8339. content: "\f1f2";
  8340. }
  8341. .fa-cc-amex:before {
  8342. content: "\f1f3";
  8343. }
  8344. .fa-cc-paypal:before {
  8345. content: "\f1f4";
  8346. }
  8347. .fa-cc-stripe:before {
  8348. content: "\f1f5";
  8349. }
  8350. .fa-bell-slash:before {
  8351. content: "\f1f6";
  8352. }
  8353. .fa-bell-slash-o:before {
  8354. content: "\f1f7";
  8355. }
  8356. .fa-trash:before {
  8357. content: "\f1f8";
  8358. }
  8359. .fa-copyright:before {
  8360. content: "\f1f9";
  8361. }
  8362. .fa-at:before {
  8363. content: "\f1fa";
  8364. }
  8365. .fa-eyedropper:before {
  8366. content: "\f1fb";
  8367. }
  8368. .fa-paint-brush:before {
  8369. content: "\f1fc";
  8370. }
  8371. .fa-birthday-cake:before {
  8372. content: "\f1fd";
  8373. }
  8374. .fa-area-chart:before {
  8375. content: "\f1fe";
  8376. }
  8377. .fa-pie-chart:before {
  8378. content: "\f200";
  8379. }
  8380. .fa-line-chart:before {
  8381. content: "\f201";
  8382. }
  8383. .fa-lastfm:before {
  8384. content: "\f202";
  8385. }
  8386. .fa-lastfm-square:before {
  8387. content: "\f203";
  8388. }
  8389. .fa-toggle-off:before {
  8390. content: "\f204";
  8391. }
  8392. .fa-toggle-on:before {
  8393. content: "\f205";
  8394. }
  8395. .fa-bicycle:before {
  8396. content: "\f206";
  8397. }
  8398. .fa-bus:before {
  8399. content: "\f207";
  8400. }
  8401. .fa-ioxhost:before {
  8402. content: "\f208";
  8403. }
  8404. .fa-angellist:before {
  8405. content: "\f209";
  8406. }
  8407. .fa-cc:before {
  8408. content: "\f20a";
  8409. }
  8410. .fa-shekel:before,
  8411. .fa-sheqel:before,
  8412. .fa-ils:before {
  8413. content: "\f20b";
  8414. }
  8415. .fa-meanpath:before {
  8416. content: "\f20c";
  8417. }
  8418. .fa-buysellads:before {
  8419. content: "\f20d";
  8420. }
  8421. .fa-connectdevelop:before {
  8422. content: "\f20e";
  8423. }
  8424. .fa-dashcube:before {
  8425. content: "\f210";
  8426. }
  8427. .fa-forumbee:before {
  8428. content: "\f211";
  8429. }
  8430. .fa-leanpub:before {
  8431. content: "\f212";
  8432. }
  8433. .fa-sellsy:before {
  8434. content: "\f213";
  8435. }
  8436. .fa-shirtsinbulk:before {
  8437. content: "\f214";
  8438. }
  8439. .fa-simplybuilt:before {
  8440. content: "\f215";
  8441. }
  8442. .fa-skyatlas:before {
  8443. content: "\f216";
  8444. }
  8445. .fa-cart-plus:before {
  8446. content: "\f217";
  8447. }
  8448. .fa-cart-arrow-down:before {
  8449. content: "\f218";
  8450. }
  8451. .fa-diamond:before {
  8452. content: "\f219";
  8453. }
  8454. .fa-ship:before {
  8455. content: "\f21a";
  8456. }
  8457. .fa-user-secret:before {
  8458. content: "\f21b";
  8459. }
  8460. .fa-motorcycle:before {
  8461. content: "\f21c";
  8462. }
  8463. .fa-street-view:before {
  8464. content: "\f21d";
  8465. }
  8466. .fa-heartbeat:before {
  8467. content: "\f21e";
  8468. }
  8469. .fa-venus:before {
  8470. content: "\f221";
  8471. }
  8472. .fa-mars:before {
  8473. content: "\f222";
  8474. }
  8475. .fa-mercury:before {
  8476. content: "\f223";
  8477. }
  8478. .fa-intersex:before,
  8479. .fa-transgender:before {
  8480. content: "\f224";
  8481. }
  8482. .fa-transgender-alt:before {
  8483. content: "\f225";
  8484. }
  8485. .fa-venus-double:before {
  8486. content: "\f226";
  8487. }
  8488. .fa-mars-double:before {
  8489. content: "\f227";
  8490. }
  8491. .fa-venus-mars:before {
  8492. content: "\f228";
  8493. }
  8494. .fa-mars-stroke:before {
  8495. content: "\f229";
  8496. }
  8497. .fa-mars-stroke-v:before {
  8498. content: "\f22a";
  8499. }
  8500. .fa-mars-stroke-h:before {
  8501. content: "\f22b";
  8502. }
  8503. .fa-neuter:before {
  8504. content: "\f22c";
  8505. }
  8506. .fa-genderless:before {
  8507. content: "\f22d";
  8508. }
  8509. .fa-facebook-official:before {
  8510. content: "\f230";
  8511. }
  8512. .fa-pinterest-p:before {
  8513. content: "\f231";
  8514. }
  8515. .fa-whatsapp:before {
  8516. content: "\f232";
  8517. }
  8518. .fa-server:before {
  8519. content: "\f233";
  8520. }
  8521. .fa-user-plus:before {
  8522. content: "\f234";
  8523. }
  8524. .fa-user-times:before {
  8525. content: "\f235";
  8526. }
  8527. .fa-hotel:before,
  8528. .fa-bed:before {
  8529. content: "\f236";
  8530. }
  8531. .fa-viacoin:before {
  8532. content: "\f237";
  8533. }
  8534. .fa-train:before {
  8535. content: "\f238";
  8536. }
  8537. .fa-subway:before {
  8538. content: "\f239";
  8539. }
  8540. .fa-medium:before {
  8541. content: "\f23a";
  8542. }
  8543. .fa-yc:before,
  8544. .fa-y-combinator:before {
  8545. content: "\f23b";
  8546. }
  8547. .fa-optin-monster:before {
  8548. content: "\f23c";
  8549. }
  8550. .fa-opencart:before {
  8551. content: "\f23d";
  8552. }
  8553. .fa-expeditedssl:before {
  8554. content: "\f23e";
  8555. }
  8556. .fa-battery-4:before,
  8557. .fa-battery:before,
  8558. .fa-battery-full:before {
  8559. content: "\f240";
  8560. }
  8561. .fa-battery-3:before,
  8562. .fa-battery-three-quarters:before {
  8563. content: "\f241";
  8564. }
  8565. .fa-battery-2:before,
  8566. .fa-battery-half:before {
  8567. content: "\f242";
  8568. }
  8569. .fa-battery-1:before,
  8570. .fa-battery-quarter:before {
  8571. content: "\f243";
  8572. }
  8573. .fa-battery-0:before,
  8574. .fa-battery-empty:before {
  8575. content: "\f244";
  8576. }
  8577. .fa-mouse-pointer:before {
  8578. content: "\f245";
  8579. }
  8580. .fa-i-cursor:before {
  8581. content: "\f246";
  8582. }
  8583. .fa-object-group:before {
  8584. content: "\f247";
  8585. }
  8586. .fa-object-ungroup:before {
  8587. content: "\f248";
  8588. }
  8589. .fa-sticky-note:before {
  8590. content: "\f249";
  8591. }
  8592. .fa-sticky-note-o:before {
  8593. content: "\f24a";
  8594. }
  8595. .fa-cc-jcb:before {
  8596. content: "\f24b";
  8597. }
  8598. .fa-cc-diners-club:before {
  8599. content: "\f24c";
  8600. }
  8601. .fa-clone:before {
  8602. content: "\f24d";
  8603. }
  8604. .fa-balance-scale:before {
  8605. content: "\f24e";
  8606. }
  8607. .fa-hourglass-o:before {
  8608. content: "\f250";
  8609. }
  8610. .fa-hourglass-1:before,
  8611. .fa-hourglass-start:before {
  8612. content: "\f251";
  8613. }
  8614. .fa-hourglass-2:before,
  8615. .fa-hourglass-half:before {
  8616. content: "\f252";
  8617. }
  8618. .fa-hourglass-3:before,
  8619. .fa-hourglass-end:before {
  8620. content: "\f253";
  8621. }
  8622. .fa-hourglass:before {
  8623. content: "\f254";
  8624. }
  8625. .fa-hand-grab-o:before,
  8626. .fa-hand-rock-o:before {
  8627. content: "\f255";
  8628. }
  8629. .fa-hand-stop-o:before,
  8630. .fa-hand-paper-o:before {
  8631. content: "\f256";
  8632. }
  8633. .fa-hand-scissors-o:before {
  8634. content: "\f257";
  8635. }
  8636. .fa-hand-lizard-o:before {
  8637. content: "\f258";
  8638. }
  8639. .fa-hand-spock-o:before {
  8640. content: "\f259";
  8641. }
  8642. .fa-hand-pointer-o:before {
  8643. content: "\f25a";
  8644. }
  8645. .fa-hand-peace-o:before {
  8646. content: "\f25b";
  8647. }
  8648. .fa-trademark:before {
  8649. content: "\f25c";
  8650. }
  8651. .fa-registered:before {
  8652. content: "\f25d";
  8653. }
  8654. .fa-creative-commons:before {
  8655. content: "\f25e";
  8656. }
  8657. .fa-gg:before {
  8658. content: "\f260";
  8659. }
  8660. .fa-gg-circle:before {
  8661. content: "\f261";
  8662. }
  8663. .fa-tripadvisor:before {
  8664. content: "\f262";
  8665. }
  8666. .fa-odnoklassniki:before {
  8667. content: "\f263";
  8668. }
  8669. .fa-odnoklassniki-square:before {
  8670. content: "\f264";
  8671. }
  8672. .fa-get-pocket:before {
  8673. content: "\f265";
  8674. }
  8675. .fa-wikipedia-w:before {
  8676. content: "\f266";
  8677. }
  8678. .fa-safari:before {
  8679. content: "\f267";
  8680. }
  8681. .fa-chrome:before {
  8682. content: "\f268";
  8683. }
  8684. .fa-firefox:before {
  8685. content: "\f269";
  8686. }
  8687. .fa-opera:before {
  8688. content: "\f26a";
  8689. }
  8690. .fa-internet-explorer:before {
  8691. content: "\f26b";
  8692. }
  8693. .fa-tv:before,
  8694. .fa-television:before {
  8695. content: "\f26c";
  8696. }
  8697. .fa-contao:before {
  8698. content: "\f26d";
  8699. }
  8700. .fa-500px:before {
  8701. content: "\f26e";
  8702. }
  8703. .fa-amazon:before {
  8704. content: "\f270";
  8705. }
  8706. .fa-calendar-plus-o:before {
  8707. content: "\f271";
  8708. }
  8709. .fa-calendar-minus-o:before {
  8710. content: "\f272";
  8711. }
  8712. .fa-calendar-times-o:before {
  8713. content: "\f273";
  8714. }
  8715. .fa-calendar-check-o:before {
  8716. content: "\f274";
  8717. }
  8718. .fa-industry:before {
  8719. content: "\f275";
  8720. }
  8721. .fa-map-pin:before {
  8722. content: "\f276";
  8723. }
  8724. .fa-map-signs:before {
  8725. content: "\f277";
  8726. }
  8727. .fa-map-o:before {
  8728. content: "\f278";
  8729. }
  8730. .fa-map:before {
  8731. content: "\f279";
  8732. }
  8733. .fa-commenting:before {
  8734. content: "\f27a";
  8735. }
  8736. .fa-commenting-o:before {
  8737. content: "\f27b";
  8738. }
  8739. .fa-houzz:before {
  8740. content: "\f27c";
  8741. }
  8742. .fa-vimeo:before {
  8743. content: "\f27d";
  8744. }
  8745. .fa-black-tie:before {
  8746. content: "\f27e";
  8747. }
  8748. .fa-fonticons:before {
  8749. content: "\f280";
  8750. }
  8751. .fa-reddit-alien:before {
  8752. content: "\f281";
  8753. }
  8754. .fa-edge:before {
  8755. content: "\f282";
  8756. }
  8757. .fa-credit-card-alt:before {
  8758. content: "\f283";
  8759. }
  8760. .fa-codiepie:before {
  8761. content: "\f284";
  8762. }
  8763. .fa-modx:before {
  8764. content: "\f285";
  8765. }
  8766. .fa-fort-awesome:before {
  8767. content: "\f286";
  8768. }
  8769. .fa-usb:before {
  8770. content: "\f287";
  8771. }
  8772. .fa-product-hunt:before {
  8773. content: "\f288";
  8774. }
  8775. .fa-mixcloud:before {
  8776. content: "\f289";
  8777. }
  8778. .fa-scribd:before {
  8779. content: "\f28a";
  8780. }
  8781. .fa-pause-circle:before {
  8782. content: "\f28b";
  8783. }
  8784. .fa-pause-circle-o:before {
  8785. content: "\f28c";
  8786. }
  8787. .fa-stop-circle:before {
  8788. content: "\f28d";
  8789. }
  8790. .fa-stop-circle-o:before {
  8791. content: "\f28e";
  8792. }
  8793. .fa-shopping-bag:before {
  8794. content: "\f290";
  8795. }
  8796. .fa-shopping-basket:before {
  8797. content: "\f291";
  8798. }
  8799. .fa-hashtag:before {
  8800. content: "\f292";
  8801. }
  8802. .fa-bluetooth:before {
  8803. content: "\f293";
  8804. }
  8805. .fa-bluetooth-b:before {
  8806. content: "\f294";
  8807. }
  8808. .fa-percent:before {
  8809. content: "\f295";
  8810. }
  8811. .fa-gitlab:before {
  8812. content: "\f296";
  8813. }
  8814. .fa-wpbeginner:before {
  8815. content: "\f297";
  8816. }
  8817. .fa-wpforms:before {
  8818. content: "\f298";
  8819. }
  8820. .fa-envira:before {
  8821. content: "\f299";
  8822. }
  8823. .fa-universal-access:before {
  8824. content: "\f29a";
  8825. }
  8826. .fa-wheelchair-alt:before {
  8827. content: "\f29b";
  8828. }
  8829. .fa-question-circle-o:before {
  8830. content: "\f29c";
  8831. }
  8832. .fa-blind:before {
  8833. content: "\f29d";
  8834. }
  8835. .fa-audio-description:before {
  8836. content: "\f29e";
  8837. }
  8838. .fa-volume-control-phone:before {
  8839. content: "\f2a0";
  8840. }
  8841. .fa-braille:before {
  8842. content: "\f2a1";
  8843. }
  8844. .fa-assistive-listening-systems:before {
  8845. content: "\f2a2";
  8846. }
  8847. .fa-asl-interpreting:before,
  8848. .fa-american-sign-language-interpreting:before {
  8849. content: "\f2a3";
  8850. }
  8851. .fa-deafness:before,
  8852. .fa-hard-of-hearing:before,
  8853. .fa-deaf:before {
  8854. content: "\f2a4";
  8855. }
  8856. .fa-glide:before {
  8857. content: "\f2a5";
  8858. }
  8859. .fa-glide-g:before {
  8860. content: "\f2a6";
  8861. }
  8862. .fa-signing:before,
  8863. .fa-sign-language:before {
  8864. content: "\f2a7";
  8865. }
  8866. .fa-low-vision:before {
  8867. content: "\f2a8";
  8868. }
  8869. .fa-viadeo:before {
  8870. content: "\f2a9";
  8871. }
  8872. .fa-viadeo-square:before {
  8873. content: "\f2aa";
  8874. }
  8875. .fa-snapchat:before {
  8876. content: "\f2ab";
  8877. }
  8878. .fa-snapchat-ghost:before {
  8879. content: "\f2ac";
  8880. }
  8881. .fa-snapchat-square:before {
  8882. content: "\f2ad";
  8883. }
  8884. .fa-pied-piper:before {
  8885. content: "\f2ae";
  8886. }
  8887. .fa-first-order:before {
  8888. content: "\f2b0";
  8889. }
  8890. .fa-yoast:before {
  8891. content: "\f2b1";
  8892. }
  8893. .fa-themeisle:before {
  8894. content: "\f2b2";
  8895. }
  8896. .fa-google-plus-circle:before,
  8897. .fa-google-plus-official:before {
  8898. content: "\f2b3";
  8899. }
  8900. .fa-fa:before,
  8901. .fa-font-awesome:before {
  8902. content: "\f2b4";
  8903. }
  8904. .fa-handshake-o:before {
  8905. content: "\f2b5";
  8906. }
  8907. .fa-envelope-open:before {
  8908. content: "\f2b6";
  8909. }
  8910. .fa-envelope-open-o:before {
  8911. content: "\f2b7";
  8912. }
  8913. .fa-linode:before {
  8914. content: "\f2b8";
  8915. }
  8916. .fa-address-book:before {
  8917. content: "\f2b9";
  8918. }
  8919. .fa-address-book-o:before {
  8920. content: "\f2ba";
  8921. }
  8922. .fa-vcard:before,
  8923. .fa-address-card:before {
  8924. content: "\f2bb";
  8925. }
  8926. .fa-vcard-o:before,
  8927. .fa-address-card-o:before {
  8928. content: "\f2bc";
  8929. }
  8930. .fa-user-circle:before {
  8931. content: "\f2bd";
  8932. }
  8933. .fa-user-circle-o:before {
  8934. content: "\f2be";
  8935. }
  8936. .fa-user-o:before {
  8937. content: "\f2c0";
  8938. }
  8939. .fa-id-badge:before {
  8940. content: "\f2c1";
  8941. }
  8942. .fa-drivers-license:before,
  8943. .fa-id-card:before {
  8944. content: "\f2c2";
  8945. }
  8946. .fa-drivers-license-o:before,
  8947. .fa-id-card-o:before {
  8948. content: "\f2c3";
  8949. }
  8950. .fa-quora:before {
  8951. content: "\f2c4";
  8952. }
  8953. .fa-free-code-camp:before {
  8954. content: "\f2c5";
  8955. }
  8956. .fa-telegram:before {
  8957. content: "\f2c6";
  8958. }
  8959. .fa-thermometer-4:before,
  8960. .fa-thermometer:before,
  8961. .fa-thermometer-full:before {
  8962. content: "\f2c7";
  8963. }
  8964. .fa-thermometer-3:before,
  8965. .fa-thermometer-three-quarters:before {
  8966. content: "\f2c8";
  8967. }
  8968. .fa-thermometer-2:before,
  8969. .fa-thermometer-half:before {
  8970. content: "\f2c9";
  8971. }
  8972. .fa-thermometer-1:before,
  8973. .fa-thermometer-quarter:before {
  8974. content: "\f2ca";
  8975. }
  8976. .fa-thermometer-0:before,
  8977. .fa-thermometer-empty:before {
  8978. content: "\f2cb";
  8979. }
  8980. .fa-shower:before {
  8981. content: "\f2cc";
  8982. }
  8983. .fa-bathtub:before,
  8984. .fa-s15:before,
  8985. .fa-bath:before {
  8986. content: "\f2cd";
  8987. }
  8988. .fa-podcast:before {
  8989. content: "\f2ce";
  8990. }
  8991. .fa-window-maximize:before {
  8992. content: "\f2d0";
  8993. }
  8994. .fa-window-minimize:before {
  8995. content: "\f2d1";
  8996. }
  8997. .fa-window-restore:before {
  8998. content: "\f2d2";
  8999. }
  9000. .fa-times-rectangle:before,
  9001. .fa-window-close:before {
  9002. content: "\f2d3";
  9003. }
  9004. .fa-times-rectangle-o:before,
  9005. .fa-window-close-o:before {
  9006. content: "\f2d4";
  9007. }
  9008. .fa-bandcamp:before {
  9009. content: "\f2d5";
  9010. }
  9011. .fa-grav:before {
  9012. content: "\f2d6";
  9013. }
  9014. .fa-etsy:before {
  9015. content: "\f2d7";
  9016. }
  9017. .fa-imdb:before {
  9018. content: "\f2d8";
  9019. }
  9020. .fa-ravelry:before {
  9021. content: "\f2d9";
  9022. }
  9023. .fa-eercast:before {
  9024. content: "\f2da";
  9025. }
  9026. .fa-microchip:before {
  9027. content: "\f2db";
  9028. }
  9029. .fa-snowflake-o:before {
  9030. content: "\f2dc";
  9031. }
  9032. .fa-superpowers:before {
  9033. content: "\f2dd";
  9034. }
  9035. .fa-wpexplorer:before {
  9036. content: "\f2de";
  9037. }
  9038. .fa-meetup:before {
  9039. content: "\f2e0";
  9040. }
  9041. .sr-only {
  9042. position: absolute;
  9043. width: 1px;
  9044. height: 1px;
  9045. padding: 0;
  9046. margin: -1px;
  9047. overflow: hidden;
  9048. clip: rect(0, 0, 0, 0);
  9049. border: 0;
  9050. }
  9051. .sr-only-focusable:active,
  9052. .sr-only-focusable:focus {
  9053. position: static;
  9054. width: auto;
  9055. height: auto;
  9056. margin: 0;
  9057. overflow: visible;
  9058. clip: auto;
  9059. }
  9060. .sr-only-focusable:active,
  9061. .sr-only-focusable:focus {
  9062. position: static;
  9063. width: auto;
  9064. height: auto;
  9065. margin: 0;
  9066. overflow: visible;
  9067. clip: auto;
  9068. }
  9069. /*!
  9070. *
  9071. * IPython base
  9072. *
  9073. */
  9074. .modal.fade .modal-dialog {
  9075. -webkit-transform: translate(0, 0);
  9076. -ms-transform: translate(0, 0);
  9077. -o-transform: translate(0, 0);
  9078. transform: translate(0, 0);
  9079. }
  9080. code {
  9081. color: #000;
  9082. }
  9083. pre {
  9084. font-size: inherit;
  9085. line-height: inherit;
  9086. }
  9087. label {
  9088. font-weight: normal;
  9089. }
  9090. /* Make the page background atleast 100% the height of the view port */
  9091. /* Make the page itself atleast 70% the height of the view port */
  9092. .border-box-sizing {
  9093. box-sizing: border-box;
  9094. -moz-box-sizing: border-box;
  9095. -webkit-box-sizing: border-box;
  9096. }
  9097. .corner-all {
  9098. border-radius: 2px;
  9099. }
  9100. .no-padding {
  9101. padding: 0px;
  9102. }
  9103. /* Flexible box model classes */
  9104. /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
  9105. /* This file is a compatibility layer. It allows the usage of flexible box
  9106. model layouts accross multiple browsers, including older browsers. The newest,
  9107. universal implementation of the flexible box model is used when available (see
  9108. `Modern browsers` comments below). Browsers that are known to implement this
  9109. new spec completely include:
  9110. Firefox 28.0+
  9111. Chrome 29.0+
  9112. Internet Explorer 11+
  9113. Opera 17.0+
  9114. Browsers not listed, including Safari, are supported via the styling under the
  9115. `Old browsers` comments below.
  9116. */
  9117. .hbox {
  9118. /* Old browsers */
  9119. display: -webkit-box;
  9120. -webkit-box-orient: horizontal;
  9121. -webkit-box-align: stretch;
  9122. display: -moz-box;
  9123. -moz-box-orient: horizontal;
  9124. -moz-box-align: stretch;
  9125. display: box;
  9126. box-orient: horizontal;
  9127. box-align: stretch;
  9128. /* Modern browsers */
  9129. display: flex;
  9130. flex-direction: row;
  9131. align-items: stretch;
  9132. }
  9133. .hbox > * {
  9134. /* Old browsers */
  9135. -webkit-box-flex: 0;
  9136. -moz-box-flex: 0;
  9137. box-flex: 0;
  9138. /* Modern browsers */
  9139. flex: none;
  9140. }
  9141. .vbox {
  9142. /* Old browsers */
  9143. display: -webkit-box;
  9144. -webkit-box-orient: vertical;
  9145. -webkit-box-align: stretch;
  9146. display: -moz-box;
  9147. -moz-box-orient: vertical;
  9148. -moz-box-align: stretch;
  9149. display: box;
  9150. box-orient: vertical;
  9151. box-align: stretch;
  9152. /* Modern browsers */
  9153. display: flex;
  9154. flex-direction: column;
  9155. align-items: stretch;
  9156. }
  9157. .vbox > * {
  9158. /* Old browsers */
  9159. -webkit-box-flex: 0;
  9160. -moz-box-flex: 0;
  9161. box-flex: 0;
  9162. /* Modern browsers */
  9163. flex: none;
  9164. }
  9165. .hbox.reverse,
  9166. .vbox.reverse,
  9167. .reverse {
  9168. /* Old browsers */
  9169. -webkit-box-direction: reverse;
  9170. -moz-box-direction: reverse;
  9171. box-direction: reverse;
  9172. /* Modern browsers */
  9173. flex-direction: row-reverse;
  9174. }
  9175. .hbox.box-flex0,
  9176. .vbox.box-flex0,
  9177. .box-flex0 {
  9178. /* Old browsers */
  9179. -webkit-box-flex: 0;
  9180. -moz-box-flex: 0;
  9181. box-flex: 0;
  9182. /* Modern browsers */
  9183. flex: none;
  9184. width: auto;
  9185. }
  9186. .hbox.box-flex1,
  9187. .vbox.box-flex1,
  9188. .box-flex1 {
  9189. /* Old browsers */
  9190. -webkit-box-flex: 1;
  9191. -moz-box-flex: 1;
  9192. box-flex: 1;
  9193. /* Modern browsers */
  9194. flex: 1;
  9195. }
  9196. .hbox.box-flex,
  9197. .vbox.box-flex,
  9198. .box-flex {
  9199. /* Old browsers */
  9200. /* Old browsers */
  9201. -webkit-box-flex: 1;
  9202. -moz-box-flex: 1;
  9203. box-flex: 1;
  9204. /* Modern browsers */
  9205. flex: 1;
  9206. }
  9207. .hbox.box-flex2,
  9208. .vbox.box-flex2,
  9209. .box-flex2 {
  9210. /* Old browsers */
  9211. -webkit-box-flex: 2;
  9212. -moz-box-flex: 2;
  9213. box-flex: 2;
  9214. /* Modern browsers */
  9215. flex: 2;
  9216. }
  9217. .box-group1 {
  9218. /* Deprecated */
  9219. -webkit-box-flex-group: 1;
  9220. -moz-box-flex-group: 1;
  9221. box-flex-group: 1;
  9222. }
  9223. .box-group2 {
  9224. /* Deprecated */
  9225. -webkit-box-flex-group: 2;
  9226. -moz-box-flex-group: 2;
  9227. box-flex-group: 2;
  9228. }
  9229. .hbox.start,
  9230. .vbox.start,
  9231. .start {
  9232. /* Old browsers */
  9233. -webkit-box-pack: start;
  9234. -moz-box-pack: start;
  9235. box-pack: start;
  9236. /* Modern browsers */
  9237. justify-content: flex-start;
  9238. }
  9239. .hbox.end,
  9240. .vbox.end,
  9241. .end {
  9242. /* Old browsers */
  9243. -webkit-box-pack: end;
  9244. -moz-box-pack: end;
  9245. box-pack: end;
  9246. /* Modern browsers */
  9247. justify-content: flex-end;
  9248. }
  9249. .hbox.center,
  9250. .vbox.center,
  9251. .center {
  9252. /* Old browsers */
  9253. -webkit-box-pack: center;
  9254. -moz-box-pack: center;
  9255. box-pack: center;
  9256. /* Modern browsers */
  9257. justify-content: center;
  9258. }
  9259. .hbox.baseline,
  9260. .vbox.baseline,
  9261. .baseline {
  9262. /* Old browsers */
  9263. -webkit-box-pack: baseline;
  9264. -moz-box-pack: baseline;
  9265. box-pack: baseline;
  9266. /* Modern browsers */
  9267. justify-content: baseline;
  9268. }
  9269. .hbox.stretch,
  9270. .vbox.stretch,
  9271. .stretch {
  9272. /* Old browsers */
  9273. -webkit-box-pack: stretch;
  9274. -moz-box-pack: stretch;
  9275. box-pack: stretch;
  9276. /* Modern browsers */
  9277. justify-content: stretch;
  9278. }
  9279. .hbox.align-start,
  9280. .vbox.align-start,
  9281. .align-start {
  9282. /* Old browsers */
  9283. -webkit-box-align: start;
  9284. -moz-box-align: start;
  9285. box-align: start;
  9286. /* Modern browsers */
  9287. align-items: flex-start;
  9288. }
  9289. .hbox.align-end,
  9290. .vbox.align-end,
  9291. .align-end {
  9292. /* Old browsers */
  9293. -webkit-box-align: end;
  9294. -moz-box-align: end;
  9295. box-align: end;
  9296. /* Modern browsers */
  9297. align-items: flex-end;
  9298. }
  9299. .hbox.align-center,
  9300. .vbox.align-center,
  9301. .align-center {
  9302. /* Old browsers */
  9303. -webkit-box-align: center;
  9304. -moz-box-align: center;
  9305. box-align: center;
  9306. /* Modern browsers */
  9307. align-items: center;
  9308. }
  9309. .hbox.align-baseline,
  9310. .vbox.align-baseline,
  9311. .align-baseline {
  9312. /* Old browsers */
  9313. -webkit-box-align: baseline;
  9314. -moz-box-align: baseline;
  9315. box-align: baseline;
  9316. /* Modern browsers */
  9317. align-items: baseline;
  9318. }
  9319. .hbox.align-stretch,
  9320. .vbox.align-stretch,
  9321. .align-stretch {
  9322. /* Old browsers */
  9323. -webkit-box-align: stretch;
  9324. -moz-box-align: stretch;
  9325. box-align: stretch;
  9326. /* Modern browsers */
  9327. align-items: stretch;
  9328. }
  9329. div.error {
  9330. margin: 2em;
  9331. text-align: center;
  9332. }
  9333. div.error > h1 {
  9334. font-size: 500%;
  9335. line-height: normal;
  9336. }
  9337. div.error > p {
  9338. font-size: 200%;
  9339. line-height: normal;
  9340. }
  9341. div.traceback-wrapper {
  9342. text-align: left;
  9343. max-width: 800px;
  9344. margin: auto;
  9345. }
  9346. div.traceback-wrapper pre.traceback {
  9347. max-height: 600px;
  9348. overflow: auto;
  9349. }
  9350. /**
  9351. * Primary styles
  9352. *
  9353. * Author: Jupyter Development Team
  9354. */
  9355. body {
  9356. background-color: #fff;
  9357. /* This makes sure that the body covers the entire window and needs to
  9358. be in a different element than the display: box in wrapper below */
  9359. position: absolute;
  9360. left: 0px;
  9361. right: 0px;
  9362. top: 0px;
  9363. bottom: 0px;
  9364. overflow: visible;
  9365. }
  9366. body > #header {
  9367. /* Initially hidden to prevent FLOUC */
  9368. display: none;
  9369. background-color: #fff;
  9370. /* Display over codemirror */
  9371. position: relative;
  9372. z-index: 100;
  9373. }
  9374. body > #header #header-container {
  9375. display: flex;
  9376. flex-direction: row;
  9377. justify-content: space-between;
  9378. padding: 5px;
  9379. padding-bottom: 5px;
  9380. padding-top: 5px;
  9381. box-sizing: border-box;
  9382. -moz-box-sizing: border-box;
  9383. -webkit-box-sizing: border-box;
  9384. }
  9385. body > #header .header-bar {
  9386. width: 100%;
  9387. height: 1px;
  9388. background: #e7e7e7;
  9389. margin-bottom: -1px;
  9390. }
  9391. @media print {
  9392. body > #header {
  9393. display: none !important;
  9394. }
  9395. }
  9396. #header-spacer {
  9397. width: 100%;
  9398. visibility: hidden;
  9399. }
  9400. @media print {
  9401. #header-spacer {
  9402. display: none;
  9403. }
  9404. }
  9405. #ipython_notebook {
  9406. padding-left: 0px;
  9407. padding-top: 1px;
  9408. padding-bottom: 1px;
  9409. }
  9410. [dir="rtl"] #ipython_notebook {
  9411. margin-right: 10px;
  9412. margin-left: 0;
  9413. }
  9414. [dir="rtl"] #ipython_notebook.pull-left {
  9415. float: right !important;
  9416. float: right;
  9417. }
  9418. .flex-spacer {
  9419. flex: 1;
  9420. }
  9421. #noscript {
  9422. width: auto;
  9423. padding-top: 16px;
  9424. padding-bottom: 16px;
  9425. text-align: center;
  9426. font-size: 22px;
  9427. color: red;
  9428. font-weight: bold;
  9429. }
  9430. #ipython_notebook img {
  9431. height: 28px;
  9432. }
  9433. #site {
  9434. width: 100%;
  9435. display: none;
  9436. box-sizing: border-box;
  9437. -moz-box-sizing: border-box;
  9438. -webkit-box-sizing: border-box;
  9439. overflow: auto;
  9440. }
  9441. @media print {
  9442. #site {
  9443. height: auto !important;
  9444. }
  9445. }
  9446. /* Smaller buttons */
  9447. .ui-button .ui-button-text {
  9448. padding: 0.2em 0.8em;
  9449. font-size: 77%;
  9450. }
  9451. input.ui-button {
  9452. padding: 0.3em 0.9em;
  9453. }
  9454. span#kernel_logo_widget {
  9455. margin: 0 10px;
  9456. }
  9457. span#login_widget {
  9458. float: right;
  9459. }
  9460. [dir="rtl"] span#login_widget {
  9461. float: left;
  9462. }
  9463. span#login_widget > .button,
  9464. #logout,
  9465. #shutdown {
  9466. color: #333;
  9467. background-color: #fff;
  9468. border-color: #ccc;
  9469. margin-left: 10px;
  9470. }
  9471. span#login_widget > .button:focus,
  9472. #logout:focus,
  9473. #shutdown:focus,
  9474. span#login_widget > .button.focus,
  9475. #logout.focus,
  9476. #shutdown.focus {
  9477. color: #333;
  9478. background-color: #e6e6e6;
  9479. border-color: #8c8c8c;
  9480. }
  9481. span#login_widget > .button:hover,
  9482. #logout:hover,
  9483. #shutdown:hover {
  9484. color: #333;
  9485. background-color: #e6e6e6;
  9486. border-color: #adadad;
  9487. }
  9488. span#login_widget > .button:active,
  9489. #logout:active,
  9490. #shutdown:active,
  9491. span#login_widget > .button.active,
  9492. #logout.active,
  9493. #shutdown.active,
  9494. .open > .dropdown-togglespan#login_widget > .button,
  9495. .open > .dropdown-toggle#logout,
  9496. .open > .dropdown-toggle#shutdown {
  9497. color: #333;
  9498. background-color: #e6e6e6;
  9499. background-image: none;
  9500. border-color: #adadad;
  9501. }
  9502. span#login_widget > .button:active:hover,
  9503. #logout:active:hover,
  9504. #shutdown:active:hover,
  9505. span#login_widget > .button.active:hover,
  9506. #logout.active:hover,
  9507. #shutdown.active:hover,
  9508. .open > .dropdown-togglespan#login_widget > .button:hover,
  9509. .open > .dropdown-toggle#logout:hover,
  9510. .open > .dropdown-toggle#shutdown:hover,
  9511. span#login_widget > .button:active:focus,
  9512. #logout:active:focus,
  9513. #shutdown:active:focus,
  9514. span#login_widget > .button.active:focus,
  9515. #logout.active:focus,
  9516. #shutdown.active:focus,
  9517. .open > .dropdown-togglespan#login_widget > .button:focus,
  9518. .open > .dropdown-toggle#logout:focus,
  9519. .open > .dropdown-toggle#shutdown:focus,
  9520. span#login_widget > .button:active.focus,
  9521. #logout:active.focus,
  9522. #shutdown:active.focus,
  9523. span#login_widget > .button.active.focus,
  9524. #logout.active.focus,
  9525. #shutdown.active.focus,
  9526. .open > .dropdown-togglespan#login_widget > .button.focus,
  9527. .open > .dropdown-toggle#logout.focus,
  9528. .open > .dropdown-toggle#shutdown.focus {
  9529. color: #333;
  9530. background-color: #d4d4d4;
  9531. border-color: #8c8c8c;
  9532. }
  9533. span#login_widget > .button.disabled:hover,
  9534. #logout.disabled:hover,
  9535. #shutdown.disabled:hover,
  9536. span#login_widget > .button[disabled]:hover,
  9537. #logout[disabled]:hover,
  9538. #shutdown[disabled]:hover,
  9539. fieldset[disabled] span#login_widget > .button:hover,
  9540. fieldset[disabled] #logout:hover,
  9541. fieldset[disabled] #shutdown:hover,
  9542. span#login_widget > .button.disabled:focus,
  9543. #logout.disabled:focus,
  9544. #shutdown.disabled:focus,
  9545. span#login_widget > .button[disabled]:focus,
  9546. #logout[disabled]:focus,
  9547. #shutdown[disabled]:focus,
  9548. fieldset[disabled] span#login_widget > .button:focus,
  9549. fieldset[disabled] #logout:focus,
  9550. fieldset[disabled] #shutdown:focus,
  9551. span#login_widget > .button.disabled.focus,
  9552. #logout.disabled.focus,
  9553. #shutdown.disabled.focus,
  9554. span#login_widget > .button[disabled].focus,
  9555. #logout[disabled].focus,
  9556. #shutdown[disabled].focus,
  9557. fieldset[disabled] span#login_widget > .button.focus,
  9558. fieldset[disabled] #logout.focus,
  9559. fieldset[disabled] #shutdown.focus {
  9560. background-color: #fff;
  9561. border-color: #ccc;
  9562. }
  9563. span#login_widget > .button .badge,
  9564. #logout .badge,
  9565. #shutdown .badge {
  9566. color: #fff;
  9567. background-color: #333;
  9568. }
  9569. .nav-header {
  9570. text-transform: none;
  9571. }
  9572. #header > span {
  9573. margin-top: 10px;
  9574. }
  9575. .modal_stretch .modal-dialog {
  9576. /* Old browsers */
  9577. display: -webkit-box;
  9578. -webkit-box-orient: vertical;
  9579. -webkit-box-align: stretch;
  9580. display: -moz-box;
  9581. -moz-box-orient: vertical;
  9582. -moz-box-align: stretch;
  9583. display: box;
  9584. box-orient: vertical;
  9585. box-align: stretch;
  9586. /* Modern browsers */
  9587. display: flex;
  9588. flex-direction: column;
  9589. align-items: stretch;
  9590. min-height: 80vh;
  9591. }
  9592. .modal_stretch .modal-dialog .modal-body {
  9593. max-height: calc(100vh - 200px);
  9594. overflow: auto;
  9595. flex: 1;
  9596. }
  9597. .modal-header {
  9598. cursor: move;
  9599. }
  9600. @media (min-width: 768px) {
  9601. .modal .modal-dialog {
  9602. width: 700px;
  9603. }
  9604. }
  9605. @media (min-width: 768px) {
  9606. select.form-control {
  9607. margin-left: 12px;
  9608. margin-right: 12px;
  9609. }
  9610. }
  9611. /* rtl fixes for the error, connecting, and renaming window */
  9612. [dir="rtl"] .modal-footer {
  9613. text-align: left !important;
  9614. }
  9615. [dir="rtl"] .close {
  9616. float: left;
  9617. }
  9618. [dir="rtl"] .fa-step-forward::before {
  9619. content: "\f048";
  9620. }
  9621. /*!
  9622. *
  9623. * IPython auth
  9624. *
  9625. */
  9626. .center-nav {
  9627. display: inline-block;
  9628. margin-bottom: -4px;
  9629. }
  9630. [dir="rtl"] .center-nav form.pull-left {
  9631. float: right !important;
  9632. float: right;
  9633. }
  9634. [dir="rtl"] .center-nav .navbar-text {
  9635. float: right;
  9636. }
  9637. [dir="rtl"] .navbar-inner {
  9638. text-align: right;
  9639. }
  9640. [dir="rtl"] div.text-left {
  9641. text-align: right;
  9642. }
  9643. /*!
  9644. *
  9645. * IPython tree view
  9646. *
  9647. */
  9648. /* We need an invisible input field on top of the sentense*/
  9649. /* "Drag file onto the list ..." */
  9650. .alternate_upload {
  9651. background-color: none;
  9652. display: inline;
  9653. }
  9654. .alternate_upload.form {
  9655. padding: 0;
  9656. margin: 0;
  9657. }
  9658. .alternate_upload input.fileinput {
  9659. position: absolute;
  9660. display: block;
  9661. width: 100%;
  9662. height: 100%;
  9663. overflow: hidden;
  9664. cursor: pointer;
  9665. opacity: 0;
  9666. z-index: 2;
  9667. }
  9668. .alternate_upload .btn-xs > input.fileinput {
  9669. margin: -1px -5px;
  9670. }
  9671. .alternate_upload .btn-upload {
  9672. position: relative;
  9673. height: 22px;
  9674. }
  9675. ::-webkit-file-upload-button {
  9676. cursor: pointer;
  9677. }
  9678. /**
  9679. * Primary styles
  9680. *
  9681. * Author: Jupyter Development Team
  9682. */
  9683. ul#tabs {
  9684. margin-bottom: 4px;
  9685. }
  9686. ul#tabs a {
  9687. padding-top: 6px;
  9688. padding-bottom: 4px;
  9689. }
  9690. [dir="rtl"] ul#tabs.nav-tabs > li {
  9691. float: right;
  9692. }
  9693. [dir="rtl"] ul#tabs.nav.nav-tabs {
  9694. padding-right: 0;
  9695. }
  9696. ul.breadcrumb a:focus,
  9697. ul.breadcrumb a:hover {
  9698. text-decoration: none;
  9699. }
  9700. ul.breadcrumb i.icon-home {
  9701. font-size: 16px;
  9702. margin-right: 4px;
  9703. }
  9704. ul.breadcrumb span {
  9705. color: #5e5e5e;
  9706. }
  9707. .list_toolbar {
  9708. padding: 4px 0 4px 0;
  9709. vertical-align: middle;
  9710. }
  9711. .list_toolbar .tree-buttons {
  9712. padding-top: 1px;
  9713. }
  9714. [dir="rtl"] .list_toolbar .tree-buttons .pull-right {
  9715. float: left !important;
  9716. float: left;
  9717. }
  9718. [dir="rtl"] .list_toolbar .col-sm-4,
  9719. [dir="rtl"] .list_toolbar .col-sm-8 {
  9720. float: right;
  9721. }
  9722. .dynamic-buttons {
  9723. padding-top: 3px;
  9724. display: inline-block;
  9725. width: 400px;
  9726. }
  9727. .list_toolbar [class*="span"] {
  9728. min-height: 24px;
  9729. }
  9730. .list_header {
  9731. font-weight: bold;
  9732. background-color: #EEE;
  9733. }
  9734. .list_placeholder {
  9735. font-weight: bold;
  9736. padding-top: 4px;
  9737. padding-bottom: 4px;
  9738. padding-left: 7px;
  9739. padding-right: 7px;
  9740. }
  9741. .list_container {
  9742. margin-top: 4px;
  9743. margin-bottom: 20px;
  9744. border: 1px solid #ddd;
  9745. border-radius: 2px;
  9746. }
  9747. .list_container > div {
  9748. border-bottom: 1px solid #ddd;
  9749. }
  9750. .list_container > div:hover .list-item {
  9751. background-color: red;
  9752. }
  9753. .list_container > div:last-child {
  9754. border: none;
  9755. }
  9756. .list_item:hover .list_item {
  9757. background-color: #ddd;
  9758. }
  9759. .list_item a {
  9760. text-decoration: none;
  9761. }
  9762. .list_item:hover {
  9763. background-color: #fafafa;
  9764. }
  9765. .list_header > div,
  9766. .list_item > div {
  9767. padding-top: 4px;
  9768. padding-bottom: 4px;
  9769. padding-left: 7px;
  9770. padding-right: 7px;
  9771. line-height: 22px;
  9772. }
  9773. .list_header > div input,
  9774. .list_item > div input {
  9775. margin-right: 7px;
  9776. margin-left: 14px;
  9777. vertical-align: text-bottom;
  9778. line-height: 22px;
  9779. position: relative;
  9780. top: -1px;
  9781. }
  9782. .list_header > div .item_link,
  9783. .list_item > div .item_link {
  9784. margin-left: -1px;
  9785. vertical-align: baseline;
  9786. line-height: 22px;
  9787. }
  9788. [dir="rtl"] .list_item > div input {
  9789. margin-right: 0;
  9790. }
  9791. .new-file input[type=checkbox] {
  9792. visibility: hidden;
  9793. }
  9794. .item_name {
  9795. line-height: 22px;
  9796. height: 24px;
  9797. }
  9798. .item_icon {
  9799. font-size: 14px;
  9800. color: #5e5e5e;
  9801. margin-right: 7px;
  9802. margin-left: 7px;
  9803. line-height: 22px;
  9804. vertical-align: baseline;
  9805. }
  9806. .item_modified {
  9807. margin-right: 7px;
  9808. margin-left: 7px;
  9809. }
  9810. .file_size {
  9811. width: 65px;
  9812. text-align: right;
  9813. }
  9814. [dir="rtl"] .item_modified.pull-right {
  9815. float: left !important;
  9816. float: left;
  9817. }
  9818. .item_buttons {
  9819. line-height: 1em;
  9820. margin-left: -5px;
  9821. }
  9822. .item_buttons .btn,
  9823. .item_buttons .btn-group,
  9824. .item_buttons .input-group {
  9825. float: left;
  9826. }
  9827. .item_buttons > .btn,
  9828. .item_buttons > .btn-group,
  9829. .item_buttons > .input-group {
  9830. margin-left: 5px;
  9831. }
  9832. .item_buttons .btn {
  9833. min-width: 13ex;
  9834. }
  9835. .item_buttons .running-indicator {
  9836. padding-top: 4px;
  9837. color: #2d672d;
  9838. }
  9839. .item_buttons .kernel-name {
  9840. padding-top: 4px;
  9841. color: #5bc0de;
  9842. margin-right: 7px;
  9843. float: left;
  9844. }
  9845. [dir="rtl"] .item_buttons.pull-right {
  9846. float: left !important;
  9847. float: left;
  9848. }
  9849. [dir="rtl"] .item_buttons .kernel-name {
  9850. margin-left: 7px;
  9851. float: right;
  9852. color: #489eb8;
  9853. font-weight: 700;
  9854. }
  9855. .toolbar_info {
  9856. height: 24px;
  9857. line-height: 24px;
  9858. }
  9859. .list_item input:not([type=checkbox]) {
  9860. padding-top: 3px;
  9861. padding-bottom: 3px;
  9862. height: 22px;
  9863. line-height: 14px;
  9864. margin: 0px;
  9865. }
  9866. .highlight_text {
  9867. color: blue;
  9868. }
  9869. #project_name {
  9870. display: inline-block;
  9871. padding-left: 7px;
  9872. margin-left: -2px;
  9873. color: #1f5381;
  9874. }
  9875. #project_name > .breadcrumb {
  9876. padding: 0px;
  9877. margin-bottom: 0px;
  9878. background-color: transparent;
  9879. font-weight: bold;
  9880. }
  9881. .sort_button {
  9882. display: inline-block;
  9883. padding-left: 7px;
  9884. }
  9885. [dir="rtl"] .sort_button.pull-right {
  9886. float: left !important;
  9887. float: left;
  9888. }
  9889. #tree-selector {
  9890. padding-right: 0px;
  9891. }
  9892. #button-select-all {
  9893. min-width: 50px;
  9894. }
  9895. [dir="rtl"] #button-select-all.btn {
  9896. float: right ;
  9897. }
  9898. #select-all {
  9899. margin-left: 7px;
  9900. margin-right: 2px;
  9901. margin-top: 2px;
  9902. height: 16px;
  9903. }
  9904. [dir="rtl"] #select-all.pull-left {
  9905. float: right !important;
  9906. float: right;
  9907. }
  9908. .menu_icon {
  9909. margin-right: 2px;
  9910. }
  9911. .tab-content .row {
  9912. margin-left: 0px;
  9913. margin-right: 0px;
  9914. }
  9915. .folder_icon:before {
  9916. display: inline-block;
  9917. font: normal normal normal 14px/1 FontAwesome;
  9918. font-size: inherit;
  9919. text-rendering: auto;
  9920. -webkit-font-smoothing: antialiased;
  9921. -moz-osx-font-smoothing: grayscale;
  9922. content: "\f114";
  9923. }
  9924. .folder_icon:before.fa-pull-left {
  9925. margin-right: .3em;
  9926. }
  9927. .folder_icon:before.fa-pull-right {
  9928. margin-left: .3em;
  9929. }
  9930. .folder_icon:before.pull-left {
  9931. margin-right: .3em;
  9932. }
  9933. .folder_icon:before.pull-right {
  9934. margin-left: .3em;
  9935. }
  9936. .notebook_icon:before {
  9937. display: inline-block;
  9938. font: normal normal normal 14px/1 FontAwesome;
  9939. font-size: inherit;
  9940. text-rendering: auto;
  9941. -webkit-font-smoothing: antialiased;
  9942. -moz-osx-font-smoothing: grayscale;
  9943. content: "\f02d";
  9944. position: relative;
  9945. top: -1px;
  9946. }
  9947. .notebook_icon:before.fa-pull-left {
  9948. margin-right: .3em;
  9949. }
  9950. .notebook_icon:before.fa-pull-right {
  9951. margin-left: .3em;
  9952. }
  9953. .notebook_icon:before.pull-left {
  9954. margin-right: .3em;
  9955. }
  9956. .notebook_icon:before.pull-right {
  9957. margin-left: .3em;
  9958. }
  9959. .running_notebook_icon:before {
  9960. display: inline-block;
  9961. font: normal normal normal 14px/1 FontAwesome;
  9962. font-size: inherit;
  9963. text-rendering: auto;
  9964. -webkit-font-smoothing: antialiased;
  9965. -moz-osx-font-smoothing: grayscale;
  9966. content: "\f02d";
  9967. position: relative;
  9968. top: -1px;
  9969. color: #5cb85c;
  9970. }
  9971. .running_notebook_icon:before.fa-pull-left {
  9972. margin-right: .3em;
  9973. }
  9974. .running_notebook_icon:before.fa-pull-right {
  9975. margin-left: .3em;
  9976. }
  9977. .running_notebook_icon:before.pull-left {
  9978. margin-right: .3em;
  9979. }
  9980. .running_notebook_icon:before.pull-right {
  9981. margin-left: .3em;
  9982. }
  9983. .file_icon:before {
  9984. display: inline-block;
  9985. font: normal normal normal 14px/1 FontAwesome;
  9986. font-size: inherit;
  9987. text-rendering: auto;
  9988. -webkit-font-smoothing: antialiased;
  9989. -moz-osx-font-smoothing: grayscale;
  9990. content: "\f016";
  9991. position: relative;
  9992. top: -2px;
  9993. }
  9994. .file_icon:before.fa-pull-left {
  9995. margin-right: .3em;
  9996. }
  9997. .file_icon:before.fa-pull-right {
  9998. margin-left: .3em;
  9999. }
  10000. .file_icon:before.pull-left {
  10001. margin-right: .3em;
  10002. }
  10003. .file_icon:before.pull-right {
  10004. margin-left: .3em;
  10005. }
  10006. #notebook_toolbar .pull-right {
  10007. padding-top: 0px;
  10008. margin-right: -1px;
  10009. }
  10010. ul#new-menu {
  10011. left: auto;
  10012. right: 0;
  10013. }
  10014. #new-menu .dropdown-header {
  10015. font-size: 10px;
  10016. border-bottom: 1px solid #e5e5e5;
  10017. padding: 0 0 3px;
  10018. margin: -3px 20px 0;
  10019. }
  10020. .kernel-menu-icon {
  10021. padding-right: 12px;
  10022. width: 24px;
  10023. content: "\f096";
  10024. }
  10025. .kernel-menu-icon:before {
  10026. content: "\f096";
  10027. }
  10028. .kernel-menu-icon-current:before {
  10029. content: "\f00c";
  10030. }
  10031. #tab_content {
  10032. padding-top: 20px;
  10033. }
  10034. #running .panel-group .panel {
  10035. margin-top: 3px;
  10036. margin-bottom: 1em;
  10037. }
  10038. #running .panel-group .panel .panel-heading {
  10039. background-color: #EEE;
  10040. padding-top: 4px;
  10041. padding-bottom: 4px;
  10042. padding-left: 7px;
  10043. padding-right: 7px;
  10044. line-height: 22px;
  10045. }
  10046. #running .panel-group .panel .panel-heading a:focus,
  10047. #running .panel-group .panel .panel-heading a:hover {
  10048. text-decoration: none;
  10049. }
  10050. #running .panel-group .panel .panel-body {
  10051. padding: 0px;
  10052. }
  10053. #running .panel-group .panel .panel-body .list_container {
  10054. margin-top: 0px;
  10055. margin-bottom: 0px;
  10056. border: 0px;
  10057. border-radius: 0px;
  10058. }
  10059. #running .panel-group .panel .panel-body .list_container .list_item {
  10060. border-bottom: 1px solid #ddd;
  10061. }
  10062. #running .panel-group .panel .panel-body .list_container .list_item:last-child {
  10063. border-bottom: 0px;
  10064. }
  10065. .delete-button {
  10066. display: none;
  10067. }
  10068. .duplicate-button {
  10069. display: none;
  10070. }
  10071. .rename-button {
  10072. display: none;
  10073. }
  10074. .move-button {
  10075. display: none;
  10076. }
  10077. .download-button {
  10078. display: none;
  10079. }
  10080. .shutdown-button {
  10081. display: none;
  10082. }
  10083. .dynamic-instructions {
  10084. display: inline-block;
  10085. padding-top: 4px;
  10086. }
  10087. .dynamic-buttons button:focus + [role="tooltip"] {
  10088. visibility: visible;
  10089. opacity: 1;
  10090. }
  10091. .dynamic-buttons [role="tooltip"] {
  10092. /* Position the tooltip */
  10093. position: absolute;
  10094. top: 70%;
  10095. display: inline;
  10096. visibility: hidden;
  10097. background-color: #F0EFEF;
  10098. color: #080808;
  10099. text-align: center;
  10100. padding: 3px;
  10101. outline-color: grey;
  10102. outline-offset: -2px;
  10103. outline-style: auto;
  10104. outline-width: 1px;
  10105. z-index: 1;
  10106. opacity: 0;
  10107. transition: opacity .6s;
  10108. margin: 3px;
  10109. font-size: 10px;
  10110. }
  10111. /*!
  10112. *
  10113. * IPython text editor webapp
  10114. *
  10115. */
  10116. .selected-keymap i.fa {
  10117. padding: 0px 5px;
  10118. }
  10119. .selected-keymap i.fa:before {
  10120. content: "\f00c";
  10121. }
  10122. #mode-menu {
  10123. overflow: auto;
  10124. max-height: 20em;
  10125. }
  10126. .edit_app #header {
  10127. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10128. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10129. }
  10130. .edit_app #menubar .navbar {
  10131. /* Use a negative 1 bottom margin, so the border overlaps the border of the
  10132. header */
  10133. margin-bottom: -1px;
  10134. }
  10135. .dirty-indicator {
  10136. display: inline-block;
  10137. font: normal normal normal 14px/1 FontAwesome;
  10138. font-size: inherit;
  10139. text-rendering: auto;
  10140. -webkit-font-smoothing: antialiased;
  10141. -moz-osx-font-smoothing: grayscale;
  10142. width: 20px;
  10143. }
  10144. .dirty-indicator.fa-pull-left {
  10145. margin-right: .3em;
  10146. }
  10147. .dirty-indicator.fa-pull-right {
  10148. margin-left: .3em;
  10149. }
  10150. .dirty-indicator.pull-left {
  10151. margin-right: .3em;
  10152. }
  10153. .dirty-indicator.pull-right {
  10154. margin-left: .3em;
  10155. }
  10156. .dirty-indicator-dirty {
  10157. display: inline-block;
  10158. font: normal normal normal 14px/1 FontAwesome;
  10159. font-size: inherit;
  10160. text-rendering: auto;
  10161. -webkit-font-smoothing: antialiased;
  10162. -moz-osx-font-smoothing: grayscale;
  10163. width: 20px;
  10164. }
  10165. .dirty-indicator-dirty.fa-pull-left {
  10166. margin-right: .3em;
  10167. }
  10168. .dirty-indicator-dirty.fa-pull-right {
  10169. margin-left: .3em;
  10170. }
  10171. .dirty-indicator-dirty.pull-left {
  10172. margin-right: .3em;
  10173. }
  10174. .dirty-indicator-dirty.pull-right {
  10175. margin-left: .3em;
  10176. }
  10177. .dirty-indicator-clean {
  10178. display: inline-block;
  10179. font: normal normal normal 14px/1 FontAwesome;
  10180. font-size: inherit;
  10181. text-rendering: auto;
  10182. -webkit-font-smoothing: antialiased;
  10183. -moz-osx-font-smoothing: grayscale;
  10184. width: 20px;
  10185. }
  10186. .dirty-indicator-clean.fa-pull-left {
  10187. margin-right: .3em;
  10188. }
  10189. .dirty-indicator-clean.fa-pull-right {
  10190. margin-left: .3em;
  10191. }
  10192. .dirty-indicator-clean.pull-left {
  10193. margin-right: .3em;
  10194. }
  10195. .dirty-indicator-clean.pull-right {
  10196. margin-left: .3em;
  10197. }
  10198. .dirty-indicator-clean:before {
  10199. display: inline-block;
  10200. font: normal normal normal 14px/1 FontAwesome;
  10201. font-size: inherit;
  10202. text-rendering: auto;
  10203. -webkit-font-smoothing: antialiased;
  10204. -moz-osx-font-smoothing: grayscale;
  10205. content: "\f00c";
  10206. }
  10207. .dirty-indicator-clean:before.fa-pull-left {
  10208. margin-right: .3em;
  10209. }
  10210. .dirty-indicator-clean:before.fa-pull-right {
  10211. margin-left: .3em;
  10212. }
  10213. .dirty-indicator-clean:before.pull-left {
  10214. margin-right: .3em;
  10215. }
  10216. .dirty-indicator-clean:before.pull-right {
  10217. margin-left: .3em;
  10218. }
  10219. #filename {
  10220. font-size: 16pt;
  10221. display: table;
  10222. padding: 0px 5px;
  10223. }
  10224. #current-mode {
  10225. padding-left: 5px;
  10226. padding-right: 5px;
  10227. }
  10228. #texteditor-backdrop {
  10229. padding-top: 20px;
  10230. padding-bottom: 20px;
  10231. }
  10232. @media not print {
  10233. #texteditor-backdrop {
  10234. background-color: #EEE;
  10235. }
  10236. }
  10237. @media print {
  10238. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  10239. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  10240. background-color: #fff;
  10241. }
  10242. }
  10243. @media not print {
  10244. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  10245. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  10246. background-color: #fff;
  10247. }
  10248. }
  10249. @media not print {
  10250. #texteditor-backdrop #texteditor-container {
  10251. padding: 0px;
  10252. background-color: #fff;
  10253. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10254. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10255. }
  10256. }
  10257. .CodeMirror-dialog {
  10258. background-color: #fff;
  10259. }
  10260. /*!
  10261. *
  10262. * IPython notebook
  10263. *
  10264. */
  10265. /* CSS font colors for translated ANSI escape sequences */
  10266. /* The color values are a mix of
  10267. http://www.xcolors.net/dl/baskerville-ivorylight and
  10268. http://www.xcolors.net/dl/euphrasia */
  10269. .ansi-black-fg {
  10270. color: #3E424D;
  10271. }
  10272. .ansi-black-bg {
  10273. background-color: #3E424D;
  10274. }
  10275. .ansi-black-intense-fg {
  10276. color: #282C36;
  10277. }
  10278. .ansi-black-intense-bg {
  10279. background-color: #282C36;
  10280. }
  10281. .ansi-red-fg {
  10282. color: #E75C58;
  10283. }
  10284. .ansi-red-bg {
  10285. background-color: #E75C58;
  10286. }
  10287. .ansi-red-intense-fg {
  10288. color: #B22B31;
  10289. }
  10290. .ansi-red-intense-bg {
  10291. background-color: #B22B31;
  10292. }
  10293. .ansi-green-fg {
  10294. color: #00A250;
  10295. }
  10296. .ansi-green-bg {
  10297. background-color: #00A250;
  10298. }
  10299. .ansi-green-intense-fg {
  10300. color: #007427;
  10301. }
  10302. .ansi-green-intense-bg {
  10303. background-color: #007427;
  10304. }
  10305. .ansi-yellow-fg {
  10306. color: #DDB62B;
  10307. }
  10308. .ansi-yellow-bg {
  10309. background-color: #DDB62B;
  10310. }
  10311. .ansi-yellow-intense-fg {
  10312. color: #B27D12;
  10313. }
  10314. .ansi-yellow-intense-bg {
  10315. background-color: #B27D12;
  10316. }
  10317. .ansi-blue-fg {
  10318. color: #208FFB;
  10319. }
  10320. .ansi-blue-bg {
  10321. background-color: #208FFB;
  10322. }
  10323. .ansi-blue-intense-fg {
  10324. color: #0065CA;
  10325. }
  10326. .ansi-blue-intense-bg {
  10327. background-color: #0065CA;
  10328. }
  10329. .ansi-magenta-fg {
  10330. color: #D160C4;
  10331. }
  10332. .ansi-magenta-bg {
  10333. background-color: #D160C4;
  10334. }
  10335. .ansi-magenta-intense-fg {
  10336. color: #A03196;
  10337. }
  10338. .ansi-magenta-intense-bg {
  10339. background-color: #A03196;
  10340. }
  10341. .ansi-cyan-fg {
  10342. color: #60C6C8;
  10343. }
  10344. .ansi-cyan-bg {
  10345. background-color: #60C6C8;
  10346. }
  10347. .ansi-cyan-intense-fg {
  10348. color: #258F8F;
  10349. }
  10350. .ansi-cyan-intense-bg {
  10351. background-color: #258F8F;
  10352. }
  10353. .ansi-white-fg {
  10354. color: #C5C1B4;
  10355. }
  10356. .ansi-white-bg {
  10357. background-color: #C5C1B4;
  10358. }
  10359. .ansi-white-intense-fg {
  10360. color: #A1A6B2;
  10361. }
  10362. .ansi-white-intense-bg {
  10363. background-color: #A1A6B2;
  10364. }
  10365. .ansi-default-inverse-fg {
  10366. color: #FFFFFF;
  10367. }
  10368. .ansi-default-inverse-bg {
  10369. background-color: #000000;
  10370. }
  10371. .ansi-bold {
  10372. font-weight: bold;
  10373. }
  10374. .ansi-underline {
  10375. text-decoration: underline;
  10376. }
  10377. div.cell {
  10378. /* Old browsers */
  10379. display: -webkit-box;
  10380. -webkit-box-orient: vertical;
  10381. -webkit-box-align: stretch;
  10382. display: -moz-box;
  10383. -moz-box-orient: vertical;
  10384. -moz-box-align: stretch;
  10385. display: box;
  10386. box-orient: vertical;
  10387. box-align: stretch;
  10388. /* Modern browsers */
  10389. display: flex;
  10390. flex-direction: column;
  10391. align-items: stretch;
  10392. border-radius: 2px;
  10393. box-sizing: border-box;
  10394. -moz-box-sizing: border-box;
  10395. -webkit-box-sizing: border-box;
  10396. border-width: 1px;
  10397. border-style: solid;
  10398. border-color: transparent;
  10399. width: 100%;
  10400. padding: 5px;
  10401. /* This acts as a spacer between cells, that is outside the border */
  10402. margin: 0px;
  10403. outline: none;
  10404. position: relative;
  10405. overflow: visible;
  10406. }
  10407. div.cell:before {
  10408. position: absolute;
  10409. display: block;
  10410. top: -1px;
  10411. left: -1px;
  10412. width: 5px;
  10413. height: calc(100% + 2px);
  10414. content: '';
  10415. background: transparent;
  10416. }
  10417. div.cell.jupyter-soft-selected {
  10418. border-left-color: #E3F2FD;
  10419. border-left-width: 1px;
  10420. padding-left: 5px;
  10421. border-right-color: #E3F2FD;
  10422. border-right-width: 1px;
  10423. background: #E3F2FD;
  10424. }
  10425. @media print {
  10426. div.cell.jupyter-soft-selected {
  10427. border-color: transparent;
  10428. }
  10429. }
  10430. div.cell.selected,
  10431. div.cell.selected.jupyter-soft-selected {
  10432. border-color: #ababab;
  10433. }
  10434. div.cell.selected:before,
  10435. div.cell.selected.jupyter-soft-selected:before {
  10436. position: absolute;
  10437. display: block;
  10438. top: -1px;
  10439. left: -1px;
  10440. width: 5px;
  10441. height: calc(100% + 2px);
  10442. content: '';
  10443. background: #42A5F5;
  10444. }
  10445. @media print {
  10446. div.cell.selected,
  10447. div.cell.selected.jupyter-soft-selected {
  10448. border-color: transparent;
  10449. }
  10450. }
  10451. .edit_mode div.cell.selected {
  10452. border-color: #66BB6A;
  10453. }
  10454. .edit_mode div.cell.selected:before {
  10455. position: absolute;
  10456. display: block;
  10457. top: -1px;
  10458. left: -1px;
  10459. width: 5px;
  10460. height: calc(100% + 2px);
  10461. content: '';
  10462. background: #66BB6A;
  10463. }
  10464. @media print {
  10465. .edit_mode div.cell.selected {
  10466. border-color: transparent;
  10467. }
  10468. }
  10469. .prompt {
  10470. /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
  10471. min-width: 14ex;
  10472. /* This padding is tuned to match the padding on the CodeMirror editor. */
  10473. padding: 0.4em;
  10474. margin: 0px;
  10475. font-family: monospace;
  10476. text-align: right;
  10477. /* This has to match that of the the CodeMirror class line-height below */
  10478. line-height: 1.21429em;
  10479. /* Don't highlight prompt number selection */
  10480. -webkit-touch-callout: none;
  10481. -webkit-user-select: none;
  10482. -khtml-user-select: none;
  10483. -moz-user-select: none;
  10484. -ms-user-select: none;
  10485. user-select: none;
  10486. /* Use default cursor */
  10487. cursor: default;
  10488. }
  10489. @media (max-width: 540px) {
  10490. .prompt {
  10491. text-align: left;
  10492. }
  10493. }
  10494. div.inner_cell {
  10495. min-width: 0;
  10496. /* Old browsers */
  10497. display: -webkit-box;
  10498. -webkit-box-orient: vertical;
  10499. -webkit-box-align: stretch;
  10500. display: -moz-box;
  10501. -moz-box-orient: vertical;
  10502. -moz-box-align: stretch;
  10503. display: box;
  10504. box-orient: vertical;
  10505. box-align: stretch;
  10506. /* Modern browsers */
  10507. display: flex;
  10508. flex-direction: column;
  10509. align-items: stretch;
  10510. /* Old browsers */
  10511. -webkit-box-flex: 1;
  10512. -moz-box-flex: 1;
  10513. box-flex: 1;
  10514. /* Modern browsers */
  10515. flex: 1;
  10516. }
  10517. /* input_area and input_prompt must match in top border and margin for alignment */
  10518. div.input_area {
  10519. border: 1px solid #cfcfcf;
  10520. border-radius: 2px;
  10521. background: #f7f7f7;
  10522. line-height: 1.21429em;
  10523. }
  10524. /* This is needed so that empty prompt areas can collapse to zero height when there
  10525. is no content in the output_subarea and the prompt. The main purpose of this is
  10526. to make sure that empty JavaScript output_subareas have no height. */
  10527. div.prompt:empty {
  10528. padding-top: 0;
  10529. padding-bottom: 0;
  10530. }
  10531. div.unrecognized_cell {
  10532. padding: 5px 5px 5px 0px;
  10533. /* Old browsers */
  10534. display: -webkit-box;
  10535. -webkit-box-orient: horizontal;
  10536. -webkit-box-align: stretch;
  10537. display: -moz-box;
  10538. -moz-box-orient: horizontal;
  10539. -moz-box-align: stretch;
  10540. display: box;
  10541. box-orient: horizontal;
  10542. box-align: stretch;
  10543. /* Modern browsers */
  10544. display: flex;
  10545. flex-direction: row;
  10546. align-items: stretch;
  10547. }
  10548. div.unrecognized_cell .inner_cell {
  10549. border-radius: 2px;
  10550. padding: 5px;
  10551. font-weight: bold;
  10552. color: red;
  10553. border: 1px solid #cfcfcf;
  10554. background: #eaeaea;
  10555. }
  10556. div.unrecognized_cell .inner_cell a {
  10557. color: inherit;
  10558. text-decoration: none;
  10559. }
  10560. div.unrecognized_cell .inner_cell a:hover {
  10561. color: inherit;
  10562. text-decoration: none;
  10563. }
  10564. @media (max-width: 540px) {
  10565. div.unrecognized_cell > div.prompt {
  10566. display: none;
  10567. }
  10568. }
  10569. div.code_cell {
  10570. /* avoid page breaking on code cells when printing */
  10571. }
  10572. @media print {
  10573. div.code_cell {
  10574. page-break-inside: avoid;
  10575. }
  10576. }
  10577. /* any special styling for code cells that are currently running goes here */
  10578. div.input {
  10579. page-break-inside: avoid;
  10580. /* Old browsers */
  10581. display: -webkit-box;
  10582. -webkit-box-orient: horizontal;
  10583. -webkit-box-align: stretch;
  10584. display: -moz-box;
  10585. -moz-box-orient: horizontal;
  10586. -moz-box-align: stretch;
  10587. display: box;
  10588. box-orient: horizontal;
  10589. box-align: stretch;
  10590. /* Modern browsers */
  10591. display: flex;
  10592. flex-direction: row;
  10593. align-items: stretch;
  10594. }
  10595. @media (max-width: 540px) {
  10596. div.input {
  10597. /* Old browsers */
  10598. display: -webkit-box;
  10599. -webkit-box-orient: vertical;
  10600. -webkit-box-align: stretch;
  10601. display: -moz-box;
  10602. -moz-box-orient: vertical;
  10603. -moz-box-align: stretch;
  10604. display: box;
  10605. box-orient: vertical;
  10606. box-align: stretch;
  10607. /* Modern browsers */
  10608. display: flex;
  10609. flex-direction: column;
  10610. align-items: stretch;
  10611. }
  10612. }
  10613. div.prompt_container {
  10614. display: flex;
  10615. flex-direction: row;
  10616. justify-content: space-between;
  10617. align-items: flex-start;
  10618. text-align: right;
  10619. }
  10620. /* input_area and input_prompt must match in top border and margin for alignment */
  10621. div.input_prompt {
  10622. color: #303F9F;
  10623. border-top: 1px solid transparent;
  10624. }
  10625. div.run_this_cell {
  10626. display: none;
  10627. cursor: pointer;
  10628. color: #333;
  10629. padding-top: 5px;
  10630. padding-bottom: 5px;
  10631. padding-left: 2ex;
  10632. padding-right: 2ex;
  10633. width: 1ex;
  10634. }
  10635. div.prompt {
  10636. min-width: 15ex;
  10637. }
  10638. @media (-moz-touch-enabled: 1), (any-pointer: coarse) {
  10639. div.run_this_cell {
  10640. display: block;
  10641. }
  10642. }
  10643. div.input_area > div.highlight {
  10644. margin: 0.4em;
  10645. border: none;
  10646. padding: 0px;
  10647. background-color: transparent;
  10648. }
  10649. div.input_area > div.highlight > pre {
  10650. margin: 0px;
  10651. border: none;
  10652. padding: 0px;
  10653. background-color: transparent;
  10654. }
  10655. /* The following gets added to the <head> if it is detected that the user has a
  10656. * monospace font with inconsistent normal/bold/italic height. See
  10657. * notebookmain.js. Such fonts will have keywords vertically offset with
  10658. * respect to the rest of the text. The user should select a better font.
  10659. * See: https://github.com/ipython/ipython/issues/1503
  10660. *
  10661. * .CodeMirror span {
  10662. * vertical-align: bottom;
  10663. * }
  10664. */
  10665. .CodeMirror {
  10666. line-height: 1.21429em;
  10667. /* Changed from 1em to our global default */
  10668. font-size: 14px;
  10669. height: auto;
  10670. /* Changed to auto to autogrow */
  10671. background: none;
  10672. /* Changed from white to allow our bg to show through */
  10673. }
  10674. .CodeMirror-scroll {
  10675. /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
  10676. /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
  10677. overflow-y: hidden;
  10678. overflow-x: auto;
  10679. }
  10680. .CodeMirror-lines {
  10681. /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
  10682. /* we have set a different line-height and want this to scale with that. */
  10683. /* Note that this should set vertical padding only, since CodeMirror assumes
  10684. that horizontal padding will be set on CodeMirror pre */
  10685. padding: 0.4em 0;
  10686. }
  10687. .CodeMirror-linenumber {
  10688. padding: 0 8px 0 4px;
  10689. }
  10690. .CodeMirror-gutters {
  10691. border-bottom-left-radius: 2px;
  10692. border-top-left-radius: 2px;
  10693. }
  10694. .CodeMirror pre {
  10695. /* In CM3 this went to 4px from 0 in CM2. This sets horizontal padding only,
  10696. use .CodeMirror-lines for vertical */
  10697. padding: 0 0.4em;
  10698. border: 0;
  10699. border-radius: 0;
  10700. }
  10701. .CodeMirror-cursor {
  10702. border-left: 1.4px solid black;
  10703. }
  10704. @media screen and (min-width: 2138px) and (max-width: 4319px) {
  10705. .CodeMirror-cursor {
  10706. border-left: 2px solid black;
  10707. }
  10708. }
  10709. @media screen and (min-width: 4320px) {
  10710. .CodeMirror-cursor {
  10711. border-left: 4px solid black;
  10712. }
  10713. }
  10714. /*
  10715. Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  10716. Adapted from GitHub theme
  10717. */
  10718. .highlight-base {
  10719. color: #000;
  10720. }
  10721. .highlight-variable {
  10722. color: #000;
  10723. }
  10724. .highlight-variable-2 {
  10725. color: #1a1a1a;
  10726. }
  10727. .highlight-variable-3 {
  10728. color: #333333;
  10729. }
  10730. .highlight-string {
  10731. color: #BA2121;
  10732. }
  10733. .highlight-comment {
  10734. color: #007979;
  10735. font-style: italic;
  10736. }
  10737. .highlight-number {
  10738. color: #080;
  10739. }
  10740. .highlight-atom {
  10741. color: #88F;
  10742. }
  10743. .highlight-keyword {
  10744. color: #008000;
  10745. font-weight: bold;
  10746. }
  10747. .highlight-builtin {
  10748. color: #008000;
  10749. }
  10750. .highlight-error {
  10751. color: #f00;
  10752. }
  10753. .highlight-operator {
  10754. color: #AA22FF;
  10755. font-weight: bold;
  10756. }
  10757. .highlight-meta {
  10758. color: #AA22FF;
  10759. }
  10760. /* previously not defined, copying from default codemirror */
  10761. .highlight-def {
  10762. color: #00f;
  10763. }
  10764. .highlight-string-2 {
  10765. color: #f50;
  10766. }
  10767. .highlight-qualifier {
  10768. color: #555;
  10769. }
  10770. .highlight-bracket {
  10771. color: #997;
  10772. }
  10773. .highlight-tag {
  10774. color: #170;
  10775. }
  10776. .highlight-attribute {
  10777. color: #00c;
  10778. }
  10779. .highlight-header {
  10780. color: blue;
  10781. }
  10782. .highlight-quote {
  10783. color: #090;
  10784. }
  10785. .highlight-link {
  10786. color: #00c;
  10787. }
  10788. /* apply the same style to codemirror */
  10789. .cm-s-ipython span.cm-keyword {
  10790. color: #008000;
  10791. font-weight: bold;
  10792. }
  10793. .cm-s-ipython span.cm-atom {
  10794. color: #88F;
  10795. }
  10796. .cm-s-ipython span.cm-number {
  10797. color: #080;
  10798. }
  10799. .cm-s-ipython span.cm-def {
  10800. color: #00f;
  10801. }
  10802. .cm-s-ipython span.cm-variable {
  10803. color: #000;
  10804. }
  10805. .cm-s-ipython span.cm-operator {
  10806. color: #AA22FF;
  10807. font-weight: bold;
  10808. }
  10809. .cm-s-ipython span.cm-variable-2 {
  10810. color: #1a1a1a;
  10811. }
  10812. .cm-s-ipython span.cm-variable-3 {
  10813. color: #333333;
  10814. }
  10815. .cm-s-ipython span.cm-comment {
  10816. color: #007979;
  10817. font-style: italic;
  10818. }
  10819. .cm-s-ipython span.cm-string {
  10820. color: #BA2121;
  10821. }
  10822. .cm-s-ipython span.cm-string-2 {
  10823. color: #f50;
  10824. }
  10825. .cm-s-ipython span.cm-meta {
  10826. color: #AA22FF;
  10827. }
  10828. .cm-s-ipython span.cm-qualifier {
  10829. color: #555;
  10830. }
  10831. .cm-s-ipython span.cm-builtin {
  10832. color: #008000;
  10833. }
  10834. .cm-s-ipython span.cm-bracket {
  10835. color: #997;
  10836. }
  10837. .cm-s-ipython span.cm-tag {
  10838. color: #170;
  10839. }
  10840. .cm-s-ipython span.cm-attribute {
  10841. color: #00c;
  10842. }
  10843. .cm-s-ipython span.cm-header {
  10844. color: blue;
  10845. }
  10846. .cm-s-ipython span.cm-quote {
  10847. color: #090;
  10848. }
  10849. .cm-s-ipython span.cm-link {
  10850. color: #00c;
  10851. }
  10852. .cm-s-ipython span.cm-error {
  10853. color: #f00;
  10854. }
  10855. .cm-s-ipython span.cm-tab {
  10856. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  10857. background-position: right;
  10858. background-repeat: no-repeat;
  10859. }
  10860. div.output_wrapper {
  10861. /* this position must be relative to enable descendents to be absolute within it */
  10862. position: relative;
  10863. /* Old browsers */
  10864. display: -webkit-box;
  10865. -webkit-box-orient: vertical;
  10866. -webkit-box-align: stretch;
  10867. display: -moz-box;
  10868. -moz-box-orient: vertical;
  10869. -moz-box-align: stretch;
  10870. display: box;
  10871. box-orient: vertical;
  10872. box-align: stretch;
  10873. /* Modern browsers */
  10874. display: flex;
  10875. flex-direction: column;
  10876. align-items: stretch;
  10877. z-index: 1;
  10878. }
  10879. /* class for the output area when it should be height-limited */
  10880. div.output_scroll {
  10881. /* ideally, this would be max-height, but FF barfs all over that */
  10882. height: 24em;
  10883. /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
  10884. width: 100%;
  10885. overflow: auto;
  10886. border-radius: 2px;
  10887. -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  10888. box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  10889. display: block;
  10890. }
  10891. /* output div while it is collapsed */
  10892. div.output_collapsed {
  10893. margin: 0px;
  10894. padding: 0px;
  10895. /* Old browsers */
  10896. display: -webkit-box;
  10897. -webkit-box-orient: vertical;
  10898. -webkit-box-align: stretch;
  10899. display: -moz-box;
  10900. -moz-box-orient: vertical;
  10901. -moz-box-align: stretch;
  10902. display: box;
  10903. box-orient: vertical;
  10904. box-align: stretch;
  10905. /* Modern browsers */
  10906. display: flex;
  10907. flex-direction: column;
  10908. align-items: stretch;
  10909. }
  10910. div.out_prompt_overlay {
  10911. height: 100%;
  10912. padding: 0px 0.4em;
  10913. position: absolute;
  10914. border-radius: 2px;
  10915. }
  10916. div.out_prompt_overlay:hover {
  10917. /* use inner shadow to get border that is computed the same on WebKit/FF */
  10918. -webkit-box-shadow: inset 0 0 1px #000;
  10919. box-shadow: inset 0 0 1px #000;
  10920. background: rgba(240, 240, 240, 0.5);
  10921. }
  10922. div.output_prompt {
  10923. color: #D84315;
  10924. }
  10925. /* This class is the outer container of all output sections. */
  10926. div.output_area {
  10927. padding: 0px;
  10928. page-break-inside: avoid;
  10929. /* Old browsers */
  10930. display: -webkit-box;
  10931. -webkit-box-orient: horizontal;
  10932. -webkit-box-align: stretch;
  10933. display: -moz-box;
  10934. -moz-box-orient: horizontal;
  10935. -moz-box-align: stretch;
  10936. display: box;
  10937. box-orient: horizontal;
  10938. box-align: stretch;
  10939. /* Modern browsers */
  10940. display: flex;
  10941. flex-direction: row;
  10942. align-items: stretch;
  10943. }
  10944. div.output_area .MathJax_Display {
  10945. text-align: left !important;
  10946. }
  10947. div.output_area .rendered_html table {
  10948. margin-left: 0;
  10949. margin-right: 0;
  10950. }
  10951. div.output_area .rendered_html img {
  10952. margin-left: 0;
  10953. margin-right: 0;
  10954. }
  10955. div.output_area img,
  10956. div.output_area svg {
  10957. max-width: 100%;
  10958. height: auto;
  10959. }
  10960. div.output_area img.unconfined,
  10961. div.output_area svg.unconfined {
  10962. max-width: none;
  10963. }
  10964. div.output_area .mglyph > img {
  10965. max-width: none;
  10966. }
  10967. /* This is needed to protect the pre formating from global settings such
  10968. as that of bootstrap */
  10969. .output {
  10970. /* Old browsers */
  10971. display: -webkit-box;
  10972. -webkit-box-orient: vertical;
  10973. -webkit-box-align: stretch;
  10974. display: -moz-box;
  10975. -moz-box-orient: vertical;
  10976. -moz-box-align: stretch;
  10977. display: box;
  10978. box-orient: vertical;
  10979. box-align: stretch;
  10980. /* Modern browsers */
  10981. display: flex;
  10982. flex-direction: column;
  10983. align-items: stretch;
  10984. }
  10985. @media (max-width: 540px) {
  10986. div.output_area {
  10987. /* Old browsers */
  10988. display: -webkit-box;
  10989. -webkit-box-orient: vertical;
  10990. -webkit-box-align: stretch;
  10991. display: -moz-box;
  10992. -moz-box-orient: vertical;
  10993. -moz-box-align: stretch;
  10994. display: box;
  10995. box-orient: vertical;
  10996. box-align: stretch;
  10997. /* Modern browsers */
  10998. display: flex;
  10999. flex-direction: column;
  11000. align-items: stretch;
  11001. }
  11002. }
  11003. div.output_area pre {
  11004. margin: 0;
  11005. padding: 1px 0 1px 0;
  11006. border: 0;
  11007. vertical-align: baseline;
  11008. color: black;
  11009. background-color: transparent;
  11010. border-radius: 0;
  11011. }
  11012. /* This class is for the output subarea inside the output_area and after
  11013. the prompt div. */
  11014. div.output_subarea {
  11015. overflow-x: auto;
  11016. padding: 0.4em;
  11017. /* Old browsers */
  11018. -webkit-box-flex: 1;
  11019. -moz-box-flex: 1;
  11020. box-flex: 1;
  11021. /* Modern browsers */
  11022. flex: 1;
  11023. max-width: calc(100% - 14ex);
  11024. }
  11025. div.output_scroll div.output_subarea {
  11026. overflow-x: visible;
  11027. }
  11028. /* The rest of the output_* classes are for special styling of the different
  11029. output types */
  11030. /* all text output has this class: */
  11031. div.output_text {
  11032. text-align: left;
  11033. color: #000;
  11034. /* This has to match that of the the CodeMirror class line-height below */
  11035. line-height: 1.21429em;
  11036. }
  11037. /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
  11038. div.output_stderr {
  11039. background: #fdd;
  11040. /* very light red background for stderr */
  11041. }
  11042. div.output_latex {
  11043. text-align: left;
  11044. }
  11045. /* Empty output_javascript divs should have no height */
  11046. div.output_javascript:empty {
  11047. padding: 0;
  11048. }
  11049. .js-error {
  11050. color: darkred;
  11051. }
  11052. /* raw_input styles */
  11053. div.raw_input_container {
  11054. line-height: 1.21429em;
  11055. padding-top: 5px;
  11056. }
  11057. pre.raw_input_prompt {
  11058. /* nothing needed here. */
  11059. }
  11060. input.raw_input {
  11061. font-family: monospace;
  11062. font-size: inherit;
  11063. color: inherit;
  11064. width: auto;
  11065. /* make sure input baseline aligns with prompt */
  11066. vertical-align: baseline;
  11067. /* padding + margin = 0.5em between prompt and cursor */
  11068. padding: 0em 0.25em;
  11069. margin: 0em 0.25em;
  11070. }
  11071. input.raw_input:focus {
  11072. box-shadow: none;
  11073. }
  11074. p.p-space {
  11075. margin-bottom: 10px;
  11076. }
  11077. div.output_unrecognized {
  11078. padding: 5px;
  11079. font-weight: bold;
  11080. color: red;
  11081. }
  11082. div.output_unrecognized a {
  11083. color: inherit;
  11084. text-decoration: none;
  11085. }
  11086. div.output_unrecognized a:hover {
  11087. color: inherit;
  11088. text-decoration: none;
  11089. }
  11090. div.output_text[dir="rtl"] {
  11091. text-align: right;
  11092. }
  11093. .rendered_html {
  11094. color: #000;
  11095. /* any extras will just be numbers: */
  11096. }
  11097. .rendered_html em {
  11098. font-style: italic;
  11099. }
  11100. .rendered_html strong {
  11101. font-weight: bold;
  11102. }
  11103. .rendered_html u {
  11104. text-decoration: underline;
  11105. }
  11106. .rendered_html :link {
  11107. text-decoration: underline;
  11108. }
  11109. .rendered_html :visited {
  11110. text-decoration: underline;
  11111. }
  11112. .rendered_html h1 {
  11113. font-size: 185.7%;
  11114. margin: 1.08em 0 0 0;
  11115. font-weight: bold;
  11116. line-height: 1.0;
  11117. }
  11118. .rendered_html h2 {
  11119. font-size: 157.1%;
  11120. margin: 1.27em 0 0 0;
  11121. font-weight: bold;
  11122. line-height: 1.0;
  11123. }
  11124. .rendered_html h3 {
  11125. font-size: 128.6%;
  11126. margin: 1.55em 0 0 0;
  11127. font-weight: bold;
  11128. line-height: 1.0;
  11129. }
  11130. .rendered_html h4 {
  11131. font-size: 100%;
  11132. margin: 2em 0 0 0;
  11133. font-weight: bold;
  11134. line-height: 1.0;
  11135. }
  11136. .rendered_html h5 {
  11137. font-size: 100%;
  11138. margin: 2em 0 0 0;
  11139. font-weight: bold;
  11140. line-height: 1.0;
  11141. font-style: italic;
  11142. }
  11143. .rendered_html h6 {
  11144. font-size: 100%;
  11145. margin: 2em 0 0 0;
  11146. font-weight: bold;
  11147. line-height: 1.0;
  11148. font-style: italic;
  11149. }
  11150. .rendered_html h1:first-child {
  11151. margin-top: 0.538em;
  11152. }
  11153. .rendered_html h2:first-child {
  11154. margin-top: 0.636em;
  11155. }
  11156. .rendered_html h3:first-child {
  11157. margin-top: 0.777em;
  11158. }
  11159. .rendered_html h4:first-child {
  11160. margin-top: 1em;
  11161. }
  11162. .rendered_html h5:first-child {
  11163. margin-top: 1em;
  11164. }
  11165. .rendered_html h6:first-child {
  11166. margin-top: 1em;
  11167. }
  11168. .rendered_html ul:not(.list-inline),
  11169. .rendered_html ol:not(.list-inline) {
  11170. padding-left: 2em;
  11171. }
  11172. .rendered_html ul {
  11173. list-style: disc;
  11174. }
  11175. .rendered_html ul ul {
  11176. list-style: square;
  11177. margin-top: 0;
  11178. }
  11179. .rendered_html ul ul ul {
  11180. list-style: circle;
  11181. }
  11182. .rendered_html ol {
  11183. list-style: decimal;
  11184. }
  11185. .rendered_html ol ol {
  11186. list-style: upper-alpha;
  11187. margin-top: 0;
  11188. }
  11189. .rendered_html ol ol ol {
  11190. list-style: lower-alpha;
  11191. }
  11192. .rendered_html ol ol ol ol {
  11193. list-style: lower-roman;
  11194. }
  11195. .rendered_html ol ol ol ol ol {
  11196. list-style: decimal;
  11197. }
  11198. .rendered_html * + ul {
  11199. margin-top: 1em;
  11200. }
  11201. .rendered_html * + ol {
  11202. margin-top: 1em;
  11203. }
  11204. .rendered_html hr {
  11205. color: black;
  11206. background-color: black;
  11207. }
  11208. .rendered_html pre {
  11209. margin: 1em 2em;
  11210. padding: 0px;
  11211. background-color: #fff;
  11212. }
  11213. .rendered_html code {
  11214. background-color: #eff0f1;
  11215. }
  11216. .rendered_html p code {
  11217. padding: 1px 5px;
  11218. }
  11219. .rendered_html pre code {
  11220. background-color: #fff;
  11221. }
  11222. .rendered_html pre,
  11223. .rendered_html code {
  11224. border: 0;
  11225. color: #000;
  11226. font-size: 100%;
  11227. }
  11228. .rendered_html blockquote {
  11229. margin: 1em 2em;
  11230. }
  11231. .rendered_html table {
  11232. margin-left: auto;
  11233. margin-right: auto;
  11234. border: none;
  11235. border-collapse: collapse;
  11236. border-spacing: 0;
  11237. color: black;
  11238. font-size: 12px;
  11239. table-layout: fixed;
  11240. }
  11241. .rendered_html thead {
  11242. border-bottom: 1px solid black;
  11243. vertical-align: bottom;
  11244. }
  11245. .rendered_html tr,
  11246. .rendered_html th,
  11247. .rendered_html td {
  11248. text-align: right;
  11249. vertical-align: middle;
  11250. padding: 0.5em 0.5em;
  11251. line-height: normal;
  11252. white-space: normal;
  11253. max-width: none;
  11254. border: none;
  11255. }
  11256. .rendered_html th {
  11257. font-weight: bold;
  11258. }
  11259. .rendered_html tbody tr:nth-child(odd) {
  11260. background: #f5f5f5;
  11261. }
  11262. .rendered_html tbody tr:hover {
  11263. background: rgba(66, 165, 245, 0.2);
  11264. }
  11265. .rendered_html * + table {
  11266. margin-top: 1em;
  11267. }
  11268. .rendered_html p {
  11269. text-align: left;
  11270. }
  11271. .rendered_html * + p {
  11272. margin-top: 1em;
  11273. }
  11274. .rendered_html img {
  11275. display: block;
  11276. margin-left: auto;
  11277. margin-right: auto;
  11278. }
  11279. .rendered_html * + img {
  11280. margin-top: 1em;
  11281. }
  11282. .rendered_html img,
  11283. .rendered_html svg {
  11284. max-width: 100%;
  11285. height: auto;
  11286. }
  11287. .rendered_html img.unconfined,
  11288. .rendered_html svg.unconfined {
  11289. max-width: none;
  11290. }
  11291. .rendered_html .alert {
  11292. margin-bottom: initial;
  11293. }
  11294. .rendered_html * + .alert {
  11295. margin-top: 1em;
  11296. }
  11297. [dir="rtl"] .rendered_html:not([dir="ltr"]) p,
  11298. .rendered_html[dir="rtl"] p {
  11299. text-align: right;
  11300. }
  11301. div.text_cell {
  11302. /* Old browsers */
  11303. display: -webkit-box;
  11304. -webkit-box-orient: horizontal;
  11305. -webkit-box-align: stretch;
  11306. display: -moz-box;
  11307. -moz-box-orient: horizontal;
  11308. -moz-box-align: stretch;
  11309. display: box;
  11310. box-orient: horizontal;
  11311. box-align: stretch;
  11312. /* Modern browsers */
  11313. display: flex;
  11314. flex-direction: row;
  11315. align-items: stretch;
  11316. }
  11317. @media (max-width: 540px) {
  11318. div.text_cell > div.prompt {
  11319. display: none;
  11320. }
  11321. }
  11322. div.text_cell_render {
  11323. /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
  11324. outline: none;
  11325. resize: none;
  11326. width: inherit;
  11327. border-style: none;
  11328. padding: 0.5em 0.5em 0.5em 0.4em;
  11329. color: #000;
  11330. box-sizing: border-box;
  11331. -moz-box-sizing: border-box;
  11332. -webkit-box-sizing: border-box;
  11333. }
  11334. a.anchor-link:link {
  11335. text-decoration: none;
  11336. padding: 0px 20px;
  11337. visibility: hidden;
  11338. }
  11339. h1:hover .anchor-link,
  11340. h2:hover .anchor-link,
  11341. h3:hover .anchor-link,
  11342. h4:hover .anchor-link,
  11343. h5:hover .anchor-link,
  11344. h6:hover .anchor-link {
  11345. visibility: visible;
  11346. }
  11347. .text_cell.rendered .input_area {
  11348. display: none;
  11349. }
  11350. .text_cell.rendered .rendered_html {
  11351. overflow-x: auto;
  11352. overflow-y: hidden;
  11353. }
  11354. .text_cell.rendered .rendered_html tr,
  11355. .text_cell.rendered .rendered_html th,
  11356. .text_cell.rendered .rendered_html td {
  11357. max-width: none;
  11358. }
  11359. .text_cell.unrendered .text_cell_render {
  11360. display: none;
  11361. }
  11362. .text_cell .dropzone .input_area {
  11363. border: 2px dashed #bababa;
  11364. margin: -1px;
  11365. }
  11366. .cm-header-1,
  11367. .cm-header-2,
  11368. .cm-header-3,
  11369. .cm-header-4,
  11370. .cm-header-5,
  11371. .cm-header-6 {
  11372. font-weight: bold;
  11373. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  11374. }
  11375. .cm-header-1 {
  11376. font-size: 185.7%;
  11377. }
  11378. .cm-header-2 {
  11379. font-size: 157.1%;
  11380. }
  11381. .cm-header-3 {
  11382. font-size: 128.6%;
  11383. }
  11384. .cm-header-4 {
  11385. font-size: 110%;
  11386. }
  11387. .cm-header-5 {
  11388. font-size: 100%;
  11389. font-style: italic;
  11390. }
  11391. .cm-header-6 {
  11392. font-size: 100%;
  11393. font-style: italic;
  11394. }
  11395. /*!
  11396. *
  11397. * IPython notebook webapp
  11398. *
  11399. */
  11400. @media (max-width: 767px) {
  11401. .notebook_app {
  11402. padding-left: 0px;
  11403. padding-right: 0px;
  11404. }
  11405. }
  11406. #ipython-main-app {
  11407. box-sizing: border-box;
  11408. -moz-box-sizing: border-box;
  11409. -webkit-box-sizing: border-box;
  11410. height: 100%;
  11411. }
  11412. div#notebook_panel {
  11413. margin: 0px;
  11414. padding: 0px;
  11415. box-sizing: border-box;
  11416. -moz-box-sizing: border-box;
  11417. -webkit-box-sizing: border-box;
  11418. height: 100%;
  11419. }
  11420. div#notebook {
  11421. font-size: 14px;
  11422. line-height: 20px;
  11423. overflow-y: hidden;
  11424. overflow-x: auto;
  11425. width: 100%;
  11426. /* This spaces the page away from the edge of the notebook area */
  11427. padding-top: 20px;
  11428. padding-bottom: 20px;
  11429. margin: 0px;
  11430. outline: none;
  11431. box-sizing: border-box;
  11432. -moz-box-sizing: border-box;
  11433. -webkit-box-sizing: border-box;
  11434. min-height: 100%;
  11435. }
  11436. @media not print {
  11437. #notebook-container {
  11438. padding: 15px;
  11439. background-color: #fff;
  11440. min-height: 0;
  11441. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11442. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11443. }
  11444. }
  11445. @media print {
  11446. #notebook-container {
  11447. width: 100%;
  11448. }
  11449. }
  11450. div.ui-widget-content {
  11451. border: 1px solid #ababab;
  11452. outline: none;
  11453. }
  11454. pre.dialog {
  11455. background-color: #f7f7f7;
  11456. border: 1px solid #ddd;
  11457. border-radius: 2px;
  11458. padding: 0.4em;
  11459. padding-left: 2em;
  11460. }
  11461. p.dialog {
  11462. padding: 0.2em;
  11463. }
  11464. /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
  11465. to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
  11466. */
  11467. pre,
  11468. code,
  11469. kbd,
  11470. samp {
  11471. white-space: pre-wrap;
  11472. }
  11473. #fonttest {
  11474. font-family: monospace;
  11475. }
  11476. p {
  11477. margin-bottom: 0;
  11478. }
  11479. .end_space {
  11480. min-height: 100px;
  11481. transition: height .2s ease;
  11482. }
  11483. .notebook_app > #header {
  11484. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11485. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11486. }
  11487. @media not print {
  11488. .notebook_app {
  11489. background-color: #EEE;
  11490. }
  11491. }
  11492. kbd {
  11493. border-style: solid;
  11494. border-width: 1px;
  11495. box-shadow: none;
  11496. margin: 2px;
  11497. padding-left: 2px;
  11498. padding-right: 2px;
  11499. padding-top: 1px;
  11500. padding-bottom: 1px;
  11501. }
  11502. .jupyter-keybindings {
  11503. padding: 1px;
  11504. line-height: 24px;
  11505. border-bottom: 1px solid gray;
  11506. }
  11507. .jupyter-keybindings input {
  11508. margin: 0;
  11509. padding: 0;
  11510. border: none;
  11511. }
  11512. .jupyter-keybindings i {
  11513. padding: 6px;
  11514. }
  11515. .well code {
  11516. background-color: #ffffff;
  11517. border-color: #ababab;
  11518. border-width: 1px;
  11519. border-style: solid;
  11520. padding: 2px;
  11521. padding-top: 1px;
  11522. padding-bottom: 1px;
  11523. }
  11524. /* CSS for the cell toolbar */
  11525. .celltoolbar {
  11526. border: thin solid #CFCFCF;
  11527. border-bottom: none;
  11528. background: #EEE;
  11529. border-radius: 2px 2px 0px 0px;
  11530. width: 100%;
  11531. height: 29px;
  11532. padding-right: 4px;
  11533. /* Old browsers */
  11534. display: -webkit-box;
  11535. -webkit-box-orient: horizontal;
  11536. -webkit-box-align: stretch;
  11537. display: -moz-box;
  11538. -moz-box-orient: horizontal;
  11539. -moz-box-align: stretch;
  11540. display: box;
  11541. box-orient: horizontal;
  11542. box-align: stretch;
  11543. /* Modern browsers */
  11544. display: flex;
  11545. flex-direction: row;
  11546. align-items: stretch;
  11547. /* Old browsers */
  11548. -webkit-box-pack: end;
  11549. -moz-box-pack: end;
  11550. box-pack: end;
  11551. /* Modern browsers */
  11552. justify-content: flex-end;
  11553. display: -webkit-flex;
  11554. }
  11555. @media print {
  11556. .celltoolbar {
  11557. display: none;
  11558. }
  11559. }
  11560. .ctb_hideshow {
  11561. display: none;
  11562. vertical-align: bottom;
  11563. }
  11564. /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
  11565. Cell toolbars are only shown when the ctb_global_show class is also set.
  11566. */
  11567. .ctb_global_show .ctb_show.ctb_hideshow {
  11568. display: block;
  11569. }
  11570. .ctb_global_show .ctb_show + .input_area,
  11571. .ctb_global_show .ctb_show + div.text_cell_input,
  11572. .ctb_global_show .ctb_show ~ div.text_cell_render {
  11573. border-top-right-radius: 0px;
  11574. border-top-left-radius: 0px;
  11575. }
  11576. .ctb_global_show .ctb_show ~ div.text_cell_render {
  11577. border: 1px solid #cfcfcf;
  11578. }
  11579. .celltoolbar {
  11580. font-size: 87%;
  11581. padding-top: 3px;
  11582. }
  11583. .celltoolbar select {
  11584. display: block;
  11585. width: 100%;
  11586. height: 32px;
  11587. padding: 6px 12px;
  11588. font-size: 13px;
  11589. line-height: 1.42857143;
  11590. color: #555555;
  11591. background-color: #fff;
  11592. background-image: none;
  11593. border: 1px solid #ccc;
  11594. border-radius: 2px;
  11595. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11596. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11597. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11598. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11599. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11600. height: 30px;
  11601. padding: 5px 10px;
  11602. font-size: 12px;
  11603. line-height: 1.5;
  11604. border-radius: 1px;
  11605. width: inherit;
  11606. font-size: inherit;
  11607. height: 22px;
  11608. padding: 0px;
  11609. display: inline-block;
  11610. }
  11611. .celltoolbar select:focus {
  11612. border-color: #66afe9;
  11613. outline: 0;
  11614. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  11615. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  11616. }
  11617. .celltoolbar select::-moz-placeholder {
  11618. color: #999;
  11619. opacity: 1;
  11620. }
  11621. .celltoolbar select:-ms-input-placeholder {
  11622. color: #999;
  11623. }
  11624. .celltoolbar select::-webkit-input-placeholder {
  11625. color: #999;
  11626. }
  11627. .celltoolbar select::-ms-expand {
  11628. background-color: transparent;
  11629. border: 0;
  11630. }
  11631. .celltoolbar select[disabled],
  11632. .celltoolbar select[readonly],
  11633. fieldset[disabled] .celltoolbar select {
  11634. background-color: #eeeeee;
  11635. opacity: 1;
  11636. }
  11637. .celltoolbar select[disabled],
  11638. fieldset[disabled] .celltoolbar select {
  11639. cursor: not-allowed;
  11640. }
  11641. textarea.celltoolbar select {
  11642. height: auto;
  11643. }
  11644. select.celltoolbar select {
  11645. height: 30px;
  11646. line-height: 30px;
  11647. }
  11648. textarea.celltoolbar select,
  11649. select[multiple].celltoolbar select {
  11650. height: auto;
  11651. }
  11652. .celltoolbar label {
  11653. margin-left: 5px;
  11654. margin-right: 5px;
  11655. }
  11656. .tags_button_container {
  11657. width: 100%;
  11658. display: flex;
  11659. }
  11660. .tag-container {
  11661. display: flex;
  11662. flex-direction: row;
  11663. flex-grow: 1;
  11664. overflow: hidden;
  11665. position: relative;
  11666. }
  11667. .tag-container > * {
  11668. margin: 0 4px;
  11669. }
  11670. .remove-tag-btn {
  11671. margin-left: 4px;
  11672. }
  11673. .tags-input {
  11674. display: flex;
  11675. }
  11676. .cell-tag:last-child:after {
  11677. content: "";
  11678. position: absolute;
  11679. right: 0;
  11680. width: 40px;
  11681. height: 100%;
  11682. /* Fade to background color of cell toolbar */
  11683. background: linear-gradient(to right, rgba(0, 0, 0, 0), #EEE);
  11684. }
  11685. .tags-input > * {
  11686. margin-left: 4px;
  11687. }
  11688. .cell-tag,
  11689. .tags-input input,
  11690. .tags-input button {
  11691. display: block;
  11692. width: 100%;
  11693. height: 32px;
  11694. padding: 6px 12px;
  11695. font-size: 13px;
  11696. line-height: 1.42857143;
  11697. color: #555555;
  11698. background-color: #fff;
  11699. background-image: none;
  11700. border: 1px solid #ccc;
  11701. border-radius: 2px;
  11702. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11703. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  11704. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11705. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11706. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  11707. height: 30px;
  11708. padding: 5px 10px;
  11709. font-size: 12px;
  11710. line-height: 1.5;
  11711. border-radius: 1px;
  11712. box-shadow: none;
  11713. width: inherit;
  11714. font-size: inherit;
  11715. height: 22px;
  11716. line-height: 22px;
  11717. padding: 0px 4px;
  11718. display: inline-block;
  11719. }
  11720. .cell-tag:focus,
  11721. .tags-input input:focus,
  11722. .tags-input button:focus {
  11723. border-color: #66afe9;
  11724. outline: 0;
  11725. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  11726. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
  11727. }
  11728. .cell-tag::-moz-placeholder,
  11729. .tags-input input::-moz-placeholder,
  11730. .tags-input button::-moz-placeholder {
  11731. color: #999;
  11732. opacity: 1;
  11733. }
  11734. .cell-tag:-ms-input-placeholder,
  11735. .tags-input input:-ms-input-placeholder,
  11736. .tags-input button:-ms-input-placeholder {
  11737. color: #999;
  11738. }
  11739. .cell-tag::-webkit-input-placeholder,
  11740. .tags-input input::-webkit-input-placeholder,
  11741. .tags-input button::-webkit-input-placeholder {
  11742. color: #999;
  11743. }
  11744. .cell-tag::-ms-expand,
  11745. .tags-input input::-ms-expand,
  11746. .tags-input button::-ms-expand {
  11747. background-color: transparent;
  11748. border: 0;
  11749. }
  11750. .cell-tag[disabled],
  11751. .tags-input input[disabled],
  11752. .tags-input button[disabled],
  11753. .cell-tag[readonly],
  11754. .tags-input input[readonly],
  11755. .tags-input button[readonly],
  11756. fieldset[disabled] .cell-tag,
  11757. fieldset[disabled] .tags-input input,
  11758. fieldset[disabled] .tags-input button {
  11759. background-color: #eeeeee;
  11760. opacity: 1;
  11761. }
  11762. .cell-tag[disabled],
  11763. .tags-input input[disabled],
  11764. .tags-input button[disabled],
  11765. fieldset[disabled] .cell-tag,
  11766. fieldset[disabled] .tags-input input,
  11767. fieldset[disabled] .tags-input button {
  11768. cursor: not-allowed;
  11769. }
  11770. textarea.cell-tag,
  11771. textarea.tags-input input,
  11772. textarea.tags-input button {
  11773. height: auto;
  11774. }
  11775. select.cell-tag,
  11776. select.tags-input input,
  11777. select.tags-input button {
  11778. height: 30px;
  11779. line-height: 30px;
  11780. }
  11781. textarea.cell-tag,
  11782. textarea.tags-input input,
  11783. textarea.tags-input button,
  11784. select[multiple].cell-tag,
  11785. select[multiple].tags-input input,
  11786. select[multiple].tags-input button {
  11787. height: auto;
  11788. }
  11789. .cell-tag,
  11790. .tags-input button {
  11791. padding: 0px 4px;
  11792. }
  11793. .cell-tag {
  11794. background-color: #fff;
  11795. white-space: nowrap;
  11796. }
  11797. .tags-input input[type=text]:focus {
  11798. outline: none;
  11799. box-shadow: none;
  11800. border-color: #ccc;
  11801. }
  11802. .completions {
  11803. position: absolute;
  11804. z-index: 110;
  11805. overflow: hidden;
  11806. border: 1px solid #ababab;
  11807. border-radius: 2px;
  11808. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  11809. box-shadow: 0px 6px 10px -1px #adadad;
  11810. line-height: 1;
  11811. }
  11812. .completions select {
  11813. background: white;
  11814. outline: none;
  11815. border: none;
  11816. padding: 0px;
  11817. margin: 0px;
  11818. overflow: auto;
  11819. font-family: monospace;
  11820. font-size: 110%;
  11821. color: #000;
  11822. width: auto;
  11823. }
  11824. .completions select option.context {
  11825. color: #286090;
  11826. }
  11827. #kernel_logo_widget .current_kernel_logo {
  11828. display: none;
  11829. margin-top: -1px;
  11830. margin-bottom: -1px;
  11831. width: 32px;
  11832. height: 32px;
  11833. }
  11834. [dir="rtl"] #kernel_logo_widget {
  11835. float: left !important;
  11836. float: left;
  11837. }
  11838. .modal .modal-body .move-path {
  11839. display: flex;
  11840. flex-direction: row;
  11841. justify-content: space;
  11842. align-items: center;
  11843. }
  11844. .modal .modal-body .move-path .server-root {
  11845. padding-right: 20px;
  11846. }
  11847. .modal .modal-body .move-path .path-input {
  11848. flex: 1;
  11849. }
  11850. #menubar {
  11851. box-sizing: border-box;
  11852. -moz-box-sizing: border-box;
  11853. -webkit-box-sizing: border-box;
  11854. margin-top: 1px;
  11855. }
  11856. #menubar .navbar {
  11857. border-top: 1px;
  11858. border-radius: 0px 0px 2px 2px;
  11859. margin-bottom: 0px;
  11860. }
  11861. #menubar .navbar-toggle {
  11862. float: left;
  11863. padding-top: 7px;
  11864. padding-bottom: 7px;
  11865. border: none;
  11866. }
  11867. #menubar .navbar-collapse {
  11868. clear: left;
  11869. }
  11870. [dir="rtl"] #menubar .navbar-toggle {
  11871. float: right;
  11872. }
  11873. [dir="rtl"] #menubar .navbar-collapse {
  11874. clear: right;
  11875. }
  11876. [dir="rtl"] #menubar .navbar-nav {
  11877. float: right;
  11878. }
  11879. [dir="rtl"] #menubar .nav {
  11880. padding-right: 0px;
  11881. }
  11882. [dir="rtl"] #menubar .navbar-nav > li {
  11883. float: right;
  11884. }
  11885. [dir="rtl"] #menubar .navbar-right {
  11886. float: left !important;
  11887. }
  11888. ul.dropdown-menu:focus [dir="rtl"] ul.dropdown-menu {
  11889. text-align: right;
  11890. left: auto;
  11891. }
  11892. [dir="rtl"] ul#new-menu.dropdown-menu {
  11893. right: auto;
  11894. left: 0;
  11895. }
  11896. .nav-wrapper {
  11897. border-bottom: 1px solid #e7e7e7;
  11898. }
  11899. i.menu-icon {
  11900. padding-top: 4px;
  11901. }
  11902. [dir="rtl"] i.menu-icon.pull-right {
  11903. float: left !important;
  11904. float: left;
  11905. }
  11906. ul.dropdown-menu li a.menu-shortcut-container {
  11907. display: flex;
  11908. flex-direction: row;
  11909. justify-content: space-between;
  11910. align-items: flex-end;
  11911. }
  11912. ul#help_menu li a {
  11913. overflow: hidden;
  11914. padding-right: 2.2em;
  11915. }
  11916. ul#help_menu li a i {
  11917. margin-right: -1.2em;
  11918. }
  11919. [dir="rtl"] ul#help_menu li a {
  11920. padding-left: 2.2em;
  11921. }
  11922. [dir="rtl"] ul#help_menu li a i {
  11923. margin-right: 0;
  11924. margin-left: -1.2em;
  11925. }
  11926. [dir="rtl"] ul#help_menu li a i.pull-right {
  11927. float: left !important;
  11928. float: left;
  11929. }
  11930. .dropdown-submenu {
  11931. position: relative;
  11932. }
  11933. .dropdown-submenu > .dropdown-menu {
  11934. top: 0;
  11935. left: 100%;
  11936. margin-top: -6px;
  11937. margin-left: -1px;
  11938. }
  11939. [dir="rtl"] .dropdown-submenu > .dropdown-menu {
  11940. right: 100%;
  11941. margin-right: -1px;
  11942. }
  11943. .dropdown-submenu:hover > .dropdown-menu {
  11944. display: block;
  11945. }
  11946. .dropdown-submenu > a:after {
  11947. display: inline-block;
  11948. font: normal normal normal 14px/1 FontAwesome;
  11949. font-size: inherit;
  11950. text-rendering: auto;
  11951. -webkit-font-smoothing: antialiased;
  11952. -moz-osx-font-smoothing: grayscale;
  11953. display: block;
  11954. content: "\f0da";
  11955. float: right;
  11956. color: #333333;
  11957. margin-top: 2px;
  11958. margin-right: -10px;
  11959. }
  11960. .dropdown-submenu > a:after.fa-pull-left {
  11961. margin-right: .3em;
  11962. }
  11963. .dropdown-submenu > a:after.fa-pull-right {
  11964. margin-left: .3em;
  11965. }
  11966. .dropdown-submenu > a:after.pull-left {
  11967. margin-right: .3em;
  11968. }
  11969. .dropdown-submenu > a:after.pull-right {
  11970. margin-left: .3em;
  11971. }
  11972. [dir="rtl"] .dropdown-submenu > a:after {
  11973. float: left;
  11974. content: "\f0d9";
  11975. margin-right: 0;
  11976. margin-left: -10px;
  11977. }
  11978. .dropdown-submenu:hover > a:after {
  11979. color: #262626;
  11980. }
  11981. .dropdown-submenu.pull-left {
  11982. float: none;
  11983. }
  11984. .dropdown-submenu.pull-left > .dropdown-menu {
  11985. left: -100%;
  11986. margin-left: 10px;
  11987. }
  11988. .kb {
  11989. color: darkgray;
  11990. margin-left: 10px;
  11991. text-transform: capitalize;
  11992. }
  11993. .kb kbd {
  11994. white-space: nowrap;
  11995. }
  11996. #notification_area {
  11997. float: right !important;
  11998. float: right;
  11999. z-index: 10;
  12000. }
  12001. [dir="rtl"] #notification_area {
  12002. float: left !important;
  12003. float: left;
  12004. }
  12005. .indicator_area {
  12006. float: right !important;
  12007. float: right;
  12008. color: #565656;
  12009. margin-left: 5px;
  12010. margin-right: 5px;
  12011. width: 11px;
  12012. z-index: 10;
  12013. text-align: center;
  12014. width: auto;
  12015. }
  12016. [dir="rtl"] .indicator_area {
  12017. float: left !important;
  12018. float: left;
  12019. }
  12020. #kernel_indicator {
  12021. float: right !important;
  12022. float: right;
  12023. color: #565656;
  12024. margin-left: 5px;
  12025. margin-right: 5px;
  12026. width: 11px;
  12027. z-index: 10;
  12028. text-align: center;
  12029. width: auto;
  12030. border-left: 1px solid;
  12031. }
  12032. #kernel_indicator .kernel_indicator_name {
  12033. padding-left: 5px;
  12034. padding-right: 5px;
  12035. color: #102930;
  12036. }
  12037. [dir="rtl"] #kernel_indicator {
  12038. float: left !important;
  12039. float: left;
  12040. border-left: 0;
  12041. border-right: 1px solid;
  12042. }
  12043. #modal_indicator {
  12044. float: right !important;
  12045. float: right;
  12046. color: #565656;
  12047. margin-left: 5px;
  12048. margin-right: 5px;
  12049. width: 11px;
  12050. z-index: 10;
  12051. text-align: center;
  12052. width: auto;
  12053. }
  12054. [dir="rtl"] #modal_indicator {
  12055. float: left !important;
  12056. float: left;
  12057. }
  12058. #readonly-indicator {
  12059. float: right !important;
  12060. float: right;
  12061. color: #565656;
  12062. margin-left: 5px;
  12063. margin-right: 5px;
  12064. width: 11px;
  12065. z-index: 10;
  12066. text-align: center;
  12067. width: auto;
  12068. margin-top: 2px;
  12069. margin-bottom: 0px;
  12070. margin-left: 0px;
  12071. margin-right: 0px;
  12072. display: none;
  12073. }
  12074. .modal_indicator:before {
  12075. width: 1.28571429em;
  12076. text-align: center;
  12077. }
  12078. .edit_mode .modal_indicator:before {
  12079. display: inline-block;
  12080. font: normal normal normal 14px/1 FontAwesome;
  12081. font-size: inherit;
  12082. text-rendering: auto;
  12083. -webkit-font-smoothing: antialiased;
  12084. -moz-osx-font-smoothing: grayscale;
  12085. content: "\f040";
  12086. }
  12087. .edit_mode .modal_indicator:before.fa-pull-left {
  12088. margin-right: .3em;
  12089. }
  12090. .edit_mode .modal_indicator:before.fa-pull-right {
  12091. margin-left: .3em;
  12092. }
  12093. .edit_mode .modal_indicator:before.pull-left {
  12094. margin-right: .3em;
  12095. }
  12096. .edit_mode .modal_indicator:before.pull-right {
  12097. margin-left: .3em;
  12098. }
  12099. .command_mode .modal_indicator:before {
  12100. display: inline-block;
  12101. font: normal normal normal 14px/1 FontAwesome;
  12102. font-size: inherit;
  12103. text-rendering: auto;
  12104. -webkit-font-smoothing: antialiased;
  12105. -moz-osx-font-smoothing: grayscale;
  12106. content: ' ';
  12107. }
  12108. .command_mode .modal_indicator:before.fa-pull-left {
  12109. margin-right: .3em;
  12110. }
  12111. .command_mode .modal_indicator:before.fa-pull-right {
  12112. margin-left: .3em;
  12113. }
  12114. .command_mode .modal_indicator:before.pull-left {
  12115. margin-right: .3em;
  12116. }
  12117. .command_mode .modal_indicator:before.pull-right {
  12118. margin-left: .3em;
  12119. }
  12120. .kernel_idle_icon:before {
  12121. display: inline-block;
  12122. font: normal normal normal 14px/1 FontAwesome;
  12123. font-size: inherit;
  12124. text-rendering: auto;
  12125. -webkit-font-smoothing: antialiased;
  12126. -moz-osx-font-smoothing: grayscale;
  12127. content: "\f10c";
  12128. }
  12129. .kernel_idle_icon:before.fa-pull-left {
  12130. margin-right: .3em;
  12131. }
  12132. .kernel_idle_icon:before.fa-pull-right {
  12133. margin-left: .3em;
  12134. }
  12135. .kernel_idle_icon:before.pull-left {
  12136. margin-right: .3em;
  12137. }
  12138. .kernel_idle_icon:before.pull-right {
  12139. margin-left: .3em;
  12140. }
  12141. .kernel_busy_icon:before {
  12142. display: inline-block;
  12143. font: normal normal normal 14px/1 FontAwesome;
  12144. font-size: inherit;
  12145. text-rendering: auto;
  12146. -webkit-font-smoothing: antialiased;
  12147. -moz-osx-font-smoothing: grayscale;
  12148. content: "\f111";
  12149. }
  12150. .kernel_busy_icon:before.fa-pull-left {
  12151. margin-right: .3em;
  12152. }
  12153. .kernel_busy_icon:before.fa-pull-right {
  12154. margin-left: .3em;
  12155. }
  12156. .kernel_busy_icon:before.pull-left {
  12157. margin-right: .3em;
  12158. }
  12159. .kernel_busy_icon:before.pull-right {
  12160. margin-left: .3em;
  12161. }
  12162. .kernel_dead_icon:before {
  12163. display: inline-block;
  12164. font: normal normal normal 14px/1 FontAwesome;
  12165. font-size: inherit;
  12166. text-rendering: auto;
  12167. -webkit-font-smoothing: antialiased;
  12168. -moz-osx-font-smoothing: grayscale;
  12169. content: "\f1e2";
  12170. }
  12171. .kernel_dead_icon:before.fa-pull-left {
  12172. margin-right: .3em;
  12173. }
  12174. .kernel_dead_icon:before.fa-pull-right {
  12175. margin-left: .3em;
  12176. }
  12177. .kernel_dead_icon:before.pull-left {
  12178. margin-right: .3em;
  12179. }
  12180. .kernel_dead_icon:before.pull-right {
  12181. margin-left: .3em;
  12182. }
  12183. .kernel_disconnected_icon:before {
  12184. display: inline-block;
  12185. font: normal normal normal 14px/1 FontAwesome;
  12186. font-size: inherit;
  12187. text-rendering: auto;
  12188. -webkit-font-smoothing: antialiased;
  12189. -moz-osx-font-smoothing: grayscale;
  12190. content: "\f127";
  12191. }
  12192. .kernel_disconnected_icon:before.fa-pull-left {
  12193. margin-right: .3em;
  12194. }
  12195. .kernel_disconnected_icon:before.fa-pull-right {
  12196. margin-left: .3em;
  12197. }
  12198. .kernel_disconnected_icon:before.pull-left {
  12199. margin-right: .3em;
  12200. }
  12201. .kernel_disconnected_icon:before.pull-right {
  12202. margin-left: .3em;
  12203. }
  12204. .notification_widget {
  12205. color: #565656;
  12206. z-index: 10;
  12207. background: rgba(240, 240, 240, 0.5);
  12208. margin-right: 4px;
  12209. color: #333;
  12210. background-color: #fff;
  12211. border-color: #ccc;
  12212. }
  12213. .notification_widget:focus,
  12214. .notification_widget.focus {
  12215. color: #333;
  12216. background-color: #e6e6e6;
  12217. border-color: #8c8c8c;
  12218. }
  12219. .notification_widget:hover {
  12220. color: #333;
  12221. background-color: #e6e6e6;
  12222. border-color: #adadad;
  12223. }
  12224. .notification_widget:active,
  12225. .notification_widget.active,
  12226. .open > .dropdown-toggle.notification_widget {
  12227. color: #333;
  12228. background-color: #e6e6e6;
  12229. background-image: none;
  12230. border-color: #adadad;
  12231. }
  12232. .notification_widget:active:hover,
  12233. .notification_widget.active:hover,
  12234. .open > .dropdown-toggle.notification_widget:hover,
  12235. .notification_widget:active:focus,
  12236. .notification_widget.active:focus,
  12237. .open > .dropdown-toggle.notification_widget:focus,
  12238. .notification_widget:active.focus,
  12239. .notification_widget.active.focus,
  12240. .open > .dropdown-toggle.notification_widget.focus {
  12241. color: #333;
  12242. background-color: #d4d4d4;
  12243. border-color: #8c8c8c;
  12244. }
  12245. .notification_widget.disabled:hover,
  12246. .notification_widget[disabled]:hover,
  12247. fieldset[disabled] .notification_widget:hover,
  12248. .notification_widget.disabled:focus,
  12249. .notification_widget[disabled]:focus,
  12250. fieldset[disabled] .notification_widget:focus,
  12251. .notification_widget.disabled.focus,
  12252. .notification_widget[disabled].focus,
  12253. fieldset[disabled] .notification_widget.focus {
  12254. background-color: #fff;
  12255. border-color: #ccc;
  12256. }
  12257. .notification_widget .badge {
  12258. color: #fff;
  12259. background-color: #333;
  12260. }
  12261. .notification_widget.warning {
  12262. color: #fff;
  12263. background-color: #f0ad4e;
  12264. border-color: #eea236;
  12265. color: #ffffff;
  12266. background-color: #b46102;
  12267. border-color: #b46102;
  12268. }
  12269. .notification_widget.warning:focus,
  12270. .notification_widget.warning.focus {
  12271. color: #fff;
  12272. background-color: #ec971f;
  12273. border-color: #985f0d;
  12274. }
  12275. .notification_widget.warning:hover {
  12276. color: #fff;
  12277. background-color: #ec971f;
  12278. border-color: #d58512;
  12279. }
  12280. .notification_widget.warning:active,
  12281. .notification_widget.warning.active,
  12282. .open > .dropdown-toggle.notification_widget.warning {
  12283. color: #fff;
  12284. background-color: #ec971f;
  12285. background-image: none;
  12286. border-color: #d58512;
  12287. }
  12288. .notification_widget.warning:active:hover,
  12289. .notification_widget.warning.active:hover,
  12290. .open > .dropdown-toggle.notification_widget.warning:hover,
  12291. .notification_widget.warning:active:focus,
  12292. .notification_widget.warning.active:focus,
  12293. .open > .dropdown-toggle.notification_widget.warning:focus,
  12294. .notification_widget.warning:active.focus,
  12295. .notification_widget.warning.active.focus,
  12296. .open > .dropdown-toggle.notification_widget.warning.focus {
  12297. color: #fff;
  12298. background-color: #d58512;
  12299. border-color: #985f0d;
  12300. }
  12301. .notification_widget.warning.disabled:hover,
  12302. .notification_widget.warning[disabled]:hover,
  12303. fieldset[disabled] .notification_widget.warning:hover,
  12304. .notification_widget.warning.disabled:focus,
  12305. .notification_widget.warning[disabled]:focus,
  12306. fieldset[disabled] .notification_widget.warning:focus,
  12307. .notification_widget.warning.disabled.focus,
  12308. .notification_widget.warning[disabled].focus,
  12309. fieldset[disabled] .notification_widget.warning.focus {
  12310. background-color: #f0ad4e;
  12311. border-color: #eea236;
  12312. }
  12313. .notification_widget.warning .badge {
  12314. color: #f0ad4e;
  12315. background-color: #fff;
  12316. }
  12317. .notification_widget.success {
  12318. color: #fff;
  12319. background-color: #5cb85c;
  12320. border-color: #4cae4c;
  12321. }
  12322. .notification_widget.success:focus,
  12323. .notification_widget.success.focus {
  12324. color: #fff;
  12325. background-color: #449d44;
  12326. border-color: #255625;
  12327. }
  12328. .notification_widget.success:hover {
  12329. color: #fff;
  12330. background-color: #449d44;
  12331. border-color: #398439;
  12332. }
  12333. .notification_widget.success:active,
  12334. .notification_widget.success.active,
  12335. .open > .dropdown-toggle.notification_widget.success {
  12336. color: #fff;
  12337. background-color: #449d44;
  12338. background-image: none;
  12339. border-color: #398439;
  12340. }
  12341. .notification_widget.success:active:hover,
  12342. .notification_widget.success.active:hover,
  12343. .open > .dropdown-toggle.notification_widget.success:hover,
  12344. .notification_widget.success:active:focus,
  12345. .notification_widget.success.active:focus,
  12346. .open > .dropdown-toggle.notification_widget.success:focus,
  12347. .notification_widget.success:active.focus,
  12348. .notification_widget.success.active.focus,
  12349. .open > .dropdown-toggle.notification_widget.success.focus {
  12350. color: #fff;
  12351. background-color: #398439;
  12352. border-color: #255625;
  12353. }
  12354. .notification_widget.success.disabled:hover,
  12355. .notification_widget.success[disabled]:hover,
  12356. fieldset[disabled] .notification_widget.success:hover,
  12357. .notification_widget.success.disabled:focus,
  12358. .notification_widget.success[disabled]:focus,
  12359. fieldset[disabled] .notification_widget.success:focus,
  12360. .notification_widget.success.disabled.focus,
  12361. .notification_widget.success[disabled].focus,
  12362. fieldset[disabled] .notification_widget.success.focus {
  12363. background-color: #5cb85c;
  12364. border-color: #4cae4c;
  12365. }
  12366. .notification_widget.success .badge {
  12367. color: #5cb85c;
  12368. background-color: #fff;
  12369. }
  12370. .notification_widget.info {
  12371. color: #fff;
  12372. background-color: #5bc0de;
  12373. border-color: #46b8da;
  12374. }
  12375. .notification_widget.info:focus,
  12376. .notification_widget.info.focus {
  12377. color: #fff;
  12378. background-color: #31b0d5;
  12379. border-color: #1b6d85;
  12380. }
  12381. .notification_widget.info:hover {
  12382. color: #fff;
  12383. background-color: #31b0d5;
  12384. border-color: #269abc;
  12385. }
  12386. .notification_widget.info:active,
  12387. .notification_widget.info.active,
  12388. .open > .dropdown-toggle.notification_widget.info {
  12389. color: #fff;
  12390. background-color: #31b0d5;
  12391. background-image: none;
  12392. border-color: #269abc;
  12393. }
  12394. .notification_widget.info:active:hover,
  12395. .notification_widget.info.active:hover,
  12396. .open > .dropdown-toggle.notification_widget.info:hover,
  12397. .notification_widget.info:active:focus,
  12398. .notification_widget.info.active:focus,
  12399. .open > .dropdown-toggle.notification_widget.info:focus,
  12400. .notification_widget.info:active.focus,
  12401. .notification_widget.info.active.focus,
  12402. .open > .dropdown-toggle.notification_widget.info.focus {
  12403. color: #fff;
  12404. background-color: #269abc;
  12405. border-color: #1b6d85;
  12406. }
  12407. .notification_widget.info.disabled:hover,
  12408. .notification_widget.info[disabled]:hover,
  12409. fieldset[disabled] .notification_widget.info:hover,
  12410. .notification_widget.info.disabled:focus,
  12411. .notification_widget.info[disabled]:focus,
  12412. fieldset[disabled] .notification_widget.info:focus,
  12413. .notification_widget.info.disabled.focus,
  12414. .notification_widget.info[disabled].focus,
  12415. fieldset[disabled] .notification_widget.info.focus {
  12416. background-color: #5bc0de;
  12417. border-color: #46b8da;
  12418. }
  12419. .notification_widget.info .badge {
  12420. color: #5bc0de;
  12421. background-color: #fff;
  12422. }
  12423. .notification_widget.danger {
  12424. color: #fff;
  12425. background-color: #d9534f;
  12426. border-color: #d43f3a;
  12427. color: #ffffff;
  12428. background-color: #df0404;
  12429. border-color: #df0404;
  12430. }
  12431. .notification_widget.danger:focus,
  12432. .notification_widget.danger.focus {
  12433. color: #fff;
  12434. background-color: #c9302c;
  12435. border-color: #761c19;
  12436. }
  12437. .notification_widget.danger:hover {
  12438. color: #fff;
  12439. background-color: #c9302c;
  12440. border-color: #ac2925;
  12441. }
  12442. .notification_widget.danger:active,
  12443. .notification_widget.danger.active,
  12444. .open > .dropdown-toggle.notification_widget.danger {
  12445. color: #fff;
  12446. background-color: #c9302c;
  12447. background-image: none;
  12448. border-color: #ac2925;
  12449. }
  12450. .notification_widget.danger:active:hover,
  12451. .notification_widget.danger.active:hover,
  12452. .open > .dropdown-toggle.notification_widget.danger:hover,
  12453. .notification_widget.danger:active:focus,
  12454. .notification_widget.danger.active:focus,
  12455. .open > .dropdown-toggle.notification_widget.danger:focus,
  12456. .notification_widget.danger:active.focus,
  12457. .notification_widget.danger.active.focus,
  12458. .open > .dropdown-toggle.notification_widget.danger.focus {
  12459. color: #fff;
  12460. background-color: #ac2925;
  12461. border-color: #761c19;
  12462. }
  12463. .notification_widget.danger.disabled:hover,
  12464. .notification_widget.danger[disabled]:hover,
  12465. fieldset[disabled] .notification_widget.danger:hover,
  12466. .notification_widget.danger.disabled:focus,
  12467. .notification_widget.danger[disabled]:focus,
  12468. fieldset[disabled] .notification_widget.danger:focus,
  12469. .notification_widget.danger.disabled.focus,
  12470. .notification_widget.danger[disabled].focus,
  12471. fieldset[disabled] .notification_widget.danger.focus {
  12472. background-color: #d9534f;
  12473. border-color: #d43f3a;
  12474. }
  12475. .notification_widget.danger .badge {
  12476. color: #d9534f;
  12477. background-color: #fff;
  12478. }
  12479. div#pager {
  12480. background-color: #fff;
  12481. font-size: 14px;
  12482. line-height: 20px;
  12483. overflow: hidden;
  12484. display: none;
  12485. position: fixed;
  12486. bottom: 0px;
  12487. width: 100%;
  12488. max-height: 50%;
  12489. padding-top: 8px;
  12490. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12491. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12492. /* Display over codemirror */
  12493. z-index: 100;
  12494. /* Hack which prevents jquery ui resizable from changing top. */
  12495. top: auto !important;
  12496. }
  12497. div#pager pre {
  12498. line-height: 1.21429em;
  12499. color: #000;
  12500. background-color: #f7f7f7;
  12501. padding: 0.4em;
  12502. }
  12503. div#pager #pager-button-area {
  12504. position: absolute;
  12505. top: 8px;
  12506. right: 20px;
  12507. }
  12508. div#pager #pager-button-area .ui-button {
  12509. padding-top: 0px;
  12510. padding-bottom: 0px;
  12511. padding-right: 10px;
  12512. padding-left: 10px;
  12513. }
  12514. div#pager #pager-contents {
  12515. position: relative;
  12516. overflow: auto;
  12517. width: 100%;
  12518. height: 100%;
  12519. }
  12520. div#pager #pager-contents #pager-container {
  12521. position: relative;
  12522. padding: 15px 0px;
  12523. box-sizing: border-box;
  12524. -moz-box-sizing: border-box;
  12525. -webkit-box-sizing: border-box;
  12526. }
  12527. div#pager .ui-resizable-handle {
  12528. top: 0px;
  12529. height: 8px;
  12530. background: #f7f7f7;
  12531. border-top: 1px solid #cfcfcf;
  12532. border-bottom: 1px solid #cfcfcf;
  12533. /* This injects handle bars (a short, wide = symbol) for
  12534. the resize handle. */
  12535. }
  12536. div#pager .ui-resizable-handle::after {
  12537. content: '';
  12538. top: 2px;
  12539. left: 50%;
  12540. height: 3px;
  12541. width: 30px;
  12542. margin-left: -15px;
  12543. position: absolute;
  12544. border-top: 1px solid #cfcfcf;
  12545. }
  12546. .quickhelp {
  12547. /* Old browsers */
  12548. display: -webkit-box;
  12549. -webkit-box-orient: horizontal;
  12550. -webkit-box-align: stretch;
  12551. display: -moz-box;
  12552. -moz-box-orient: horizontal;
  12553. -moz-box-align: stretch;
  12554. display: box;
  12555. box-orient: horizontal;
  12556. box-align: stretch;
  12557. /* Modern browsers */
  12558. display: flex;
  12559. flex-direction: row;
  12560. align-items: stretch;
  12561. line-height: 1.8em;
  12562. }
  12563. .shortcut_key {
  12564. display: inline-block;
  12565. width: 21ex;
  12566. text-align: right;
  12567. font-family: monospace;
  12568. }
  12569. .shortcut_descr {
  12570. display: inline-block;
  12571. /* Old browsers */
  12572. -webkit-box-flex: 1;
  12573. -moz-box-flex: 1;
  12574. box-flex: 1;
  12575. /* Modern browsers */
  12576. flex: 1;
  12577. }
  12578. span.save_widget {
  12579. height: 30px;
  12580. margin-top: 4px;
  12581. display: flex;
  12582. justify-content: flex-start;
  12583. align-items: baseline;
  12584. width: 50%;
  12585. flex: 1;
  12586. }
  12587. span.save_widget span.filename {
  12588. height: 100%;
  12589. line-height: 1em;
  12590. margin-left: 16px;
  12591. border: none;
  12592. font-size: 146.5%;
  12593. text-overflow: ellipsis;
  12594. overflow: hidden;
  12595. white-space: nowrap;
  12596. border-radius: 2px;
  12597. }
  12598. span.save_widget span.filename:hover {
  12599. background-color: #e6e6e6;
  12600. }
  12601. [dir="rtl"] span.save_widget.pull-left {
  12602. float: right !important;
  12603. float: right;
  12604. }
  12605. [dir="rtl"] span.save_widget span.filename {
  12606. margin-left: 0;
  12607. margin-right: 16px;
  12608. }
  12609. span.checkpoint_status,
  12610. span.autosave_status {
  12611. font-size: small;
  12612. white-space: nowrap;
  12613. padding: 0 5px;
  12614. }
  12615. @media (max-width: 767px) {
  12616. span.save_widget {
  12617. font-size: small;
  12618. padding: 0 0 0 5px;
  12619. }
  12620. span.checkpoint_status,
  12621. span.autosave_status {
  12622. display: none;
  12623. }
  12624. }
  12625. @media (min-width: 768px) and (max-width: 991px) {
  12626. span.checkpoint_status {
  12627. display: none;
  12628. }
  12629. span.autosave_status {
  12630. font-size: x-small;
  12631. }
  12632. }
  12633. .toolbar {
  12634. padding: 0px;
  12635. margin-left: -5px;
  12636. margin-top: 2px;
  12637. margin-bottom: 5px;
  12638. box-sizing: border-box;
  12639. -moz-box-sizing: border-box;
  12640. -webkit-box-sizing: border-box;
  12641. }
  12642. .toolbar select,
  12643. .toolbar label {
  12644. width: auto;
  12645. vertical-align: middle;
  12646. margin-right: 2px;
  12647. margin-bottom: 0px;
  12648. display: inline;
  12649. font-size: 92%;
  12650. margin-left: 0.3em;
  12651. margin-right: 0.3em;
  12652. padding: 0px;
  12653. padding-top: 3px;
  12654. }
  12655. .toolbar .btn {
  12656. padding: 2px 8px;
  12657. }
  12658. .toolbar .btn-group {
  12659. margin-top: 0px;
  12660. margin-left: 5px;
  12661. }
  12662. .toolbar-btn-label {
  12663. margin-left: 6px;
  12664. }
  12665. #maintoolbar {
  12666. margin-bottom: -3px;
  12667. margin-top: -8px;
  12668. border: 0px;
  12669. min-height: 27px;
  12670. margin-left: 0px;
  12671. padding-top: 11px;
  12672. padding-bottom: 3px;
  12673. }
  12674. #maintoolbar .navbar-text {
  12675. float: none;
  12676. vertical-align: middle;
  12677. text-align: right;
  12678. margin-left: 5px;
  12679. margin-right: 0px;
  12680. margin-top: 0px;
  12681. }
  12682. .select-xs {
  12683. height: 24px;
  12684. }
  12685. [dir="rtl"] .btn-group > .btn,
  12686. .btn-group-vertical > .btn {
  12687. float: right;
  12688. }
  12689. .pulse,
  12690. .dropdown-menu > li > a.pulse,
  12691. li.pulse > a.dropdown-toggle,
  12692. li.pulse.open > a.dropdown-toggle {
  12693. background-color: #F37626;
  12694. color: white;
  12695. }
  12696. /**
  12697. * Primary styles
  12698. *
  12699. * Author: Jupyter Development Team
  12700. */
  12701. /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
  12702. * of chance of beeing generated from the ../less/[samename].less file, you can
  12703. * try to get back the less file by reverting somme commit in history
  12704. **/
  12705. /*
  12706. * We'll try to get something pretty, so we
  12707. * have some strange css to have the scroll bar on
  12708. * the left with fix button on the top right of the tooltip
  12709. */
  12710. @-moz-keyframes fadeOut {
  12711. from {
  12712. opacity: 1;
  12713. }
  12714. to {
  12715. opacity: 0;
  12716. }
  12717. }
  12718. @-webkit-keyframes fadeOut {
  12719. from {
  12720. opacity: 1;
  12721. }
  12722. to {
  12723. opacity: 0;
  12724. }
  12725. }
  12726. @-moz-keyframes fadeIn {
  12727. from {
  12728. opacity: 0;
  12729. }
  12730. to {
  12731. opacity: 1;
  12732. }
  12733. }
  12734. @-webkit-keyframes fadeIn {
  12735. from {
  12736. opacity: 0;
  12737. }
  12738. to {
  12739. opacity: 1;
  12740. }
  12741. }
  12742. /*properties of tooltip after "expand"*/
  12743. .bigtooltip {
  12744. overflow: auto;
  12745. height: 200px;
  12746. -webkit-transition-property: height;
  12747. -webkit-transition-duration: 500ms;
  12748. -moz-transition-property: height;
  12749. -moz-transition-duration: 500ms;
  12750. transition-property: height;
  12751. transition-duration: 500ms;
  12752. }
  12753. /*properties of tooltip before "expand"*/
  12754. .smalltooltip {
  12755. -webkit-transition-property: height;
  12756. -webkit-transition-duration: 500ms;
  12757. -moz-transition-property: height;
  12758. -moz-transition-duration: 500ms;
  12759. transition-property: height;
  12760. transition-duration: 500ms;
  12761. text-overflow: ellipsis;
  12762. overflow: hidden;
  12763. height: 85px;
  12764. }
  12765. .tooltipbuttons {
  12766. position: absolute;
  12767. padding-right: 15px;
  12768. top: 0px;
  12769. right: 0px;
  12770. }
  12771. .tooltipbuttons .ui-button {
  12772. padding-top: 0px;
  12773. padding-bottom: 0px;
  12774. padding-right: 10px;
  12775. padding-left: 10px;
  12776. }
  12777. .tooltiptext {
  12778. /*avoid the button to overlap on some docstring*/
  12779. padding-right: 30px;
  12780. /*avoid the ui-icon(s) from overlapping the tooltip*/
  12781. padding-top: 5px;
  12782. }
  12783. .ipython_tooltip {
  12784. max-width: 700px;
  12785. /*fade-in animation when inserted*/
  12786. -webkit-animation: fadeOut 400ms;
  12787. -moz-animation: fadeOut 400ms;
  12788. animation: fadeOut 400ms;
  12789. -webkit-animation: fadeIn 400ms;
  12790. -moz-animation: fadeIn 400ms;
  12791. animation: fadeIn 400ms;
  12792. vertical-align: middle;
  12793. background-color: #f7f7f7;
  12794. overflow: visible;
  12795. border: #ababab 1px solid;
  12796. outline: none;
  12797. padding: 3px;
  12798. margin: 0px;
  12799. padding-left: 7px;
  12800. font-family: monospace;
  12801. min-height: 50px;
  12802. -moz-box-shadow: 0px 6px 10px -1px #adadad;
  12803. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  12804. box-shadow: 0px 6px 10px -1px #adadad;
  12805. border-radius: 2px;
  12806. position: absolute;
  12807. z-index: 1000;
  12808. }
  12809. .ipython_tooltip a {
  12810. float: right;
  12811. }
  12812. .ipython_tooltip .tooltiptext pre {
  12813. border: 0;
  12814. border-radius: 0;
  12815. font-size: 100%;
  12816. background-color: #f7f7f7;
  12817. }
  12818. .pretooltiparrow {
  12819. left: 0px;
  12820. margin: 0px;
  12821. top: -16px;
  12822. width: 40px;
  12823. height: 16px;
  12824. overflow: hidden;
  12825. position: absolute;
  12826. }
  12827. .pretooltiparrow:before {
  12828. background-color: #f7f7f7;
  12829. border: 1px #ababab solid;
  12830. z-index: 11;
  12831. content: "";
  12832. position: absolute;
  12833. left: 15px;
  12834. top: 10px;
  12835. width: 25px;
  12836. height: 25px;
  12837. -webkit-transform: rotate(45deg);
  12838. -moz-transform: rotate(45deg);
  12839. -ms-transform: rotate(45deg);
  12840. -o-transform: rotate(45deg);
  12841. }
  12842. div.typeahead__container {
  12843. font: revert;
  12844. }
  12845. ul.typeahead__list i {
  12846. width: 18px;
  12847. }
  12848. ul.typeahead__list {
  12849. max-height: 80vh;
  12850. overflow: auto;
  12851. }
  12852. ul.typeahead__list > li > a {
  12853. /** Firefox bug **/
  12854. /* see https://github.com/jupyter/nbclassic/issues/559 */
  12855. white-space: normal;
  12856. }
  12857. ul.typeahead__list > li > a.pull-right {
  12858. float: left !important;
  12859. float: left;
  12860. }
  12861. [dir="rtl"] .typeahead__list {
  12862. text-align: right;
  12863. }
  12864. .cmd-palette .modal-body {
  12865. padding: 7px;
  12866. }
  12867. .cmd-palette form {
  12868. background: white;
  12869. }
  12870. .cmd-palette input {
  12871. outline: none;
  12872. }
  12873. .no-shortcut {
  12874. min-width: 20px;
  12875. color: transparent;
  12876. }
  12877. [dir="rtl"] .no-shortcut.pull-right {
  12878. float: left !important;
  12879. float: left;
  12880. }
  12881. [dir="rtl"] .command-shortcut.pull-right {
  12882. float: left !important;
  12883. float: left;
  12884. }
  12885. .command-shortcut:before {
  12886. content: "(command mode)";
  12887. padding-right: 3px;
  12888. color: #777777;
  12889. }
  12890. .edit-shortcut:before {
  12891. content: "(edit)";
  12892. padding-right: 3px;
  12893. color: #777777;
  12894. }
  12895. [dir="rtl"] .edit-shortcut.pull-right {
  12896. float: left !important;
  12897. float: left;
  12898. }
  12899. #find-and-replace #replace-preview .match,
  12900. #find-and-replace #replace-preview .insert {
  12901. background-color: #BBDEFB;
  12902. border-color: #90CAF9;
  12903. border-style: solid;
  12904. border-width: 1px;
  12905. border-radius: 0px;
  12906. }
  12907. [dir="ltr"] #find-and-replace .input-group-btn + .form-control {
  12908. border-left: none;
  12909. }
  12910. [dir="rtl"] #find-and-replace .input-group-btn + .form-control {
  12911. border-right: none;
  12912. }
  12913. #find-and-replace #replace-preview .replace .match {
  12914. background-color: #FFCDD2;
  12915. border-color: #EF9A9A;
  12916. border-radius: 0px;
  12917. }
  12918. #find-and-replace #replace-preview .replace .insert {
  12919. background-color: #C8E6C9;
  12920. border-color: #A5D6A7;
  12921. border-radius: 0px;
  12922. }
  12923. #find-and-replace #replace-preview {
  12924. max-height: 60vh;
  12925. overflow: auto;
  12926. }
  12927. #find-and-replace #replace-preview pre {
  12928. padding: 5px 10px;
  12929. }
  12930. .terminal-app {
  12931. background: #EEE;
  12932. }
  12933. .terminal-app #header {
  12934. background: #fff;
  12935. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12936. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  12937. }
  12938. .terminal-app .terminal {
  12939. width: 100%;
  12940. float: left;
  12941. font-family: monospace;
  12942. color: white;
  12943. background: black;
  12944. padding: 0.4em;
  12945. border-radius: 2px;
  12946. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  12947. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  12948. line-height: 1em;
  12949. font-size: 14px;
  12950. }
  12951. .terminal-app .terminal .xterm-rows {
  12952. padding: 10px;
  12953. }
  12954. .terminal-app .terminal-cursor {
  12955. color: black;
  12956. background: white;
  12957. }
  12958. .terminal-app .terminado-container-container {
  12959. padding-top: 20px;
  12960. height: 100%;
  12961. }
  12962. .terminal-app #terminado-container {
  12963. height: 100%;
  12964. }
  12965. .btn-danger {
  12966. color: #ffffff;
  12967. background-color: #df0404;
  12968. border-color: #df0404;
  12969. }
  12970. .btn-warning {
  12971. color: #ffffff;
  12972. background-color: #b46102;
  12973. border-color: #b46102;
  12974. }
  12975. .close {
  12976. float: right;
  12977. font-size: 19.5px;
  12978. font-weight: bold;
  12979. line-height: 1;
  12980. color: #000;
  12981. text-shadow: 0 1px 0 #fff;
  12982. filter: alpha(opacity=60);
  12983. opacity: 0.6;
  12984. }
  12985. .close:hover,
  12986. .close:focus {
  12987. color: #000;
  12988. text-decoration: none;
  12989. cursor: pointer;
  12990. filter: alpha(opacity=100);
  12991. opacity: 1;
  12992. }
  12993. button.close {
  12994. padding: 0;
  12995. cursor: pointer;
  12996. background: transparent;
  12997. border: 0;
  12998. -webkit-appearance: none;
  12999. appearance: none;
  13000. }
  13001. .navbar-nav > li > a {
  13002. color: #565656;
  13003. }
  13004. .navbar-nav > li > a:focus {
  13005. /* -webkit-focus-ring-color = '#5B9DD9' */
  13006. outline: -webkit-focus-ring-color auto 5px;
  13007. }
  13008. .menu_focus_highlight a:focus {
  13009. outline: -webkit-focus-ring-color auto 5px;
  13010. }
  13011. /*# sourceMappingURL=style.min.css.map */