Go-CNS-talk-2018.slides.html 268 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="chrome=1" />
  6. <meta name="apple-mobile-web-app-capable" content="yes" />
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  8. <title>Go-CNS-talk-2018 slides</title>
  9. <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
  10. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
  11. <!-- General and theme style sheets -->
  12. <link rel="stylesheet" href="reveal.js/css/reveal.css">
  13. <link rel="stylesheet" href="reveal.js/css/theme/simple.css" id="theme">
  14. <!-- If the query includes 'print-pdf', include the PDF print sheet -->
  15. <script>
  16. if( window.location.search.match( /print-pdf/gi ) ) {
  17. var link = document.createElement( 'link' );
  18. link.rel = 'stylesheet';
  19. link.type = 'text/css';
  20. link.href = 'reveal.js/css/print/pdf.css';
  21. document.getElementsByTagName( 'head' )[0].appendChild( link );
  22. }
  23. </script>
  24. <!--[if lt IE 9]>
  25. <script src="reveal.js/lib/js/html5shiv.js"></script>
  26. <![endif]-->
  27. <!-- Loading the mathjax macro -->
  28. <!-- Load mathjax -->
  29. <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML"></script>
  30. <!-- MathJax configuration -->
  31. <script type="text/x-mathjax-config">
  32. MathJax.Hub.Config({
  33. tex2jax: {
  34. inlineMath: [ ['$','$'], ["\\(","\\)"] ],
  35. displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
  36. processEscapes: true,
  37. processEnvironments: true
  38. },
  39. // Center justify equations in code and markdown cells. Elsewhere
  40. // we use CSS to left justify single line equations in code cells.
  41. displayAlign: 'center',
  42. "HTML-CSS": {
  43. styles: {'.MathJax_Display': {"margin": 0}},
  44. linebreaks: { automatic: true }
  45. }
  46. });
  47. </script>
  48. <!-- End of mathjax configuration -->
  49. <!-- Get Font-awesome from cdn -->
  50. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.css">
  51. <style type="text/css">
  52. /*!
  53. *
  54. * Twitter Bootstrap
  55. *
  56. */
  57. /*!
  58. * Bootstrap v3.3.7 (http://getbootstrap.com)
  59. * Copyright 2011-2016 Twitter, Inc.
  60. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  61. */
  62. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  63. html {
  64. font-family: sans-serif;
  65. -ms-text-size-adjust: 100%;
  66. -webkit-text-size-adjust: 100%;
  67. }
  68. body {
  69. margin: 0;
  70. }
  71. article,
  72. aside,
  73. details,
  74. figcaption,
  75. figure,
  76. footer,
  77. header,
  78. hgroup,
  79. main,
  80. menu,
  81. nav,
  82. section,
  83. summary {
  84. display: block;
  85. }
  86. audio,
  87. canvas,
  88. progress,
  89. video {
  90. display: inline-block;
  91. vertical-align: baseline;
  92. }
  93. audio:not([controls]) {
  94. display: none;
  95. height: 0;
  96. }
  97. [hidden],
  98. template {
  99. display: none;
  100. }
  101. a {
  102. background-color: transparent;
  103. }
  104. a:active,
  105. a:hover {
  106. outline: 0;
  107. }
  108. abbr[title] {
  109. border-bottom: 1px dotted;
  110. }
  111. b,
  112. strong {
  113. font-weight: bold;
  114. }
  115. dfn {
  116. font-style: italic;
  117. }
  118. h1 {
  119. font-size: 2em;
  120. margin: 0.67em 0;
  121. }
  122. mark {
  123. background: #ff0;
  124. color: #000;
  125. }
  126. small {
  127. font-size: 80%;
  128. }
  129. sub,
  130. sup {
  131. font-size: 75%;
  132. line-height: 0;
  133. position: relative;
  134. vertical-align: baseline;
  135. }
  136. sup {
  137. top: -0.5em;
  138. }
  139. sub {
  140. bottom: -0.25em;
  141. }
  142. img {
  143. border: 0;
  144. }
  145. svg:not(:root) {
  146. overflow: hidden;
  147. }
  148. figure {
  149. margin: 1em 40px;
  150. }
  151. hr {
  152. box-sizing: content-box;
  153. height: 0;
  154. }
  155. pre {
  156. overflow: auto;
  157. }
  158. code,
  159. kbd,
  160. pre,
  161. samp {
  162. font-family: monospace, monospace;
  163. font-size: 1em;
  164. }
  165. button,
  166. input,
  167. optgroup,
  168. select,
  169. textarea {
  170. color: inherit;
  171. font: inherit;
  172. margin: 0;
  173. }
  174. button {
  175. overflow: visible;
  176. }
  177. button,
  178. select {
  179. text-transform: none;
  180. }
  181. button,
  182. html input[type="button"],
  183. input[type="reset"],
  184. input[type="submit"] {
  185. -webkit-appearance: button;
  186. cursor: pointer;
  187. }
  188. button[disabled],
  189. html input[disabled] {
  190. cursor: default;
  191. }
  192. button::-moz-focus-inner,
  193. input::-moz-focus-inner {
  194. border: 0;
  195. padding: 0;
  196. }
  197. input {
  198. line-height: normal;
  199. }
  200. input[type="checkbox"],
  201. input[type="radio"] {
  202. box-sizing: border-box;
  203. padding: 0;
  204. }
  205. input[type="number"]::-webkit-inner-spin-button,
  206. input[type="number"]::-webkit-outer-spin-button {
  207. height: auto;
  208. }
  209. input[type="search"] {
  210. -webkit-appearance: textfield;
  211. box-sizing: content-box;
  212. }
  213. input[type="search"]::-webkit-search-cancel-button,
  214. input[type="search"]::-webkit-search-decoration {
  215. -webkit-appearance: none;
  216. }
  217. fieldset {
  218. border: 1px solid #c0c0c0;
  219. margin: 0 2px;
  220. padding: 0.35em 0.625em 0.75em;
  221. }
  222. legend {
  223. border: 0;
  224. padding: 0;
  225. }
  226. textarea {
  227. overflow: auto;
  228. }
  229. optgroup {
  230. font-weight: bold;
  231. }
  232. table {
  233. border-collapse: collapse;
  234. border-spacing: 0;
  235. }
  236. td,
  237. th {
  238. padding: 0;
  239. }
  240. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  241. @media print {
  242. *,
  243. *:before,
  244. *:after {
  245. background: transparent !important;
  246. color: #000 !important;
  247. box-shadow: none !important;
  248. text-shadow: none !important;
  249. }
  250. a,
  251. a:visited {
  252. text-decoration: underline;
  253. }
  254. a[href]:after {
  255. content: " (" attr(href) ")";
  256. }
  257. abbr[title]:after {
  258. content: " (" attr(title) ")";
  259. }
  260. a[href^="#"]:after,
  261. a[href^="javascript:"]:after {
  262. content: "";
  263. }
  264. pre,
  265. blockquote {
  266. border: 1px solid #999;
  267. page-break-inside: avoid;
  268. }
  269. thead {
  270. display: table-header-group;
  271. }
  272. tr,
  273. img {
  274. page-break-inside: avoid;
  275. }
  276. img {
  277. max-width: 100% !important;
  278. }
  279. p,
  280. h2,
  281. h3 {
  282. orphans: 3;
  283. widows: 3;
  284. }
  285. h2,
  286. h3 {
  287. page-break-after: avoid;
  288. }
  289. .navbar {
  290. display: none;
  291. }
  292. .btn > .caret,
  293. .dropup > .btn > .caret {
  294. border-top-color: #000 !important;
  295. }
  296. .label {
  297. border: 1px solid #000;
  298. }
  299. .table {
  300. border-collapse: collapse !important;
  301. }
  302. .table td,
  303. .table th {
  304. background-color: #fff !important;
  305. }
  306. .table-bordered th,
  307. .table-bordered td {
  308. border: 1px solid #ddd !important;
  309. }
  310. }
  311. @font-face {
  312. font-family: 'Glyphicons Halflings';
  313. src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');
  314. 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');
  315. }
  316. .glyphicon {
  317. position: relative;
  318. top: 1px;
  319. display: inline-block;
  320. font-family: 'Glyphicons Halflings';
  321. font-style: normal;
  322. font-weight: normal;
  323. line-height: 1;
  324. -webkit-font-smoothing: antialiased;
  325. -moz-osx-font-smoothing: grayscale;
  326. }
  327. .glyphicon-asterisk:before {
  328. content: "\002a";
  329. }
  330. .glyphicon-plus:before {
  331. content: "\002b";
  332. }
  333. .glyphicon-euro:before,
  334. .glyphicon-eur:before {
  335. content: "\20ac";
  336. }
  337. .glyphicon-minus:before {
  338. content: "\2212";
  339. }
  340. .glyphicon-cloud:before {
  341. content: "\2601";
  342. }
  343. .glyphicon-envelope:before {
  344. content: "\2709";
  345. }
  346. .glyphicon-pencil:before {
  347. content: "\270f";
  348. }
  349. .glyphicon-glass:before {
  350. content: "\e001";
  351. }
  352. .glyphicon-music:before {
  353. content: "\e002";
  354. }
  355. .glyphicon-search:before {
  356. content: "\e003";
  357. }
  358. .glyphicon-heart:before {
  359. content: "\e005";
  360. }
  361. .glyphicon-star:before {
  362. content: "\e006";
  363. }
  364. .glyphicon-star-empty:before {
  365. content: "\e007";
  366. }
  367. .glyphicon-user:before {
  368. content: "\e008";
  369. }
  370. .glyphicon-film:before {
  371. content: "\e009";
  372. }
  373. .glyphicon-th-large:before {
  374. content: "\e010";
  375. }
  376. .glyphicon-th:before {
  377. content: "\e011";
  378. }
  379. .glyphicon-th-list:before {
  380. content: "\e012";
  381. }
  382. .glyphicon-ok:before {
  383. content: "\e013";
  384. }
  385. .glyphicon-remove:before {
  386. content: "\e014";
  387. }
  388. .glyphicon-zoom-in:before {
  389. content: "\e015";
  390. }
  391. .glyphicon-zoom-out:before {
  392. content: "\e016";
  393. }
  394. .glyphicon-off:before {
  395. content: "\e017";
  396. }
  397. .glyphicon-signal:before {
  398. content: "\e018";
  399. }
  400. .glyphicon-cog:before {
  401. content: "\e019";
  402. }
  403. .glyphicon-trash:before {
  404. content: "\e020";
  405. }
  406. .glyphicon-home:before {
  407. content: "\e021";
  408. }
  409. .glyphicon-file:before {
  410. content: "\e022";
  411. }
  412. .glyphicon-time:before {
  413. content: "\e023";
  414. }
  415. .glyphicon-road:before {
  416. content: "\e024";
  417. }
  418. .glyphicon-download-alt:before {
  419. content: "\e025";
  420. }
  421. .glyphicon-download:before {
  422. content: "\e026";
  423. }
  424. .glyphicon-upload:before {
  425. content: "\e027";
  426. }
  427. .glyphicon-inbox:before {
  428. content: "\e028";
  429. }
  430. .glyphicon-play-circle:before {
  431. content: "\e029";
  432. }
  433. .glyphicon-repeat:before {
  434. content: "\e030";
  435. }
  436. .glyphicon-refresh:before {
  437. content: "\e031";
  438. }
  439. .glyphicon-list-alt:before {
  440. content: "\e032";
  441. }
  442. .glyphicon-lock:before {
  443. content: "\e033";
  444. }
  445. .glyphicon-flag:before {
  446. content: "\e034";
  447. }
  448. .glyphicon-headphones:before {
  449. content: "\e035";
  450. }
  451. .glyphicon-volume-off:before {
  452. content: "\e036";
  453. }
  454. .glyphicon-volume-down:before {
  455. content: "\e037";
  456. }
  457. .glyphicon-volume-up:before {
  458. content: "\e038";
  459. }
  460. .glyphicon-qrcode:before {
  461. content: "\e039";
  462. }
  463. .glyphicon-barcode:before {
  464. content: "\e040";
  465. }
  466. .glyphicon-tag:before {
  467. content: "\e041";
  468. }
  469. .glyphicon-tags:before {
  470. content: "\e042";
  471. }
  472. .glyphicon-book:before {
  473. content: "\e043";
  474. }
  475. .glyphicon-bookmark:before {
  476. content: "\e044";
  477. }
  478. .glyphicon-print:before {
  479. content: "\e045";
  480. }
  481. .glyphicon-camera:before {
  482. content: "\e046";
  483. }
  484. .glyphicon-font:before {
  485. content: "\e047";
  486. }
  487. .glyphicon-bold:before {
  488. content: "\e048";
  489. }
  490. .glyphicon-italic:before {
  491. content: "\e049";
  492. }
  493. .glyphicon-text-height:before {
  494. content: "\e050";
  495. }
  496. .glyphicon-text-width:before {
  497. content: "\e051";
  498. }
  499. .glyphicon-align-left:before {
  500. content: "\e052";
  501. }
  502. .glyphicon-align-center:before {
  503. content: "\e053";
  504. }
  505. .glyphicon-align-right:before {
  506. content: "\e054";
  507. }
  508. .glyphicon-align-justify:before {
  509. content: "\e055";
  510. }
  511. .glyphicon-list:before {
  512. content: "\e056";
  513. }
  514. .glyphicon-indent-left:before {
  515. content: "\e057";
  516. }
  517. .glyphicon-indent-right:before {
  518. content: "\e058";
  519. }
  520. .glyphicon-facetime-video:before {
  521. content: "\e059";
  522. }
  523. .glyphicon-picture:before {
  524. content: "\e060";
  525. }
  526. .glyphicon-map-marker:before {
  527. content: "\e062";
  528. }
  529. .glyphicon-adjust:before {
  530. content: "\e063";
  531. }
  532. .glyphicon-tint:before {
  533. content: "\e064";
  534. }
  535. .glyphicon-edit:before {
  536. content: "\e065";
  537. }
  538. .glyphicon-share:before {
  539. content: "\e066";
  540. }
  541. .glyphicon-check:before {
  542. content: "\e067";
  543. }
  544. .glyphicon-move:before {
  545. content: "\e068";
  546. }
  547. .glyphicon-step-backward:before {
  548. content: "\e069";
  549. }
  550. .glyphicon-fast-backward:before {
  551. content: "\e070";
  552. }
  553. .glyphicon-backward:before {
  554. content: "\e071";
  555. }
  556. .glyphicon-play:before {
  557. content: "\e072";
  558. }
  559. .glyphicon-pause:before {
  560. content: "\e073";
  561. }
  562. .glyphicon-stop:before {
  563. content: "\e074";
  564. }
  565. .glyphicon-forward:before {
  566. content: "\e075";
  567. }
  568. .glyphicon-fast-forward:before {
  569. content: "\e076";
  570. }
  571. .glyphicon-step-forward:before {
  572. content: "\e077";
  573. }
  574. .glyphicon-eject:before {
  575. content: "\e078";
  576. }
  577. .glyphicon-chevron-left:before {
  578. content: "\e079";
  579. }
  580. .glyphicon-chevron-right:before {
  581. content: "\e080";
  582. }
  583. .glyphicon-plus-sign:before {
  584. content: "\e081";
  585. }
  586. .glyphicon-minus-sign:before {
  587. content: "\e082";
  588. }
  589. .glyphicon-remove-sign:before {
  590. content: "\e083";
  591. }
  592. .glyphicon-ok-sign:before {
  593. content: "\e084";
  594. }
  595. .glyphicon-question-sign:before {
  596. content: "\e085";
  597. }
  598. .glyphicon-info-sign:before {
  599. content: "\e086";
  600. }
  601. .glyphicon-screenshot:before {
  602. content: "\e087";
  603. }
  604. .glyphicon-remove-circle:before {
  605. content: "\e088";
  606. }
  607. .glyphicon-ok-circle:before {
  608. content: "\e089";
  609. }
  610. .glyphicon-ban-circle:before {
  611. content: "\e090";
  612. }
  613. .glyphicon-arrow-left:before {
  614. content: "\e091";
  615. }
  616. .glyphicon-arrow-right:before {
  617. content: "\e092";
  618. }
  619. .glyphicon-arrow-up:before {
  620. content: "\e093";
  621. }
  622. .glyphicon-arrow-down:before {
  623. content: "\e094";
  624. }
  625. .glyphicon-share-alt:before {
  626. content: "\e095";
  627. }
  628. .glyphicon-resize-full:before {
  629. content: "\e096";
  630. }
  631. .glyphicon-resize-small:before {
  632. content: "\e097";
  633. }
  634. .glyphicon-exclamation-sign:before {
  635. content: "\e101";
  636. }
  637. .glyphicon-gift:before {
  638. content: "\e102";
  639. }
  640. .glyphicon-leaf:before {
  641. content: "\e103";
  642. }
  643. .glyphicon-fire:before {
  644. content: "\e104";
  645. }
  646. .glyphicon-eye-open:before {
  647. content: "\e105";
  648. }
  649. .glyphicon-eye-close:before {
  650. content: "\e106";
  651. }
  652. .glyphicon-warning-sign:before {
  653. content: "\e107";
  654. }
  655. .glyphicon-plane:before {
  656. content: "\e108";
  657. }
  658. .glyphicon-calendar:before {
  659. content: "\e109";
  660. }
  661. .glyphicon-random:before {
  662. content: "\e110";
  663. }
  664. .glyphicon-comment:before {
  665. content: "\e111";
  666. }
  667. .glyphicon-magnet:before {
  668. content: "\e112";
  669. }
  670. .glyphicon-chevron-up:before {
  671. content: "\e113";
  672. }
  673. .glyphicon-chevron-down:before {
  674. content: "\e114";
  675. }
  676. .glyphicon-retweet:before {
  677. content: "\e115";
  678. }
  679. .glyphicon-shopping-cart:before {
  680. content: "\e116";
  681. }
  682. .glyphicon-folder-close:before {
  683. content: "\e117";
  684. }
  685. .glyphicon-folder-open:before {
  686. content: "\e118";
  687. }
  688. .glyphicon-resize-vertical:before {
  689. content: "\e119";
  690. }
  691. .glyphicon-resize-horizontal:before {
  692. content: "\e120";
  693. }
  694. .glyphicon-hdd:before {
  695. content: "\e121";
  696. }
  697. .glyphicon-bullhorn:before {
  698. content: "\e122";
  699. }
  700. .glyphicon-bell:before {
  701. content: "\e123";
  702. }
  703. .glyphicon-certificate:before {
  704. content: "\e124";
  705. }
  706. .glyphicon-thumbs-up:before {
  707. content: "\e125";
  708. }
  709. .glyphicon-thumbs-down:before {
  710. content: "\e126";
  711. }
  712. .glyphicon-hand-right:before {
  713. content: "\e127";
  714. }
  715. .glyphicon-hand-left:before {
  716. content: "\e128";
  717. }
  718. .glyphicon-hand-up:before {
  719. content: "\e129";
  720. }
  721. .glyphicon-hand-down:before {
  722. content: "\e130";
  723. }
  724. .glyphicon-circle-arrow-right:before {
  725. content: "\e131";
  726. }
  727. .glyphicon-circle-arrow-left:before {
  728. content: "\e132";
  729. }
  730. .glyphicon-circle-arrow-up:before {
  731. content: "\e133";
  732. }
  733. .glyphicon-circle-arrow-down:before {
  734. content: "\e134";
  735. }
  736. .glyphicon-globe:before {
  737. content: "\e135";
  738. }
  739. .glyphicon-wrench:before {
  740. content: "\e136";
  741. }
  742. .glyphicon-tasks:before {
  743. content: "\e137";
  744. }
  745. .glyphicon-filter:before {
  746. content: "\e138";
  747. }
  748. .glyphicon-briefcase:before {
  749. content: "\e139";
  750. }
  751. .glyphicon-fullscreen:before {
  752. content: "\e140";
  753. }
  754. .glyphicon-dashboard:before {
  755. content: "\e141";
  756. }
  757. .glyphicon-paperclip:before {
  758. content: "\e142";
  759. }
  760. .glyphicon-heart-empty:before {
  761. content: "\e143";
  762. }
  763. .glyphicon-link:before {
  764. content: "\e144";
  765. }
  766. .glyphicon-phone:before {
  767. content: "\e145";
  768. }
  769. .glyphicon-pushpin:before {
  770. content: "\e146";
  771. }
  772. .glyphicon-usd:before {
  773. content: "\e148";
  774. }
  775. .glyphicon-gbp:before {
  776. content: "\e149";
  777. }
  778. .glyphicon-sort:before {
  779. content: "\e150";
  780. }
  781. .glyphicon-sort-by-alphabet:before {
  782. content: "\e151";
  783. }
  784. .glyphicon-sort-by-alphabet-alt:before {
  785. content: "\e152";
  786. }
  787. .glyphicon-sort-by-order:before {
  788. content: "\e153";
  789. }
  790. .glyphicon-sort-by-order-alt:before {
  791. content: "\e154";
  792. }
  793. .glyphicon-sort-by-attributes:before {
  794. content: "\e155";
  795. }
  796. .glyphicon-sort-by-attributes-alt:before {
  797. content: "\e156";
  798. }
  799. .glyphicon-unchecked:before {
  800. content: "\e157";
  801. }
  802. .glyphicon-expand:before {
  803. content: "\e158";
  804. }
  805. .glyphicon-collapse-down:before {
  806. content: "\e159";
  807. }
  808. .glyphicon-collapse-up:before {
  809. content: "\e160";
  810. }
  811. .glyphicon-log-in:before {
  812. content: "\e161";
  813. }
  814. .glyphicon-flash:before {
  815. content: "\e162";
  816. }
  817. .glyphicon-log-out:before {
  818. content: "\e163";
  819. }
  820. .glyphicon-new-window:before {
  821. content: "\e164";
  822. }
  823. .glyphicon-record:before {
  824. content: "\e165";
  825. }
  826. .glyphicon-save:before {
  827. content: "\e166";
  828. }
  829. .glyphicon-open:before {
  830. content: "\e167";
  831. }
  832. .glyphicon-saved:before {
  833. content: "\e168";
  834. }
  835. .glyphicon-import:before {
  836. content: "\e169";
  837. }
  838. .glyphicon-export:before {
  839. content: "\e170";
  840. }
  841. .glyphicon-send:before {
  842. content: "\e171";
  843. }
  844. .glyphicon-floppy-disk:before {
  845. content: "\e172";
  846. }
  847. .glyphicon-floppy-saved:before {
  848. content: "\e173";
  849. }
  850. .glyphicon-floppy-remove:before {
  851. content: "\e174";
  852. }
  853. .glyphicon-floppy-save:before {
  854. content: "\e175";
  855. }
  856. .glyphicon-floppy-open:before {
  857. content: "\e176";
  858. }
  859. .glyphicon-credit-card:before {
  860. content: "\e177";
  861. }
  862. .glyphicon-transfer:before {
  863. content: "\e178";
  864. }
  865. .glyphicon-cutlery:before {
  866. content: "\e179";
  867. }
  868. .glyphicon-header:before {
  869. content: "\e180";
  870. }
  871. .glyphicon-compressed:before {
  872. content: "\e181";
  873. }
  874. .glyphicon-earphone:before {
  875. content: "\e182";
  876. }
  877. .glyphicon-phone-alt:before {
  878. content: "\e183";
  879. }
  880. .glyphicon-tower:before {
  881. content: "\e184";
  882. }
  883. .glyphicon-stats:before {
  884. content: "\e185";
  885. }
  886. .glyphicon-sd-video:before {
  887. content: "\e186";
  888. }
  889. .glyphicon-hd-video:before {
  890. content: "\e187";
  891. }
  892. .glyphicon-subtitles:before {
  893. content: "\e188";
  894. }
  895. .glyphicon-sound-stereo:before {
  896. content: "\e189";
  897. }
  898. .glyphicon-sound-dolby:before {
  899. content: "\e190";
  900. }
  901. .glyphicon-sound-5-1:before {
  902. content: "\e191";
  903. }
  904. .glyphicon-sound-6-1:before {
  905. content: "\e192";
  906. }
  907. .glyphicon-sound-7-1:before {
  908. content: "\e193";
  909. }
  910. .glyphicon-copyright-mark:before {
  911. content: "\e194";
  912. }
  913. .glyphicon-registration-mark:before {
  914. content: "\e195";
  915. }
  916. .glyphicon-cloud-download:before {
  917. content: "\e197";
  918. }
  919. .glyphicon-cloud-upload:before {
  920. content: "\e198";
  921. }
  922. .glyphicon-tree-conifer:before {
  923. content: "\e199";
  924. }
  925. .glyphicon-tree-deciduous:before {
  926. content: "\e200";
  927. }
  928. .glyphicon-cd:before {
  929. content: "\e201";
  930. }
  931. .glyphicon-save-file:before {
  932. content: "\e202";
  933. }
  934. .glyphicon-open-file:before {
  935. content: "\e203";
  936. }
  937. .glyphicon-level-up:before {
  938. content: "\e204";
  939. }
  940. .glyphicon-copy:before {
  941. content: "\e205";
  942. }
  943. .glyphicon-paste:before {
  944. content: "\e206";
  945. }
  946. .glyphicon-alert:before {
  947. content: "\e209";
  948. }
  949. .glyphicon-equalizer:before {
  950. content: "\e210";
  951. }
  952. .glyphicon-king:before {
  953. content: "\e211";
  954. }
  955. .glyphicon-queen:before {
  956. content: "\e212";
  957. }
  958. .glyphicon-pawn:before {
  959. content: "\e213";
  960. }
  961. .glyphicon-bishop:before {
  962. content: "\e214";
  963. }
  964. .glyphicon-knight:before {
  965. content: "\e215";
  966. }
  967. .glyphicon-baby-formula:before {
  968. content: "\e216";
  969. }
  970. .glyphicon-tent:before {
  971. content: "\26fa";
  972. }
  973. .glyphicon-blackboard:before {
  974. content: "\e218";
  975. }
  976. .glyphicon-bed:before {
  977. content: "\e219";
  978. }
  979. .glyphicon-apple:before {
  980. content: "\f8ff";
  981. }
  982. .glyphicon-erase:before {
  983. content: "\e221";
  984. }
  985. .glyphicon-hourglass:before {
  986. content: "\231b";
  987. }
  988. .glyphicon-lamp:before {
  989. content: "\e223";
  990. }
  991. .glyphicon-duplicate:before {
  992. content: "\e224";
  993. }
  994. .glyphicon-piggy-bank:before {
  995. content: "\e225";
  996. }
  997. .glyphicon-scissors:before {
  998. content: "\e226";
  999. }
  1000. .glyphicon-bitcoin:before {
  1001. content: "\e227";
  1002. }
  1003. .glyphicon-btc:before {
  1004. content: "\e227";
  1005. }
  1006. .glyphicon-xbt:before {
  1007. content: "\e227";
  1008. }
  1009. .glyphicon-yen:before {
  1010. content: "\00a5";
  1011. }
  1012. .glyphicon-jpy:before {
  1013. content: "\00a5";
  1014. }
  1015. .glyphicon-ruble:before {
  1016. content: "\20bd";
  1017. }
  1018. .glyphicon-rub:before {
  1019. content: "\20bd";
  1020. }
  1021. .glyphicon-scale:before {
  1022. content: "\e230";
  1023. }
  1024. .glyphicon-ice-lolly:before {
  1025. content: "\e231";
  1026. }
  1027. .glyphicon-ice-lolly-tasted:before {
  1028. content: "\e232";
  1029. }
  1030. .glyphicon-education:before {
  1031. content: "\e233";
  1032. }
  1033. .glyphicon-option-horizontal:before {
  1034. content: "\e234";
  1035. }
  1036. .glyphicon-option-vertical:before {
  1037. content: "\e235";
  1038. }
  1039. .glyphicon-menu-hamburger:before {
  1040. content: "\e236";
  1041. }
  1042. .glyphicon-modal-window:before {
  1043. content: "\e237";
  1044. }
  1045. .glyphicon-oil:before {
  1046. content: "\e238";
  1047. }
  1048. .glyphicon-grain:before {
  1049. content: "\e239";
  1050. }
  1051. .glyphicon-sunglasses:before {
  1052. content: "\e240";
  1053. }
  1054. .glyphicon-text-size:before {
  1055. content: "\e241";
  1056. }
  1057. .glyphicon-text-color:before {
  1058. content: "\e242";
  1059. }
  1060. .glyphicon-text-background:before {
  1061. content: "\e243";
  1062. }
  1063. .glyphicon-object-align-top:before {
  1064. content: "\e244";
  1065. }
  1066. .glyphicon-object-align-bottom:before {
  1067. content: "\e245";
  1068. }
  1069. .glyphicon-object-align-horizontal:before {
  1070. content: "\e246";
  1071. }
  1072. .glyphicon-object-align-left:before {
  1073. content: "\e247";
  1074. }
  1075. .glyphicon-object-align-vertical:before {
  1076. content: "\e248";
  1077. }
  1078. .glyphicon-object-align-right:before {
  1079. content: "\e249";
  1080. }
  1081. .glyphicon-triangle-right:before {
  1082. content: "\e250";
  1083. }
  1084. .glyphicon-triangle-left:before {
  1085. content: "\e251";
  1086. }
  1087. .glyphicon-triangle-bottom:before {
  1088. content: "\e252";
  1089. }
  1090. .glyphicon-triangle-top:before {
  1091. content: "\e253";
  1092. }
  1093. .glyphicon-console:before {
  1094. content: "\e254";
  1095. }
  1096. .glyphicon-superscript:before {
  1097. content: "\e255";
  1098. }
  1099. .glyphicon-subscript:before {
  1100. content: "\e256";
  1101. }
  1102. .glyphicon-menu-left:before {
  1103. content: "\e257";
  1104. }
  1105. .glyphicon-menu-right:before {
  1106. content: "\e258";
  1107. }
  1108. .glyphicon-menu-down:before {
  1109. content: "\e259";
  1110. }
  1111. .glyphicon-menu-up:before {
  1112. content: "\e260";
  1113. }
  1114. * {
  1115. -webkit-box-sizing: border-box;
  1116. -moz-box-sizing: border-box;
  1117. box-sizing: border-box;
  1118. }
  1119. *:before,
  1120. *:after {
  1121. -webkit-box-sizing: border-box;
  1122. -moz-box-sizing: border-box;
  1123. box-sizing: border-box;
  1124. }
  1125. html {
  1126. font-size: 10px;
  1127. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1128. }
  1129. body {
  1130. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1131. font-size: 13px;
  1132. line-height: 1.42857143;
  1133. color: #000;
  1134. background-color: #fff;
  1135. }
  1136. input,
  1137. button,
  1138. select,
  1139. textarea {
  1140. font-family: inherit;
  1141. font-size: inherit;
  1142. line-height: inherit;
  1143. }
  1144. a {
  1145. color: #337ab7;
  1146. text-decoration: none;
  1147. }
  1148. a:hover,
  1149. a:focus {
  1150. color: #23527c;
  1151. text-decoration: underline;
  1152. }
  1153. a:focus {
  1154. outline: 5px auto -webkit-focus-ring-color;
  1155. outline-offset: -2px;
  1156. }
  1157. figure {
  1158. margin: 0;
  1159. }
  1160. img {
  1161. vertical-align: middle;
  1162. }
  1163. .img-responsive,
  1164. .thumbnail > img,
  1165. .thumbnail a > img,
  1166. .carousel-inner > .item > img,
  1167. .carousel-inner > .item > a > img {
  1168. display: block;
  1169. max-width: 100%;
  1170. height: auto;
  1171. }
  1172. .img-rounded {
  1173. border-radius: 3px;
  1174. }
  1175. .img-thumbnail {
  1176. padding: 4px;
  1177. line-height: 1.42857143;
  1178. background-color: #fff;
  1179. border: 1px solid #ddd;
  1180. border-radius: 2px;
  1181. -webkit-transition: all 0.2s ease-in-out;
  1182. -o-transition: all 0.2s ease-in-out;
  1183. transition: all 0.2s ease-in-out;
  1184. display: inline-block;
  1185. max-width: 100%;
  1186. height: auto;
  1187. }
  1188. .img-circle {
  1189. border-radius: 50%;
  1190. }
  1191. hr {
  1192. margin-top: 18px;
  1193. margin-bottom: 18px;
  1194. border: 0;
  1195. border-top: 1px solid #eeeeee;
  1196. }
  1197. .sr-only {
  1198. position: absolute;
  1199. width: 1px;
  1200. height: 1px;
  1201. margin: -1px;
  1202. padding: 0;
  1203. overflow: hidden;
  1204. clip: rect(0, 0, 0, 0);
  1205. border: 0;
  1206. }
  1207. .sr-only-focusable:active,
  1208. .sr-only-focusable:focus {
  1209. position: static;
  1210. width: auto;
  1211. height: auto;
  1212. margin: 0;
  1213. overflow: visible;
  1214. clip: auto;
  1215. }
  1216. [role="button"] {
  1217. cursor: pointer;
  1218. }
  1219. h1,
  1220. h2,
  1221. h3,
  1222. h4,
  1223. h5,
  1224. h6,
  1225. .h1,
  1226. .h2,
  1227. .h3,
  1228. .h4,
  1229. .h5,
  1230. .h6 {
  1231. font-family: inherit;
  1232. font-weight: 500;
  1233. line-height: 1.1;
  1234. color: inherit;
  1235. }
  1236. h1 small,
  1237. h2 small,
  1238. h3 small,
  1239. h4 small,
  1240. h5 small,
  1241. h6 small,
  1242. .h1 small,
  1243. .h2 small,
  1244. .h3 small,
  1245. .h4 small,
  1246. .h5 small,
  1247. .h6 small,
  1248. h1 .small,
  1249. h2 .small,
  1250. h3 .small,
  1251. h4 .small,
  1252. h5 .small,
  1253. h6 .small,
  1254. .h1 .small,
  1255. .h2 .small,
  1256. .h3 .small,
  1257. .h4 .small,
  1258. .h5 .small,
  1259. .h6 .small {
  1260. font-weight: normal;
  1261. line-height: 1;
  1262. color: #777777;
  1263. }
  1264. h1,
  1265. .h1,
  1266. h2,
  1267. .h2,
  1268. h3,
  1269. .h3 {
  1270. margin-top: 18px;
  1271. margin-bottom: 9px;
  1272. }
  1273. h1 small,
  1274. .h1 small,
  1275. h2 small,
  1276. .h2 small,
  1277. h3 small,
  1278. .h3 small,
  1279. h1 .small,
  1280. .h1 .small,
  1281. h2 .small,
  1282. .h2 .small,
  1283. h3 .small,
  1284. .h3 .small {
  1285. font-size: 65%;
  1286. }
  1287. h4,
  1288. .h4,
  1289. h5,
  1290. .h5,
  1291. h6,
  1292. .h6 {
  1293. margin-top: 9px;
  1294. margin-bottom: 9px;
  1295. }
  1296. h4 small,
  1297. .h4 small,
  1298. h5 small,
  1299. .h5 small,
  1300. h6 small,
  1301. .h6 small,
  1302. h4 .small,
  1303. .h4 .small,
  1304. h5 .small,
  1305. .h5 .small,
  1306. h6 .small,
  1307. .h6 .small {
  1308. font-size: 75%;
  1309. }
  1310. h1,
  1311. .h1 {
  1312. font-size: 33px;
  1313. }
  1314. h2,
  1315. .h2 {
  1316. font-size: 27px;
  1317. }
  1318. h3,
  1319. .h3 {
  1320. font-size: 23px;
  1321. }
  1322. h4,
  1323. .h4 {
  1324. font-size: 17px;
  1325. }
  1326. h5,
  1327. .h5 {
  1328. font-size: 13px;
  1329. }
  1330. h6,
  1331. .h6 {
  1332. font-size: 12px;
  1333. }
  1334. p {
  1335. margin: 0 0 9px;
  1336. }
  1337. .lead {
  1338. margin-bottom: 18px;
  1339. font-size: 14px;
  1340. font-weight: 300;
  1341. line-height: 1.4;
  1342. }
  1343. @media (min-width: 768px) {
  1344. .lead {
  1345. font-size: 19.5px;
  1346. }
  1347. }
  1348. small,
  1349. .small {
  1350. font-size: 92%;
  1351. }
  1352. mark,
  1353. .mark {
  1354. background-color: #fcf8e3;
  1355. padding: .2em;
  1356. }
  1357. .text-left {
  1358. text-align: left;
  1359. }
  1360. .text-right {
  1361. text-align: right;
  1362. }
  1363. .text-center {
  1364. text-align: center;
  1365. }
  1366. .text-justify {
  1367. text-align: justify;
  1368. }
  1369. .text-nowrap {
  1370. white-space: nowrap;
  1371. }
  1372. .text-lowercase {
  1373. text-transform: lowercase;
  1374. }
  1375. .text-uppercase {
  1376. text-transform: uppercase;
  1377. }
  1378. .text-capitalize {
  1379. text-transform: capitalize;
  1380. }
  1381. .text-muted {
  1382. color: #777777;
  1383. }
  1384. .text-primary {
  1385. color: #337ab7;
  1386. }
  1387. a.text-primary:hover,
  1388. a.text-primary:focus {
  1389. color: #286090;
  1390. }
  1391. .text-success {
  1392. color: #3c763d;
  1393. }
  1394. a.text-success:hover,
  1395. a.text-success:focus {
  1396. color: #2b542c;
  1397. }
  1398. .text-info {
  1399. color: #31708f;
  1400. }
  1401. a.text-info:hover,
  1402. a.text-info:focus {
  1403. color: #245269;
  1404. }
  1405. .text-warning {
  1406. color: #8a6d3b;
  1407. }
  1408. a.text-warning:hover,
  1409. a.text-warning:focus {
  1410. color: #66512c;
  1411. }
  1412. .text-danger {
  1413. color: #a94442;
  1414. }
  1415. a.text-danger:hover,
  1416. a.text-danger:focus {
  1417. color: #843534;
  1418. }
  1419. .bg-primary {
  1420. color: #fff;
  1421. background-color: #337ab7;
  1422. }
  1423. a.bg-primary:hover,
  1424. a.bg-primary:focus {
  1425. background-color: #286090;
  1426. }
  1427. .bg-success {
  1428. background-color: #dff0d8;
  1429. }
  1430. a.bg-success:hover,
  1431. a.bg-success:focus {
  1432. background-color: #c1e2b3;
  1433. }
  1434. .bg-info {
  1435. background-color: #d9edf7;
  1436. }
  1437. a.bg-info:hover,
  1438. a.bg-info:focus {
  1439. background-color: #afd9ee;
  1440. }
  1441. .bg-warning {
  1442. background-color: #fcf8e3;
  1443. }
  1444. a.bg-warning:hover,
  1445. a.bg-warning:focus {
  1446. background-color: #f7ecb5;
  1447. }
  1448. .bg-danger {
  1449. background-color: #f2dede;
  1450. }
  1451. a.bg-danger:hover,
  1452. a.bg-danger:focus {
  1453. background-color: #e4b9b9;
  1454. }
  1455. .page-header {
  1456. padding-bottom: 8px;
  1457. margin: 36px 0 18px;
  1458. border-bottom: 1px solid #eeeeee;
  1459. }
  1460. ul,
  1461. ol {
  1462. margin-top: 0;
  1463. margin-bottom: 9px;
  1464. }
  1465. ul ul,
  1466. ol ul,
  1467. ul ol,
  1468. ol ol {
  1469. margin-bottom: 0;
  1470. }
  1471. .list-unstyled {
  1472. padding-left: 0;
  1473. list-style: none;
  1474. }
  1475. .list-inline {
  1476. padding-left: 0;
  1477. list-style: none;
  1478. margin-left: -5px;
  1479. }
  1480. .list-inline > li {
  1481. display: inline-block;
  1482. padding-left: 5px;
  1483. padding-right: 5px;
  1484. }
  1485. dl {
  1486. margin-top: 0;
  1487. margin-bottom: 18px;
  1488. }
  1489. dt,
  1490. dd {
  1491. line-height: 1.42857143;
  1492. }
  1493. dt {
  1494. font-weight: bold;
  1495. }
  1496. dd {
  1497. margin-left: 0;
  1498. }
  1499. @media (min-width: 541px) {
  1500. .dl-horizontal dt {
  1501. float: left;
  1502. width: 160px;
  1503. clear: left;
  1504. text-align: right;
  1505. overflow: hidden;
  1506. text-overflow: ellipsis;
  1507. white-space: nowrap;
  1508. }
  1509. .dl-horizontal dd {
  1510. margin-left: 180px;
  1511. }
  1512. }
  1513. abbr[title],
  1514. abbr[data-original-title] {
  1515. cursor: help;
  1516. border-bottom: 1px dotted #777777;
  1517. }
  1518. .initialism {
  1519. font-size: 90%;
  1520. text-transform: uppercase;
  1521. }
  1522. blockquote {
  1523. padding: 9px 18px;
  1524. margin: 0 0 18px;
  1525. font-size: inherit;
  1526. border-left: 5px solid #eeeeee;
  1527. }
  1528. blockquote p:last-child,
  1529. blockquote ul:last-child,
  1530. blockquote ol:last-child {
  1531. margin-bottom: 0;
  1532. }
  1533. blockquote footer,
  1534. blockquote small,
  1535. blockquote .small {
  1536. display: block;
  1537. font-size: 80%;
  1538. line-height: 1.42857143;
  1539. color: #777777;
  1540. }
  1541. blockquote footer:before,
  1542. blockquote small:before,
  1543. blockquote .small:before {
  1544. content: '\2014 \00A0';
  1545. }
  1546. .blockquote-reverse,
  1547. blockquote.pull-right {
  1548. padding-right: 15px;
  1549. padding-left: 0;
  1550. border-right: 5px solid #eeeeee;
  1551. border-left: 0;
  1552. text-align: right;
  1553. }
  1554. .blockquote-reverse footer:before,
  1555. blockquote.pull-right footer:before,
  1556. .blockquote-reverse small:before,
  1557. blockquote.pull-right small:before,
  1558. .blockquote-reverse .small:before,
  1559. blockquote.pull-right .small:before {
  1560. content: '';
  1561. }
  1562. .blockquote-reverse footer:after,
  1563. blockquote.pull-right footer:after,
  1564. .blockquote-reverse small:after,
  1565. blockquote.pull-right small:after,
  1566. .blockquote-reverse .small:after,
  1567. blockquote.pull-right .small:after {
  1568. content: '\00A0 \2014';
  1569. }
  1570. address {
  1571. margin-bottom: 18px;
  1572. font-style: normal;
  1573. line-height: 1.42857143;
  1574. }
  1575. code,
  1576. kbd,
  1577. pre,
  1578. samp {
  1579. font-family: monospace;
  1580. }
  1581. code {
  1582. padding: 2px 4px;
  1583. font-size: 90%;
  1584. color: #c7254e;
  1585. background-color: #f9f2f4;
  1586. border-radius: 2px;
  1587. }
  1588. kbd {
  1589. padding: 2px 4px;
  1590. font-size: 90%;
  1591. color: #888;
  1592. background-color: transparent;
  1593. border-radius: 1px;
  1594. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1595. }
  1596. kbd kbd {
  1597. padding: 0;
  1598. font-size: 100%;
  1599. font-weight: bold;
  1600. box-shadow: none;
  1601. }
  1602. pre {
  1603. display: block;
  1604. padding: 8.5px;
  1605. margin: 0 0 9px;
  1606. font-size: 12px;
  1607. line-height: 1.42857143;
  1608. word-break: break-all;
  1609. word-wrap: break-word;
  1610. color: #333333;
  1611. background-color: #f5f5f5;
  1612. border: 1px solid #ccc;
  1613. border-radius: 2px;
  1614. }
  1615. pre code {
  1616. padding: 0;
  1617. font-size: inherit;
  1618. color: inherit;
  1619. white-space: pre-wrap;
  1620. background-color: transparent;
  1621. border-radius: 0;
  1622. }
  1623. .pre-scrollable {
  1624. max-height: 340px;
  1625. overflow-y: scroll;
  1626. }
  1627. .container {
  1628. margin-right: auto;
  1629. margin-left: auto;
  1630. padding-left: 0px;
  1631. padding-right: 0px;
  1632. }
  1633. @media (min-width: 768px) {
  1634. .container {
  1635. width: 768px;
  1636. }
  1637. }
  1638. @media (min-width: 992px) {
  1639. .container {
  1640. width: 940px;
  1641. }
  1642. }
  1643. @media (min-width: 1200px) {
  1644. .container {
  1645. width: 1140px;
  1646. }
  1647. }
  1648. .container-fluid {
  1649. margin-right: auto;
  1650. margin-left: auto;
  1651. padding-left: 0px;
  1652. padding-right: 0px;
  1653. }
  1654. .row {
  1655. margin-left: 0px;
  1656. margin-right: 0px;
  1657. }
  1658. .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 {
  1659. position: relative;
  1660. min-height: 1px;
  1661. padding-left: 0px;
  1662. padding-right: 0px;
  1663. }
  1664. .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 {
  1665. float: left;
  1666. }
  1667. .col-xs-12 {
  1668. width: 100%;
  1669. }
  1670. .col-xs-11 {
  1671. width: 91.66666667%;
  1672. }
  1673. .col-xs-10 {
  1674. width: 83.33333333%;
  1675. }
  1676. .col-xs-9 {
  1677. width: 75%;
  1678. }
  1679. .col-xs-8 {
  1680. width: 66.66666667%;
  1681. }
  1682. .col-xs-7 {
  1683. width: 58.33333333%;
  1684. }
  1685. .col-xs-6 {
  1686. width: 50%;
  1687. }
  1688. .col-xs-5 {
  1689. width: 41.66666667%;
  1690. }
  1691. .col-xs-4 {
  1692. width: 33.33333333%;
  1693. }
  1694. .col-xs-3 {
  1695. width: 25%;
  1696. }
  1697. .col-xs-2 {
  1698. width: 16.66666667%;
  1699. }
  1700. .col-xs-1 {
  1701. width: 8.33333333%;
  1702. }
  1703. .col-xs-pull-12 {
  1704. right: 100%;
  1705. }
  1706. .col-xs-pull-11 {
  1707. right: 91.66666667%;
  1708. }
  1709. .col-xs-pull-10 {
  1710. right: 83.33333333%;
  1711. }
  1712. .col-xs-pull-9 {
  1713. right: 75%;
  1714. }
  1715. .col-xs-pull-8 {
  1716. right: 66.66666667%;
  1717. }
  1718. .col-xs-pull-7 {
  1719. right: 58.33333333%;
  1720. }
  1721. .col-xs-pull-6 {
  1722. right: 50%;
  1723. }
  1724. .col-xs-pull-5 {
  1725. right: 41.66666667%;
  1726. }
  1727. .col-xs-pull-4 {
  1728. right: 33.33333333%;
  1729. }
  1730. .col-xs-pull-3 {
  1731. right: 25%;
  1732. }
  1733. .col-xs-pull-2 {
  1734. right: 16.66666667%;
  1735. }
  1736. .col-xs-pull-1 {
  1737. right: 8.33333333%;
  1738. }
  1739. .col-xs-pull-0 {
  1740. right: auto;
  1741. }
  1742. .col-xs-push-12 {
  1743. left: 100%;
  1744. }
  1745. .col-xs-push-11 {
  1746. left: 91.66666667%;
  1747. }
  1748. .col-xs-push-10 {
  1749. left: 83.33333333%;
  1750. }
  1751. .col-xs-push-9 {
  1752. left: 75%;
  1753. }
  1754. .col-xs-push-8 {
  1755. left: 66.66666667%;
  1756. }
  1757. .col-xs-push-7 {
  1758. left: 58.33333333%;
  1759. }
  1760. .col-xs-push-6 {
  1761. left: 50%;
  1762. }
  1763. .col-xs-push-5 {
  1764. left: 41.66666667%;
  1765. }
  1766. .col-xs-push-4 {
  1767. left: 33.33333333%;
  1768. }
  1769. .col-xs-push-3 {
  1770. left: 25%;
  1771. }
  1772. .col-xs-push-2 {
  1773. left: 16.66666667%;
  1774. }
  1775. .col-xs-push-1 {
  1776. left: 8.33333333%;
  1777. }
  1778. .col-xs-push-0 {
  1779. left: auto;
  1780. }
  1781. .col-xs-offset-12 {
  1782. margin-left: 100%;
  1783. }
  1784. .col-xs-offset-11 {
  1785. margin-left: 91.66666667%;
  1786. }
  1787. .col-xs-offset-10 {
  1788. margin-left: 83.33333333%;
  1789. }
  1790. .col-xs-offset-9 {
  1791. margin-left: 75%;
  1792. }
  1793. .col-xs-offset-8 {
  1794. margin-left: 66.66666667%;
  1795. }
  1796. .col-xs-offset-7 {
  1797. margin-left: 58.33333333%;
  1798. }
  1799. .col-xs-offset-6 {
  1800. margin-left: 50%;
  1801. }
  1802. .col-xs-offset-5 {
  1803. margin-left: 41.66666667%;
  1804. }
  1805. .col-xs-offset-4 {
  1806. margin-left: 33.33333333%;
  1807. }
  1808. .col-xs-offset-3 {
  1809. margin-left: 25%;
  1810. }
  1811. .col-xs-offset-2 {
  1812. margin-left: 16.66666667%;
  1813. }
  1814. .col-xs-offset-1 {
  1815. margin-left: 8.33333333%;
  1816. }
  1817. .col-xs-offset-0 {
  1818. margin-left: 0%;
  1819. }
  1820. @media (min-width: 768px) {
  1821. .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 {
  1822. float: left;
  1823. }
  1824. .col-sm-12 {
  1825. width: 100%;
  1826. }
  1827. .col-sm-11 {
  1828. width: 91.66666667%;
  1829. }
  1830. .col-sm-10 {
  1831. width: 83.33333333%;
  1832. }
  1833. .col-sm-9 {
  1834. width: 75%;
  1835. }
  1836. .col-sm-8 {
  1837. width: 66.66666667%;
  1838. }
  1839. .col-sm-7 {
  1840. width: 58.33333333%;
  1841. }
  1842. .col-sm-6 {
  1843. width: 50%;
  1844. }
  1845. .col-sm-5 {
  1846. width: 41.66666667%;
  1847. }
  1848. .col-sm-4 {
  1849. width: 33.33333333%;
  1850. }
  1851. .col-sm-3 {
  1852. width: 25%;
  1853. }
  1854. .col-sm-2 {
  1855. width: 16.66666667%;
  1856. }
  1857. .col-sm-1 {
  1858. width: 8.33333333%;
  1859. }
  1860. .col-sm-pull-12 {
  1861. right: 100%;
  1862. }
  1863. .col-sm-pull-11 {
  1864. right: 91.66666667%;
  1865. }
  1866. .col-sm-pull-10 {
  1867. right: 83.33333333%;
  1868. }
  1869. .col-sm-pull-9 {
  1870. right: 75%;
  1871. }
  1872. .col-sm-pull-8 {
  1873. right: 66.66666667%;
  1874. }
  1875. .col-sm-pull-7 {
  1876. right: 58.33333333%;
  1877. }
  1878. .col-sm-pull-6 {
  1879. right: 50%;
  1880. }
  1881. .col-sm-pull-5 {
  1882. right: 41.66666667%;
  1883. }
  1884. .col-sm-pull-4 {
  1885. right: 33.33333333%;
  1886. }
  1887. .col-sm-pull-3 {
  1888. right: 25%;
  1889. }
  1890. .col-sm-pull-2 {
  1891. right: 16.66666667%;
  1892. }
  1893. .col-sm-pull-1 {
  1894. right: 8.33333333%;
  1895. }
  1896. .col-sm-pull-0 {
  1897. right: auto;
  1898. }
  1899. .col-sm-push-12 {
  1900. left: 100%;
  1901. }
  1902. .col-sm-push-11 {
  1903. left: 91.66666667%;
  1904. }
  1905. .col-sm-push-10 {
  1906. left: 83.33333333%;
  1907. }
  1908. .col-sm-push-9 {
  1909. left: 75%;
  1910. }
  1911. .col-sm-push-8 {
  1912. left: 66.66666667%;
  1913. }
  1914. .col-sm-push-7 {
  1915. left: 58.33333333%;
  1916. }
  1917. .col-sm-push-6 {
  1918. left: 50%;
  1919. }
  1920. .col-sm-push-5 {
  1921. left: 41.66666667%;
  1922. }
  1923. .col-sm-push-4 {
  1924. left: 33.33333333%;
  1925. }
  1926. .col-sm-push-3 {
  1927. left: 25%;
  1928. }
  1929. .col-sm-push-2 {
  1930. left: 16.66666667%;
  1931. }
  1932. .col-sm-push-1 {
  1933. left: 8.33333333%;
  1934. }
  1935. .col-sm-push-0 {
  1936. left: auto;
  1937. }
  1938. .col-sm-offset-12 {
  1939. margin-left: 100%;
  1940. }
  1941. .col-sm-offset-11 {
  1942. margin-left: 91.66666667%;
  1943. }
  1944. .col-sm-offset-10 {
  1945. margin-left: 83.33333333%;
  1946. }
  1947. .col-sm-offset-9 {
  1948. margin-left: 75%;
  1949. }
  1950. .col-sm-offset-8 {
  1951. margin-left: 66.66666667%;
  1952. }
  1953. .col-sm-offset-7 {
  1954. margin-left: 58.33333333%;
  1955. }
  1956. .col-sm-offset-6 {
  1957. margin-left: 50%;
  1958. }
  1959. .col-sm-offset-5 {
  1960. margin-left: 41.66666667%;
  1961. }
  1962. .col-sm-offset-4 {
  1963. margin-left: 33.33333333%;
  1964. }
  1965. .col-sm-offset-3 {
  1966. margin-left: 25%;
  1967. }
  1968. .col-sm-offset-2 {
  1969. margin-left: 16.66666667%;
  1970. }
  1971. .col-sm-offset-1 {
  1972. margin-left: 8.33333333%;
  1973. }
  1974. .col-sm-offset-0 {
  1975. margin-left: 0%;
  1976. }
  1977. }
  1978. @media (min-width: 992px) {
  1979. .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 {
  1980. float: left;
  1981. }
  1982. .col-md-12 {
  1983. width: 100%;
  1984. }
  1985. .col-md-11 {
  1986. width: 91.66666667%;
  1987. }
  1988. .col-md-10 {
  1989. width: 83.33333333%;
  1990. }
  1991. .col-md-9 {
  1992. width: 75%;
  1993. }
  1994. .col-md-8 {
  1995. width: 66.66666667%;
  1996. }
  1997. .col-md-7 {
  1998. width: 58.33333333%;
  1999. }
  2000. .col-md-6 {
  2001. width: 50%;
  2002. }
  2003. .col-md-5 {
  2004. width: 41.66666667%;
  2005. }
  2006. .col-md-4 {
  2007. width: 33.33333333%;
  2008. }
  2009. .col-md-3 {
  2010. width: 25%;
  2011. }
  2012. .col-md-2 {
  2013. width: 16.66666667%;
  2014. }
  2015. .col-md-1 {
  2016. width: 8.33333333%;
  2017. }
  2018. .col-md-pull-12 {
  2019. right: 100%;
  2020. }
  2021. .col-md-pull-11 {
  2022. right: 91.66666667%;
  2023. }
  2024. .col-md-pull-10 {
  2025. right: 83.33333333%;
  2026. }
  2027. .col-md-pull-9 {
  2028. right: 75%;
  2029. }
  2030. .col-md-pull-8 {
  2031. right: 66.66666667%;
  2032. }
  2033. .col-md-pull-7 {
  2034. right: 58.33333333%;
  2035. }
  2036. .col-md-pull-6 {
  2037. right: 50%;
  2038. }
  2039. .col-md-pull-5 {
  2040. right: 41.66666667%;
  2041. }
  2042. .col-md-pull-4 {
  2043. right: 33.33333333%;
  2044. }
  2045. .col-md-pull-3 {
  2046. right: 25%;
  2047. }
  2048. .col-md-pull-2 {
  2049. right: 16.66666667%;
  2050. }
  2051. .col-md-pull-1 {
  2052. right: 8.33333333%;
  2053. }
  2054. .col-md-pull-0 {
  2055. right: auto;
  2056. }
  2057. .col-md-push-12 {
  2058. left: 100%;
  2059. }
  2060. .col-md-push-11 {
  2061. left: 91.66666667%;
  2062. }
  2063. .col-md-push-10 {
  2064. left: 83.33333333%;
  2065. }
  2066. .col-md-push-9 {
  2067. left: 75%;
  2068. }
  2069. .col-md-push-8 {
  2070. left: 66.66666667%;
  2071. }
  2072. .col-md-push-7 {
  2073. left: 58.33333333%;
  2074. }
  2075. .col-md-push-6 {
  2076. left: 50%;
  2077. }
  2078. .col-md-push-5 {
  2079. left: 41.66666667%;
  2080. }
  2081. .col-md-push-4 {
  2082. left: 33.33333333%;
  2083. }
  2084. .col-md-push-3 {
  2085. left: 25%;
  2086. }
  2087. .col-md-push-2 {
  2088. left: 16.66666667%;
  2089. }
  2090. .col-md-push-1 {
  2091. left: 8.33333333%;
  2092. }
  2093. .col-md-push-0 {
  2094. left: auto;
  2095. }
  2096. .col-md-offset-12 {
  2097. margin-left: 100%;
  2098. }
  2099. .col-md-offset-11 {
  2100. margin-left: 91.66666667%;
  2101. }
  2102. .col-md-offset-10 {
  2103. margin-left: 83.33333333%;
  2104. }
  2105. .col-md-offset-9 {
  2106. margin-left: 75%;
  2107. }
  2108. .col-md-offset-8 {
  2109. margin-left: 66.66666667%;
  2110. }
  2111. .col-md-offset-7 {
  2112. margin-left: 58.33333333%;
  2113. }
  2114. .col-md-offset-6 {
  2115. margin-left: 50%;
  2116. }
  2117. .col-md-offset-5 {
  2118. margin-left: 41.66666667%;
  2119. }
  2120. .col-md-offset-4 {
  2121. margin-left: 33.33333333%;
  2122. }
  2123. .col-md-offset-3 {
  2124. margin-left: 25%;
  2125. }
  2126. .col-md-offset-2 {
  2127. margin-left: 16.66666667%;
  2128. }
  2129. .col-md-offset-1 {
  2130. margin-left: 8.33333333%;
  2131. }
  2132. .col-md-offset-0 {
  2133. margin-left: 0%;
  2134. }
  2135. }
  2136. @media (min-width: 1200px) {
  2137. .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 {
  2138. float: left;
  2139. }
  2140. .col-lg-12 {
  2141. width: 100%;
  2142. }
  2143. .col-lg-11 {
  2144. width: 91.66666667%;
  2145. }
  2146. .col-lg-10 {
  2147. width: 83.33333333%;
  2148. }
  2149. .col-lg-9 {
  2150. width: 75%;
  2151. }
  2152. .col-lg-8 {
  2153. width: 66.66666667%;
  2154. }
  2155. .col-lg-7 {
  2156. width: 58.33333333%;
  2157. }
  2158. .col-lg-6 {
  2159. width: 50%;
  2160. }
  2161. .col-lg-5 {
  2162. width: 41.66666667%;
  2163. }
  2164. .col-lg-4 {
  2165. width: 33.33333333%;
  2166. }
  2167. .col-lg-3 {
  2168. width: 25%;
  2169. }
  2170. .col-lg-2 {
  2171. width: 16.66666667%;
  2172. }
  2173. .col-lg-1 {
  2174. width: 8.33333333%;
  2175. }
  2176. .col-lg-pull-12 {
  2177. right: 100%;
  2178. }
  2179. .col-lg-pull-11 {
  2180. right: 91.66666667%;
  2181. }
  2182. .col-lg-pull-10 {
  2183. right: 83.33333333%;
  2184. }
  2185. .col-lg-pull-9 {
  2186. right: 75%;
  2187. }
  2188. .col-lg-pull-8 {
  2189. right: 66.66666667%;
  2190. }
  2191. .col-lg-pull-7 {
  2192. right: 58.33333333%;
  2193. }
  2194. .col-lg-pull-6 {
  2195. right: 50%;
  2196. }
  2197. .col-lg-pull-5 {
  2198. right: 41.66666667%;
  2199. }
  2200. .col-lg-pull-4 {
  2201. right: 33.33333333%;
  2202. }
  2203. .col-lg-pull-3 {
  2204. right: 25%;
  2205. }
  2206. .col-lg-pull-2 {
  2207. right: 16.66666667%;
  2208. }
  2209. .col-lg-pull-1 {
  2210. right: 8.33333333%;
  2211. }
  2212. .col-lg-pull-0 {
  2213. right: auto;
  2214. }
  2215. .col-lg-push-12 {
  2216. left: 100%;
  2217. }
  2218. .col-lg-push-11 {
  2219. left: 91.66666667%;
  2220. }
  2221. .col-lg-push-10 {
  2222. left: 83.33333333%;
  2223. }
  2224. .col-lg-push-9 {
  2225. left: 75%;
  2226. }
  2227. .col-lg-push-8 {
  2228. left: 66.66666667%;
  2229. }
  2230. .col-lg-push-7 {
  2231. left: 58.33333333%;
  2232. }
  2233. .col-lg-push-6 {
  2234. left: 50%;
  2235. }
  2236. .col-lg-push-5 {
  2237. left: 41.66666667%;
  2238. }
  2239. .col-lg-push-4 {
  2240. left: 33.33333333%;
  2241. }
  2242. .col-lg-push-3 {
  2243. left: 25%;
  2244. }
  2245. .col-lg-push-2 {
  2246. left: 16.66666667%;
  2247. }
  2248. .col-lg-push-1 {
  2249. left: 8.33333333%;
  2250. }
  2251. .col-lg-push-0 {
  2252. left: auto;
  2253. }
  2254. .col-lg-offset-12 {
  2255. margin-left: 100%;
  2256. }
  2257. .col-lg-offset-11 {
  2258. margin-left: 91.66666667%;
  2259. }
  2260. .col-lg-offset-10 {
  2261. margin-left: 83.33333333%;
  2262. }
  2263. .col-lg-offset-9 {
  2264. margin-left: 75%;
  2265. }
  2266. .col-lg-offset-8 {
  2267. margin-left: 66.66666667%;
  2268. }
  2269. .col-lg-offset-7 {
  2270. margin-left: 58.33333333%;
  2271. }
  2272. .col-lg-offset-6 {
  2273. margin-left: 50%;
  2274. }
  2275. .col-lg-offset-5 {
  2276. margin-left: 41.66666667%;
  2277. }
  2278. .col-lg-offset-4 {
  2279. margin-left: 33.33333333%;
  2280. }
  2281. .col-lg-offset-3 {
  2282. margin-left: 25%;
  2283. }
  2284. .col-lg-offset-2 {
  2285. margin-left: 16.66666667%;
  2286. }
  2287. .col-lg-offset-1 {
  2288. margin-left: 8.33333333%;
  2289. }
  2290. .col-lg-offset-0 {
  2291. margin-left: 0%;
  2292. }
  2293. }
  2294. table {
  2295. background-color: transparent;
  2296. }
  2297. caption {
  2298. padding-top: 8px;
  2299. padding-bottom: 8px;
  2300. color: #777777;
  2301. text-align: left;
  2302. }
  2303. th {
  2304. text-align: left;
  2305. }
  2306. .table {
  2307. width: 100%;
  2308. max-width: 100%;
  2309. margin-bottom: 18px;
  2310. }
  2311. .table > thead > tr > th,
  2312. .table > tbody > tr > th,
  2313. .table > tfoot > tr > th,
  2314. .table > thead > tr > td,
  2315. .table > tbody > tr > td,
  2316. .table > tfoot > tr > td {
  2317. padding: 8px;
  2318. line-height: 1.42857143;
  2319. vertical-align: top;
  2320. border-top: 1px solid #ddd;
  2321. }
  2322. .table > thead > tr > th {
  2323. vertical-align: bottom;
  2324. border-bottom: 2px solid #ddd;
  2325. }
  2326. .table > caption + thead > tr:first-child > th,
  2327. .table > colgroup + thead > tr:first-child > th,
  2328. .table > thead:first-child > tr:first-child > th,
  2329. .table > caption + thead > tr:first-child > td,
  2330. .table > colgroup + thead > tr:first-child > td,
  2331. .table > thead:first-child > tr:first-child > td {
  2332. border-top: 0;
  2333. }
  2334. .table > tbody + tbody {
  2335. border-top: 2px solid #ddd;
  2336. }
  2337. .table .table {
  2338. background-color: #fff;
  2339. }
  2340. .table-condensed > thead > tr > th,
  2341. .table-condensed > tbody > tr > th,
  2342. .table-condensed > tfoot > tr > th,
  2343. .table-condensed > thead > tr > td,
  2344. .table-condensed > tbody > tr > td,
  2345. .table-condensed > tfoot > tr > td {
  2346. padding: 5px;
  2347. }
  2348. .table-bordered {
  2349. border: 1px solid #ddd;
  2350. }
  2351. .table-bordered > thead > tr > th,
  2352. .table-bordered > tbody > tr > th,
  2353. .table-bordered > tfoot > tr > th,
  2354. .table-bordered > thead > tr > td,
  2355. .table-bordered > tbody > tr > td,
  2356. .table-bordered > tfoot > tr > td {
  2357. border: 1px solid #ddd;
  2358. }
  2359. .table-bordered > thead > tr > th,
  2360. .table-bordered > thead > tr > td {
  2361. border-bottom-width: 2px;
  2362. }
  2363. .table-striped > tbody > tr:nth-of-type(odd) {
  2364. background-color: #f9f9f9;
  2365. }
  2366. .table-hover > tbody > tr:hover {
  2367. background-color: #f5f5f5;
  2368. }
  2369. table col[class*="col-"] {
  2370. position: static;
  2371. float: none;
  2372. display: table-column;
  2373. }
  2374. table td[class*="col-"],
  2375. table th[class*="col-"] {
  2376. position: static;
  2377. float: none;
  2378. display: table-cell;
  2379. }
  2380. .table > thead > tr > td.active,
  2381. .table > tbody > tr > td.active,
  2382. .table > tfoot > tr > td.active,
  2383. .table > thead > tr > th.active,
  2384. .table > tbody > tr > th.active,
  2385. .table > tfoot > tr > th.active,
  2386. .table > thead > tr.active > td,
  2387. .table > tbody > tr.active > td,
  2388. .table > tfoot > tr.active > td,
  2389. .table > thead > tr.active > th,
  2390. .table > tbody > tr.active > th,
  2391. .table > tfoot > tr.active > th {
  2392. background-color: #f5f5f5;
  2393. }
  2394. .table-hover > tbody > tr > td.active:hover,
  2395. .table-hover > tbody > tr > th.active:hover,
  2396. .table-hover > tbody > tr.active:hover > td,
  2397. .table-hover > tbody > tr:hover > .active,
  2398. .table-hover > tbody > tr.active:hover > th {
  2399. background-color: #e8e8e8;
  2400. }
  2401. .table > thead > tr > td.success,
  2402. .table > tbody > tr > td.success,
  2403. .table > tfoot > tr > td.success,
  2404. .table > thead > tr > th.success,
  2405. .table > tbody > tr > th.success,
  2406. .table > tfoot > tr > th.success,
  2407. .table > thead > tr.success > td,
  2408. .table > tbody > tr.success > td,
  2409. .table > tfoot > tr.success > td,
  2410. .table > thead > tr.success > th,
  2411. .table > tbody > tr.success > th,
  2412. .table > tfoot > tr.success > th {
  2413. background-color: #dff0d8;
  2414. }
  2415. .table-hover > tbody > tr > td.success:hover,
  2416. .table-hover > tbody > tr > th.success:hover,
  2417. .table-hover > tbody > tr.success:hover > td,
  2418. .table-hover > tbody > tr:hover > .success,
  2419. .table-hover > tbody > tr.success:hover > th {
  2420. background-color: #d0e9c6;
  2421. }
  2422. .table > thead > tr > td.info,
  2423. .table > tbody > tr > td.info,
  2424. .table > tfoot > tr > td.info,
  2425. .table > thead > tr > th.info,
  2426. .table > tbody > tr > th.info,
  2427. .table > tfoot > tr > th.info,
  2428. .table > thead > tr.info > td,
  2429. .table > tbody > tr.info > td,
  2430. .table > tfoot > tr.info > td,
  2431. .table > thead > tr.info > th,
  2432. .table > tbody > tr.info > th,
  2433. .table > tfoot > tr.info > th {
  2434. background-color: #d9edf7;
  2435. }
  2436. .table-hover > tbody > tr > td.info:hover,
  2437. .table-hover > tbody > tr > th.info:hover,
  2438. .table-hover > tbody > tr.info:hover > td,
  2439. .table-hover > tbody > tr:hover > .info,
  2440. .table-hover > tbody > tr.info:hover > th {
  2441. background-color: #c4e3f3;
  2442. }
  2443. .table > thead > tr > td.warning,
  2444. .table > tbody > tr > td.warning,
  2445. .table > tfoot > tr > td.warning,
  2446. .table > thead > tr > th.warning,
  2447. .table > tbody > tr > th.warning,
  2448. .table > tfoot > tr > th.warning,
  2449. .table > thead > tr.warning > td,
  2450. .table > tbody > tr.warning > td,
  2451. .table > tfoot > tr.warning > td,
  2452. .table > thead > tr.warning > th,
  2453. .table > tbody > tr.warning > th,
  2454. .table > tfoot > tr.warning > th {
  2455. background-color: #fcf8e3;
  2456. }
  2457. .table-hover > tbody > tr > td.warning:hover,
  2458. .table-hover > tbody > tr > th.warning:hover,
  2459. .table-hover > tbody > tr.warning:hover > td,
  2460. .table-hover > tbody > tr:hover > .warning,
  2461. .table-hover > tbody > tr.warning:hover > th {
  2462. background-color: #faf2cc;
  2463. }
  2464. .table > thead > tr > td.danger,
  2465. .table > tbody > tr > td.danger,
  2466. .table > tfoot > tr > td.danger,
  2467. .table > thead > tr > th.danger,
  2468. .table > tbody > tr > th.danger,
  2469. .table > tfoot > tr > th.danger,
  2470. .table > thead > tr.danger > td,
  2471. .table > tbody > tr.danger > td,
  2472. .table > tfoot > tr.danger > td,
  2473. .table > thead > tr.danger > th,
  2474. .table > tbody > tr.danger > th,
  2475. .table > tfoot > tr.danger > th {
  2476. background-color: #f2dede;
  2477. }
  2478. .table-hover > tbody > tr > td.danger:hover,
  2479. .table-hover > tbody > tr > th.danger:hover,
  2480. .table-hover > tbody > tr.danger:hover > td,
  2481. .table-hover > tbody > tr:hover > .danger,
  2482. .table-hover > tbody > tr.danger:hover > th {
  2483. background-color: #ebcccc;
  2484. }
  2485. .table-responsive {
  2486. overflow-x: auto;
  2487. min-height: 0.01%;
  2488. }
  2489. @media screen and (max-width: 767px) {
  2490. .table-responsive {
  2491. width: 100%;
  2492. margin-bottom: 13.5px;
  2493. overflow-y: hidden;
  2494. -ms-overflow-style: -ms-autohiding-scrollbar;
  2495. border: 1px solid #ddd;
  2496. }
  2497. .table-responsive > .table {
  2498. margin-bottom: 0;
  2499. }
  2500. .table-responsive > .table > thead > tr > th,
  2501. .table-responsive > .table > tbody > tr > th,
  2502. .table-responsive > .table > tfoot > tr > th,
  2503. .table-responsive > .table > thead > tr > td,
  2504. .table-responsive > .table > tbody > tr > td,
  2505. .table-responsive > .table > tfoot > tr > td {
  2506. white-space: nowrap;
  2507. }
  2508. .table-responsive > .table-bordered {
  2509. border: 0;
  2510. }
  2511. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2512. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2513. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2514. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2515. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2516. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2517. border-left: 0;
  2518. }
  2519. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2520. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2521. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2522. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2523. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2524. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2525. border-right: 0;
  2526. }
  2527. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2528. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2529. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2530. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2531. border-bottom: 0;
  2532. }
  2533. }
  2534. fieldset {
  2535. padding: 0;
  2536. margin: 0;
  2537. border: 0;
  2538. min-width: 0;
  2539. }
  2540. legend {
  2541. display: block;
  2542. width: 100%;
  2543. padding: 0;
  2544. margin-bottom: 18px;
  2545. font-size: 19.5px;
  2546. line-height: inherit;
  2547. color: #333333;
  2548. border: 0;
  2549. border-bottom: 1px solid #e5e5e5;
  2550. }
  2551. label {
  2552. display: inline-block;
  2553. max-width: 100%;
  2554. margin-bottom: 5px;
  2555. font-weight: bold;
  2556. }
  2557. input[type="search"] {
  2558. -webkit-box-sizing: border-box;
  2559. -moz-box-sizing: border-box;
  2560. box-sizing: border-box;
  2561. }
  2562. input[type="radio"],
  2563. input[type="checkbox"] {
  2564. margin: 4px 0 0;
  2565. margin-top: 1px \9;
  2566. line-height: normal;
  2567. }
  2568. input[type="file"] {
  2569. display: block;
  2570. }
  2571. input[type="range"] {
  2572. display: block;
  2573. width: 100%;
  2574. }
  2575. select[multiple],
  2576. select[size] {
  2577. height: auto;
  2578. }
  2579. input[type="file"]:focus,
  2580. input[type="radio"]:focus,
  2581. input[type="checkbox"]:focus {
  2582. outline: 5px auto -webkit-focus-ring-color;
  2583. outline-offset: -2px;
  2584. }
  2585. output {
  2586. display: block;
  2587. padding-top: 7px;
  2588. font-size: 13px;
  2589. line-height: 1.42857143;
  2590. color: #555555;
  2591. }
  2592. .form-control {
  2593. display: block;
  2594. width: 100%;
  2595. height: 32px;
  2596. padding: 6px 12px;
  2597. font-size: 13px;
  2598. line-height: 1.42857143;
  2599. color: #555555;
  2600. background-color: #fff;
  2601. background-image: none;
  2602. border: 1px solid #ccc;
  2603. border-radius: 2px;
  2604. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2605. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2606. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2607. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2608. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2609. }
  2610. .form-control:focus {
  2611. border-color: #66afe9;
  2612. outline: 0;
  2613. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2614. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2615. }
  2616. .form-control::-moz-placeholder {
  2617. color: #999;
  2618. opacity: 1;
  2619. }
  2620. .form-control:-ms-input-placeholder {
  2621. color: #999;
  2622. }
  2623. .form-control::-webkit-input-placeholder {
  2624. color: #999;
  2625. }
  2626. .form-control::-ms-expand {
  2627. border: 0;
  2628. background-color: transparent;
  2629. }
  2630. .form-control[disabled],
  2631. .form-control[readonly],
  2632. fieldset[disabled] .form-control {
  2633. background-color: #eeeeee;
  2634. opacity: 1;
  2635. }
  2636. .form-control[disabled],
  2637. fieldset[disabled] .form-control {
  2638. cursor: not-allowed;
  2639. }
  2640. textarea.form-control {
  2641. height: auto;
  2642. }
  2643. input[type="search"] {
  2644. -webkit-appearance: none;
  2645. }
  2646. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2647. input[type="date"].form-control,
  2648. input[type="time"].form-control,
  2649. input[type="datetime-local"].form-control,
  2650. input[type="month"].form-control {
  2651. line-height: 32px;
  2652. }
  2653. input[type="date"].input-sm,
  2654. input[type="time"].input-sm,
  2655. input[type="datetime-local"].input-sm,
  2656. input[type="month"].input-sm,
  2657. .input-group-sm input[type="date"],
  2658. .input-group-sm input[type="time"],
  2659. .input-group-sm input[type="datetime-local"],
  2660. .input-group-sm input[type="month"] {
  2661. line-height: 30px;
  2662. }
  2663. input[type="date"].input-lg,
  2664. input[type="time"].input-lg,
  2665. input[type="datetime-local"].input-lg,
  2666. input[type="month"].input-lg,
  2667. .input-group-lg input[type="date"],
  2668. .input-group-lg input[type="time"],
  2669. .input-group-lg input[type="datetime-local"],
  2670. .input-group-lg input[type="month"] {
  2671. line-height: 45px;
  2672. }
  2673. }
  2674. .form-group {
  2675. margin-bottom: 15px;
  2676. }
  2677. .radio,
  2678. .checkbox {
  2679. position: relative;
  2680. display: block;
  2681. margin-top: 10px;
  2682. margin-bottom: 10px;
  2683. }
  2684. .radio label,
  2685. .checkbox label {
  2686. min-height: 18px;
  2687. padding-left: 20px;
  2688. margin-bottom: 0;
  2689. font-weight: normal;
  2690. cursor: pointer;
  2691. }
  2692. .radio input[type="radio"],
  2693. .radio-inline input[type="radio"],
  2694. .checkbox input[type="checkbox"],
  2695. .checkbox-inline input[type="checkbox"] {
  2696. position: absolute;
  2697. margin-left: -20px;
  2698. margin-top: 4px \9;
  2699. }
  2700. .radio + .radio,
  2701. .checkbox + .checkbox {
  2702. margin-top: -5px;
  2703. }
  2704. .radio-inline,
  2705. .checkbox-inline {
  2706. position: relative;
  2707. display: inline-block;
  2708. padding-left: 20px;
  2709. margin-bottom: 0;
  2710. vertical-align: middle;
  2711. font-weight: normal;
  2712. cursor: pointer;
  2713. }
  2714. .radio-inline + .radio-inline,
  2715. .checkbox-inline + .checkbox-inline {
  2716. margin-top: 0;
  2717. margin-left: 10px;
  2718. }
  2719. input[type="radio"][disabled],
  2720. input[type="checkbox"][disabled],
  2721. input[type="radio"].disabled,
  2722. input[type="checkbox"].disabled,
  2723. fieldset[disabled] input[type="radio"],
  2724. fieldset[disabled] input[type="checkbox"] {
  2725. cursor: not-allowed;
  2726. }
  2727. .radio-inline.disabled,
  2728. .checkbox-inline.disabled,
  2729. fieldset[disabled] .radio-inline,
  2730. fieldset[disabled] .checkbox-inline {
  2731. cursor: not-allowed;
  2732. }
  2733. .radio.disabled label,
  2734. .checkbox.disabled label,
  2735. fieldset[disabled] .radio label,
  2736. fieldset[disabled] .checkbox label {
  2737. cursor: not-allowed;
  2738. }
  2739. .form-control-static {
  2740. padding-top: 7px;
  2741. padding-bottom: 7px;
  2742. margin-bottom: 0;
  2743. min-height: 31px;
  2744. }
  2745. .form-control-static.input-lg,
  2746. .form-control-static.input-sm {
  2747. padding-left: 0;
  2748. padding-right: 0;
  2749. }
  2750. .input-sm {
  2751. height: 30px;
  2752. padding: 5px 10px;
  2753. font-size: 12px;
  2754. line-height: 1.5;
  2755. border-radius: 1px;
  2756. }
  2757. select.input-sm {
  2758. height: 30px;
  2759. line-height: 30px;
  2760. }
  2761. textarea.input-sm,
  2762. select[multiple].input-sm {
  2763. height: auto;
  2764. }
  2765. .form-group-sm .form-control {
  2766. height: 30px;
  2767. padding: 5px 10px;
  2768. font-size: 12px;
  2769. line-height: 1.5;
  2770. border-radius: 1px;
  2771. }
  2772. .form-group-sm select.form-control {
  2773. height: 30px;
  2774. line-height: 30px;
  2775. }
  2776. .form-group-sm textarea.form-control,
  2777. .form-group-sm select[multiple].form-control {
  2778. height: auto;
  2779. }
  2780. .form-group-sm .form-control-static {
  2781. height: 30px;
  2782. min-height: 30px;
  2783. padding: 6px 10px;
  2784. font-size: 12px;
  2785. line-height: 1.5;
  2786. }
  2787. .input-lg {
  2788. height: 45px;
  2789. padding: 10px 16px;
  2790. font-size: 17px;
  2791. line-height: 1.3333333;
  2792. border-radius: 3px;
  2793. }
  2794. select.input-lg {
  2795. height: 45px;
  2796. line-height: 45px;
  2797. }
  2798. textarea.input-lg,
  2799. select[multiple].input-lg {
  2800. height: auto;
  2801. }
  2802. .form-group-lg .form-control {
  2803. height: 45px;
  2804. padding: 10px 16px;
  2805. font-size: 17px;
  2806. line-height: 1.3333333;
  2807. border-radius: 3px;
  2808. }
  2809. .form-group-lg select.form-control {
  2810. height: 45px;
  2811. line-height: 45px;
  2812. }
  2813. .form-group-lg textarea.form-control,
  2814. .form-group-lg select[multiple].form-control {
  2815. height: auto;
  2816. }
  2817. .form-group-lg .form-control-static {
  2818. height: 45px;
  2819. min-height: 35px;
  2820. padding: 11px 16px;
  2821. font-size: 17px;
  2822. line-height: 1.3333333;
  2823. }
  2824. .has-feedback {
  2825. position: relative;
  2826. }
  2827. .has-feedback .form-control {
  2828. padding-right: 40px;
  2829. }
  2830. .form-control-feedback {
  2831. position: absolute;
  2832. top: 0;
  2833. right: 0;
  2834. z-index: 2;
  2835. display: block;
  2836. width: 32px;
  2837. height: 32px;
  2838. line-height: 32px;
  2839. text-align: center;
  2840. pointer-events: none;
  2841. }
  2842. .input-lg + .form-control-feedback,
  2843. .input-group-lg + .form-control-feedback,
  2844. .form-group-lg .form-control + .form-control-feedback {
  2845. width: 45px;
  2846. height: 45px;
  2847. line-height: 45px;
  2848. }
  2849. .input-sm + .form-control-feedback,
  2850. .input-group-sm + .form-control-feedback,
  2851. .form-group-sm .form-control + .form-control-feedback {
  2852. width: 30px;
  2853. height: 30px;
  2854. line-height: 30px;
  2855. }
  2856. .has-success .help-block,
  2857. .has-success .control-label,
  2858. .has-success .radio,
  2859. .has-success .checkbox,
  2860. .has-success .radio-inline,
  2861. .has-success .checkbox-inline,
  2862. .has-success.radio label,
  2863. .has-success.checkbox label,
  2864. .has-success.radio-inline label,
  2865. .has-success.checkbox-inline label {
  2866. color: #3c763d;
  2867. }
  2868. .has-success .form-control {
  2869. border-color: #3c763d;
  2870. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2871. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2872. }
  2873. .has-success .form-control:focus {
  2874. border-color: #2b542c;
  2875. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2876. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2877. }
  2878. .has-success .input-group-addon {
  2879. color: #3c763d;
  2880. border-color: #3c763d;
  2881. background-color: #dff0d8;
  2882. }
  2883. .has-success .form-control-feedback {
  2884. color: #3c763d;
  2885. }
  2886. .has-warning .help-block,
  2887. .has-warning .control-label,
  2888. .has-warning .radio,
  2889. .has-warning .checkbox,
  2890. .has-warning .radio-inline,
  2891. .has-warning .checkbox-inline,
  2892. .has-warning.radio label,
  2893. .has-warning.checkbox label,
  2894. .has-warning.radio-inline label,
  2895. .has-warning.checkbox-inline label {
  2896. color: #8a6d3b;
  2897. }
  2898. .has-warning .form-control {
  2899. border-color: #8a6d3b;
  2900. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2901. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2902. }
  2903. .has-warning .form-control:focus {
  2904. border-color: #66512c;
  2905. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2906. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2907. }
  2908. .has-warning .input-group-addon {
  2909. color: #8a6d3b;
  2910. border-color: #8a6d3b;
  2911. background-color: #fcf8e3;
  2912. }
  2913. .has-warning .form-control-feedback {
  2914. color: #8a6d3b;
  2915. }
  2916. .has-error .help-block,
  2917. .has-error .control-label,
  2918. .has-error .radio,
  2919. .has-error .checkbox,
  2920. .has-error .radio-inline,
  2921. .has-error .checkbox-inline,
  2922. .has-error.radio label,
  2923. .has-error.checkbox label,
  2924. .has-error.radio-inline label,
  2925. .has-error.checkbox-inline label {
  2926. color: #a94442;
  2927. }
  2928. .has-error .form-control {
  2929. border-color: #a94442;
  2930. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2931. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2932. }
  2933. .has-error .form-control:focus {
  2934. border-color: #843534;
  2935. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2936. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2937. }
  2938. .has-error .input-group-addon {
  2939. color: #a94442;
  2940. border-color: #a94442;
  2941. background-color: #f2dede;
  2942. }
  2943. .has-error .form-control-feedback {
  2944. color: #a94442;
  2945. }
  2946. .has-feedback label ~ .form-control-feedback {
  2947. top: 23px;
  2948. }
  2949. .has-feedback label.sr-only ~ .form-control-feedback {
  2950. top: 0;
  2951. }
  2952. .help-block {
  2953. display: block;
  2954. margin-top: 5px;
  2955. margin-bottom: 10px;
  2956. color: #404040;
  2957. }
  2958. @media (min-width: 768px) {
  2959. .form-inline .form-group {
  2960. display: inline-block;
  2961. margin-bottom: 0;
  2962. vertical-align: middle;
  2963. }
  2964. .form-inline .form-control {
  2965. display: inline-block;
  2966. width: auto;
  2967. vertical-align: middle;
  2968. }
  2969. .form-inline .form-control-static {
  2970. display: inline-block;
  2971. }
  2972. .form-inline .input-group {
  2973. display: inline-table;
  2974. vertical-align: middle;
  2975. }
  2976. .form-inline .input-group .input-group-addon,
  2977. .form-inline .input-group .input-group-btn,
  2978. .form-inline .input-group .form-control {
  2979. width: auto;
  2980. }
  2981. .form-inline .input-group > .form-control {
  2982. width: 100%;
  2983. }
  2984. .form-inline .control-label {
  2985. margin-bottom: 0;
  2986. vertical-align: middle;
  2987. }
  2988. .form-inline .radio,
  2989. .form-inline .checkbox {
  2990. display: inline-block;
  2991. margin-top: 0;
  2992. margin-bottom: 0;
  2993. vertical-align: middle;
  2994. }
  2995. .form-inline .radio label,
  2996. .form-inline .checkbox label {
  2997. padding-left: 0;
  2998. }
  2999. .form-inline .radio input[type="radio"],
  3000. .form-inline .checkbox input[type="checkbox"] {
  3001. position: relative;
  3002. margin-left: 0;
  3003. }
  3004. .form-inline .has-feedback .form-control-feedback {
  3005. top: 0;
  3006. }
  3007. }
  3008. .form-horizontal .radio,
  3009. .form-horizontal .checkbox,
  3010. .form-horizontal .radio-inline,
  3011. .form-horizontal .checkbox-inline {
  3012. margin-top: 0;
  3013. margin-bottom: 0;
  3014. padding-top: 7px;
  3015. }
  3016. .form-horizontal .radio,
  3017. .form-horizontal .checkbox {
  3018. min-height: 25px;
  3019. }
  3020. .form-horizontal .form-group {
  3021. margin-left: 0px;
  3022. margin-right: 0px;
  3023. }
  3024. @media (min-width: 768px) {
  3025. .form-horizontal .control-label {
  3026. text-align: right;
  3027. margin-bottom: 0;
  3028. padding-top: 7px;
  3029. }
  3030. }
  3031. .form-horizontal .has-feedback .form-control-feedback {
  3032. right: 0px;
  3033. }
  3034. @media (min-width: 768px) {
  3035. .form-horizontal .form-group-lg .control-label {
  3036. padding-top: 11px;
  3037. font-size: 17px;
  3038. }
  3039. }
  3040. @media (min-width: 768px) {
  3041. .form-horizontal .form-group-sm .control-label {
  3042. padding-top: 6px;
  3043. font-size: 12px;
  3044. }
  3045. }
  3046. .btn {
  3047. display: inline-block;
  3048. margin-bottom: 0;
  3049. font-weight: normal;
  3050. text-align: center;
  3051. vertical-align: middle;
  3052. touch-action: manipulation;
  3053. cursor: pointer;
  3054. background-image: none;
  3055. border: 1px solid transparent;
  3056. white-space: nowrap;
  3057. padding: 6px 12px;
  3058. font-size: 13px;
  3059. line-height: 1.42857143;
  3060. border-radius: 2px;
  3061. -webkit-user-select: none;
  3062. -moz-user-select: none;
  3063. -ms-user-select: none;
  3064. user-select: none;
  3065. }
  3066. .btn:focus,
  3067. .btn:active:focus,
  3068. .btn.active:focus,
  3069. .btn.focus,
  3070. .btn:active.focus,
  3071. .btn.active.focus {
  3072. outline: 5px auto -webkit-focus-ring-color;
  3073. outline-offset: -2px;
  3074. }
  3075. .btn:hover,
  3076. .btn:focus,
  3077. .btn.focus {
  3078. color: #333;
  3079. text-decoration: none;
  3080. }
  3081. .btn:active,
  3082. .btn.active {
  3083. outline: 0;
  3084. background-image: none;
  3085. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3086. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3087. }
  3088. .btn.disabled,
  3089. .btn[disabled],
  3090. fieldset[disabled] .btn {
  3091. cursor: not-allowed;
  3092. opacity: 0.65;
  3093. filter: alpha(opacity=65);
  3094. -webkit-box-shadow: none;
  3095. box-shadow: none;
  3096. }
  3097. a.btn.disabled,
  3098. fieldset[disabled] a.btn {
  3099. pointer-events: none;
  3100. }
  3101. .btn-default {
  3102. color: #333;
  3103. background-color: #fff;
  3104. border-color: #ccc;
  3105. }
  3106. .btn-default:focus,
  3107. .btn-default.focus {
  3108. color: #333;
  3109. background-color: #e6e6e6;
  3110. border-color: #8c8c8c;
  3111. }
  3112. .btn-default:hover {
  3113. color: #333;
  3114. background-color: #e6e6e6;
  3115. border-color: #adadad;
  3116. }
  3117. .btn-default:active,
  3118. .btn-default.active,
  3119. .open > .dropdown-toggle.btn-default {
  3120. color: #333;
  3121. background-color: #e6e6e6;
  3122. border-color: #adadad;
  3123. }
  3124. .btn-default:active:hover,
  3125. .btn-default.active:hover,
  3126. .open > .dropdown-toggle.btn-default:hover,
  3127. .btn-default:active:focus,
  3128. .btn-default.active:focus,
  3129. .open > .dropdown-toggle.btn-default:focus,
  3130. .btn-default:active.focus,
  3131. .btn-default.active.focus,
  3132. .open > .dropdown-toggle.btn-default.focus {
  3133. color: #333;
  3134. background-color: #d4d4d4;
  3135. border-color: #8c8c8c;
  3136. }
  3137. .btn-default:active,
  3138. .btn-default.active,
  3139. .open > .dropdown-toggle.btn-default {
  3140. background-image: none;
  3141. }
  3142. .btn-default.disabled:hover,
  3143. .btn-default[disabled]:hover,
  3144. fieldset[disabled] .btn-default:hover,
  3145. .btn-default.disabled:focus,
  3146. .btn-default[disabled]:focus,
  3147. fieldset[disabled] .btn-default:focus,
  3148. .btn-default.disabled.focus,
  3149. .btn-default[disabled].focus,
  3150. fieldset[disabled] .btn-default.focus {
  3151. background-color: #fff;
  3152. border-color: #ccc;
  3153. }
  3154. .btn-default .badge {
  3155. color: #fff;
  3156. background-color: #333;
  3157. }
  3158. .btn-primary {
  3159. color: #fff;
  3160. background-color: #337ab7;
  3161. border-color: #2e6da4;
  3162. }
  3163. .btn-primary:focus,
  3164. .btn-primary.focus {
  3165. color: #fff;
  3166. background-color: #286090;
  3167. border-color: #122b40;
  3168. }
  3169. .btn-primary:hover {
  3170. color: #fff;
  3171. background-color: #286090;
  3172. border-color: #204d74;
  3173. }
  3174. .btn-primary:active,
  3175. .btn-primary.active,
  3176. .open > .dropdown-toggle.btn-primary {
  3177. color: #fff;
  3178. background-color: #286090;
  3179. border-color: #204d74;
  3180. }
  3181. .btn-primary:active:hover,
  3182. .btn-primary.active:hover,
  3183. .open > .dropdown-toggle.btn-primary:hover,
  3184. .btn-primary:active:focus,
  3185. .btn-primary.active:focus,
  3186. .open > .dropdown-toggle.btn-primary:focus,
  3187. .btn-primary:active.focus,
  3188. .btn-primary.active.focus,
  3189. .open > .dropdown-toggle.btn-primary.focus {
  3190. color: #fff;
  3191. background-color: #204d74;
  3192. border-color: #122b40;
  3193. }
  3194. .btn-primary:active,
  3195. .btn-primary.active,
  3196. .open > .dropdown-toggle.btn-primary {
  3197. background-image: none;
  3198. }
  3199. .btn-primary.disabled:hover,
  3200. .btn-primary[disabled]:hover,
  3201. fieldset[disabled] .btn-primary:hover,
  3202. .btn-primary.disabled:focus,
  3203. .btn-primary[disabled]:focus,
  3204. fieldset[disabled] .btn-primary:focus,
  3205. .btn-primary.disabled.focus,
  3206. .btn-primary[disabled].focus,
  3207. fieldset[disabled] .btn-primary.focus {
  3208. background-color: #337ab7;
  3209. border-color: #2e6da4;
  3210. }
  3211. .btn-primary .badge {
  3212. color: #337ab7;
  3213. background-color: #fff;
  3214. }
  3215. .btn-success {
  3216. color: #fff;
  3217. background-color: #5cb85c;
  3218. border-color: #4cae4c;
  3219. }
  3220. .btn-success:focus,
  3221. .btn-success.focus {
  3222. color: #fff;
  3223. background-color: #449d44;
  3224. border-color: #255625;
  3225. }
  3226. .btn-success:hover {
  3227. color: #fff;
  3228. background-color: #449d44;
  3229. border-color: #398439;
  3230. }
  3231. .btn-success:active,
  3232. .btn-success.active,
  3233. .open > .dropdown-toggle.btn-success {
  3234. color: #fff;
  3235. background-color: #449d44;
  3236. border-color: #398439;
  3237. }
  3238. .btn-success:active:hover,
  3239. .btn-success.active:hover,
  3240. .open > .dropdown-toggle.btn-success:hover,
  3241. .btn-success:active:focus,
  3242. .btn-success.active:focus,
  3243. .open > .dropdown-toggle.btn-success:focus,
  3244. .btn-success:active.focus,
  3245. .btn-success.active.focus,
  3246. .open > .dropdown-toggle.btn-success.focus {
  3247. color: #fff;
  3248. background-color: #398439;
  3249. border-color: #255625;
  3250. }
  3251. .btn-success:active,
  3252. .btn-success.active,
  3253. .open > .dropdown-toggle.btn-success {
  3254. background-image: none;
  3255. }
  3256. .btn-success.disabled:hover,
  3257. .btn-success[disabled]:hover,
  3258. fieldset[disabled] .btn-success:hover,
  3259. .btn-success.disabled:focus,
  3260. .btn-success[disabled]:focus,
  3261. fieldset[disabled] .btn-success:focus,
  3262. .btn-success.disabled.focus,
  3263. .btn-success[disabled].focus,
  3264. fieldset[disabled] .btn-success.focus {
  3265. background-color: #5cb85c;
  3266. border-color: #4cae4c;
  3267. }
  3268. .btn-success .badge {
  3269. color: #5cb85c;
  3270. background-color: #fff;
  3271. }
  3272. .btn-info {
  3273. color: #fff;
  3274. background-color: #5bc0de;
  3275. border-color: #46b8da;
  3276. }
  3277. .btn-info:focus,
  3278. .btn-info.focus {
  3279. color: #fff;
  3280. background-color: #31b0d5;
  3281. border-color: #1b6d85;
  3282. }
  3283. .btn-info:hover {
  3284. color: #fff;
  3285. background-color: #31b0d5;
  3286. border-color: #269abc;
  3287. }
  3288. .btn-info:active,
  3289. .btn-info.active,
  3290. .open > .dropdown-toggle.btn-info {
  3291. color: #fff;
  3292. background-color: #31b0d5;
  3293. border-color: #269abc;
  3294. }
  3295. .btn-info:active:hover,
  3296. .btn-info.active:hover,
  3297. .open > .dropdown-toggle.btn-info:hover,
  3298. .btn-info:active:focus,
  3299. .btn-info.active:focus,
  3300. .open > .dropdown-toggle.btn-info:focus,
  3301. .btn-info:active.focus,
  3302. .btn-info.active.focus,
  3303. .open > .dropdown-toggle.btn-info.focus {
  3304. color: #fff;
  3305. background-color: #269abc;
  3306. border-color: #1b6d85;
  3307. }
  3308. .btn-info:active,
  3309. .btn-info.active,
  3310. .open > .dropdown-toggle.btn-info {
  3311. background-image: none;
  3312. }
  3313. .btn-info.disabled:hover,
  3314. .btn-info[disabled]:hover,
  3315. fieldset[disabled] .btn-info:hover,
  3316. .btn-info.disabled:focus,
  3317. .btn-info[disabled]:focus,
  3318. fieldset[disabled] .btn-info:focus,
  3319. .btn-info.disabled.focus,
  3320. .btn-info[disabled].focus,
  3321. fieldset[disabled] .btn-info.focus {
  3322. background-color: #5bc0de;
  3323. border-color: #46b8da;
  3324. }
  3325. .btn-info .badge {
  3326. color: #5bc0de;
  3327. background-color: #fff;
  3328. }
  3329. .btn-warning {
  3330. color: #fff;
  3331. background-color: #f0ad4e;
  3332. border-color: #eea236;
  3333. }
  3334. .btn-warning:focus,
  3335. .btn-warning.focus {
  3336. color: #fff;
  3337. background-color: #ec971f;
  3338. border-color: #985f0d;
  3339. }
  3340. .btn-warning:hover {
  3341. color: #fff;
  3342. background-color: #ec971f;
  3343. border-color: #d58512;
  3344. }
  3345. .btn-warning:active,
  3346. .btn-warning.active,
  3347. .open > .dropdown-toggle.btn-warning {
  3348. color: #fff;
  3349. background-color: #ec971f;
  3350. border-color: #d58512;
  3351. }
  3352. .btn-warning:active:hover,
  3353. .btn-warning.active:hover,
  3354. .open > .dropdown-toggle.btn-warning:hover,
  3355. .btn-warning:active:focus,
  3356. .btn-warning.active:focus,
  3357. .open > .dropdown-toggle.btn-warning:focus,
  3358. .btn-warning:active.focus,
  3359. .btn-warning.active.focus,
  3360. .open > .dropdown-toggle.btn-warning.focus {
  3361. color: #fff;
  3362. background-color: #d58512;
  3363. border-color: #985f0d;
  3364. }
  3365. .btn-warning:active,
  3366. .btn-warning.active,
  3367. .open > .dropdown-toggle.btn-warning {
  3368. background-image: none;
  3369. }
  3370. .btn-warning.disabled:hover,
  3371. .btn-warning[disabled]:hover,
  3372. fieldset[disabled] .btn-warning:hover,
  3373. .btn-warning.disabled:focus,
  3374. .btn-warning[disabled]:focus,
  3375. fieldset[disabled] .btn-warning:focus,
  3376. .btn-warning.disabled.focus,
  3377. .btn-warning[disabled].focus,
  3378. fieldset[disabled] .btn-warning.focus {
  3379. background-color: #f0ad4e;
  3380. border-color: #eea236;
  3381. }
  3382. .btn-warning .badge {
  3383. color: #f0ad4e;
  3384. background-color: #fff;
  3385. }
  3386. .btn-danger {
  3387. color: #fff;
  3388. background-color: #d9534f;
  3389. border-color: #d43f3a;
  3390. }
  3391. .btn-danger:focus,
  3392. .btn-danger.focus {
  3393. color: #fff;
  3394. background-color: #c9302c;
  3395. border-color: #761c19;
  3396. }
  3397. .btn-danger:hover {
  3398. color: #fff;
  3399. background-color: #c9302c;
  3400. border-color: #ac2925;
  3401. }
  3402. .btn-danger:active,
  3403. .btn-danger.active,
  3404. .open > .dropdown-toggle.btn-danger {
  3405. color: #fff;
  3406. background-color: #c9302c;
  3407. border-color: #ac2925;
  3408. }
  3409. .btn-danger:active:hover,
  3410. .btn-danger.active:hover,
  3411. .open > .dropdown-toggle.btn-danger:hover,
  3412. .btn-danger:active:focus,
  3413. .btn-danger.active:focus,
  3414. .open > .dropdown-toggle.btn-danger:focus,
  3415. .btn-danger:active.focus,
  3416. .btn-danger.active.focus,
  3417. .open > .dropdown-toggle.btn-danger.focus {
  3418. color: #fff;
  3419. background-color: #ac2925;
  3420. border-color: #761c19;
  3421. }
  3422. .btn-danger:active,
  3423. .btn-danger.active,
  3424. .open > .dropdown-toggle.btn-danger {
  3425. background-image: none;
  3426. }
  3427. .btn-danger.disabled:hover,
  3428. .btn-danger[disabled]:hover,
  3429. fieldset[disabled] .btn-danger:hover,
  3430. .btn-danger.disabled:focus,
  3431. .btn-danger[disabled]:focus,
  3432. fieldset[disabled] .btn-danger:focus,
  3433. .btn-danger.disabled.focus,
  3434. .btn-danger[disabled].focus,
  3435. fieldset[disabled] .btn-danger.focus {
  3436. background-color: #d9534f;
  3437. border-color: #d43f3a;
  3438. }
  3439. .btn-danger .badge {
  3440. color: #d9534f;
  3441. background-color: #fff;
  3442. }
  3443. .btn-link {
  3444. color: #337ab7;
  3445. font-weight: normal;
  3446. border-radius: 0;
  3447. }
  3448. .btn-link,
  3449. .btn-link:active,
  3450. .btn-link.active,
  3451. .btn-link[disabled],
  3452. fieldset[disabled] .btn-link {
  3453. background-color: transparent;
  3454. -webkit-box-shadow: none;
  3455. box-shadow: none;
  3456. }
  3457. .btn-link,
  3458. .btn-link:hover,
  3459. .btn-link:focus,
  3460. .btn-link:active {
  3461. border-color: transparent;
  3462. }
  3463. .btn-link:hover,
  3464. .btn-link:focus {
  3465. color: #23527c;
  3466. text-decoration: underline;
  3467. background-color: transparent;
  3468. }
  3469. .btn-link[disabled]:hover,
  3470. fieldset[disabled] .btn-link:hover,
  3471. .btn-link[disabled]:focus,
  3472. fieldset[disabled] .btn-link:focus {
  3473. color: #777777;
  3474. text-decoration: none;
  3475. }
  3476. .btn-lg,
  3477. .btn-group-lg > .btn {
  3478. padding: 10px 16px;
  3479. font-size: 17px;
  3480. line-height: 1.3333333;
  3481. border-radius: 3px;
  3482. }
  3483. .btn-sm,
  3484. .btn-group-sm > .btn {
  3485. padding: 5px 10px;
  3486. font-size: 12px;
  3487. line-height: 1.5;
  3488. border-radius: 1px;
  3489. }
  3490. .btn-xs,
  3491. .btn-group-xs > .btn {
  3492. padding: 1px 5px;
  3493. font-size: 12px;
  3494. line-height: 1.5;
  3495. border-radius: 1px;
  3496. }
  3497. .btn-block {
  3498. display: block;
  3499. width: 100%;
  3500. }
  3501. .btn-block + .btn-block {
  3502. margin-top: 5px;
  3503. }
  3504. input[type="submit"].btn-block,
  3505. input[type="reset"].btn-block,
  3506. input[type="button"].btn-block {
  3507. width: 100%;
  3508. }
  3509. .fade {
  3510. opacity: 0;
  3511. -webkit-transition: opacity 0.15s linear;
  3512. -o-transition: opacity 0.15s linear;
  3513. transition: opacity 0.15s linear;
  3514. }
  3515. .fade.in {
  3516. opacity: 1;
  3517. }
  3518. .collapse {
  3519. display: none;
  3520. }
  3521. .collapse.in {
  3522. display: block;
  3523. }
  3524. tr.collapse.in {
  3525. display: table-row;
  3526. }
  3527. tbody.collapse.in {
  3528. display: table-row-group;
  3529. }
  3530. .collapsing {
  3531. position: relative;
  3532. height: 0;
  3533. overflow: hidden;
  3534. -webkit-transition-property: height, visibility;
  3535. transition-property: height, visibility;
  3536. -webkit-transition-duration: 0.35s;
  3537. transition-duration: 0.35s;
  3538. -webkit-transition-timing-function: ease;
  3539. transition-timing-function: ease;
  3540. }
  3541. .caret {
  3542. display: inline-block;
  3543. width: 0;
  3544. height: 0;
  3545. margin-left: 2px;
  3546. vertical-align: middle;
  3547. border-top: 4px dashed;
  3548. border-top: 4px solid \9;
  3549. border-right: 4px solid transparent;
  3550. border-left: 4px solid transparent;
  3551. }
  3552. .dropup,
  3553. .dropdown {
  3554. position: relative;
  3555. }
  3556. .dropdown-toggle:focus {
  3557. outline: 0;
  3558. }
  3559. .dropdown-menu {
  3560. position: absolute;
  3561. top: 100%;
  3562. left: 0;
  3563. z-index: 1000;
  3564. display: none;
  3565. float: left;
  3566. min-width: 160px;
  3567. padding: 5px 0;
  3568. margin: 2px 0 0;
  3569. list-style: none;
  3570. font-size: 13px;
  3571. text-align: left;
  3572. background-color: #fff;
  3573. border: 1px solid #ccc;
  3574. border: 1px solid rgba(0, 0, 0, 0.15);
  3575. border-radius: 2px;
  3576. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3577. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3578. background-clip: padding-box;
  3579. }
  3580. .dropdown-menu.pull-right {
  3581. right: 0;
  3582. left: auto;
  3583. }
  3584. .dropdown-menu .divider {
  3585. height: 1px;
  3586. margin: 8px 0;
  3587. overflow: hidden;
  3588. background-color: #e5e5e5;
  3589. }
  3590. .dropdown-menu > li > a {
  3591. display: block;
  3592. padding: 3px 20px;
  3593. clear: both;
  3594. font-weight: normal;
  3595. line-height: 1.42857143;
  3596. color: #333333;
  3597. white-space: nowrap;
  3598. }
  3599. .dropdown-menu > li > a:hover,
  3600. .dropdown-menu > li > a:focus {
  3601. text-decoration: none;
  3602. color: #262626;
  3603. background-color: #f5f5f5;
  3604. }
  3605. .dropdown-menu > .active > a,
  3606. .dropdown-menu > .active > a:hover,
  3607. .dropdown-menu > .active > a:focus {
  3608. color: #fff;
  3609. text-decoration: none;
  3610. outline: 0;
  3611. background-color: #337ab7;
  3612. }
  3613. .dropdown-menu > .disabled > a,
  3614. .dropdown-menu > .disabled > a:hover,
  3615. .dropdown-menu > .disabled > a:focus {
  3616. color: #777777;
  3617. }
  3618. .dropdown-menu > .disabled > a:hover,
  3619. .dropdown-menu > .disabled > a:focus {
  3620. text-decoration: none;
  3621. background-color: transparent;
  3622. background-image: none;
  3623. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3624. cursor: not-allowed;
  3625. }
  3626. .open > .dropdown-menu {
  3627. display: block;
  3628. }
  3629. .open > a {
  3630. outline: 0;
  3631. }
  3632. .dropdown-menu-right {
  3633. left: auto;
  3634. right: 0;
  3635. }
  3636. .dropdown-menu-left {
  3637. left: 0;
  3638. right: auto;
  3639. }
  3640. .dropdown-header {
  3641. display: block;
  3642. padding: 3px 20px;
  3643. font-size: 12px;
  3644. line-height: 1.42857143;
  3645. color: #777777;
  3646. white-space: nowrap;
  3647. }
  3648. .dropdown-backdrop {
  3649. position: fixed;
  3650. left: 0;
  3651. right: 0;
  3652. bottom: 0;
  3653. top: 0;
  3654. z-index: 990;
  3655. }
  3656. .pull-right > .dropdown-menu {
  3657. right: 0;
  3658. left: auto;
  3659. }
  3660. .dropup .caret,
  3661. .navbar-fixed-bottom .dropdown .caret {
  3662. border-top: 0;
  3663. border-bottom: 4px dashed;
  3664. border-bottom: 4px solid \9;
  3665. content: "";
  3666. }
  3667. .dropup .dropdown-menu,
  3668. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3669. top: auto;
  3670. bottom: 100%;
  3671. margin-bottom: 2px;
  3672. }
  3673. @media (min-width: 541px) {
  3674. .navbar-right .dropdown-menu {
  3675. left: auto;
  3676. right: 0;
  3677. }
  3678. .navbar-right .dropdown-menu-left {
  3679. left: 0;
  3680. right: auto;
  3681. }
  3682. }
  3683. .btn-group,
  3684. .btn-group-vertical {
  3685. position: relative;
  3686. display: inline-block;
  3687. vertical-align: middle;
  3688. }
  3689. .btn-group > .btn,
  3690. .btn-group-vertical > .btn {
  3691. position: relative;
  3692. float: left;
  3693. }
  3694. .btn-group > .btn:hover,
  3695. .btn-group-vertical > .btn:hover,
  3696. .btn-group > .btn:focus,
  3697. .btn-group-vertical > .btn:focus,
  3698. .btn-group > .btn:active,
  3699. .btn-group-vertical > .btn:active,
  3700. .btn-group > .btn.active,
  3701. .btn-group-vertical > .btn.active {
  3702. z-index: 2;
  3703. }
  3704. .btn-group .btn + .btn,
  3705. .btn-group .btn + .btn-group,
  3706. .btn-group .btn-group + .btn,
  3707. .btn-group .btn-group + .btn-group {
  3708. margin-left: -1px;
  3709. }
  3710. .btn-toolbar {
  3711. margin-left: -5px;
  3712. }
  3713. .btn-toolbar .btn,
  3714. .btn-toolbar .btn-group,
  3715. .btn-toolbar .input-group {
  3716. float: left;
  3717. }
  3718. .btn-toolbar > .btn,
  3719. .btn-toolbar > .btn-group,
  3720. .btn-toolbar > .input-group {
  3721. margin-left: 5px;
  3722. }
  3723. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3724. border-radius: 0;
  3725. }
  3726. .btn-group > .btn:first-child {
  3727. margin-left: 0;
  3728. }
  3729. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3730. border-bottom-right-radius: 0;
  3731. border-top-right-radius: 0;
  3732. }
  3733. .btn-group > .btn:last-child:not(:first-child),
  3734. .btn-group > .dropdown-toggle:not(:first-child) {
  3735. border-bottom-left-radius: 0;
  3736. border-top-left-radius: 0;
  3737. }
  3738. .btn-group > .btn-group {
  3739. float: left;
  3740. }
  3741. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3742. border-radius: 0;
  3743. }
  3744. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3745. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3746. border-bottom-right-radius: 0;
  3747. border-top-right-radius: 0;
  3748. }
  3749. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3750. border-bottom-left-radius: 0;
  3751. border-top-left-radius: 0;
  3752. }
  3753. .btn-group .dropdown-toggle:active,
  3754. .btn-group.open .dropdown-toggle {
  3755. outline: 0;
  3756. }
  3757. .btn-group > .btn + .dropdown-toggle {
  3758. padding-left: 8px;
  3759. padding-right: 8px;
  3760. }
  3761. .btn-group > .btn-lg + .dropdown-toggle {
  3762. padding-left: 12px;
  3763. padding-right: 12px;
  3764. }
  3765. .btn-group.open .dropdown-toggle {
  3766. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3767. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3768. }
  3769. .btn-group.open .dropdown-toggle.btn-link {
  3770. -webkit-box-shadow: none;
  3771. box-shadow: none;
  3772. }
  3773. .btn .caret {
  3774. margin-left: 0;
  3775. }
  3776. .btn-lg .caret {
  3777. border-width: 5px 5px 0;
  3778. border-bottom-width: 0;
  3779. }
  3780. .dropup .btn-lg .caret {
  3781. border-width: 0 5px 5px;
  3782. }
  3783. .btn-group-vertical > .btn,
  3784. .btn-group-vertical > .btn-group,
  3785. .btn-group-vertical > .btn-group > .btn {
  3786. display: block;
  3787. float: none;
  3788. width: 100%;
  3789. max-width: 100%;
  3790. }
  3791. .btn-group-vertical > .btn-group > .btn {
  3792. float: none;
  3793. }
  3794. .btn-group-vertical > .btn + .btn,
  3795. .btn-group-vertical > .btn + .btn-group,
  3796. .btn-group-vertical > .btn-group + .btn,
  3797. .btn-group-vertical > .btn-group + .btn-group {
  3798. margin-top: -1px;
  3799. margin-left: 0;
  3800. }
  3801. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3802. border-radius: 0;
  3803. }
  3804. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3805. border-top-right-radius: 2px;
  3806. border-top-left-radius: 2px;
  3807. border-bottom-right-radius: 0;
  3808. border-bottom-left-radius: 0;
  3809. }
  3810. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3811. border-top-right-radius: 0;
  3812. border-top-left-radius: 0;
  3813. border-bottom-right-radius: 2px;
  3814. border-bottom-left-radius: 2px;
  3815. }
  3816. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3817. border-radius: 0;
  3818. }
  3819. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3820. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3821. border-bottom-right-radius: 0;
  3822. border-bottom-left-radius: 0;
  3823. }
  3824. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3825. border-top-right-radius: 0;
  3826. border-top-left-radius: 0;
  3827. }
  3828. .btn-group-justified {
  3829. display: table;
  3830. width: 100%;
  3831. table-layout: fixed;
  3832. border-collapse: separate;
  3833. }
  3834. .btn-group-justified > .btn,
  3835. .btn-group-justified > .btn-group {
  3836. float: none;
  3837. display: table-cell;
  3838. width: 1%;
  3839. }
  3840. .btn-group-justified > .btn-group .btn {
  3841. width: 100%;
  3842. }
  3843. .btn-group-justified > .btn-group .dropdown-menu {
  3844. left: auto;
  3845. }
  3846. [data-toggle="buttons"] > .btn input[type="radio"],
  3847. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3848. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3849. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3850. position: absolute;
  3851. clip: rect(0, 0, 0, 0);
  3852. pointer-events: none;
  3853. }
  3854. .input-group {
  3855. position: relative;
  3856. display: table;
  3857. border-collapse: separate;
  3858. }
  3859. .input-group[class*="col-"] {
  3860. float: none;
  3861. padding-left: 0;
  3862. padding-right: 0;
  3863. }
  3864. .input-group .form-control {
  3865. position: relative;
  3866. z-index: 2;
  3867. float: left;
  3868. width: 100%;
  3869. margin-bottom: 0;
  3870. }
  3871. .input-group .form-control:focus {
  3872. z-index: 3;
  3873. }
  3874. .input-group-lg > .form-control,
  3875. .input-group-lg > .input-group-addon,
  3876. .input-group-lg > .input-group-btn > .btn {
  3877. height: 45px;
  3878. padding: 10px 16px;
  3879. font-size: 17px;
  3880. line-height: 1.3333333;
  3881. border-radius: 3px;
  3882. }
  3883. select.input-group-lg > .form-control,
  3884. select.input-group-lg > .input-group-addon,
  3885. select.input-group-lg > .input-group-btn > .btn {
  3886. height: 45px;
  3887. line-height: 45px;
  3888. }
  3889. textarea.input-group-lg > .form-control,
  3890. textarea.input-group-lg > .input-group-addon,
  3891. textarea.input-group-lg > .input-group-btn > .btn,
  3892. select[multiple].input-group-lg > .form-control,
  3893. select[multiple].input-group-lg > .input-group-addon,
  3894. select[multiple].input-group-lg > .input-group-btn > .btn {
  3895. height: auto;
  3896. }
  3897. .input-group-sm > .form-control,
  3898. .input-group-sm > .input-group-addon,
  3899. .input-group-sm > .input-group-btn > .btn {
  3900. height: 30px;
  3901. padding: 5px 10px;
  3902. font-size: 12px;
  3903. line-height: 1.5;
  3904. border-radius: 1px;
  3905. }
  3906. select.input-group-sm > .form-control,
  3907. select.input-group-sm > .input-group-addon,
  3908. select.input-group-sm > .input-group-btn > .btn {
  3909. height: 30px;
  3910. line-height: 30px;
  3911. }
  3912. textarea.input-group-sm > .form-control,
  3913. textarea.input-group-sm > .input-group-addon,
  3914. textarea.input-group-sm > .input-group-btn > .btn,
  3915. select[multiple].input-group-sm > .form-control,
  3916. select[multiple].input-group-sm > .input-group-addon,
  3917. select[multiple].input-group-sm > .input-group-btn > .btn {
  3918. height: auto;
  3919. }
  3920. .input-group-addon,
  3921. .input-group-btn,
  3922. .input-group .form-control {
  3923. display: table-cell;
  3924. }
  3925. .input-group-addon:not(:first-child):not(:last-child),
  3926. .input-group-btn:not(:first-child):not(:last-child),
  3927. .input-group .form-control:not(:first-child):not(:last-child) {
  3928. border-radius: 0;
  3929. }
  3930. .input-group-addon,
  3931. .input-group-btn {
  3932. width: 1%;
  3933. white-space: nowrap;
  3934. vertical-align: middle;
  3935. }
  3936. .input-group-addon {
  3937. padding: 6px 12px;
  3938. font-size: 13px;
  3939. font-weight: normal;
  3940. line-height: 1;
  3941. color: #555555;
  3942. text-align: center;
  3943. background-color: #eeeeee;
  3944. border: 1px solid #ccc;
  3945. border-radius: 2px;
  3946. }
  3947. .input-group-addon.input-sm {
  3948. padding: 5px 10px;
  3949. font-size: 12px;
  3950. border-radius: 1px;
  3951. }
  3952. .input-group-addon.input-lg {
  3953. padding: 10px 16px;
  3954. font-size: 17px;
  3955. border-radius: 3px;
  3956. }
  3957. .input-group-addon input[type="radio"],
  3958. .input-group-addon input[type="checkbox"] {
  3959. margin-top: 0;
  3960. }
  3961. .input-group .form-control:first-child,
  3962. .input-group-addon:first-child,
  3963. .input-group-btn:first-child > .btn,
  3964. .input-group-btn:first-child > .btn-group > .btn,
  3965. .input-group-btn:first-child > .dropdown-toggle,
  3966. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3967. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3968. border-bottom-right-radius: 0;
  3969. border-top-right-radius: 0;
  3970. }
  3971. .input-group-addon:first-child {
  3972. border-right: 0;
  3973. }
  3974. .input-group .form-control:last-child,
  3975. .input-group-addon:last-child,
  3976. .input-group-btn:last-child > .btn,
  3977. .input-group-btn:last-child > .btn-group > .btn,
  3978. .input-group-btn:last-child > .dropdown-toggle,
  3979. .input-group-btn:first-child > .btn:not(:first-child),
  3980. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3981. border-bottom-left-radius: 0;
  3982. border-top-left-radius: 0;
  3983. }
  3984. .input-group-addon:last-child {
  3985. border-left: 0;
  3986. }
  3987. .input-group-btn {
  3988. position: relative;
  3989. font-size: 0;
  3990. white-space: nowrap;
  3991. }
  3992. .input-group-btn > .btn {
  3993. position: relative;
  3994. }
  3995. .input-group-btn > .btn + .btn {
  3996. margin-left: -1px;
  3997. }
  3998. .input-group-btn > .btn:hover,
  3999. .input-group-btn > .btn:focus,
  4000. .input-group-btn > .btn:active {
  4001. z-index: 2;
  4002. }
  4003. .input-group-btn:first-child > .btn,
  4004. .input-group-btn:first-child > .btn-group {
  4005. margin-right: -1px;
  4006. }
  4007. .input-group-btn:last-child > .btn,
  4008. .input-group-btn:last-child > .btn-group {
  4009. z-index: 2;
  4010. margin-left: -1px;
  4011. }
  4012. .nav {
  4013. margin-bottom: 0;
  4014. padding-left: 0;
  4015. list-style: none;
  4016. }
  4017. .nav > li {
  4018. position: relative;
  4019. display: block;
  4020. }
  4021. .nav > li > a {
  4022. position: relative;
  4023. display: block;
  4024. padding: 10px 15px;
  4025. }
  4026. .nav > li > a:hover,
  4027. .nav > li > a:focus {
  4028. text-decoration: none;
  4029. background-color: #eeeeee;
  4030. }
  4031. .nav > li.disabled > a {
  4032. color: #777777;
  4033. }
  4034. .nav > li.disabled > a:hover,
  4035. .nav > li.disabled > a:focus {
  4036. color: #777777;
  4037. text-decoration: none;
  4038. background-color: transparent;
  4039. cursor: not-allowed;
  4040. }
  4041. .nav .open > a,
  4042. .nav .open > a:hover,
  4043. .nav .open > a:focus {
  4044. background-color: #eeeeee;
  4045. border-color: #337ab7;
  4046. }
  4047. .nav .nav-divider {
  4048. height: 1px;
  4049. margin: 8px 0;
  4050. overflow: hidden;
  4051. background-color: #e5e5e5;
  4052. }
  4053. .nav > li > a > img {
  4054. max-width: none;
  4055. }
  4056. .nav-tabs {
  4057. border-bottom: 1px solid #ddd;
  4058. }
  4059. .nav-tabs > li {
  4060. float: left;
  4061. margin-bottom: -1px;
  4062. }
  4063. .nav-tabs > li > a {
  4064. margin-right: 2px;
  4065. line-height: 1.42857143;
  4066. border: 1px solid transparent;
  4067. border-radius: 2px 2px 0 0;
  4068. }
  4069. .nav-tabs > li > a:hover {
  4070. border-color: #eeeeee #eeeeee #ddd;
  4071. }
  4072. .nav-tabs > li.active > a,
  4073. .nav-tabs > li.active > a:hover,
  4074. .nav-tabs > li.active > a:focus {
  4075. color: #555555;
  4076. background-color: #fff;
  4077. border: 1px solid #ddd;
  4078. border-bottom-color: transparent;
  4079. cursor: default;
  4080. }
  4081. .nav-tabs.nav-justified {
  4082. width: 100%;
  4083. border-bottom: 0;
  4084. }
  4085. .nav-tabs.nav-justified > li {
  4086. float: none;
  4087. }
  4088. .nav-tabs.nav-justified > li > a {
  4089. text-align: center;
  4090. margin-bottom: 5px;
  4091. }
  4092. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4093. top: auto;
  4094. left: auto;
  4095. }
  4096. @media (min-width: 768px) {
  4097. .nav-tabs.nav-justified > li {
  4098. display: table-cell;
  4099. width: 1%;
  4100. }
  4101. .nav-tabs.nav-justified > li > a {
  4102. margin-bottom: 0;
  4103. }
  4104. }
  4105. .nav-tabs.nav-justified > li > a {
  4106. margin-right: 0;
  4107. border-radius: 2px;
  4108. }
  4109. .nav-tabs.nav-justified > .active > a,
  4110. .nav-tabs.nav-justified > .active > a:hover,
  4111. .nav-tabs.nav-justified > .active > a:focus {
  4112. border: 1px solid #ddd;
  4113. }
  4114. @media (min-width: 768px) {
  4115. .nav-tabs.nav-justified > li > a {
  4116. border-bottom: 1px solid #ddd;
  4117. border-radius: 2px 2px 0 0;
  4118. }
  4119. .nav-tabs.nav-justified > .active > a,
  4120. .nav-tabs.nav-justified > .active > a:hover,
  4121. .nav-tabs.nav-justified > .active > a:focus {
  4122. border-bottom-color: #fff;
  4123. }
  4124. }
  4125. .nav-pills > li {
  4126. float: left;
  4127. }
  4128. .nav-pills > li > a {
  4129. border-radius: 2px;
  4130. }
  4131. .nav-pills > li + li {
  4132. margin-left: 2px;
  4133. }
  4134. .nav-pills > li.active > a,
  4135. .nav-pills > li.active > a:hover,
  4136. .nav-pills > li.active > a:focus {
  4137. color: #fff;
  4138. background-color: #337ab7;
  4139. }
  4140. .nav-stacked > li {
  4141. float: none;
  4142. }
  4143. .nav-stacked > li + li {
  4144. margin-top: 2px;
  4145. margin-left: 0;
  4146. }
  4147. .nav-justified {
  4148. width: 100%;
  4149. }
  4150. .nav-justified > li {
  4151. float: none;
  4152. }
  4153. .nav-justified > li > a {
  4154. text-align: center;
  4155. margin-bottom: 5px;
  4156. }
  4157. .nav-justified > .dropdown .dropdown-menu {
  4158. top: auto;
  4159. left: auto;
  4160. }
  4161. @media (min-width: 768px) {
  4162. .nav-justified > li {
  4163. display: table-cell;
  4164. width: 1%;
  4165. }
  4166. .nav-justified > li > a {
  4167. margin-bottom: 0;
  4168. }
  4169. }
  4170. .nav-tabs-justified {
  4171. border-bottom: 0;
  4172. }
  4173. .nav-tabs-justified > li > a {
  4174. margin-right: 0;
  4175. border-radius: 2px;
  4176. }
  4177. .nav-tabs-justified > .active > a,
  4178. .nav-tabs-justified > .active > a:hover,
  4179. .nav-tabs-justified > .active > a:focus {
  4180. border: 1px solid #ddd;
  4181. }
  4182. @media (min-width: 768px) {
  4183. .nav-tabs-justified > li > a {
  4184. border-bottom: 1px solid #ddd;
  4185. border-radius: 2px 2px 0 0;
  4186. }
  4187. .nav-tabs-justified > .active > a,
  4188. .nav-tabs-justified > .active > a:hover,
  4189. .nav-tabs-justified > .active > a:focus {
  4190. border-bottom-color: #fff;
  4191. }
  4192. }
  4193. .tab-content > .tab-pane {
  4194. display: none;
  4195. }
  4196. .tab-content > .active {
  4197. display: block;
  4198. }
  4199. .nav-tabs .dropdown-menu {
  4200. margin-top: -1px;
  4201. border-top-right-radius: 0;
  4202. border-top-left-radius: 0;
  4203. }
  4204. .navbar {
  4205. position: relative;
  4206. min-height: 30px;
  4207. margin-bottom: 18px;
  4208. border: 1px solid transparent;
  4209. }
  4210. @media (min-width: 541px) {
  4211. .navbar {
  4212. border-radius: 2px;
  4213. }
  4214. }
  4215. @media (min-width: 541px) {
  4216. .navbar-header {
  4217. float: left;
  4218. }
  4219. }
  4220. .navbar-collapse {
  4221. overflow-x: visible;
  4222. padding-right: 0px;
  4223. padding-left: 0px;
  4224. border-top: 1px solid transparent;
  4225. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4226. -webkit-overflow-scrolling: touch;
  4227. }
  4228. .navbar-collapse.in {
  4229. overflow-y: auto;
  4230. }
  4231. @media (min-width: 541px) {
  4232. .navbar-collapse {
  4233. width: auto;
  4234. border-top: 0;
  4235. box-shadow: none;
  4236. }
  4237. .navbar-collapse.collapse {
  4238. display: block !important;
  4239. height: auto !important;
  4240. padding-bottom: 0;
  4241. overflow: visible !important;
  4242. }
  4243. .navbar-collapse.in {
  4244. overflow-y: visible;
  4245. }
  4246. .navbar-fixed-top .navbar-collapse,
  4247. .navbar-static-top .navbar-collapse,
  4248. .navbar-fixed-bottom .navbar-collapse {
  4249. padding-left: 0;
  4250. padding-right: 0;
  4251. }
  4252. }
  4253. .navbar-fixed-top .navbar-collapse,
  4254. .navbar-fixed-bottom .navbar-collapse {
  4255. max-height: 340px;
  4256. }
  4257. @media (max-device-width: 540px) and (orientation: landscape) {
  4258. .navbar-fixed-top .navbar-collapse,
  4259. .navbar-fixed-bottom .navbar-collapse {
  4260. max-height: 200px;
  4261. }
  4262. }
  4263. .container > .navbar-header,
  4264. .container-fluid > .navbar-header,
  4265. .container > .navbar-collapse,
  4266. .container-fluid > .navbar-collapse {
  4267. margin-right: 0px;
  4268. margin-left: 0px;
  4269. }
  4270. @media (min-width: 541px) {
  4271. .container > .navbar-header,
  4272. .container-fluid > .navbar-header,
  4273. .container > .navbar-collapse,
  4274. .container-fluid > .navbar-collapse {
  4275. margin-right: 0;
  4276. margin-left: 0;
  4277. }
  4278. }
  4279. .navbar-static-top {
  4280. z-index: 1000;
  4281. border-width: 0 0 1px;
  4282. }
  4283. @media (min-width: 541px) {
  4284. .navbar-static-top {
  4285. border-radius: 0;
  4286. }
  4287. }
  4288. .navbar-fixed-top,
  4289. .navbar-fixed-bottom {
  4290. position: fixed;
  4291. right: 0;
  4292. left: 0;
  4293. z-index: 1030;
  4294. }
  4295. @media (min-width: 541px) {
  4296. .navbar-fixed-top,
  4297. .navbar-fixed-bottom {
  4298. border-radius: 0;
  4299. }
  4300. }
  4301. .navbar-fixed-top {
  4302. top: 0;
  4303. border-width: 0 0 1px;
  4304. }
  4305. .navbar-fixed-bottom {
  4306. bottom: 0;
  4307. margin-bottom: 0;
  4308. border-width: 1px 0 0;
  4309. }
  4310. .navbar-brand {
  4311. float: left;
  4312. padding: 6px 0px;
  4313. font-size: 17px;
  4314. line-height: 18px;
  4315. height: 30px;
  4316. }
  4317. .navbar-brand:hover,
  4318. .navbar-brand:focus {
  4319. text-decoration: none;
  4320. }
  4321. .navbar-brand > img {
  4322. display: block;
  4323. }
  4324. @media (min-width: 541px) {
  4325. .navbar > .container .navbar-brand,
  4326. .navbar > .container-fluid .navbar-brand {
  4327. margin-left: 0px;
  4328. }
  4329. }
  4330. .navbar-toggle {
  4331. position: relative;
  4332. float: right;
  4333. margin-right: 0px;
  4334. padding: 9px 10px;
  4335. margin-top: -2px;
  4336. margin-bottom: -2px;
  4337. background-color: transparent;
  4338. background-image: none;
  4339. border: 1px solid transparent;
  4340. border-radius: 2px;
  4341. }
  4342. .navbar-toggle:focus {
  4343. outline: 0;
  4344. }
  4345. .navbar-toggle .icon-bar {
  4346. display: block;
  4347. width: 22px;
  4348. height: 2px;
  4349. border-radius: 1px;
  4350. }
  4351. .navbar-toggle .icon-bar + .icon-bar {
  4352. margin-top: 4px;
  4353. }
  4354. @media (min-width: 541px) {
  4355. .navbar-toggle {
  4356. display: none;
  4357. }
  4358. }
  4359. .navbar-nav {
  4360. margin: 3px 0px;
  4361. }
  4362. .navbar-nav > li > a {
  4363. padding-top: 10px;
  4364. padding-bottom: 10px;
  4365. line-height: 18px;
  4366. }
  4367. @media (max-width: 540px) {
  4368. .navbar-nav .open .dropdown-menu {
  4369. position: static;
  4370. float: none;
  4371. width: auto;
  4372. margin-top: 0;
  4373. background-color: transparent;
  4374. border: 0;
  4375. box-shadow: none;
  4376. }
  4377. .navbar-nav .open .dropdown-menu > li > a,
  4378. .navbar-nav .open .dropdown-menu .dropdown-header {
  4379. padding: 5px 15px 5px 25px;
  4380. }
  4381. .navbar-nav .open .dropdown-menu > li > a {
  4382. line-height: 18px;
  4383. }
  4384. .navbar-nav .open .dropdown-menu > li > a:hover,
  4385. .navbar-nav .open .dropdown-menu > li > a:focus {
  4386. background-image: none;
  4387. }
  4388. }
  4389. @media (min-width: 541px) {
  4390. .navbar-nav {
  4391. float: left;
  4392. margin: 0;
  4393. }
  4394. .navbar-nav > li {
  4395. float: left;
  4396. }
  4397. .navbar-nav > li > a {
  4398. padding-top: 6px;
  4399. padding-bottom: 6px;
  4400. }
  4401. }
  4402. .navbar-form {
  4403. margin-left: 0px;
  4404. margin-right: 0px;
  4405. padding: 10px 0px;
  4406. border-top: 1px solid transparent;
  4407. border-bottom: 1px solid transparent;
  4408. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4409. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4410. margin-top: -1px;
  4411. margin-bottom: -1px;
  4412. }
  4413. @media (min-width: 768px) {
  4414. .navbar-form .form-group {
  4415. display: inline-block;
  4416. margin-bottom: 0;
  4417. vertical-align: middle;
  4418. }
  4419. .navbar-form .form-control {
  4420. display: inline-block;
  4421. width: auto;
  4422. vertical-align: middle;
  4423. }
  4424. .navbar-form .form-control-static {
  4425. display: inline-block;
  4426. }
  4427. .navbar-form .input-group {
  4428. display: inline-table;
  4429. vertical-align: middle;
  4430. }
  4431. .navbar-form .input-group .input-group-addon,
  4432. .navbar-form .input-group .input-group-btn,
  4433. .navbar-form .input-group .form-control {
  4434. width: auto;
  4435. }
  4436. .navbar-form .input-group > .form-control {
  4437. width: 100%;
  4438. }
  4439. .navbar-form .control-label {
  4440. margin-bottom: 0;
  4441. vertical-align: middle;
  4442. }
  4443. .navbar-form .radio,
  4444. .navbar-form .checkbox {
  4445. display: inline-block;
  4446. margin-top: 0;
  4447. margin-bottom: 0;
  4448. vertical-align: middle;
  4449. }
  4450. .navbar-form .radio label,
  4451. .navbar-form .checkbox label {
  4452. padding-left: 0;
  4453. }
  4454. .navbar-form .radio input[type="radio"],
  4455. .navbar-form .checkbox input[type="checkbox"] {
  4456. position: relative;
  4457. margin-left: 0;
  4458. }
  4459. .navbar-form .has-feedback .form-control-feedback {
  4460. top: 0;
  4461. }
  4462. }
  4463. @media (max-width: 540px) {
  4464. .navbar-form .form-group {
  4465. margin-bottom: 5px;
  4466. }
  4467. .navbar-form .form-group:last-child {
  4468. margin-bottom: 0;
  4469. }
  4470. }
  4471. @media (min-width: 541px) {
  4472. .navbar-form {
  4473. width: auto;
  4474. border: 0;
  4475. margin-left: 0;
  4476. margin-right: 0;
  4477. padding-top: 0;
  4478. padding-bottom: 0;
  4479. -webkit-box-shadow: none;
  4480. box-shadow: none;
  4481. }
  4482. }
  4483. .navbar-nav > li > .dropdown-menu {
  4484. margin-top: 0;
  4485. border-top-right-radius: 0;
  4486. border-top-left-radius: 0;
  4487. }
  4488. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4489. margin-bottom: 0;
  4490. border-top-right-radius: 2px;
  4491. border-top-left-radius: 2px;
  4492. border-bottom-right-radius: 0;
  4493. border-bottom-left-radius: 0;
  4494. }
  4495. .navbar-btn {
  4496. margin-top: -1px;
  4497. margin-bottom: -1px;
  4498. }
  4499. .navbar-btn.btn-sm {
  4500. margin-top: 0px;
  4501. margin-bottom: 0px;
  4502. }
  4503. .navbar-btn.btn-xs {
  4504. margin-top: 4px;
  4505. margin-bottom: 4px;
  4506. }
  4507. .navbar-text {
  4508. margin-top: 6px;
  4509. margin-bottom: 6px;
  4510. }
  4511. @media (min-width: 541px) {
  4512. .navbar-text {
  4513. float: left;
  4514. margin-left: 0px;
  4515. margin-right: 0px;
  4516. }
  4517. }
  4518. @media (min-width: 541px) {
  4519. .navbar-left {
  4520. float: left !important;
  4521. float: left;
  4522. }
  4523. .navbar-right {
  4524. float: right !important;
  4525. float: right;
  4526. margin-right: 0px;
  4527. }
  4528. .navbar-right ~ .navbar-right {
  4529. margin-right: 0;
  4530. }
  4531. }
  4532. .navbar-default {
  4533. background-color: #f8f8f8;
  4534. border-color: #e7e7e7;
  4535. }
  4536. .navbar-default .navbar-brand {
  4537. color: #777;
  4538. }
  4539. .navbar-default .navbar-brand:hover,
  4540. .navbar-default .navbar-brand:focus {
  4541. color: #5e5e5e;
  4542. background-color: transparent;
  4543. }
  4544. .navbar-default .navbar-text {
  4545. color: #777;
  4546. }
  4547. .navbar-default .navbar-nav > li > a {
  4548. color: #777;
  4549. }
  4550. .navbar-default .navbar-nav > li > a:hover,
  4551. .navbar-default .navbar-nav > li > a:focus {
  4552. color: #333;
  4553. background-color: transparent;
  4554. }
  4555. .navbar-default .navbar-nav > .active > a,
  4556. .navbar-default .navbar-nav > .active > a:hover,
  4557. .navbar-default .navbar-nav > .active > a:focus {
  4558. color: #555;
  4559. background-color: #e7e7e7;
  4560. }
  4561. .navbar-default .navbar-nav > .disabled > a,
  4562. .navbar-default .navbar-nav > .disabled > a:hover,
  4563. .navbar-default .navbar-nav > .disabled > a:focus {
  4564. color: #ccc;
  4565. background-color: transparent;
  4566. }
  4567. .navbar-default .navbar-toggle {
  4568. border-color: #ddd;
  4569. }
  4570. .navbar-default .navbar-toggle:hover,
  4571. .navbar-default .navbar-toggle:focus {
  4572. background-color: #ddd;
  4573. }
  4574. .navbar-default .navbar-toggle .icon-bar {
  4575. background-color: #888;
  4576. }
  4577. .navbar-default .navbar-collapse,
  4578. .navbar-default .navbar-form {
  4579. border-color: #e7e7e7;
  4580. }
  4581. .navbar-default .navbar-nav > .open > a,
  4582. .navbar-default .navbar-nav > .open > a:hover,
  4583. .navbar-default .navbar-nav > .open > a:focus {
  4584. background-color: #e7e7e7;
  4585. color: #555;
  4586. }
  4587. @media (max-width: 540px) {
  4588. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4589. color: #777;
  4590. }
  4591. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4592. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4593. color: #333;
  4594. background-color: transparent;
  4595. }
  4596. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4597. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4598. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4599. color: #555;
  4600. background-color: #e7e7e7;
  4601. }
  4602. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4603. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4604. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4605. color: #ccc;
  4606. background-color: transparent;
  4607. }
  4608. }
  4609. .navbar-default .navbar-link {
  4610. color: #777;
  4611. }
  4612. .navbar-default .navbar-link:hover {
  4613. color: #333;
  4614. }
  4615. .navbar-default .btn-link {
  4616. color: #777;
  4617. }
  4618. .navbar-default .btn-link:hover,
  4619. .navbar-default .btn-link:focus {
  4620. color: #333;
  4621. }
  4622. .navbar-default .btn-link[disabled]:hover,
  4623. fieldset[disabled] .navbar-default .btn-link:hover,
  4624. .navbar-default .btn-link[disabled]:focus,
  4625. fieldset[disabled] .navbar-default .btn-link:focus {
  4626. color: #ccc;
  4627. }
  4628. .navbar-inverse {
  4629. background-color: #222;
  4630. border-color: #080808;
  4631. }
  4632. .navbar-inverse .navbar-brand {
  4633. color: #9d9d9d;
  4634. }
  4635. .navbar-inverse .navbar-brand:hover,
  4636. .navbar-inverse .navbar-brand:focus {
  4637. color: #fff;
  4638. background-color: transparent;
  4639. }
  4640. .navbar-inverse .navbar-text {
  4641. color: #9d9d9d;
  4642. }
  4643. .navbar-inverse .navbar-nav > li > a {
  4644. color: #9d9d9d;
  4645. }
  4646. .navbar-inverse .navbar-nav > li > a:hover,
  4647. .navbar-inverse .navbar-nav > li > a:focus {
  4648. color: #fff;
  4649. background-color: transparent;
  4650. }
  4651. .navbar-inverse .navbar-nav > .active > a,
  4652. .navbar-inverse .navbar-nav > .active > a:hover,
  4653. .navbar-inverse .navbar-nav > .active > a:focus {
  4654. color: #fff;
  4655. background-color: #080808;
  4656. }
  4657. .navbar-inverse .navbar-nav > .disabled > a,
  4658. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4659. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4660. color: #444;
  4661. background-color: transparent;
  4662. }
  4663. .navbar-inverse .navbar-toggle {
  4664. border-color: #333;
  4665. }
  4666. .navbar-inverse .navbar-toggle:hover,
  4667. .navbar-inverse .navbar-toggle:focus {
  4668. background-color: #333;
  4669. }
  4670. .navbar-inverse .navbar-toggle .icon-bar {
  4671. background-color: #fff;
  4672. }
  4673. .navbar-inverse .navbar-collapse,
  4674. .navbar-inverse .navbar-form {
  4675. border-color: #101010;
  4676. }
  4677. .navbar-inverse .navbar-nav > .open > a,
  4678. .navbar-inverse .navbar-nav > .open > a:hover,
  4679. .navbar-inverse .navbar-nav > .open > a:focus {
  4680. background-color: #080808;
  4681. color: #fff;
  4682. }
  4683. @media (max-width: 540px) {
  4684. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4685. border-color: #080808;
  4686. }
  4687. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4688. background-color: #080808;
  4689. }
  4690. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4691. color: #9d9d9d;
  4692. }
  4693. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4694. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4695. color: #fff;
  4696. background-color: transparent;
  4697. }
  4698. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4699. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4700. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4701. color: #fff;
  4702. background-color: #080808;
  4703. }
  4704. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4705. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4706. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4707. color: #444;
  4708. background-color: transparent;
  4709. }
  4710. }
  4711. .navbar-inverse .navbar-link {
  4712. color: #9d9d9d;
  4713. }
  4714. .navbar-inverse .navbar-link:hover {
  4715. color: #fff;
  4716. }
  4717. .navbar-inverse .btn-link {
  4718. color: #9d9d9d;
  4719. }
  4720. .navbar-inverse .btn-link:hover,
  4721. .navbar-inverse .btn-link:focus {
  4722. color: #fff;
  4723. }
  4724. .navbar-inverse .btn-link[disabled]:hover,
  4725. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4726. .navbar-inverse .btn-link[disabled]:focus,
  4727. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4728. color: #444;
  4729. }
  4730. .breadcrumb {
  4731. padding: 8px 15px;
  4732. margin-bottom: 18px;
  4733. list-style: none;
  4734. background-color: #f5f5f5;
  4735. border-radius: 2px;
  4736. }
  4737. .breadcrumb > li {
  4738. display: inline-block;
  4739. }
  4740. .breadcrumb > li + li:before {
  4741. content: "/\00a0";
  4742. padding: 0 5px;
  4743. color: #5e5e5e;
  4744. }
  4745. .breadcrumb > .active {
  4746. color: #777777;
  4747. }
  4748. .pagination {
  4749. display: inline-block;
  4750. padding-left: 0;
  4751. margin: 18px 0;
  4752. border-radius: 2px;
  4753. }
  4754. .pagination > li {
  4755. display: inline;
  4756. }
  4757. .pagination > li > a,
  4758. .pagination > li > span {
  4759. position: relative;
  4760. float: left;
  4761. padding: 6px 12px;
  4762. line-height: 1.42857143;
  4763. text-decoration: none;
  4764. color: #337ab7;
  4765. background-color: #fff;
  4766. border: 1px solid #ddd;
  4767. margin-left: -1px;
  4768. }
  4769. .pagination > li:first-child > a,
  4770. .pagination > li:first-child > span {
  4771. margin-left: 0;
  4772. border-bottom-left-radius: 2px;
  4773. border-top-left-radius: 2px;
  4774. }
  4775. .pagination > li:last-child > a,
  4776. .pagination > li:last-child > span {
  4777. border-bottom-right-radius: 2px;
  4778. border-top-right-radius: 2px;
  4779. }
  4780. .pagination > li > a:hover,
  4781. .pagination > li > span:hover,
  4782. .pagination > li > a:focus,
  4783. .pagination > li > span:focus {
  4784. z-index: 2;
  4785. color: #23527c;
  4786. background-color: #eeeeee;
  4787. border-color: #ddd;
  4788. }
  4789. .pagination > .active > a,
  4790. .pagination > .active > span,
  4791. .pagination > .active > a:hover,
  4792. .pagination > .active > span:hover,
  4793. .pagination > .active > a:focus,
  4794. .pagination > .active > span:focus {
  4795. z-index: 3;
  4796. color: #fff;
  4797. background-color: #337ab7;
  4798. border-color: #337ab7;
  4799. cursor: default;
  4800. }
  4801. .pagination > .disabled > span,
  4802. .pagination > .disabled > span:hover,
  4803. .pagination > .disabled > span:focus,
  4804. .pagination > .disabled > a,
  4805. .pagination > .disabled > a:hover,
  4806. .pagination > .disabled > a:focus {
  4807. color: #777777;
  4808. background-color: #fff;
  4809. border-color: #ddd;
  4810. cursor: not-allowed;
  4811. }
  4812. .pagination-lg > li > a,
  4813. .pagination-lg > li > span {
  4814. padding: 10px 16px;
  4815. font-size: 17px;
  4816. line-height: 1.3333333;
  4817. }
  4818. .pagination-lg > li:first-child > a,
  4819. .pagination-lg > li:first-child > span {
  4820. border-bottom-left-radius: 3px;
  4821. border-top-left-radius: 3px;
  4822. }
  4823. .pagination-lg > li:last-child > a,
  4824. .pagination-lg > li:last-child > span {
  4825. border-bottom-right-radius: 3px;
  4826. border-top-right-radius: 3px;
  4827. }
  4828. .pagination-sm > li > a,
  4829. .pagination-sm > li > span {
  4830. padding: 5px 10px;
  4831. font-size: 12px;
  4832. line-height: 1.5;
  4833. }
  4834. .pagination-sm > li:first-child > a,
  4835. .pagination-sm > li:first-child > span {
  4836. border-bottom-left-radius: 1px;
  4837. border-top-left-radius: 1px;
  4838. }
  4839. .pagination-sm > li:last-child > a,
  4840. .pagination-sm > li:last-child > span {
  4841. border-bottom-right-radius: 1px;
  4842. border-top-right-radius: 1px;
  4843. }
  4844. .pager {
  4845. padding-left: 0;
  4846. margin: 18px 0;
  4847. list-style: none;
  4848. text-align: center;
  4849. }
  4850. .pager li {
  4851. display: inline;
  4852. }
  4853. .pager li > a,
  4854. .pager li > span {
  4855. display: inline-block;
  4856. padding: 5px 14px;
  4857. background-color: #fff;
  4858. border: 1px solid #ddd;
  4859. border-radius: 15px;
  4860. }
  4861. .pager li > a:hover,
  4862. .pager li > a:focus {
  4863. text-decoration: none;
  4864. background-color: #eeeeee;
  4865. }
  4866. .pager .next > a,
  4867. .pager .next > span {
  4868. float: right;
  4869. }
  4870. .pager .previous > a,
  4871. .pager .previous > span {
  4872. float: left;
  4873. }
  4874. .pager .disabled > a,
  4875. .pager .disabled > a:hover,
  4876. .pager .disabled > a:focus,
  4877. .pager .disabled > span {
  4878. color: #777777;
  4879. background-color: #fff;
  4880. cursor: not-allowed;
  4881. }
  4882. .label {
  4883. display: inline;
  4884. padding: .2em .6em .3em;
  4885. font-size: 75%;
  4886. font-weight: bold;
  4887. line-height: 1;
  4888. color: #fff;
  4889. text-align: center;
  4890. white-space: nowrap;
  4891. vertical-align: baseline;
  4892. border-radius: .25em;
  4893. }
  4894. a.label:hover,
  4895. a.label:focus {
  4896. color: #fff;
  4897. text-decoration: none;
  4898. cursor: pointer;
  4899. }
  4900. .label:empty {
  4901. display: none;
  4902. }
  4903. .btn .label {
  4904. position: relative;
  4905. top: -1px;
  4906. }
  4907. .label-default {
  4908. background-color: #777777;
  4909. }
  4910. .label-default[href]:hover,
  4911. .label-default[href]:focus {
  4912. background-color: #5e5e5e;
  4913. }
  4914. .label-primary {
  4915. background-color: #337ab7;
  4916. }
  4917. .label-primary[href]:hover,
  4918. .label-primary[href]:focus {
  4919. background-color: #286090;
  4920. }
  4921. .label-success {
  4922. background-color: #5cb85c;
  4923. }
  4924. .label-success[href]:hover,
  4925. .label-success[href]:focus {
  4926. background-color: #449d44;
  4927. }
  4928. .label-info {
  4929. background-color: #5bc0de;
  4930. }
  4931. .label-info[href]:hover,
  4932. .label-info[href]:focus {
  4933. background-color: #31b0d5;
  4934. }
  4935. .label-warning {
  4936. background-color: #f0ad4e;
  4937. }
  4938. .label-warning[href]:hover,
  4939. .label-warning[href]:focus {
  4940. background-color: #ec971f;
  4941. }
  4942. .label-danger {
  4943. background-color: #d9534f;
  4944. }
  4945. .label-danger[href]:hover,
  4946. .label-danger[href]:focus {
  4947. background-color: #c9302c;
  4948. }
  4949. .badge {
  4950. display: inline-block;
  4951. min-width: 10px;
  4952. padding: 3px 7px;
  4953. font-size: 12px;
  4954. font-weight: bold;
  4955. color: #fff;
  4956. line-height: 1;
  4957. vertical-align: middle;
  4958. white-space: nowrap;
  4959. text-align: center;
  4960. background-color: #777777;
  4961. border-radius: 10px;
  4962. }
  4963. .badge:empty {
  4964. display: none;
  4965. }
  4966. .btn .badge {
  4967. position: relative;
  4968. top: -1px;
  4969. }
  4970. .btn-xs .badge,
  4971. .btn-group-xs > .btn .badge {
  4972. top: 0;
  4973. padding: 1px 5px;
  4974. }
  4975. a.badge:hover,
  4976. a.badge:focus {
  4977. color: #fff;
  4978. text-decoration: none;
  4979. cursor: pointer;
  4980. }
  4981. .list-group-item.active > .badge,
  4982. .nav-pills > .active > a > .badge {
  4983. color: #337ab7;
  4984. background-color: #fff;
  4985. }
  4986. .list-group-item > .badge {
  4987. float: right;
  4988. }
  4989. .list-group-item > .badge + .badge {
  4990. margin-right: 5px;
  4991. }
  4992. .nav-pills > li > a > .badge {
  4993. margin-left: 3px;
  4994. }
  4995. .jumbotron {
  4996. padding-top: 30px;
  4997. padding-bottom: 30px;
  4998. margin-bottom: 30px;
  4999. color: inherit;
  5000. background-color: #eeeeee;
  5001. }
  5002. .jumbotron h1,
  5003. .jumbotron .h1 {
  5004. color: inherit;
  5005. }
  5006. .jumbotron p {
  5007. margin-bottom: 15px;
  5008. font-size: 20px;
  5009. font-weight: 200;
  5010. }
  5011. .jumbotron > hr {
  5012. border-top-color: #d5d5d5;
  5013. }
  5014. .container .jumbotron,
  5015. .container-fluid .jumbotron {
  5016. border-radius: 3px;
  5017. padding-left: 0px;
  5018. padding-right: 0px;
  5019. }
  5020. .jumbotron .container {
  5021. max-width: 100%;
  5022. }
  5023. @media screen and (min-width: 768px) {
  5024. .jumbotron {
  5025. padding-top: 48px;
  5026. padding-bottom: 48px;
  5027. }
  5028. .container .jumbotron,
  5029. .container-fluid .jumbotron {
  5030. padding-left: 60px;
  5031. padding-right: 60px;
  5032. }
  5033. .jumbotron h1,
  5034. .jumbotron .h1 {
  5035. font-size: 59px;
  5036. }
  5037. }
  5038. .thumbnail {
  5039. display: block;
  5040. padding: 4px;
  5041. margin-bottom: 18px;
  5042. line-height: 1.42857143;
  5043. background-color: #fff;
  5044. border: 1px solid #ddd;
  5045. border-radius: 2px;
  5046. -webkit-transition: border 0.2s ease-in-out;
  5047. -o-transition: border 0.2s ease-in-out;
  5048. transition: border 0.2s ease-in-out;
  5049. }
  5050. .thumbnail > img,
  5051. .thumbnail a > img {
  5052. margin-left: auto;
  5053. margin-right: auto;
  5054. }
  5055. a.thumbnail:hover,
  5056. a.thumbnail:focus,
  5057. a.thumbnail.active {
  5058. border-color: #337ab7;
  5059. }
  5060. .thumbnail .caption {
  5061. padding: 9px;
  5062. color: #000;
  5063. }
  5064. .alert {
  5065. padding: 15px;
  5066. margin-bottom: 18px;
  5067. border: 1px solid transparent;
  5068. border-radius: 2px;
  5069. }
  5070. .alert h4 {
  5071. margin-top: 0;
  5072. color: inherit;
  5073. }
  5074. .alert .alert-link {
  5075. font-weight: bold;
  5076. }
  5077. .alert > p,
  5078. .alert > ul {
  5079. margin-bottom: 0;
  5080. }
  5081. .alert > p + p {
  5082. margin-top: 5px;
  5083. }
  5084. .alert-dismissable,
  5085. .alert-dismissible {
  5086. padding-right: 35px;
  5087. }
  5088. .alert-dismissable .close,
  5089. .alert-dismissible .close {
  5090. position: relative;
  5091. top: -2px;
  5092. right: -21px;
  5093. color: inherit;
  5094. }
  5095. .alert-success {
  5096. background-color: #dff0d8;
  5097. border-color: #d6e9c6;
  5098. color: #3c763d;
  5099. }
  5100. .alert-success hr {
  5101. border-top-color: #c9e2b3;
  5102. }
  5103. .alert-success .alert-link {
  5104. color: #2b542c;
  5105. }
  5106. .alert-info {
  5107. background-color: #d9edf7;
  5108. border-color: #bce8f1;
  5109. color: #31708f;
  5110. }
  5111. .alert-info hr {
  5112. border-top-color: #a6e1ec;
  5113. }
  5114. .alert-info .alert-link {
  5115. color: #245269;
  5116. }
  5117. .alert-warning {
  5118. background-color: #fcf8e3;
  5119. border-color: #faebcc;
  5120. color: #8a6d3b;
  5121. }
  5122. .alert-warning hr {
  5123. border-top-color: #f7e1b5;
  5124. }
  5125. .alert-warning .alert-link {
  5126. color: #66512c;
  5127. }
  5128. .alert-danger {
  5129. background-color: #f2dede;
  5130. border-color: #ebccd1;
  5131. color: #a94442;
  5132. }
  5133. .alert-danger hr {
  5134. border-top-color: #e4b9c0;
  5135. }
  5136. .alert-danger .alert-link {
  5137. color: #843534;
  5138. }
  5139. @-webkit-keyframes progress-bar-stripes {
  5140. from {
  5141. background-position: 40px 0;
  5142. }
  5143. to {
  5144. background-position: 0 0;
  5145. }
  5146. }
  5147. @keyframes progress-bar-stripes {
  5148. from {
  5149. background-position: 40px 0;
  5150. }
  5151. to {
  5152. background-position: 0 0;
  5153. }
  5154. }
  5155. .progress {
  5156. overflow: hidden;
  5157. height: 18px;
  5158. margin-bottom: 18px;
  5159. background-color: #f5f5f5;
  5160. border-radius: 2px;
  5161. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5162. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5163. }
  5164. .progress-bar {
  5165. float: left;
  5166. width: 0%;
  5167. height: 100%;
  5168. font-size: 12px;
  5169. line-height: 18px;
  5170. color: #fff;
  5171. text-align: center;
  5172. background-color: #337ab7;
  5173. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5174. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5175. -webkit-transition: width 0.6s ease;
  5176. -o-transition: width 0.6s ease;
  5177. transition: width 0.6s ease;
  5178. }
  5179. .progress-striped .progress-bar,
  5180. .progress-bar-striped {
  5181. 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);
  5182. 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);
  5183. 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);
  5184. background-size: 40px 40px;
  5185. }
  5186. .progress.active .progress-bar,
  5187. .progress-bar.active {
  5188. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5189. -o-animation: progress-bar-stripes 2s linear infinite;
  5190. animation: progress-bar-stripes 2s linear infinite;
  5191. }
  5192. .progress-bar-success {
  5193. background-color: #5cb85c;
  5194. }
  5195. .progress-striped .progress-bar-success {
  5196. 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);
  5197. 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);
  5198. 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);
  5199. }
  5200. .progress-bar-info {
  5201. background-color: #5bc0de;
  5202. }
  5203. .progress-striped .progress-bar-info {
  5204. 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);
  5205. 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);
  5206. 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);
  5207. }
  5208. .progress-bar-warning {
  5209. background-color: #f0ad4e;
  5210. }
  5211. .progress-striped .progress-bar-warning {
  5212. 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);
  5213. 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);
  5214. 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);
  5215. }
  5216. .progress-bar-danger {
  5217. background-color: #d9534f;
  5218. }
  5219. .progress-striped .progress-bar-danger {
  5220. 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);
  5221. 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);
  5222. 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);
  5223. }
  5224. .media {
  5225. margin-top: 15px;
  5226. }
  5227. .media:first-child {
  5228. margin-top: 0;
  5229. }
  5230. .media,
  5231. .media-body {
  5232. zoom: 1;
  5233. overflow: hidden;
  5234. }
  5235. .media-body {
  5236. width: 10000px;
  5237. }
  5238. .media-object {
  5239. display: block;
  5240. }
  5241. .media-object.img-thumbnail {
  5242. max-width: none;
  5243. }
  5244. .media-right,
  5245. .media > .pull-right {
  5246. padding-left: 10px;
  5247. }
  5248. .media-left,
  5249. .media > .pull-left {
  5250. padding-right: 10px;
  5251. }
  5252. .media-left,
  5253. .media-right,
  5254. .media-body {
  5255. display: table-cell;
  5256. vertical-align: top;
  5257. }
  5258. .media-middle {
  5259. vertical-align: middle;
  5260. }
  5261. .media-bottom {
  5262. vertical-align: bottom;
  5263. }
  5264. .media-heading {
  5265. margin-top: 0;
  5266. margin-bottom: 5px;
  5267. }
  5268. .media-list {
  5269. padding-left: 0;
  5270. list-style: none;
  5271. }
  5272. .list-group {
  5273. margin-bottom: 20px;
  5274. padding-left: 0;
  5275. }
  5276. .list-group-item {
  5277. position: relative;
  5278. display: block;
  5279. padding: 10px 15px;
  5280. margin-bottom: -1px;
  5281. background-color: #fff;
  5282. border: 1px solid #ddd;
  5283. }
  5284. .list-group-item:first-child {
  5285. border-top-right-radius: 2px;
  5286. border-top-left-radius: 2px;
  5287. }
  5288. .list-group-item:last-child {
  5289. margin-bottom: 0;
  5290. border-bottom-right-radius: 2px;
  5291. border-bottom-left-radius: 2px;
  5292. }
  5293. a.list-group-item,
  5294. button.list-group-item {
  5295. color: #555;
  5296. }
  5297. a.list-group-item .list-group-item-heading,
  5298. button.list-group-item .list-group-item-heading {
  5299. color: #333;
  5300. }
  5301. a.list-group-item:hover,
  5302. button.list-group-item:hover,
  5303. a.list-group-item:focus,
  5304. button.list-group-item:focus {
  5305. text-decoration: none;
  5306. color: #555;
  5307. background-color: #f5f5f5;
  5308. }
  5309. button.list-group-item {
  5310. width: 100%;
  5311. text-align: left;
  5312. }
  5313. .list-group-item.disabled,
  5314. .list-group-item.disabled:hover,
  5315. .list-group-item.disabled:focus {
  5316. background-color: #eeeeee;
  5317. color: #777777;
  5318. cursor: not-allowed;
  5319. }
  5320. .list-group-item.disabled .list-group-item-heading,
  5321. .list-group-item.disabled:hover .list-group-item-heading,
  5322. .list-group-item.disabled:focus .list-group-item-heading {
  5323. color: inherit;
  5324. }
  5325. .list-group-item.disabled .list-group-item-text,
  5326. .list-group-item.disabled:hover .list-group-item-text,
  5327. .list-group-item.disabled:focus .list-group-item-text {
  5328. color: #777777;
  5329. }
  5330. .list-group-item.active,
  5331. .list-group-item.active:hover,
  5332. .list-group-item.active:focus {
  5333. z-index: 2;
  5334. color: #fff;
  5335. background-color: #337ab7;
  5336. border-color: #337ab7;
  5337. }
  5338. .list-group-item.active .list-group-item-heading,
  5339. .list-group-item.active:hover .list-group-item-heading,
  5340. .list-group-item.active:focus .list-group-item-heading,
  5341. .list-group-item.active .list-group-item-heading > small,
  5342. .list-group-item.active:hover .list-group-item-heading > small,
  5343. .list-group-item.active:focus .list-group-item-heading > small,
  5344. .list-group-item.active .list-group-item-heading > .small,
  5345. .list-group-item.active:hover .list-group-item-heading > .small,
  5346. .list-group-item.active:focus .list-group-item-heading > .small {
  5347. color: inherit;
  5348. }
  5349. .list-group-item.active .list-group-item-text,
  5350. .list-group-item.active:hover .list-group-item-text,
  5351. .list-group-item.active:focus .list-group-item-text {
  5352. color: #c7ddef;
  5353. }
  5354. .list-group-item-success {
  5355. color: #3c763d;
  5356. background-color: #dff0d8;
  5357. }
  5358. a.list-group-item-success,
  5359. button.list-group-item-success {
  5360. color: #3c763d;
  5361. }
  5362. a.list-group-item-success .list-group-item-heading,
  5363. button.list-group-item-success .list-group-item-heading {
  5364. color: inherit;
  5365. }
  5366. a.list-group-item-success:hover,
  5367. button.list-group-item-success:hover,
  5368. a.list-group-item-success:focus,
  5369. button.list-group-item-success:focus {
  5370. color: #3c763d;
  5371. background-color: #d0e9c6;
  5372. }
  5373. a.list-group-item-success.active,
  5374. button.list-group-item-success.active,
  5375. a.list-group-item-success.active:hover,
  5376. button.list-group-item-success.active:hover,
  5377. a.list-group-item-success.active:focus,
  5378. button.list-group-item-success.active:focus {
  5379. color: #fff;
  5380. background-color: #3c763d;
  5381. border-color: #3c763d;
  5382. }
  5383. .list-group-item-info {
  5384. color: #31708f;
  5385. background-color: #d9edf7;
  5386. }
  5387. a.list-group-item-info,
  5388. button.list-group-item-info {
  5389. color: #31708f;
  5390. }
  5391. a.list-group-item-info .list-group-item-heading,
  5392. button.list-group-item-info .list-group-item-heading {
  5393. color: inherit;
  5394. }
  5395. a.list-group-item-info:hover,
  5396. button.list-group-item-info:hover,
  5397. a.list-group-item-info:focus,
  5398. button.list-group-item-info:focus {
  5399. color: #31708f;
  5400. background-color: #c4e3f3;
  5401. }
  5402. a.list-group-item-info.active,
  5403. button.list-group-item-info.active,
  5404. a.list-group-item-info.active:hover,
  5405. button.list-group-item-info.active:hover,
  5406. a.list-group-item-info.active:focus,
  5407. button.list-group-item-info.active:focus {
  5408. color: #fff;
  5409. background-color: #31708f;
  5410. border-color: #31708f;
  5411. }
  5412. .list-group-item-warning {
  5413. color: #8a6d3b;
  5414. background-color: #fcf8e3;
  5415. }
  5416. a.list-group-item-warning,
  5417. button.list-group-item-warning {
  5418. color: #8a6d3b;
  5419. }
  5420. a.list-group-item-warning .list-group-item-heading,
  5421. button.list-group-item-warning .list-group-item-heading {
  5422. color: inherit;
  5423. }
  5424. a.list-group-item-warning:hover,
  5425. button.list-group-item-warning:hover,
  5426. a.list-group-item-warning:focus,
  5427. button.list-group-item-warning:focus {
  5428. color: #8a6d3b;
  5429. background-color: #faf2cc;
  5430. }
  5431. a.list-group-item-warning.active,
  5432. button.list-group-item-warning.active,
  5433. a.list-group-item-warning.active:hover,
  5434. button.list-group-item-warning.active:hover,
  5435. a.list-group-item-warning.active:focus,
  5436. button.list-group-item-warning.active:focus {
  5437. color: #fff;
  5438. background-color: #8a6d3b;
  5439. border-color: #8a6d3b;
  5440. }
  5441. .list-group-item-danger {
  5442. color: #a94442;
  5443. background-color: #f2dede;
  5444. }
  5445. a.list-group-item-danger,
  5446. button.list-group-item-danger {
  5447. color: #a94442;
  5448. }
  5449. a.list-group-item-danger .list-group-item-heading,
  5450. button.list-group-item-danger .list-group-item-heading {
  5451. color: inherit;
  5452. }
  5453. a.list-group-item-danger:hover,
  5454. button.list-group-item-danger:hover,
  5455. a.list-group-item-danger:focus,
  5456. button.list-group-item-danger:focus {
  5457. color: #a94442;
  5458. background-color: #ebcccc;
  5459. }
  5460. a.list-group-item-danger.active,
  5461. button.list-group-item-danger.active,
  5462. a.list-group-item-danger.active:hover,
  5463. button.list-group-item-danger.active:hover,
  5464. a.list-group-item-danger.active:focus,
  5465. button.list-group-item-danger.active:focus {
  5466. color: #fff;
  5467. background-color: #a94442;
  5468. border-color: #a94442;
  5469. }
  5470. .list-group-item-heading {
  5471. margin-top: 0;
  5472. margin-bottom: 5px;
  5473. }
  5474. .list-group-item-text {
  5475. margin-bottom: 0;
  5476. line-height: 1.3;
  5477. }
  5478. .panel {
  5479. margin-bottom: 18px;
  5480. background-color: #fff;
  5481. border: 1px solid transparent;
  5482. border-radius: 2px;
  5483. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5484. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5485. }
  5486. .panel-body {
  5487. padding: 15px;
  5488. }
  5489. .panel-heading {
  5490. padding: 10px 15px;
  5491. border-bottom: 1px solid transparent;
  5492. border-top-right-radius: 1px;
  5493. border-top-left-radius: 1px;
  5494. }
  5495. .panel-heading > .dropdown .dropdown-toggle {
  5496. color: inherit;
  5497. }
  5498. .panel-title {
  5499. margin-top: 0;
  5500. margin-bottom: 0;
  5501. font-size: 15px;
  5502. color: inherit;
  5503. }
  5504. .panel-title > a,
  5505. .panel-title > small,
  5506. .panel-title > .small,
  5507. .panel-title > small > a,
  5508. .panel-title > .small > a {
  5509. color: inherit;
  5510. }
  5511. .panel-footer {
  5512. padding: 10px 15px;
  5513. background-color: #f5f5f5;
  5514. border-top: 1px solid #ddd;
  5515. border-bottom-right-radius: 1px;
  5516. border-bottom-left-radius: 1px;
  5517. }
  5518. .panel > .list-group,
  5519. .panel > .panel-collapse > .list-group {
  5520. margin-bottom: 0;
  5521. }
  5522. .panel > .list-group .list-group-item,
  5523. .panel > .panel-collapse > .list-group .list-group-item {
  5524. border-width: 1px 0;
  5525. border-radius: 0;
  5526. }
  5527. .panel > .list-group:first-child .list-group-item:first-child,
  5528. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5529. border-top: 0;
  5530. border-top-right-radius: 1px;
  5531. border-top-left-radius: 1px;
  5532. }
  5533. .panel > .list-group:last-child .list-group-item:last-child,
  5534. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5535. border-bottom: 0;
  5536. border-bottom-right-radius: 1px;
  5537. border-bottom-left-radius: 1px;
  5538. }
  5539. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5540. border-top-right-radius: 0;
  5541. border-top-left-radius: 0;
  5542. }
  5543. .panel-heading + .list-group .list-group-item:first-child {
  5544. border-top-width: 0;
  5545. }
  5546. .list-group + .panel-footer {
  5547. border-top-width: 0;
  5548. }
  5549. .panel > .table,
  5550. .panel > .table-responsive > .table,
  5551. .panel > .panel-collapse > .table {
  5552. margin-bottom: 0;
  5553. }
  5554. .panel > .table caption,
  5555. .panel > .table-responsive > .table caption,
  5556. .panel > .panel-collapse > .table caption {
  5557. padding-left: 15px;
  5558. padding-right: 15px;
  5559. }
  5560. .panel > .table:first-child,
  5561. .panel > .table-responsive:first-child > .table:first-child {
  5562. border-top-right-radius: 1px;
  5563. border-top-left-radius: 1px;
  5564. }
  5565. .panel > .table:first-child > thead:first-child > tr:first-child,
  5566. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5567. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5568. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5569. border-top-left-radius: 1px;
  5570. border-top-right-radius: 1px;
  5571. }
  5572. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5573. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5574. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5575. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5576. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5577. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5578. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5579. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5580. border-top-left-radius: 1px;
  5581. }
  5582. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5583. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5584. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5585. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5586. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5587. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5588. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5589. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5590. border-top-right-radius: 1px;
  5591. }
  5592. .panel > .table:last-child,
  5593. .panel > .table-responsive:last-child > .table:last-child {
  5594. border-bottom-right-radius: 1px;
  5595. border-bottom-left-radius: 1px;
  5596. }
  5597. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5598. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5599. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5600. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5601. border-bottom-left-radius: 1px;
  5602. border-bottom-right-radius: 1px;
  5603. }
  5604. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5605. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5606. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5607. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5608. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5609. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5610. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5611. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5612. border-bottom-left-radius: 1px;
  5613. }
  5614. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5615. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5616. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5617. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5618. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5619. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5620. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5621. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5622. border-bottom-right-radius: 1px;
  5623. }
  5624. .panel > .panel-body + .table,
  5625. .panel > .panel-body + .table-responsive,
  5626. .panel > .table + .panel-body,
  5627. .panel > .table-responsive + .panel-body {
  5628. border-top: 1px solid #ddd;
  5629. }
  5630. .panel > .table > tbody:first-child > tr:first-child th,
  5631. .panel > .table > tbody:first-child > tr:first-child td {
  5632. border-top: 0;
  5633. }
  5634. .panel > .table-bordered,
  5635. .panel > .table-responsive > .table-bordered {
  5636. border: 0;
  5637. }
  5638. .panel > .table-bordered > thead > tr > th:first-child,
  5639. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5640. .panel > .table-bordered > tbody > tr > th:first-child,
  5641. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5642. .panel > .table-bordered > tfoot > tr > th:first-child,
  5643. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5644. .panel > .table-bordered > thead > tr > td:first-child,
  5645. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5646. .panel > .table-bordered > tbody > tr > td:first-child,
  5647. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5648. .panel > .table-bordered > tfoot > tr > td:first-child,
  5649. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5650. border-left: 0;
  5651. }
  5652. .panel > .table-bordered > thead > tr > th:last-child,
  5653. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5654. .panel > .table-bordered > tbody > tr > th:last-child,
  5655. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5656. .panel > .table-bordered > tfoot > tr > th:last-child,
  5657. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5658. .panel > .table-bordered > thead > tr > td:last-child,
  5659. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5660. .panel > .table-bordered > tbody > tr > td:last-child,
  5661. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5662. .panel > .table-bordered > tfoot > tr > td:last-child,
  5663. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5664. border-right: 0;
  5665. }
  5666. .panel > .table-bordered > thead > tr:first-child > td,
  5667. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5668. .panel > .table-bordered > tbody > tr:first-child > td,
  5669. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5670. .panel > .table-bordered > thead > tr:first-child > th,
  5671. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5672. .panel > .table-bordered > tbody > tr:first-child > th,
  5673. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5674. border-bottom: 0;
  5675. }
  5676. .panel > .table-bordered > tbody > tr:last-child > td,
  5677. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5678. .panel > .table-bordered > tfoot > tr:last-child > td,
  5679. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5680. .panel > .table-bordered > tbody > tr:last-child > th,
  5681. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5682. .panel > .table-bordered > tfoot > tr:last-child > th,
  5683. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5684. border-bottom: 0;
  5685. }
  5686. .panel > .table-responsive {
  5687. border: 0;
  5688. margin-bottom: 0;
  5689. }
  5690. .panel-group {
  5691. margin-bottom: 18px;
  5692. }
  5693. .panel-group .panel {
  5694. margin-bottom: 0;
  5695. border-radius: 2px;
  5696. }
  5697. .panel-group .panel + .panel {
  5698. margin-top: 5px;
  5699. }
  5700. .panel-group .panel-heading {
  5701. border-bottom: 0;
  5702. }
  5703. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5704. .panel-group .panel-heading + .panel-collapse > .list-group {
  5705. border-top: 1px solid #ddd;
  5706. }
  5707. .panel-group .panel-footer {
  5708. border-top: 0;
  5709. }
  5710. .panel-group .panel-footer + .panel-collapse .panel-body {
  5711. border-bottom: 1px solid #ddd;
  5712. }
  5713. .panel-default {
  5714. border-color: #ddd;
  5715. }
  5716. .panel-default > .panel-heading {
  5717. color: #333333;
  5718. background-color: #f5f5f5;
  5719. border-color: #ddd;
  5720. }
  5721. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5722. border-top-color: #ddd;
  5723. }
  5724. .panel-default > .panel-heading .badge {
  5725. color: #f5f5f5;
  5726. background-color: #333333;
  5727. }
  5728. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5729. border-bottom-color: #ddd;
  5730. }
  5731. .panel-primary {
  5732. border-color: #337ab7;
  5733. }
  5734. .panel-primary > .panel-heading {
  5735. color: #fff;
  5736. background-color: #337ab7;
  5737. border-color: #337ab7;
  5738. }
  5739. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5740. border-top-color: #337ab7;
  5741. }
  5742. .panel-primary > .panel-heading .badge {
  5743. color: #337ab7;
  5744. background-color: #fff;
  5745. }
  5746. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5747. border-bottom-color: #337ab7;
  5748. }
  5749. .panel-success {
  5750. border-color: #d6e9c6;
  5751. }
  5752. .panel-success > .panel-heading {
  5753. color: #3c763d;
  5754. background-color: #dff0d8;
  5755. border-color: #d6e9c6;
  5756. }
  5757. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5758. border-top-color: #d6e9c6;
  5759. }
  5760. .panel-success > .panel-heading .badge {
  5761. color: #dff0d8;
  5762. background-color: #3c763d;
  5763. }
  5764. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5765. border-bottom-color: #d6e9c6;
  5766. }
  5767. .panel-info {
  5768. border-color: #bce8f1;
  5769. }
  5770. .panel-info > .panel-heading {
  5771. color: #31708f;
  5772. background-color: #d9edf7;
  5773. border-color: #bce8f1;
  5774. }
  5775. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5776. border-top-color: #bce8f1;
  5777. }
  5778. .panel-info > .panel-heading .badge {
  5779. color: #d9edf7;
  5780. background-color: #31708f;
  5781. }
  5782. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5783. border-bottom-color: #bce8f1;
  5784. }
  5785. .panel-warning {
  5786. border-color: #faebcc;
  5787. }
  5788. .panel-warning > .panel-heading {
  5789. color: #8a6d3b;
  5790. background-color: #fcf8e3;
  5791. border-color: #faebcc;
  5792. }
  5793. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5794. border-top-color: #faebcc;
  5795. }
  5796. .panel-warning > .panel-heading .badge {
  5797. color: #fcf8e3;
  5798. background-color: #8a6d3b;
  5799. }
  5800. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5801. border-bottom-color: #faebcc;
  5802. }
  5803. .panel-danger {
  5804. border-color: #ebccd1;
  5805. }
  5806. .panel-danger > .panel-heading {
  5807. color: #a94442;
  5808. background-color: #f2dede;
  5809. border-color: #ebccd1;
  5810. }
  5811. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5812. border-top-color: #ebccd1;
  5813. }
  5814. .panel-danger > .panel-heading .badge {
  5815. color: #f2dede;
  5816. background-color: #a94442;
  5817. }
  5818. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5819. border-bottom-color: #ebccd1;
  5820. }
  5821. .embed-responsive {
  5822. position: relative;
  5823. display: block;
  5824. height: 0;
  5825. padding: 0;
  5826. overflow: hidden;
  5827. }
  5828. .embed-responsive .embed-responsive-item,
  5829. .embed-responsive iframe,
  5830. .embed-responsive embed,
  5831. .embed-responsive object,
  5832. .embed-responsive video {
  5833. position: absolute;
  5834. top: 0;
  5835. left: 0;
  5836. bottom: 0;
  5837. height: 100%;
  5838. width: 100%;
  5839. border: 0;
  5840. }
  5841. .embed-responsive-16by9 {
  5842. padding-bottom: 56.25%;
  5843. }
  5844. .embed-responsive-4by3 {
  5845. padding-bottom: 75%;
  5846. }
  5847. .well {
  5848. min-height: 20px;
  5849. padding: 19px;
  5850. margin-bottom: 20px;
  5851. background-color: #f5f5f5;
  5852. border: 1px solid #e3e3e3;
  5853. border-radius: 2px;
  5854. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5855. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5856. }
  5857. .well blockquote {
  5858. border-color: #ddd;
  5859. border-color: rgba(0, 0, 0, 0.15);
  5860. }
  5861. .well-lg {
  5862. padding: 24px;
  5863. border-radius: 3px;
  5864. }
  5865. .well-sm {
  5866. padding: 9px;
  5867. border-radius: 1px;
  5868. }
  5869. .close {
  5870. float: right;
  5871. font-size: 19.5px;
  5872. font-weight: bold;
  5873. line-height: 1;
  5874. color: #000;
  5875. text-shadow: 0 1px 0 #fff;
  5876. opacity: 0.2;
  5877. filter: alpha(opacity=20);
  5878. }
  5879. .close:hover,
  5880. .close:focus {
  5881. color: #000;
  5882. text-decoration: none;
  5883. cursor: pointer;
  5884. opacity: 0.5;
  5885. filter: alpha(opacity=50);
  5886. }
  5887. button.close {
  5888. padding: 0;
  5889. cursor: pointer;
  5890. background: transparent;
  5891. border: 0;
  5892. -webkit-appearance: none;
  5893. }
  5894. .modal-open {
  5895. overflow: hidden;
  5896. }
  5897. .modal {
  5898. display: none;
  5899. overflow: hidden;
  5900. position: fixed;
  5901. top: 0;
  5902. right: 0;
  5903. bottom: 0;
  5904. left: 0;
  5905. z-index: 1050;
  5906. -webkit-overflow-scrolling: touch;
  5907. outline: 0;
  5908. }
  5909. .modal.fade .modal-dialog {
  5910. -webkit-transform: translate(0, -25%);
  5911. -ms-transform: translate(0, -25%);
  5912. -o-transform: translate(0, -25%);
  5913. transform: translate(0, -25%);
  5914. -webkit-transition: -webkit-transform 0.3s ease-out;
  5915. -moz-transition: -moz-transform 0.3s ease-out;
  5916. -o-transition: -o-transform 0.3s ease-out;
  5917. transition: transform 0.3s ease-out;
  5918. }
  5919. .modal.in .modal-dialog {
  5920. -webkit-transform: translate(0, 0);
  5921. -ms-transform: translate(0, 0);
  5922. -o-transform: translate(0, 0);
  5923. transform: translate(0, 0);
  5924. }
  5925. .modal-open .modal {
  5926. overflow-x: hidden;
  5927. overflow-y: auto;
  5928. }
  5929. .modal-dialog {
  5930. position: relative;
  5931. width: auto;
  5932. margin: 10px;
  5933. }
  5934. .modal-content {
  5935. position: relative;
  5936. background-color: #fff;
  5937. border: 1px solid #999;
  5938. border: 1px solid rgba(0, 0, 0, 0.2);
  5939. border-radius: 3px;
  5940. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5941. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5942. background-clip: padding-box;
  5943. outline: 0;
  5944. }
  5945. .modal-backdrop {
  5946. position: fixed;
  5947. top: 0;
  5948. right: 0;
  5949. bottom: 0;
  5950. left: 0;
  5951. z-index: 1040;
  5952. background-color: #000;
  5953. }
  5954. .modal-backdrop.fade {
  5955. opacity: 0;
  5956. filter: alpha(opacity=0);
  5957. }
  5958. .modal-backdrop.in {
  5959. opacity: 0.5;
  5960. filter: alpha(opacity=50);
  5961. }
  5962. .modal-header {
  5963. padding: 15px;
  5964. border-bottom: 1px solid #e5e5e5;
  5965. }
  5966. .modal-header .close {
  5967. margin-top: -2px;
  5968. }
  5969. .modal-title {
  5970. margin: 0;
  5971. line-height: 1.42857143;
  5972. }
  5973. .modal-body {
  5974. position: relative;
  5975. padding: 15px;
  5976. }
  5977. .modal-footer {
  5978. padding: 15px;
  5979. text-align: right;
  5980. border-top: 1px solid #e5e5e5;
  5981. }
  5982. .modal-footer .btn + .btn {
  5983. margin-left: 5px;
  5984. margin-bottom: 0;
  5985. }
  5986. .modal-footer .btn-group .btn + .btn {
  5987. margin-left: -1px;
  5988. }
  5989. .modal-footer .btn-block + .btn-block {
  5990. margin-left: 0;
  5991. }
  5992. .modal-scrollbar-measure {
  5993. position: absolute;
  5994. top: -9999px;
  5995. width: 50px;
  5996. height: 50px;
  5997. overflow: scroll;
  5998. }
  5999. @media (min-width: 768px) {
  6000. .modal-dialog {
  6001. width: 600px;
  6002. margin: 30px auto;
  6003. }
  6004. .modal-content {
  6005. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  6006. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  6007. }
  6008. .modal-sm {
  6009. width: 300px;
  6010. }
  6011. }
  6012. @media (min-width: 992px) {
  6013. .modal-lg {
  6014. width: 900px;
  6015. }
  6016. }
  6017. .tooltip {
  6018. position: absolute;
  6019. z-index: 1070;
  6020. display: block;
  6021. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6022. font-style: normal;
  6023. font-weight: normal;
  6024. letter-spacing: normal;
  6025. line-break: auto;
  6026. line-height: 1.42857143;
  6027. text-align: left;
  6028. text-align: start;
  6029. text-decoration: none;
  6030. text-shadow: none;
  6031. text-transform: none;
  6032. white-space: normal;
  6033. word-break: normal;
  6034. word-spacing: normal;
  6035. word-wrap: normal;
  6036. font-size: 12px;
  6037. opacity: 0;
  6038. filter: alpha(opacity=0);
  6039. }
  6040. .tooltip.in {
  6041. opacity: 0.9;
  6042. filter: alpha(opacity=90);
  6043. }
  6044. .tooltip.top {
  6045. margin-top: -3px;
  6046. padding: 5px 0;
  6047. }
  6048. .tooltip.right {
  6049. margin-left: 3px;
  6050. padding: 0 5px;
  6051. }
  6052. .tooltip.bottom {
  6053. margin-top: 3px;
  6054. padding: 5px 0;
  6055. }
  6056. .tooltip.left {
  6057. margin-left: -3px;
  6058. padding: 0 5px;
  6059. }
  6060. .tooltip-inner {
  6061. max-width: 200px;
  6062. padding: 3px 8px;
  6063. color: #fff;
  6064. text-align: center;
  6065. background-color: #000;
  6066. border-radius: 2px;
  6067. }
  6068. .tooltip-arrow {
  6069. position: absolute;
  6070. width: 0;
  6071. height: 0;
  6072. border-color: transparent;
  6073. border-style: solid;
  6074. }
  6075. .tooltip.top .tooltip-arrow {
  6076. bottom: 0;
  6077. left: 50%;
  6078. margin-left: -5px;
  6079. border-width: 5px 5px 0;
  6080. border-top-color: #000;
  6081. }
  6082. .tooltip.top-left .tooltip-arrow {
  6083. bottom: 0;
  6084. right: 5px;
  6085. margin-bottom: -5px;
  6086. border-width: 5px 5px 0;
  6087. border-top-color: #000;
  6088. }
  6089. .tooltip.top-right .tooltip-arrow {
  6090. bottom: 0;
  6091. left: 5px;
  6092. margin-bottom: -5px;
  6093. border-width: 5px 5px 0;
  6094. border-top-color: #000;
  6095. }
  6096. .tooltip.right .tooltip-arrow {
  6097. top: 50%;
  6098. left: 0;
  6099. margin-top: -5px;
  6100. border-width: 5px 5px 5px 0;
  6101. border-right-color: #000;
  6102. }
  6103. .tooltip.left .tooltip-arrow {
  6104. top: 50%;
  6105. right: 0;
  6106. margin-top: -5px;
  6107. border-width: 5px 0 5px 5px;
  6108. border-left-color: #000;
  6109. }
  6110. .tooltip.bottom .tooltip-arrow {
  6111. top: 0;
  6112. left: 50%;
  6113. margin-left: -5px;
  6114. border-width: 0 5px 5px;
  6115. border-bottom-color: #000;
  6116. }
  6117. .tooltip.bottom-left .tooltip-arrow {
  6118. top: 0;
  6119. right: 5px;
  6120. margin-top: -5px;
  6121. border-width: 0 5px 5px;
  6122. border-bottom-color: #000;
  6123. }
  6124. .tooltip.bottom-right .tooltip-arrow {
  6125. top: 0;
  6126. left: 5px;
  6127. margin-top: -5px;
  6128. border-width: 0 5px 5px;
  6129. border-bottom-color: #000;
  6130. }
  6131. .popover {
  6132. position: absolute;
  6133. top: 0;
  6134. left: 0;
  6135. z-index: 1060;
  6136. display: none;
  6137. max-width: 276px;
  6138. padding: 1px;
  6139. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6140. font-style: normal;
  6141. font-weight: normal;
  6142. letter-spacing: normal;
  6143. line-break: auto;
  6144. line-height: 1.42857143;
  6145. text-align: left;
  6146. text-align: start;
  6147. text-decoration: none;
  6148. text-shadow: none;
  6149. text-transform: none;
  6150. white-space: normal;
  6151. word-break: normal;
  6152. word-spacing: normal;
  6153. word-wrap: normal;
  6154. font-size: 13px;
  6155. background-color: #fff;
  6156. background-clip: padding-box;
  6157. border: 1px solid #ccc;
  6158. border: 1px solid rgba(0, 0, 0, 0.2);
  6159. border-radius: 3px;
  6160. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6161. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6162. }
  6163. .popover.top {
  6164. margin-top: -10px;
  6165. }
  6166. .popover.right {
  6167. margin-left: 10px;
  6168. }
  6169. .popover.bottom {
  6170. margin-top: 10px;
  6171. }
  6172. .popover.left {
  6173. margin-left: -10px;
  6174. }
  6175. .popover-title {
  6176. margin: 0;
  6177. padding: 8px 14px;
  6178. font-size: 13px;
  6179. background-color: #f7f7f7;
  6180. border-bottom: 1px solid #ebebeb;
  6181. border-radius: 2px 2px 0 0;
  6182. }
  6183. .popover-content {
  6184. padding: 9px 14px;
  6185. }
  6186. .popover > .arrow,
  6187. .popover > .arrow:after {
  6188. position: absolute;
  6189. display: block;
  6190. width: 0;
  6191. height: 0;
  6192. border-color: transparent;
  6193. border-style: solid;
  6194. }
  6195. .popover > .arrow {
  6196. border-width: 11px;
  6197. }
  6198. .popover > .arrow:after {
  6199. border-width: 10px;
  6200. content: "";
  6201. }
  6202. .popover.top > .arrow {
  6203. left: 50%;
  6204. margin-left: -11px;
  6205. border-bottom-width: 0;
  6206. border-top-color: #999999;
  6207. border-top-color: rgba(0, 0, 0, 0.25);
  6208. bottom: -11px;
  6209. }
  6210. .popover.top > .arrow:after {
  6211. content: " ";
  6212. bottom: 1px;
  6213. margin-left: -10px;
  6214. border-bottom-width: 0;
  6215. border-top-color: #fff;
  6216. }
  6217. .popover.right > .arrow {
  6218. top: 50%;
  6219. left: -11px;
  6220. margin-top: -11px;
  6221. border-left-width: 0;
  6222. border-right-color: #999999;
  6223. border-right-color: rgba(0, 0, 0, 0.25);
  6224. }
  6225. .popover.right > .arrow:after {
  6226. content: " ";
  6227. left: 1px;
  6228. bottom: -10px;
  6229. border-left-width: 0;
  6230. border-right-color: #fff;
  6231. }
  6232. .popover.bottom > .arrow {
  6233. left: 50%;
  6234. margin-left: -11px;
  6235. border-top-width: 0;
  6236. border-bottom-color: #999999;
  6237. border-bottom-color: rgba(0, 0, 0, 0.25);
  6238. top: -11px;
  6239. }
  6240. .popover.bottom > .arrow:after {
  6241. content: " ";
  6242. top: 1px;
  6243. margin-left: -10px;
  6244. border-top-width: 0;
  6245. border-bottom-color: #fff;
  6246. }
  6247. .popover.left > .arrow {
  6248. top: 50%;
  6249. right: -11px;
  6250. margin-top: -11px;
  6251. border-right-width: 0;
  6252. border-left-color: #999999;
  6253. border-left-color: rgba(0, 0, 0, 0.25);
  6254. }
  6255. .popover.left > .arrow:after {
  6256. content: " ";
  6257. right: 1px;
  6258. border-right-width: 0;
  6259. border-left-color: #fff;
  6260. bottom: -10px;
  6261. }
  6262. .carousel {
  6263. position: relative;
  6264. }
  6265. .carousel-inner {
  6266. position: relative;
  6267. overflow: hidden;
  6268. width: 100%;
  6269. }
  6270. .carousel-inner > .item {
  6271. display: none;
  6272. position: relative;
  6273. -webkit-transition: 0.6s ease-in-out left;
  6274. -o-transition: 0.6s ease-in-out left;
  6275. transition: 0.6s ease-in-out left;
  6276. }
  6277. .carousel-inner > .item > img,
  6278. .carousel-inner > .item > a > img {
  6279. line-height: 1;
  6280. }
  6281. @media all and (transform-3d), (-webkit-transform-3d) {
  6282. .carousel-inner > .item {
  6283. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6284. -moz-transition: -moz-transform 0.6s ease-in-out;
  6285. -o-transition: -o-transform 0.6s ease-in-out;
  6286. transition: transform 0.6s ease-in-out;
  6287. -webkit-backface-visibility: hidden;
  6288. -moz-backface-visibility: hidden;
  6289. backface-visibility: hidden;
  6290. -webkit-perspective: 1000px;
  6291. -moz-perspective: 1000px;
  6292. perspective: 1000px;
  6293. }
  6294. .carousel-inner > .item.next,
  6295. .carousel-inner > .item.active.right {
  6296. -webkit-transform: translate3d(100%, 0, 0);
  6297. transform: translate3d(100%, 0, 0);
  6298. left: 0;
  6299. }
  6300. .carousel-inner > .item.prev,
  6301. .carousel-inner > .item.active.left {
  6302. -webkit-transform: translate3d(-100%, 0, 0);
  6303. transform: translate3d(-100%, 0, 0);
  6304. left: 0;
  6305. }
  6306. .carousel-inner > .item.next.left,
  6307. .carousel-inner > .item.prev.right,
  6308. .carousel-inner > .item.active {
  6309. -webkit-transform: translate3d(0, 0, 0);
  6310. transform: translate3d(0, 0, 0);
  6311. left: 0;
  6312. }
  6313. }
  6314. .carousel-inner > .active,
  6315. .carousel-inner > .next,
  6316. .carousel-inner > .prev {
  6317. display: block;
  6318. }
  6319. .carousel-inner > .active {
  6320. left: 0;
  6321. }
  6322. .carousel-inner > .next,
  6323. .carousel-inner > .prev {
  6324. position: absolute;
  6325. top: 0;
  6326. width: 100%;
  6327. }
  6328. .carousel-inner > .next {
  6329. left: 100%;
  6330. }
  6331. .carousel-inner > .prev {
  6332. left: -100%;
  6333. }
  6334. .carousel-inner > .next.left,
  6335. .carousel-inner > .prev.right {
  6336. left: 0;
  6337. }
  6338. .carousel-inner > .active.left {
  6339. left: -100%;
  6340. }
  6341. .carousel-inner > .active.right {
  6342. left: 100%;
  6343. }
  6344. .carousel-control {
  6345. position: absolute;
  6346. top: 0;
  6347. left: 0;
  6348. bottom: 0;
  6349. width: 15%;
  6350. opacity: 0.5;
  6351. filter: alpha(opacity=50);
  6352. font-size: 20px;
  6353. color: #fff;
  6354. text-align: center;
  6355. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6356. background-color: rgba(0, 0, 0, 0);
  6357. }
  6358. .carousel-control.left {
  6359. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6360. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6361. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6362. background-repeat: repeat-x;
  6363. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6364. }
  6365. .carousel-control.right {
  6366. left: auto;
  6367. right: 0;
  6368. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6369. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6370. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6371. background-repeat: repeat-x;
  6372. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6373. }
  6374. .carousel-control:hover,
  6375. .carousel-control:focus {
  6376. outline: 0;
  6377. color: #fff;
  6378. text-decoration: none;
  6379. opacity: 0.9;
  6380. filter: alpha(opacity=90);
  6381. }
  6382. .carousel-control .icon-prev,
  6383. .carousel-control .icon-next,
  6384. .carousel-control .glyphicon-chevron-left,
  6385. .carousel-control .glyphicon-chevron-right {
  6386. position: absolute;
  6387. top: 50%;
  6388. margin-top: -10px;
  6389. z-index: 5;
  6390. display: inline-block;
  6391. }
  6392. .carousel-control .icon-prev,
  6393. .carousel-control .glyphicon-chevron-left {
  6394. left: 50%;
  6395. margin-left: -10px;
  6396. }
  6397. .carousel-control .icon-next,
  6398. .carousel-control .glyphicon-chevron-right {
  6399. right: 50%;
  6400. margin-right: -10px;
  6401. }
  6402. .carousel-control .icon-prev,
  6403. .carousel-control .icon-next {
  6404. width: 20px;
  6405. height: 20px;
  6406. line-height: 1;
  6407. font-family: serif;
  6408. }
  6409. .carousel-control .icon-prev:before {
  6410. content: '\2039';
  6411. }
  6412. .carousel-control .icon-next:before {
  6413. content: '\203a';
  6414. }
  6415. .carousel-indicators {
  6416. position: absolute;
  6417. bottom: 10px;
  6418. left: 50%;
  6419. z-index: 15;
  6420. width: 60%;
  6421. margin-left: -30%;
  6422. padding-left: 0;
  6423. list-style: none;
  6424. text-align: center;
  6425. }
  6426. .carousel-indicators li {
  6427. display: inline-block;
  6428. width: 10px;
  6429. height: 10px;
  6430. margin: 1px;
  6431. text-indent: -999px;
  6432. border: 1px solid #fff;
  6433. border-radius: 10px;
  6434. cursor: pointer;
  6435. background-color: #000 \9;
  6436. background-color: rgba(0, 0, 0, 0);
  6437. }
  6438. .carousel-indicators .active {
  6439. margin: 0;
  6440. width: 12px;
  6441. height: 12px;
  6442. background-color: #fff;
  6443. }
  6444. .carousel-caption {
  6445. position: absolute;
  6446. left: 15%;
  6447. right: 15%;
  6448. bottom: 20px;
  6449. z-index: 10;
  6450. padding-top: 20px;
  6451. padding-bottom: 20px;
  6452. color: #fff;
  6453. text-align: center;
  6454. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6455. }
  6456. .carousel-caption .btn {
  6457. text-shadow: none;
  6458. }
  6459. @media screen and (min-width: 768px) {
  6460. .carousel-control .glyphicon-chevron-left,
  6461. .carousel-control .glyphicon-chevron-right,
  6462. .carousel-control .icon-prev,
  6463. .carousel-control .icon-next {
  6464. width: 30px;
  6465. height: 30px;
  6466. margin-top: -10px;
  6467. font-size: 30px;
  6468. }
  6469. .carousel-control .glyphicon-chevron-left,
  6470. .carousel-control .icon-prev {
  6471. margin-left: -10px;
  6472. }
  6473. .carousel-control .glyphicon-chevron-right,
  6474. .carousel-control .icon-next {
  6475. margin-right: -10px;
  6476. }
  6477. .carousel-caption {
  6478. left: 20%;
  6479. right: 20%;
  6480. padding-bottom: 30px;
  6481. }
  6482. .carousel-indicators {
  6483. bottom: 20px;
  6484. }
  6485. }
  6486. .clearfix:before,
  6487. .clearfix:after,
  6488. .dl-horizontal dd:before,
  6489. .dl-horizontal dd:after,
  6490. .container:before,
  6491. .container:after,
  6492. .container-fluid:before,
  6493. .container-fluid:after,
  6494. .row:before,
  6495. .row:after,
  6496. .form-horizontal .form-group:before,
  6497. .form-horizontal .form-group:after,
  6498. .btn-toolbar:before,
  6499. .btn-toolbar:after,
  6500. .btn-group-vertical > .btn-group:before,
  6501. .btn-group-vertical > .btn-group:after,
  6502. .nav:before,
  6503. .nav:after,
  6504. .navbar:before,
  6505. .navbar:after,
  6506. .navbar-header:before,
  6507. .navbar-header:after,
  6508. .navbar-collapse:before,
  6509. .navbar-collapse:after,
  6510. .pager:before,
  6511. .pager:after,
  6512. .panel-body:before,
  6513. .panel-body:after,
  6514. .modal-header:before,
  6515. .modal-header:after,
  6516. .modal-footer:before,
  6517. .modal-footer:after,
  6518. .item_buttons:before,
  6519. .item_buttons:after {
  6520. content: " ";
  6521. display: table;
  6522. }
  6523. .clearfix:after,
  6524. .dl-horizontal dd:after,
  6525. .container:after,
  6526. .container-fluid:after,
  6527. .row:after,
  6528. .form-horizontal .form-group:after,
  6529. .btn-toolbar:after,
  6530. .btn-group-vertical > .btn-group:after,
  6531. .nav:after,
  6532. .navbar:after,
  6533. .navbar-header:after,
  6534. .navbar-collapse:after,
  6535. .pager:after,
  6536. .panel-body:after,
  6537. .modal-header:after,
  6538. .modal-footer:after,
  6539. .item_buttons:after {
  6540. clear: both;
  6541. }
  6542. .center-block {
  6543. display: block;
  6544. margin-left: auto;
  6545. margin-right: auto;
  6546. }
  6547. .pull-right {
  6548. float: right !important;
  6549. }
  6550. .pull-left {
  6551. float: left !important;
  6552. }
  6553. .hide {
  6554. display: none !important;
  6555. }
  6556. .show {
  6557. display: block !important;
  6558. }
  6559. .invisible {
  6560. visibility: hidden;
  6561. }
  6562. .text-hide {
  6563. font: 0/0 a;
  6564. color: transparent;
  6565. text-shadow: none;
  6566. background-color: transparent;
  6567. border: 0;
  6568. }
  6569. .hidden {
  6570. display: none !important;
  6571. }
  6572. .affix {
  6573. position: fixed;
  6574. }
  6575. @-ms-viewport {
  6576. width: device-width;
  6577. }
  6578. .visible-xs,
  6579. .visible-sm,
  6580. .visible-md,
  6581. .visible-lg {
  6582. display: none !important;
  6583. }
  6584. .visible-xs-block,
  6585. .visible-xs-inline,
  6586. .visible-xs-inline-block,
  6587. .visible-sm-block,
  6588. .visible-sm-inline,
  6589. .visible-sm-inline-block,
  6590. .visible-md-block,
  6591. .visible-md-inline,
  6592. .visible-md-inline-block,
  6593. .visible-lg-block,
  6594. .visible-lg-inline,
  6595. .visible-lg-inline-block {
  6596. display: none !important;
  6597. }
  6598. @media (max-width: 767px) {
  6599. .visible-xs {
  6600. display: block !important;
  6601. }
  6602. table.visible-xs {
  6603. display: table !important;
  6604. }
  6605. tr.visible-xs {
  6606. display: table-row !important;
  6607. }
  6608. th.visible-xs,
  6609. td.visible-xs {
  6610. display: table-cell !important;
  6611. }
  6612. }
  6613. @media (max-width: 767px) {
  6614. .visible-xs-block {
  6615. display: block !important;
  6616. }
  6617. }
  6618. @media (max-width: 767px) {
  6619. .visible-xs-inline {
  6620. display: inline !important;
  6621. }
  6622. }
  6623. @media (max-width: 767px) {
  6624. .visible-xs-inline-block {
  6625. display: inline-block !important;
  6626. }
  6627. }
  6628. @media (min-width: 768px) and (max-width: 991px) {
  6629. .visible-sm {
  6630. display: block !important;
  6631. }
  6632. table.visible-sm {
  6633. display: table !important;
  6634. }
  6635. tr.visible-sm {
  6636. display: table-row !important;
  6637. }
  6638. th.visible-sm,
  6639. td.visible-sm {
  6640. display: table-cell !important;
  6641. }
  6642. }
  6643. @media (min-width: 768px) and (max-width: 991px) {
  6644. .visible-sm-block {
  6645. display: block !important;
  6646. }
  6647. }
  6648. @media (min-width: 768px) and (max-width: 991px) {
  6649. .visible-sm-inline {
  6650. display: inline !important;
  6651. }
  6652. }
  6653. @media (min-width: 768px) and (max-width: 991px) {
  6654. .visible-sm-inline-block {
  6655. display: inline-block !important;
  6656. }
  6657. }
  6658. @media (min-width: 992px) and (max-width: 1199px) {
  6659. .visible-md {
  6660. display: block !important;
  6661. }
  6662. table.visible-md {
  6663. display: table !important;
  6664. }
  6665. tr.visible-md {
  6666. display: table-row !important;
  6667. }
  6668. th.visible-md,
  6669. td.visible-md {
  6670. display: table-cell !important;
  6671. }
  6672. }
  6673. @media (min-width: 992px) and (max-width: 1199px) {
  6674. .visible-md-block {
  6675. display: block !important;
  6676. }
  6677. }
  6678. @media (min-width: 992px) and (max-width: 1199px) {
  6679. .visible-md-inline {
  6680. display: inline !important;
  6681. }
  6682. }
  6683. @media (min-width: 992px) and (max-width: 1199px) {
  6684. .visible-md-inline-block {
  6685. display: inline-block !important;
  6686. }
  6687. }
  6688. @media (min-width: 1200px) {
  6689. .visible-lg {
  6690. display: block !important;
  6691. }
  6692. table.visible-lg {
  6693. display: table !important;
  6694. }
  6695. tr.visible-lg {
  6696. display: table-row !important;
  6697. }
  6698. th.visible-lg,
  6699. td.visible-lg {
  6700. display: table-cell !important;
  6701. }
  6702. }
  6703. @media (min-width: 1200px) {
  6704. .visible-lg-block {
  6705. display: block !important;
  6706. }
  6707. }
  6708. @media (min-width: 1200px) {
  6709. .visible-lg-inline {
  6710. display: inline !important;
  6711. }
  6712. }
  6713. @media (min-width: 1200px) {
  6714. .visible-lg-inline-block {
  6715. display: inline-block !important;
  6716. }
  6717. }
  6718. @media (max-width: 767px) {
  6719. .hidden-xs {
  6720. display: none !important;
  6721. }
  6722. }
  6723. @media (min-width: 768px) and (max-width: 991px) {
  6724. .hidden-sm {
  6725. display: none !important;
  6726. }
  6727. }
  6728. @media (min-width: 992px) and (max-width: 1199px) {
  6729. .hidden-md {
  6730. display: none !important;
  6731. }
  6732. }
  6733. @media (min-width: 1200px) {
  6734. .hidden-lg {
  6735. display: none !important;
  6736. }
  6737. }
  6738. .visible-print {
  6739. display: none !important;
  6740. }
  6741. @media print {
  6742. .visible-print {
  6743. display: block !important;
  6744. }
  6745. table.visible-print {
  6746. display: table !important;
  6747. }
  6748. tr.visible-print {
  6749. display: table-row !important;
  6750. }
  6751. th.visible-print,
  6752. td.visible-print {
  6753. display: table-cell !important;
  6754. }
  6755. }
  6756. .visible-print-block {
  6757. display: none !important;
  6758. }
  6759. @media print {
  6760. .visible-print-block {
  6761. display: block !important;
  6762. }
  6763. }
  6764. .visible-print-inline {
  6765. display: none !important;
  6766. }
  6767. @media print {
  6768. .visible-print-inline {
  6769. display: inline !important;
  6770. }
  6771. }
  6772. .visible-print-inline-block {
  6773. display: none !important;
  6774. }
  6775. @media print {
  6776. .visible-print-inline-block {
  6777. display: inline-block !important;
  6778. }
  6779. }
  6780. @media print {
  6781. .hidden-print {
  6782. display: none !important;
  6783. }
  6784. }
  6785. /*!
  6786. *
  6787. * Font Awesome
  6788. *
  6789. */
  6790. /*!
  6791. * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
  6792. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  6793. */
  6794. /* FONT PATH
  6795. * -------------------------- */
  6796. @font-face {
  6797. font-family: 'FontAwesome';
  6798. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
  6799. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  6800. font-weight: normal;
  6801. font-style: normal;
  6802. }
  6803. .fa {
  6804. display: inline-block;
  6805. font: normal normal normal 14px/1 FontAwesome;
  6806. font-size: inherit;
  6807. text-rendering: auto;
  6808. -webkit-font-smoothing: antialiased;
  6809. -moz-osx-font-smoothing: grayscale;
  6810. }
  6811. /* makes the font 33% larger relative to the icon container */
  6812. .fa-lg {
  6813. font-size: 1.33333333em;
  6814. line-height: 0.75em;
  6815. vertical-align: -15%;
  6816. }
  6817. .fa-2x {
  6818. font-size: 2em;
  6819. }
  6820. .fa-3x {
  6821. font-size: 3em;
  6822. }
  6823. .fa-4x {
  6824. font-size: 4em;
  6825. }
  6826. .fa-5x {
  6827. font-size: 5em;
  6828. }
  6829. .fa-fw {
  6830. width: 1.28571429em;
  6831. text-align: center;
  6832. }
  6833. .fa-ul {
  6834. padding-left: 0;
  6835. margin-left: 2.14285714em;
  6836. list-style-type: none;
  6837. }
  6838. .fa-ul > li {
  6839. position: relative;
  6840. }
  6841. .fa-li {
  6842. position: absolute;
  6843. left: -2.14285714em;
  6844. width: 2.14285714em;
  6845. top: 0.14285714em;
  6846. text-align: center;
  6847. }
  6848. .fa-li.fa-lg {
  6849. left: -1.85714286em;
  6850. }
  6851. .fa-border {
  6852. padding: .2em .25em .15em;
  6853. border: solid 0.08em #eee;
  6854. border-radius: .1em;
  6855. }
  6856. .pull-right {
  6857. float: right;
  6858. }
  6859. .pull-left {
  6860. float: left;
  6861. }
  6862. .fa.pull-left {
  6863. margin-right: .3em;
  6864. }
  6865. .fa.pull-right {
  6866. margin-left: .3em;
  6867. }
  6868. .fa-spin {
  6869. -webkit-animation: fa-spin 2s infinite linear;
  6870. animation: fa-spin 2s infinite linear;
  6871. }
  6872. @-webkit-keyframes fa-spin {
  6873. 0% {
  6874. -webkit-transform: rotate(0deg);
  6875. transform: rotate(0deg);
  6876. }
  6877. 100% {
  6878. -webkit-transform: rotate(359deg);
  6879. transform: rotate(359deg);
  6880. }
  6881. }
  6882. @keyframes fa-spin {
  6883. 0% {
  6884. -webkit-transform: rotate(0deg);
  6885. transform: rotate(0deg);
  6886. }
  6887. 100% {
  6888. -webkit-transform: rotate(359deg);
  6889. transform: rotate(359deg);
  6890. }
  6891. }
  6892. .fa-rotate-90 {
  6893. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  6894. -webkit-transform: rotate(90deg);
  6895. -ms-transform: rotate(90deg);
  6896. transform: rotate(90deg);
  6897. }
  6898. .fa-rotate-180 {
  6899. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  6900. -webkit-transform: rotate(180deg);
  6901. -ms-transform: rotate(180deg);
  6902. transform: rotate(180deg);
  6903. }
  6904. .fa-rotate-270 {
  6905. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  6906. -webkit-transform: rotate(270deg);
  6907. -ms-transform: rotate(270deg);
  6908. transform: rotate(270deg);
  6909. }
  6910. .fa-flip-horizontal {
  6911. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  6912. -webkit-transform: scale(-1, 1);
  6913. -ms-transform: scale(-1, 1);
  6914. transform: scale(-1, 1);
  6915. }
  6916. .fa-flip-vertical {
  6917. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  6918. -webkit-transform: scale(1, -1);
  6919. -ms-transform: scale(1, -1);
  6920. transform: scale(1, -1);
  6921. }
  6922. :root .fa-rotate-90,
  6923. :root .fa-rotate-180,
  6924. :root .fa-rotate-270,
  6925. :root .fa-flip-horizontal,
  6926. :root .fa-flip-vertical {
  6927. filter: none;
  6928. }
  6929. .fa-stack {
  6930. position: relative;
  6931. display: inline-block;
  6932. width: 2em;
  6933. height: 2em;
  6934. line-height: 2em;
  6935. vertical-align: middle;
  6936. }
  6937. .fa-stack-1x,
  6938. .fa-stack-2x {
  6939. position: absolute;
  6940. left: 0;
  6941. width: 100%;
  6942. text-align: center;
  6943. }
  6944. .fa-stack-1x {
  6945. line-height: inherit;
  6946. }
  6947. .fa-stack-2x {
  6948. font-size: 2em;
  6949. }
  6950. .fa-inverse {
  6951. color: #fff;
  6952. }
  6953. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  6954. readers do not read off random characters that represent icons */
  6955. .fa-glass:before {
  6956. content: "\f000";
  6957. }
  6958. .fa-music:before {
  6959. content: "\f001";
  6960. }
  6961. .fa-search:before {
  6962. content: "\f002";
  6963. }
  6964. .fa-envelope-o:before {
  6965. content: "\f003";
  6966. }
  6967. .fa-heart:before {
  6968. content: "\f004";
  6969. }
  6970. .fa-star:before {
  6971. content: "\f005";
  6972. }
  6973. .fa-star-o:before {
  6974. content: "\f006";
  6975. }
  6976. .fa-user:before {
  6977. content: "\f007";
  6978. }
  6979. .fa-film:before {
  6980. content: "\f008";
  6981. }
  6982. .fa-th-large:before {
  6983. content: "\f009";
  6984. }
  6985. .fa-th:before {
  6986. content: "\f00a";
  6987. }
  6988. .fa-th-list:before {
  6989. content: "\f00b";
  6990. }
  6991. .fa-check:before {
  6992. content: "\f00c";
  6993. }
  6994. .fa-remove:before,
  6995. .fa-close:before,
  6996. .fa-times:before {
  6997. content: "\f00d";
  6998. }
  6999. .fa-search-plus:before {
  7000. content: "\f00e";
  7001. }
  7002. .fa-search-minus:before {
  7003. content: "\f010";
  7004. }
  7005. .fa-power-off:before {
  7006. content: "\f011";
  7007. }
  7008. .fa-signal:before {
  7009. content: "\f012";
  7010. }
  7011. .fa-gear:before,
  7012. .fa-cog:before {
  7013. content: "\f013";
  7014. }
  7015. .fa-trash-o:before {
  7016. content: "\f014";
  7017. }
  7018. .fa-home:before {
  7019. content: "\f015";
  7020. }
  7021. .fa-file-o:before {
  7022. content: "\f016";
  7023. }
  7024. .fa-clock-o:before {
  7025. content: "\f017";
  7026. }
  7027. .fa-road:before {
  7028. content: "\f018";
  7029. }
  7030. .fa-download:before {
  7031. content: "\f019";
  7032. }
  7033. .fa-arrow-circle-o-down:before {
  7034. content: "\f01a";
  7035. }
  7036. .fa-arrow-circle-o-up:before {
  7037. content: "\f01b";
  7038. }
  7039. .fa-inbox:before {
  7040. content: "\f01c";
  7041. }
  7042. .fa-play-circle-o:before {
  7043. content: "\f01d";
  7044. }
  7045. .fa-rotate-right:before,
  7046. .fa-repeat:before {
  7047. content: "\f01e";
  7048. }
  7049. .fa-refresh:before {
  7050. content: "\f021";
  7051. }
  7052. .fa-list-alt:before {
  7053. content: "\f022";
  7054. }
  7055. .fa-lock:before {
  7056. content: "\f023";
  7057. }
  7058. .fa-flag:before {
  7059. content: "\f024";
  7060. }
  7061. .fa-headphones:before {
  7062. content: "\f025";
  7063. }
  7064. .fa-volume-off:before {
  7065. content: "\f026";
  7066. }
  7067. .fa-volume-down:before {
  7068. content: "\f027";
  7069. }
  7070. .fa-volume-up:before {
  7071. content: "\f028";
  7072. }
  7073. .fa-qrcode:before {
  7074. content: "\f029";
  7075. }
  7076. .fa-barcode:before {
  7077. content: "\f02a";
  7078. }
  7079. .fa-tag:before {
  7080. content: "\f02b";
  7081. }
  7082. .fa-tags:before {
  7083. content: "\f02c";
  7084. }
  7085. .fa-book:before {
  7086. content: "\f02d";
  7087. }
  7088. .fa-bookmark:before {
  7089. content: "\f02e";
  7090. }
  7091. .fa-print:before {
  7092. content: "\f02f";
  7093. }
  7094. .fa-camera:before {
  7095. content: "\f030";
  7096. }
  7097. .fa-font:before {
  7098. content: "\f031";
  7099. }
  7100. .fa-bold:before {
  7101. content: "\f032";
  7102. }
  7103. .fa-italic:before {
  7104. content: "\f033";
  7105. }
  7106. .fa-text-height:before {
  7107. content: "\f034";
  7108. }
  7109. .fa-text-width:before {
  7110. content: "\f035";
  7111. }
  7112. .fa-align-left:before {
  7113. content: "\f036";
  7114. }
  7115. .fa-align-center:before {
  7116. content: "\f037";
  7117. }
  7118. .fa-align-right:before {
  7119. content: "\f038";
  7120. }
  7121. .fa-align-justify:before {
  7122. content: "\f039";
  7123. }
  7124. .fa-list:before {
  7125. content: "\f03a";
  7126. }
  7127. .fa-dedent:before,
  7128. .fa-outdent:before {
  7129. content: "\f03b";
  7130. }
  7131. .fa-indent:before {
  7132. content: "\f03c";
  7133. }
  7134. .fa-video-camera:before {
  7135. content: "\f03d";
  7136. }
  7137. .fa-photo:before,
  7138. .fa-image:before,
  7139. .fa-picture-o:before {
  7140. content: "\f03e";
  7141. }
  7142. .fa-pencil:before {
  7143. content: "\f040";
  7144. }
  7145. .fa-map-marker:before {
  7146. content: "\f041";
  7147. }
  7148. .fa-adjust:before {
  7149. content: "\f042";
  7150. }
  7151. .fa-tint:before {
  7152. content: "\f043";
  7153. }
  7154. .fa-edit:before,
  7155. .fa-pencil-square-o:before {
  7156. content: "\f044";
  7157. }
  7158. .fa-share-square-o:before {
  7159. content: "\f045";
  7160. }
  7161. .fa-check-square-o:before {
  7162. content: "\f046";
  7163. }
  7164. .fa-arrows:before {
  7165. content: "\f047";
  7166. }
  7167. .fa-step-backward:before {
  7168. content: "\f048";
  7169. }
  7170. .fa-fast-backward:before {
  7171. content: "\f049";
  7172. }
  7173. .fa-backward:before {
  7174. content: "\f04a";
  7175. }
  7176. .fa-play:before {
  7177. content: "\f04b";
  7178. }
  7179. .fa-pause:before {
  7180. content: "\f04c";
  7181. }
  7182. .fa-stop:before {
  7183. content: "\f04d";
  7184. }
  7185. .fa-forward:before {
  7186. content: "\f04e";
  7187. }
  7188. .fa-fast-forward:before {
  7189. content: "\f050";
  7190. }
  7191. .fa-step-forward:before {
  7192. content: "\f051";
  7193. }
  7194. .fa-eject:before {
  7195. content: "\f052";
  7196. }
  7197. .fa-chevron-left:before {
  7198. content: "\f053";
  7199. }
  7200. .fa-chevron-right:before {
  7201. content: "\f054";
  7202. }
  7203. .fa-plus-circle:before {
  7204. content: "\f055";
  7205. }
  7206. .fa-minus-circle:before {
  7207. content: "\f056";
  7208. }
  7209. .fa-times-circle:before {
  7210. content: "\f057";
  7211. }
  7212. .fa-check-circle:before {
  7213. content: "\f058";
  7214. }
  7215. .fa-question-circle:before {
  7216. content: "\f059";
  7217. }
  7218. .fa-info-circle:before {
  7219. content: "\f05a";
  7220. }
  7221. .fa-crosshairs:before {
  7222. content: "\f05b";
  7223. }
  7224. .fa-times-circle-o:before {
  7225. content: "\f05c";
  7226. }
  7227. .fa-check-circle-o:before {
  7228. content: "\f05d";
  7229. }
  7230. .fa-ban:before {
  7231. content: "\f05e";
  7232. }
  7233. .fa-arrow-left:before {
  7234. content: "\f060";
  7235. }
  7236. .fa-arrow-right:before {
  7237. content: "\f061";
  7238. }
  7239. .fa-arrow-up:before {
  7240. content: "\f062";
  7241. }
  7242. .fa-arrow-down:before {
  7243. content: "\f063";
  7244. }
  7245. .fa-mail-forward:before,
  7246. .fa-share:before {
  7247. content: "\f064";
  7248. }
  7249. .fa-expand:before {
  7250. content: "\f065";
  7251. }
  7252. .fa-compress:before {
  7253. content: "\f066";
  7254. }
  7255. .fa-plus:before {
  7256. content: "\f067";
  7257. }
  7258. .fa-minus:before {
  7259. content: "\f068";
  7260. }
  7261. .fa-asterisk:before {
  7262. content: "\f069";
  7263. }
  7264. .fa-exclamation-circle:before {
  7265. content: "\f06a";
  7266. }
  7267. .fa-gift:before {
  7268. content: "\f06b";
  7269. }
  7270. .fa-leaf:before {
  7271. content: "\f06c";
  7272. }
  7273. .fa-fire:before {
  7274. content: "\f06d";
  7275. }
  7276. .fa-eye:before {
  7277. content: "\f06e";
  7278. }
  7279. .fa-eye-slash:before {
  7280. content: "\f070";
  7281. }
  7282. .fa-warning:before,
  7283. .fa-exclamation-triangle:before {
  7284. content: "\f071";
  7285. }
  7286. .fa-plane:before {
  7287. content: "\f072";
  7288. }
  7289. .fa-calendar:before {
  7290. content: "\f073";
  7291. }
  7292. .fa-random:before {
  7293. content: "\f074";
  7294. }
  7295. .fa-comment:before {
  7296. content: "\f075";
  7297. }
  7298. .fa-magnet:before {
  7299. content: "\f076";
  7300. }
  7301. .fa-chevron-up:before {
  7302. content: "\f077";
  7303. }
  7304. .fa-chevron-down:before {
  7305. content: "\f078";
  7306. }
  7307. .fa-retweet:before {
  7308. content: "\f079";
  7309. }
  7310. .fa-shopping-cart:before {
  7311. content: "\f07a";
  7312. }
  7313. .fa-folder:before {
  7314. content: "\f07b";
  7315. }
  7316. .fa-folder-open:before {
  7317. content: "\f07c";
  7318. }
  7319. .fa-arrows-v:before {
  7320. content: "\f07d";
  7321. }
  7322. .fa-arrows-h:before {
  7323. content: "\f07e";
  7324. }
  7325. .fa-bar-chart-o:before,
  7326. .fa-bar-chart:before {
  7327. content: "\f080";
  7328. }
  7329. .fa-twitter-square:before {
  7330. content: "\f081";
  7331. }
  7332. .fa-facebook-square:before {
  7333. content: "\f082";
  7334. }
  7335. .fa-camera-retro:before {
  7336. content: "\f083";
  7337. }
  7338. .fa-key:before {
  7339. content: "\f084";
  7340. }
  7341. .fa-gears:before,
  7342. .fa-cogs:before {
  7343. content: "\f085";
  7344. }
  7345. .fa-comments:before {
  7346. content: "\f086";
  7347. }
  7348. .fa-thumbs-o-up:before {
  7349. content: "\f087";
  7350. }
  7351. .fa-thumbs-o-down:before {
  7352. content: "\f088";
  7353. }
  7354. .fa-star-half:before {
  7355. content: "\f089";
  7356. }
  7357. .fa-heart-o:before {
  7358. content: "\f08a";
  7359. }
  7360. .fa-sign-out:before {
  7361. content: "\f08b";
  7362. }
  7363. .fa-linkedin-square:before {
  7364. content: "\f08c";
  7365. }
  7366. .fa-thumb-tack:before {
  7367. content: "\f08d";
  7368. }
  7369. .fa-external-link:before {
  7370. content: "\f08e";
  7371. }
  7372. .fa-sign-in:before {
  7373. content: "\f090";
  7374. }
  7375. .fa-trophy:before {
  7376. content: "\f091";
  7377. }
  7378. .fa-github-square:before {
  7379. content: "\f092";
  7380. }
  7381. .fa-upload:before {
  7382. content: "\f093";
  7383. }
  7384. .fa-lemon-o:before {
  7385. content: "\f094";
  7386. }
  7387. .fa-phone:before {
  7388. content: "\f095";
  7389. }
  7390. .fa-square-o:before {
  7391. content: "\f096";
  7392. }
  7393. .fa-bookmark-o:before {
  7394. content: "\f097";
  7395. }
  7396. .fa-phone-square:before {
  7397. content: "\f098";
  7398. }
  7399. .fa-twitter:before {
  7400. content: "\f099";
  7401. }
  7402. .fa-facebook:before {
  7403. content: "\f09a";
  7404. }
  7405. .fa-github:before {
  7406. content: "\f09b";
  7407. }
  7408. .fa-unlock:before {
  7409. content: "\f09c";
  7410. }
  7411. .fa-credit-card:before {
  7412. content: "\f09d";
  7413. }
  7414. .fa-rss:before {
  7415. content: "\f09e";
  7416. }
  7417. .fa-hdd-o:before {
  7418. content: "\f0a0";
  7419. }
  7420. .fa-bullhorn:before {
  7421. content: "\f0a1";
  7422. }
  7423. .fa-bell:before {
  7424. content: "\f0f3";
  7425. }
  7426. .fa-certificate:before {
  7427. content: "\f0a3";
  7428. }
  7429. .fa-hand-o-right:before {
  7430. content: "\f0a4";
  7431. }
  7432. .fa-hand-o-left:before {
  7433. content: "\f0a5";
  7434. }
  7435. .fa-hand-o-up:before {
  7436. content: "\f0a6";
  7437. }
  7438. .fa-hand-o-down:before {
  7439. content: "\f0a7";
  7440. }
  7441. .fa-arrow-circle-left:before {
  7442. content: "\f0a8";
  7443. }
  7444. .fa-arrow-circle-right:before {
  7445. content: "\f0a9";
  7446. }
  7447. .fa-arrow-circle-up:before {
  7448. content: "\f0aa";
  7449. }
  7450. .fa-arrow-circle-down:before {
  7451. content: "\f0ab";
  7452. }
  7453. .fa-globe:before {
  7454. content: "\f0ac";
  7455. }
  7456. .fa-wrench:before {
  7457. content: "\f0ad";
  7458. }
  7459. .fa-tasks:before {
  7460. content: "\f0ae";
  7461. }
  7462. .fa-filter:before {
  7463. content: "\f0b0";
  7464. }
  7465. .fa-briefcase:before {
  7466. content: "\f0b1";
  7467. }
  7468. .fa-arrows-alt:before {
  7469. content: "\f0b2";
  7470. }
  7471. .fa-group:before,
  7472. .fa-users:before {
  7473. content: "\f0c0";
  7474. }
  7475. .fa-chain:before,
  7476. .fa-link:before {
  7477. content: "\f0c1";
  7478. }
  7479. .fa-cloud:before {
  7480. content: "\f0c2";
  7481. }
  7482. .fa-flask:before {
  7483. content: "\f0c3";
  7484. }
  7485. .fa-cut:before,
  7486. .fa-scissors:before {
  7487. content: "\f0c4";
  7488. }
  7489. .fa-copy:before,
  7490. .fa-files-o:before {
  7491. content: "\f0c5";
  7492. }
  7493. .fa-paperclip:before {
  7494. content: "\f0c6";
  7495. }
  7496. .fa-save:before,
  7497. .fa-floppy-o:before {
  7498. content: "\f0c7";
  7499. }
  7500. .fa-square:before {
  7501. content: "\f0c8";
  7502. }
  7503. .fa-navicon:before,
  7504. .fa-reorder:before,
  7505. .fa-bars:before {
  7506. content: "\f0c9";
  7507. }
  7508. .fa-list-ul:before {
  7509. content: "\f0ca";
  7510. }
  7511. .fa-list-ol:before {
  7512. content: "\f0cb";
  7513. }
  7514. .fa-strikethrough:before {
  7515. content: "\f0cc";
  7516. }
  7517. .fa-underline:before {
  7518. content: "\f0cd";
  7519. }
  7520. .fa-table:before {
  7521. content: "\f0ce";
  7522. }
  7523. .fa-magic:before {
  7524. content: "\f0d0";
  7525. }
  7526. .fa-truck:before {
  7527. content: "\f0d1";
  7528. }
  7529. .fa-pinterest:before {
  7530. content: "\f0d2";
  7531. }
  7532. .fa-pinterest-square:before {
  7533. content: "\f0d3";
  7534. }
  7535. .fa-google-plus-square:before {
  7536. content: "\f0d4";
  7537. }
  7538. .fa-google-plus:before {
  7539. content: "\f0d5";
  7540. }
  7541. .fa-money:before {
  7542. content: "\f0d6";
  7543. }
  7544. .fa-caret-down:before {
  7545. content: "\f0d7";
  7546. }
  7547. .fa-caret-up:before {
  7548. content: "\f0d8";
  7549. }
  7550. .fa-caret-left:before {
  7551. content: "\f0d9";
  7552. }
  7553. .fa-caret-right:before {
  7554. content: "\f0da";
  7555. }
  7556. .fa-columns:before {
  7557. content: "\f0db";
  7558. }
  7559. .fa-unsorted:before,
  7560. .fa-sort:before {
  7561. content: "\f0dc";
  7562. }
  7563. .fa-sort-down:before,
  7564. .fa-sort-desc:before {
  7565. content: "\f0dd";
  7566. }
  7567. .fa-sort-up:before,
  7568. .fa-sort-asc:before {
  7569. content: "\f0de";
  7570. }
  7571. .fa-envelope:before {
  7572. content: "\f0e0";
  7573. }
  7574. .fa-linkedin:before {
  7575. content: "\f0e1";
  7576. }
  7577. .fa-rotate-left:before,
  7578. .fa-undo:before {
  7579. content: "\f0e2";
  7580. }
  7581. .fa-legal:before,
  7582. .fa-gavel:before {
  7583. content: "\f0e3";
  7584. }
  7585. .fa-dashboard:before,
  7586. .fa-tachometer:before {
  7587. content: "\f0e4";
  7588. }
  7589. .fa-comment-o:before {
  7590. content: "\f0e5";
  7591. }
  7592. .fa-comments-o:before {
  7593. content: "\f0e6";
  7594. }
  7595. .fa-flash:before,
  7596. .fa-bolt:before {
  7597. content: "\f0e7";
  7598. }
  7599. .fa-sitemap:before {
  7600. content: "\f0e8";
  7601. }
  7602. .fa-umbrella:before {
  7603. content: "\f0e9";
  7604. }
  7605. .fa-paste:before,
  7606. .fa-clipboard:before {
  7607. content: "\f0ea";
  7608. }
  7609. .fa-lightbulb-o:before {
  7610. content: "\f0eb";
  7611. }
  7612. .fa-exchange:before {
  7613. content: "\f0ec";
  7614. }
  7615. .fa-cloud-download:before {
  7616. content: "\f0ed";
  7617. }
  7618. .fa-cloud-upload:before {
  7619. content: "\f0ee";
  7620. }
  7621. .fa-user-md:before {
  7622. content: "\f0f0";
  7623. }
  7624. .fa-stethoscope:before {
  7625. content: "\f0f1";
  7626. }
  7627. .fa-suitcase:before {
  7628. content: "\f0f2";
  7629. }
  7630. .fa-bell-o:before {
  7631. content: "\f0a2";
  7632. }
  7633. .fa-coffee:before {
  7634. content: "\f0f4";
  7635. }
  7636. .fa-cutlery:before {
  7637. content: "\f0f5";
  7638. }
  7639. .fa-file-text-o:before {
  7640. content: "\f0f6";
  7641. }
  7642. .fa-building-o:before {
  7643. content: "\f0f7";
  7644. }
  7645. .fa-hospital-o:before {
  7646. content: "\f0f8";
  7647. }
  7648. .fa-ambulance:before {
  7649. content: "\f0f9";
  7650. }
  7651. .fa-medkit:before {
  7652. content: "\f0fa";
  7653. }
  7654. .fa-fighter-jet:before {
  7655. content: "\f0fb";
  7656. }
  7657. .fa-beer:before {
  7658. content: "\f0fc";
  7659. }
  7660. .fa-h-square:before {
  7661. content: "\f0fd";
  7662. }
  7663. .fa-plus-square:before {
  7664. content: "\f0fe";
  7665. }
  7666. .fa-angle-double-left:before {
  7667. content: "\f100";
  7668. }
  7669. .fa-angle-double-right:before {
  7670. content: "\f101";
  7671. }
  7672. .fa-angle-double-up:before {
  7673. content: "\f102";
  7674. }
  7675. .fa-angle-double-down:before {
  7676. content: "\f103";
  7677. }
  7678. .fa-angle-left:before {
  7679. content: "\f104";
  7680. }
  7681. .fa-angle-right:before {
  7682. content: "\f105";
  7683. }
  7684. .fa-angle-up:before {
  7685. content: "\f106";
  7686. }
  7687. .fa-angle-down:before {
  7688. content: "\f107";
  7689. }
  7690. .fa-desktop:before {
  7691. content: "\f108";
  7692. }
  7693. .fa-laptop:before {
  7694. content: "\f109";
  7695. }
  7696. .fa-tablet:before {
  7697. content: "\f10a";
  7698. }
  7699. .fa-mobile-phone:before,
  7700. .fa-mobile:before {
  7701. content: "\f10b";
  7702. }
  7703. .fa-circle-o:before {
  7704. content: "\f10c";
  7705. }
  7706. .fa-quote-left:before {
  7707. content: "\f10d";
  7708. }
  7709. .fa-quote-right:before {
  7710. content: "\f10e";
  7711. }
  7712. .fa-spinner:before {
  7713. content: "\f110";
  7714. }
  7715. .fa-circle:before {
  7716. content: "\f111";
  7717. }
  7718. .fa-mail-reply:before,
  7719. .fa-reply:before {
  7720. content: "\f112";
  7721. }
  7722. .fa-github-alt:before {
  7723. content: "\f113";
  7724. }
  7725. .fa-folder-o:before {
  7726. content: "\f114";
  7727. }
  7728. .fa-folder-open-o:before {
  7729. content: "\f115";
  7730. }
  7731. .fa-smile-o:before {
  7732. content: "\f118";
  7733. }
  7734. .fa-frown-o:before {
  7735. content: "\f119";
  7736. }
  7737. .fa-meh-o:before {
  7738. content: "\f11a";
  7739. }
  7740. .fa-gamepad:before {
  7741. content: "\f11b";
  7742. }
  7743. .fa-keyboard-o:before {
  7744. content: "\f11c";
  7745. }
  7746. .fa-flag-o:before {
  7747. content: "\f11d";
  7748. }
  7749. .fa-flag-checkered:before {
  7750. content: "\f11e";
  7751. }
  7752. .fa-terminal:before {
  7753. content: "\f120";
  7754. }
  7755. .fa-code:before {
  7756. content: "\f121";
  7757. }
  7758. .fa-mail-reply-all:before,
  7759. .fa-reply-all:before {
  7760. content: "\f122";
  7761. }
  7762. .fa-star-half-empty:before,
  7763. .fa-star-half-full:before,
  7764. .fa-star-half-o:before {
  7765. content: "\f123";
  7766. }
  7767. .fa-location-arrow:before {
  7768. content: "\f124";
  7769. }
  7770. .fa-crop:before {
  7771. content: "\f125";
  7772. }
  7773. .fa-code-fork:before {
  7774. content: "\f126";
  7775. }
  7776. .fa-unlink:before,
  7777. .fa-chain-broken:before {
  7778. content: "\f127";
  7779. }
  7780. .fa-question:before {
  7781. content: "\f128";
  7782. }
  7783. .fa-info:before {
  7784. content: "\f129";
  7785. }
  7786. .fa-exclamation:before {
  7787. content: "\f12a";
  7788. }
  7789. .fa-superscript:before {
  7790. content: "\f12b";
  7791. }
  7792. .fa-subscript:before {
  7793. content: "\f12c";
  7794. }
  7795. .fa-eraser:before {
  7796. content: "\f12d";
  7797. }
  7798. .fa-puzzle-piece:before {
  7799. content: "\f12e";
  7800. }
  7801. .fa-microphone:before {
  7802. content: "\f130";
  7803. }
  7804. .fa-microphone-slash:before {
  7805. content: "\f131";
  7806. }
  7807. .fa-shield:before {
  7808. content: "\f132";
  7809. }
  7810. .fa-calendar-o:before {
  7811. content: "\f133";
  7812. }
  7813. .fa-fire-extinguisher:before {
  7814. content: "\f134";
  7815. }
  7816. .fa-rocket:before {
  7817. content: "\f135";
  7818. }
  7819. .fa-maxcdn:before {
  7820. content: "\f136";
  7821. }
  7822. .fa-chevron-circle-left:before {
  7823. content: "\f137";
  7824. }
  7825. .fa-chevron-circle-right:before {
  7826. content: "\f138";
  7827. }
  7828. .fa-chevron-circle-up:before {
  7829. content: "\f139";
  7830. }
  7831. .fa-chevron-circle-down:before {
  7832. content: "\f13a";
  7833. }
  7834. .fa-html5:before {
  7835. content: "\f13b";
  7836. }
  7837. .fa-css3:before {
  7838. content: "\f13c";
  7839. }
  7840. .fa-anchor:before {
  7841. content: "\f13d";
  7842. }
  7843. .fa-unlock-alt:before {
  7844. content: "\f13e";
  7845. }
  7846. .fa-bullseye:before {
  7847. content: "\f140";
  7848. }
  7849. .fa-ellipsis-h:before {
  7850. content: "\f141";
  7851. }
  7852. .fa-ellipsis-v:before {
  7853. content: "\f142";
  7854. }
  7855. .fa-rss-square:before {
  7856. content: "\f143";
  7857. }
  7858. .fa-play-circle:before {
  7859. content: "\f144";
  7860. }
  7861. .fa-ticket:before {
  7862. content: "\f145";
  7863. }
  7864. .fa-minus-square:before {
  7865. content: "\f146";
  7866. }
  7867. .fa-minus-square-o:before {
  7868. content: "\f147";
  7869. }
  7870. .fa-level-up:before {
  7871. content: "\f148";
  7872. }
  7873. .fa-level-down:before {
  7874. content: "\f149";
  7875. }
  7876. .fa-check-square:before {
  7877. content: "\f14a";
  7878. }
  7879. .fa-pencil-square:before {
  7880. content: "\f14b";
  7881. }
  7882. .fa-external-link-square:before {
  7883. content: "\f14c";
  7884. }
  7885. .fa-share-square:before {
  7886. content: "\f14d";
  7887. }
  7888. .fa-compass:before {
  7889. content: "\f14e";
  7890. }
  7891. .fa-toggle-down:before,
  7892. .fa-caret-square-o-down:before {
  7893. content: "\f150";
  7894. }
  7895. .fa-toggle-up:before,
  7896. .fa-caret-square-o-up:before {
  7897. content: "\f151";
  7898. }
  7899. .fa-toggle-right:before,
  7900. .fa-caret-square-o-right:before {
  7901. content: "\f152";
  7902. }
  7903. .fa-euro:before,
  7904. .fa-eur:before {
  7905. content: "\f153";
  7906. }
  7907. .fa-gbp:before {
  7908. content: "\f154";
  7909. }
  7910. .fa-dollar:before,
  7911. .fa-usd:before {
  7912. content: "\f155";
  7913. }
  7914. .fa-rupee:before,
  7915. .fa-inr:before {
  7916. content: "\f156";
  7917. }
  7918. .fa-cny:before,
  7919. .fa-rmb:before,
  7920. .fa-yen:before,
  7921. .fa-jpy:before {
  7922. content: "\f157";
  7923. }
  7924. .fa-ruble:before,
  7925. .fa-rouble:before,
  7926. .fa-rub:before {
  7927. content: "\f158";
  7928. }
  7929. .fa-won:before,
  7930. .fa-krw:before {
  7931. content: "\f159";
  7932. }
  7933. .fa-bitcoin:before,
  7934. .fa-btc:before {
  7935. content: "\f15a";
  7936. }
  7937. .fa-file:before {
  7938. content: "\f15b";
  7939. }
  7940. .fa-file-text:before {
  7941. content: "\f15c";
  7942. }
  7943. .fa-sort-alpha-asc:before {
  7944. content: "\f15d";
  7945. }
  7946. .fa-sort-alpha-desc:before {
  7947. content: "\f15e";
  7948. }
  7949. .fa-sort-amount-asc:before {
  7950. content: "\f160";
  7951. }
  7952. .fa-sort-amount-desc:before {
  7953. content: "\f161";
  7954. }
  7955. .fa-sort-numeric-asc:before {
  7956. content: "\f162";
  7957. }
  7958. .fa-sort-numeric-desc:before {
  7959. content: "\f163";
  7960. }
  7961. .fa-thumbs-up:before {
  7962. content: "\f164";
  7963. }
  7964. .fa-thumbs-down:before {
  7965. content: "\f165";
  7966. }
  7967. .fa-youtube-square:before {
  7968. content: "\f166";
  7969. }
  7970. .fa-youtube:before {
  7971. content: "\f167";
  7972. }
  7973. .fa-xing:before {
  7974. content: "\f168";
  7975. }
  7976. .fa-xing-square:before {
  7977. content: "\f169";
  7978. }
  7979. .fa-youtube-play:before {
  7980. content: "\f16a";
  7981. }
  7982. .fa-dropbox:before {
  7983. content: "\f16b";
  7984. }
  7985. .fa-stack-overflow:before {
  7986. content: "\f16c";
  7987. }
  7988. .fa-instagram:before {
  7989. content: "\f16d";
  7990. }
  7991. .fa-flickr:before {
  7992. content: "\f16e";
  7993. }
  7994. .fa-adn:before {
  7995. content: "\f170";
  7996. }
  7997. .fa-bitbucket:before {
  7998. content: "\f171";
  7999. }
  8000. .fa-bitbucket-square:before {
  8001. content: "\f172";
  8002. }
  8003. .fa-tumblr:before {
  8004. content: "\f173";
  8005. }
  8006. .fa-tumblr-square:before {
  8007. content: "\f174";
  8008. }
  8009. .fa-long-arrow-down:before {
  8010. content: "\f175";
  8011. }
  8012. .fa-long-arrow-up:before {
  8013. content: "\f176";
  8014. }
  8015. .fa-long-arrow-left:before {
  8016. content: "\f177";
  8017. }
  8018. .fa-long-arrow-right:before {
  8019. content: "\f178";
  8020. }
  8021. .fa-apple:before {
  8022. content: "\f179";
  8023. }
  8024. .fa-windows:before {
  8025. content: "\f17a";
  8026. }
  8027. .fa-android:before {
  8028. content: "\f17b";
  8029. }
  8030. .fa-linux:before {
  8031. content: "\f17c";
  8032. }
  8033. .fa-dribbble:before {
  8034. content: "\f17d";
  8035. }
  8036. .fa-skype:before {
  8037. content: "\f17e";
  8038. }
  8039. .fa-foursquare:before {
  8040. content: "\f180";
  8041. }
  8042. .fa-trello:before {
  8043. content: "\f181";
  8044. }
  8045. .fa-female:before {
  8046. content: "\f182";
  8047. }
  8048. .fa-male:before {
  8049. content: "\f183";
  8050. }
  8051. .fa-gittip:before {
  8052. content: "\f184";
  8053. }
  8054. .fa-sun-o:before {
  8055. content: "\f185";
  8056. }
  8057. .fa-moon-o:before {
  8058. content: "\f186";
  8059. }
  8060. .fa-archive:before {
  8061. content: "\f187";
  8062. }
  8063. .fa-bug:before {
  8064. content: "\f188";
  8065. }
  8066. .fa-vk:before {
  8067. content: "\f189";
  8068. }
  8069. .fa-weibo:before {
  8070. content: "\f18a";
  8071. }
  8072. .fa-renren:before {
  8073. content: "\f18b";
  8074. }
  8075. .fa-pagelines:before {
  8076. content: "\f18c";
  8077. }
  8078. .fa-stack-exchange:before {
  8079. content: "\f18d";
  8080. }
  8081. .fa-arrow-circle-o-right:before {
  8082. content: "\f18e";
  8083. }
  8084. .fa-arrow-circle-o-left:before {
  8085. content: "\f190";
  8086. }
  8087. .fa-toggle-left:before,
  8088. .fa-caret-square-o-left:before {
  8089. content: "\f191";
  8090. }
  8091. .fa-dot-circle-o:before {
  8092. content: "\f192";
  8093. }
  8094. .fa-wheelchair:before {
  8095. content: "\f193";
  8096. }
  8097. .fa-vimeo-square:before {
  8098. content: "\f194";
  8099. }
  8100. .fa-turkish-lira:before,
  8101. .fa-try:before {
  8102. content: "\f195";
  8103. }
  8104. .fa-plus-square-o:before {
  8105. content: "\f196";
  8106. }
  8107. .fa-space-shuttle:before {
  8108. content: "\f197";
  8109. }
  8110. .fa-slack:before {
  8111. content: "\f198";
  8112. }
  8113. .fa-envelope-square:before {
  8114. content: "\f199";
  8115. }
  8116. .fa-wordpress:before {
  8117. content: "\f19a";
  8118. }
  8119. .fa-openid:before {
  8120. content: "\f19b";
  8121. }
  8122. .fa-institution:before,
  8123. .fa-bank:before,
  8124. .fa-university:before {
  8125. content: "\f19c";
  8126. }
  8127. .fa-mortar-board:before,
  8128. .fa-graduation-cap:before {
  8129. content: "\f19d";
  8130. }
  8131. .fa-yahoo:before {
  8132. content: "\f19e";
  8133. }
  8134. .fa-google:before {
  8135. content: "\f1a0";
  8136. }
  8137. .fa-reddit:before {
  8138. content: "\f1a1";
  8139. }
  8140. .fa-reddit-square:before {
  8141. content: "\f1a2";
  8142. }
  8143. .fa-stumbleupon-circle:before {
  8144. content: "\f1a3";
  8145. }
  8146. .fa-stumbleupon:before {
  8147. content: "\f1a4";
  8148. }
  8149. .fa-delicious:before {
  8150. content: "\f1a5";
  8151. }
  8152. .fa-digg:before {
  8153. content: "\f1a6";
  8154. }
  8155. .fa-pied-piper:before {
  8156. content: "\f1a7";
  8157. }
  8158. .fa-pied-piper-alt:before {
  8159. content: "\f1a8";
  8160. }
  8161. .fa-drupal:before {
  8162. content: "\f1a9";
  8163. }
  8164. .fa-joomla:before {
  8165. content: "\f1aa";
  8166. }
  8167. .fa-language:before {
  8168. content: "\f1ab";
  8169. }
  8170. .fa-fax:before {
  8171. content: "\f1ac";
  8172. }
  8173. .fa-building:before {
  8174. content: "\f1ad";
  8175. }
  8176. .fa-child:before {
  8177. content: "\f1ae";
  8178. }
  8179. .fa-paw:before {
  8180. content: "\f1b0";
  8181. }
  8182. .fa-spoon:before {
  8183. content: "\f1b1";
  8184. }
  8185. .fa-cube:before {
  8186. content: "\f1b2";
  8187. }
  8188. .fa-cubes:before {
  8189. content: "\f1b3";
  8190. }
  8191. .fa-behance:before {
  8192. content: "\f1b4";
  8193. }
  8194. .fa-behance-square:before {
  8195. content: "\f1b5";
  8196. }
  8197. .fa-steam:before {
  8198. content: "\f1b6";
  8199. }
  8200. .fa-steam-square:before {
  8201. content: "\f1b7";
  8202. }
  8203. .fa-recycle:before {
  8204. content: "\f1b8";
  8205. }
  8206. .fa-automobile:before,
  8207. .fa-car:before {
  8208. content: "\f1b9";
  8209. }
  8210. .fa-cab:before,
  8211. .fa-taxi:before {
  8212. content: "\f1ba";
  8213. }
  8214. .fa-tree:before {
  8215. content: "\f1bb";
  8216. }
  8217. .fa-spotify:before {
  8218. content: "\f1bc";
  8219. }
  8220. .fa-deviantart:before {
  8221. content: "\f1bd";
  8222. }
  8223. .fa-soundcloud:before {
  8224. content: "\f1be";
  8225. }
  8226. .fa-database:before {
  8227. content: "\f1c0";
  8228. }
  8229. .fa-file-pdf-o:before {
  8230. content: "\f1c1";
  8231. }
  8232. .fa-file-word-o:before {
  8233. content: "\f1c2";
  8234. }
  8235. .fa-file-excel-o:before {
  8236. content: "\f1c3";
  8237. }
  8238. .fa-file-powerpoint-o:before {
  8239. content: "\f1c4";
  8240. }
  8241. .fa-file-photo-o:before,
  8242. .fa-file-picture-o:before,
  8243. .fa-file-image-o:before {
  8244. content: "\f1c5";
  8245. }
  8246. .fa-file-zip-o:before,
  8247. .fa-file-archive-o:before {
  8248. content: "\f1c6";
  8249. }
  8250. .fa-file-sound-o:before,
  8251. .fa-file-audio-o:before {
  8252. content: "\f1c7";
  8253. }
  8254. .fa-file-movie-o:before,
  8255. .fa-file-video-o:before {
  8256. content: "\f1c8";
  8257. }
  8258. .fa-file-code-o:before {
  8259. content: "\f1c9";
  8260. }
  8261. .fa-vine:before {
  8262. content: "\f1ca";
  8263. }
  8264. .fa-codepen:before {
  8265. content: "\f1cb";
  8266. }
  8267. .fa-jsfiddle:before {
  8268. content: "\f1cc";
  8269. }
  8270. .fa-life-bouy:before,
  8271. .fa-life-buoy:before,
  8272. .fa-life-saver:before,
  8273. .fa-support:before,
  8274. .fa-life-ring:before {
  8275. content: "\f1cd";
  8276. }
  8277. .fa-circle-o-notch:before {
  8278. content: "\f1ce";
  8279. }
  8280. .fa-ra:before,
  8281. .fa-rebel:before {
  8282. content: "\f1d0";
  8283. }
  8284. .fa-ge:before,
  8285. .fa-empire:before {
  8286. content: "\f1d1";
  8287. }
  8288. .fa-git-square:before {
  8289. content: "\f1d2";
  8290. }
  8291. .fa-git:before {
  8292. content: "\f1d3";
  8293. }
  8294. .fa-hacker-news:before {
  8295. content: "\f1d4";
  8296. }
  8297. .fa-tencent-weibo:before {
  8298. content: "\f1d5";
  8299. }
  8300. .fa-qq:before {
  8301. content: "\f1d6";
  8302. }
  8303. .fa-wechat:before,
  8304. .fa-weixin:before {
  8305. content: "\f1d7";
  8306. }
  8307. .fa-send:before,
  8308. .fa-paper-plane:before {
  8309. content: "\f1d8";
  8310. }
  8311. .fa-send-o:before,
  8312. .fa-paper-plane-o:before {
  8313. content: "\f1d9";
  8314. }
  8315. .fa-history:before {
  8316. content: "\f1da";
  8317. }
  8318. .fa-circle-thin:before {
  8319. content: "\f1db";
  8320. }
  8321. .fa-header:before {
  8322. content: "\f1dc";
  8323. }
  8324. .fa-paragraph:before {
  8325. content: "\f1dd";
  8326. }
  8327. .fa-sliders:before {
  8328. content: "\f1de";
  8329. }
  8330. .fa-share-alt:before {
  8331. content: "\f1e0";
  8332. }
  8333. .fa-share-alt-square:before {
  8334. content: "\f1e1";
  8335. }
  8336. .fa-bomb:before {
  8337. content: "\f1e2";
  8338. }
  8339. .fa-soccer-ball-o:before,
  8340. .fa-futbol-o:before {
  8341. content: "\f1e3";
  8342. }
  8343. .fa-tty:before {
  8344. content: "\f1e4";
  8345. }
  8346. .fa-binoculars:before {
  8347. content: "\f1e5";
  8348. }
  8349. .fa-plug:before {
  8350. content: "\f1e6";
  8351. }
  8352. .fa-slideshare:before {
  8353. content: "\f1e7";
  8354. }
  8355. .fa-twitch:before {
  8356. content: "\f1e8";
  8357. }
  8358. .fa-yelp:before {
  8359. content: "\f1e9";
  8360. }
  8361. .fa-newspaper-o:before {
  8362. content: "\f1ea";
  8363. }
  8364. .fa-wifi:before {
  8365. content: "\f1eb";
  8366. }
  8367. .fa-calculator:before {
  8368. content: "\f1ec";
  8369. }
  8370. .fa-paypal:before {
  8371. content: "\f1ed";
  8372. }
  8373. .fa-google-wallet:before {
  8374. content: "\f1ee";
  8375. }
  8376. .fa-cc-visa:before {
  8377. content: "\f1f0";
  8378. }
  8379. .fa-cc-mastercard:before {
  8380. content: "\f1f1";
  8381. }
  8382. .fa-cc-discover:before {
  8383. content: "\f1f2";
  8384. }
  8385. .fa-cc-amex:before {
  8386. content: "\f1f3";
  8387. }
  8388. .fa-cc-paypal:before {
  8389. content: "\f1f4";
  8390. }
  8391. .fa-cc-stripe:before {
  8392. content: "\f1f5";
  8393. }
  8394. .fa-bell-slash:before {
  8395. content: "\f1f6";
  8396. }
  8397. .fa-bell-slash-o:before {
  8398. content: "\f1f7";
  8399. }
  8400. .fa-trash:before {
  8401. content: "\f1f8";
  8402. }
  8403. .fa-copyright:before {
  8404. content: "\f1f9";
  8405. }
  8406. .fa-at:before {
  8407. content: "\f1fa";
  8408. }
  8409. .fa-eyedropper:before {
  8410. content: "\f1fb";
  8411. }
  8412. .fa-paint-brush:before {
  8413. content: "\f1fc";
  8414. }
  8415. .fa-birthday-cake:before {
  8416. content: "\f1fd";
  8417. }
  8418. .fa-area-chart:before {
  8419. content: "\f1fe";
  8420. }
  8421. .fa-pie-chart:before {
  8422. content: "\f200";
  8423. }
  8424. .fa-line-chart:before {
  8425. content: "\f201";
  8426. }
  8427. .fa-lastfm:before {
  8428. content: "\f202";
  8429. }
  8430. .fa-lastfm-square:before {
  8431. content: "\f203";
  8432. }
  8433. .fa-toggle-off:before {
  8434. content: "\f204";
  8435. }
  8436. .fa-toggle-on:before {
  8437. content: "\f205";
  8438. }
  8439. .fa-bicycle:before {
  8440. content: "\f206";
  8441. }
  8442. .fa-bus:before {
  8443. content: "\f207";
  8444. }
  8445. .fa-ioxhost:before {
  8446. content: "\f208";
  8447. }
  8448. .fa-angellist:before {
  8449. content: "\f209";
  8450. }
  8451. .fa-cc:before {
  8452. content: "\f20a";
  8453. }
  8454. .fa-shekel:before,
  8455. .fa-sheqel:before,
  8456. .fa-ils:before {
  8457. content: "\f20b";
  8458. }
  8459. .fa-meanpath:before {
  8460. content: "\f20c";
  8461. }
  8462. /*!
  8463. *
  8464. * IPython base
  8465. *
  8466. */
  8467. .modal.fade .modal-dialog {
  8468. -webkit-transform: translate(0, 0);
  8469. -ms-transform: translate(0, 0);
  8470. -o-transform: translate(0, 0);
  8471. transform: translate(0, 0);
  8472. }
  8473. code {
  8474. color: #000;
  8475. }
  8476. pre {
  8477. font-size: inherit;
  8478. line-height: inherit;
  8479. }
  8480. label {
  8481. font-weight: normal;
  8482. }
  8483. /* Make the page background atleast 100% the height of the view port */
  8484. /* Make the page itself atleast 70% the height of the view port */
  8485. .border-box-sizing {
  8486. box-sizing: border-box;
  8487. -moz-box-sizing: border-box;
  8488. -webkit-box-sizing: border-box;
  8489. }
  8490. .corner-all {
  8491. border-radius: 2px;
  8492. }
  8493. .no-padding {
  8494. padding: 0px;
  8495. }
  8496. /* Flexible box model classes */
  8497. /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
  8498. /* This file is a compatability layer. It allows the usage of flexible box
  8499. model layouts accross multiple browsers, including older browsers. The newest,
  8500. universal implementation of the flexible box model is used when available (see
  8501. `Modern browsers` comments below). Browsers that are known to implement this
  8502. new spec completely include:
  8503. Firefox 28.0+
  8504. Chrome 29.0+
  8505. Internet Explorer 11+
  8506. Opera 17.0+
  8507. Browsers not listed, including Safari, are supported via the styling under the
  8508. `Old browsers` comments below.
  8509. */
  8510. .hbox {
  8511. /* Old browsers */
  8512. display: -webkit-box;
  8513. -webkit-box-orient: horizontal;
  8514. -webkit-box-align: stretch;
  8515. display: -moz-box;
  8516. -moz-box-orient: horizontal;
  8517. -moz-box-align: stretch;
  8518. display: box;
  8519. box-orient: horizontal;
  8520. box-align: stretch;
  8521. /* Modern browsers */
  8522. display: flex;
  8523. flex-direction: row;
  8524. align-items: stretch;
  8525. }
  8526. .hbox > * {
  8527. /* Old browsers */
  8528. -webkit-box-flex: 0;
  8529. -moz-box-flex: 0;
  8530. box-flex: 0;
  8531. /* Modern browsers */
  8532. flex: none;
  8533. }
  8534. .vbox {
  8535. /* Old browsers */
  8536. display: -webkit-box;
  8537. -webkit-box-orient: vertical;
  8538. -webkit-box-align: stretch;
  8539. display: -moz-box;
  8540. -moz-box-orient: vertical;
  8541. -moz-box-align: stretch;
  8542. display: box;
  8543. box-orient: vertical;
  8544. box-align: stretch;
  8545. /* Modern browsers */
  8546. display: flex;
  8547. flex-direction: column;
  8548. align-items: stretch;
  8549. }
  8550. .vbox > * {
  8551. /* Old browsers */
  8552. -webkit-box-flex: 0;
  8553. -moz-box-flex: 0;
  8554. box-flex: 0;
  8555. /* Modern browsers */
  8556. flex: none;
  8557. }
  8558. .hbox.reverse,
  8559. .vbox.reverse,
  8560. .reverse {
  8561. /* Old browsers */
  8562. -webkit-box-direction: reverse;
  8563. -moz-box-direction: reverse;
  8564. box-direction: reverse;
  8565. /* Modern browsers */
  8566. flex-direction: row-reverse;
  8567. }
  8568. .hbox.box-flex0,
  8569. .vbox.box-flex0,
  8570. .box-flex0 {
  8571. /* Old browsers */
  8572. -webkit-box-flex: 0;
  8573. -moz-box-flex: 0;
  8574. box-flex: 0;
  8575. /* Modern browsers */
  8576. flex: none;
  8577. width: auto;
  8578. }
  8579. .hbox.box-flex1,
  8580. .vbox.box-flex1,
  8581. .box-flex1 {
  8582. /* Old browsers */
  8583. -webkit-box-flex: 1;
  8584. -moz-box-flex: 1;
  8585. box-flex: 1;
  8586. /* Modern browsers */
  8587. flex: 1;
  8588. }
  8589. .hbox.box-flex,
  8590. .vbox.box-flex,
  8591. .box-flex {
  8592. /* Old browsers */
  8593. /* Old browsers */
  8594. -webkit-box-flex: 1;
  8595. -moz-box-flex: 1;
  8596. box-flex: 1;
  8597. /* Modern browsers */
  8598. flex: 1;
  8599. }
  8600. .hbox.box-flex2,
  8601. .vbox.box-flex2,
  8602. .box-flex2 {
  8603. /* Old browsers */
  8604. -webkit-box-flex: 2;
  8605. -moz-box-flex: 2;
  8606. box-flex: 2;
  8607. /* Modern browsers */
  8608. flex: 2;
  8609. }
  8610. .box-group1 {
  8611. /* Deprecated */
  8612. -webkit-box-flex-group: 1;
  8613. -moz-box-flex-group: 1;
  8614. box-flex-group: 1;
  8615. }
  8616. .box-group2 {
  8617. /* Deprecated */
  8618. -webkit-box-flex-group: 2;
  8619. -moz-box-flex-group: 2;
  8620. box-flex-group: 2;
  8621. }
  8622. .hbox.start,
  8623. .vbox.start,
  8624. .start {
  8625. /* Old browsers */
  8626. -webkit-box-pack: start;
  8627. -moz-box-pack: start;
  8628. box-pack: start;
  8629. /* Modern browsers */
  8630. justify-content: flex-start;
  8631. }
  8632. .hbox.end,
  8633. .vbox.end,
  8634. .end {
  8635. /* Old browsers */
  8636. -webkit-box-pack: end;
  8637. -moz-box-pack: end;
  8638. box-pack: end;
  8639. /* Modern browsers */
  8640. justify-content: flex-end;
  8641. }
  8642. .hbox.center,
  8643. .vbox.center,
  8644. .center {
  8645. /* Old browsers */
  8646. -webkit-box-pack: center;
  8647. -moz-box-pack: center;
  8648. box-pack: center;
  8649. /* Modern browsers */
  8650. justify-content: center;
  8651. }
  8652. .hbox.baseline,
  8653. .vbox.baseline,
  8654. .baseline {
  8655. /* Old browsers */
  8656. -webkit-box-pack: baseline;
  8657. -moz-box-pack: baseline;
  8658. box-pack: baseline;
  8659. /* Modern browsers */
  8660. justify-content: baseline;
  8661. }
  8662. .hbox.stretch,
  8663. .vbox.stretch,
  8664. .stretch {
  8665. /* Old browsers */
  8666. -webkit-box-pack: stretch;
  8667. -moz-box-pack: stretch;
  8668. box-pack: stretch;
  8669. /* Modern browsers */
  8670. justify-content: stretch;
  8671. }
  8672. .hbox.align-start,
  8673. .vbox.align-start,
  8674. .align-start {
  8675. /* Old browsers */
  8676. -webkit-box-align: start;
  8677. -moz-box-align: start;
  8678. box-align: start;
  8679. /* Modern browsers */
  8680. align-items: flex-start;
  8681. }
  8682. .hbox.align-end,
  8683. .vbox.align-end,
  8684. .align-end {
  8685. /* Old browsers */
  8686. -webkit-box-align: end;
  8687. -moz-box-align: end;
  8688. box-align: end;
  8689. /* Modern browsers */
  8690. align-items: flex-end;
  8691. }
  8692. .hbox.align-center,
  8693. .vbox.align-center,
  8694. .align-center {
  8695. /* Old browsers */
  8696. -webkit-box-align: center;
  8697. -moz-box-align: center;
  8698. box-align: center;
  8699. /* Modern browsers */
  8700. align-items: center;
  8701. }
  8702. .hbox.align-baseline,
  8703. .vbox.align-baseline,
  8704. .align-baseline {
  8705. /* Old browsers */
  8706. -webkit-box-align: baseline;
  8707. -moz-box-align: baseline;
  8708. box-align: baseline;
  8709. /* Modern browsers */
  8710. align-items: baseline;
  8711. }
  8712. .hbox.align-stretch,
  8713. .vbox.align-stretch,
  8714. .align-stretch {
  8715. /* Old browsers */
  8716. -webkit-box-align: stretch;
  8717. -moz-box-align: stretch;
  8718. box-align: stretch;
  8719. /* Modern browsers */
  8720. align-items: stretch;
  8721. }
  8722. div.error {
  8723. margin: 2em;
  8724. text-align: center;
  8725. }
  8726. div.error > h1 {
  8727. font-size: 500%;
  8728. line-height: normal;
  8729. }
  8730. div.error > p {
  8731. font-size: 200%;
  8732. line-height: normal;
  8733. }
  8734. div.traceback-wrapper {
  8735. text-align: left;
  8736. max-width: 800px;
  8737. margin: auto;
  8738. }
  8739. /**
  8740. * Primary styles
  8741. *
  8742. * Author: Jupyter Development Team
  8743. */
  8744. body {
  8745. background-color: #fff;
  8746. /* This makes sure that the body covers the entire window and needs to
  8747. be in a different element than the display: box in wrapper below */
  8748. position: absolute;
  8749. left: 0px;
  8750. right: 0px;
  8751. top: 0px;
  8752. bottom: 0px;
  8753. overflow: visible;
  8754. }
  8755. body > #header {
  8756. /* Initially hidden to prevent FLOUC */
  8757. display: none;
  8758. background-color: #fff;
  8759. /* Display over codemirror */
  8760. position: relative;
  8761. z-index: 100;
  8762. }
  8763. body > #header #header-container {
  8764. padding-bottom: 5px;
  8765. padding-top: 5px;
  8766. box-sizing: border-box;
  8767. -moz-box-sizing: border-box;
  8768. -webkit-box-sizing: border-box;
  8769. }
  8770. body > #header .header-bar {
  8771. width: 100%;
  8772. height: 1px;
  8773. background: #e7e7e7;
  8774. margin-bottom: -1px;
  8775. }
  8776. @media print {
  8777. body > #header {
  8778. display: none !important;
  8779. }
  8780. }
  8781. #header-spacer {
  8782. width: 100%;
  8783. visibility: hidden;
  8784. }
  8785. @media print {
  8786. #header-spacer {
  8787. display: none;
  8788. }
  8789. }
  8790. #ipython_notebook {
  8791. padding-left: 0px;
  8792. padding-top: 1px;
  8793. padding-bottom: 1px;
  8794. }
  8795. @media (max-width: 991px) {
  8796. #ipython_notebook {
  8797. margin-left: 10px;
  8798. }
  8799. }
  8800. [dir="rtl"] #ipython_notebook {
  8801. float: right !important;
  8802. }
  8803. #noscript {
  8804. width: auto;
  8805. padding-top: 16px;
  8806. padding-bottom: 16px;
  8807. text-align: center;
  8808. font-size: 22px;
  8809. color: red;
  8810. font-weight: bold;
  8811. }
  8812. #ipython_notebook img {
  8813. height: 28px;
  8814. }
  8815. #site {
  8816. width: 100%;
  8817. display: none;
  8818. box-sizing: border-box;
  8819. -moz-box-sizing: border-box;
  8820. -webkit-box-sizing: border-box;
  8821. overflow: auto;
  8822. }
  8823. @media print {
  8824. #site {
  8825. height: auto !important;
  8826. }
  8827. }
  8828. /* Smaller buttons */
  8829. .ui-button .ui-button-text {
  8830. padding: 0.2em 0.8em;
  8831. font-size: 77%;
  8832. }
  8833. input.ui-button {
  8834. padding: 0.3em 0.9em;
  8835. }
  8836. span#login_widget {
  8837. float: right;
  8838. }
  8839. span#login_widget > .button,
  8840. #logout {
  8841. color: #333;
  8842. background-color: #fff;
  8843. border-color: #ccc;
  8844. }
  8845. span#login_widget > .button:focus,
  8846. #logout:focus,
  8847. span#login_widget > .button.focus,
  8848. #logout.focus {
  8849. color: #333;
  8850. background-color: #e6e6e6;
  8851. border-color: #8c8c8c;
  8852. }
  8853. span#login_widget > .button:hover,
  8854. #logout:hover {
  8855. color: #333;
  8856. background-color: #e6e6e6;
  8857. border-color: #adadad;
  8858. }
  8859. span#login_widget > .button:active,
  8860. #logout:active,
  8861. span#login_widget > .button.active,
  8862. #logout.active,
  8863. .open > .dropdown-togglespan#login_widget > .button,
  8864. .open > .dropdown-toggle#logout {
  8865. color: #333;
  8866. background-color: #e6e6e6;
  8867. border-color: #adadad;
  8868. }
  8869. span#login_widget > .button:active:hover,
  8870. #logout:active:hover,
  8871. span#login_widget > .button.active:hover,
  8872. #logout.active:hover,
  8873. .open > .dropdown-togglespan#login_widget > .button:hover,
  8874. .open > .dropdown-toggle#logout:hover,
  8875. span#login_widget > .button:active:focus,
  8876. #logout:active:focus,
  8877. span#login_widget > .button.active:focus,
  8878. #logout.active:focus,
  8879. .open > .dropdown-togglespan#login_widget > .button:focus,
  8880. .open > .dropdown-toggle#logout:focus,
  8881. span#login_widget > .button:active.focus,
  8882. #logout:active.focus,
  8883. span#login_widget > .button.active.focus,
  8884. #logout.active.focus,
  8885. .open > .dropdown-togglespan#login_widget > .button.focus,
  8886. .open > .dropdown-toggle#logout.focus {
  8887. color: #333;
  8888. background-color: #d4d4d4;
  8889. border-color: #8c8c8c;
  8890. }
  8891. span#login_widget > .button:active,
  8892. #logout:active,
  8893. span#login_widget > .button.active,
  8894. #logout.active,
  8895. .open > .dropdown-togglespan#login_widget > .button,
  8896. .open > .dropdown-toggle#logout {
  8897. background-image: none;
  8898. }
  8899. span#login_widget > .button.disabled:hover,
  8900. #logout.disabled:hover,
  8901. span#login_widget > .button[disabled]:hover,
  8902. #logout[disabled]:hover,
  8903. fieldset[disabled] span#login_widget > .button:hover,
  8904. fieldset[disabled] #logout:hover,
  8905. span#login_widget > .button.disabled:focus,
  8906. #logout.disabled:focus,
  8907. span#login_widget > .button[disabled]:focus,
  8908. #logout[disabled]:focus,
  8909. fieldset[disabled] span#login_widget > .button:focus,
  8910. fieldset[disabled] #logout:focus,
  8911. span#login_widget > .button.disabled.focus,
  8912. #logout.disabled.focus,
  8913. span#login_widget > .button[disabled].focus,
  8914. #logout[disabled].focus,
  8915. fieldset[disabled] span#login_widget > .button.focus,
  8916. fieldset[disabled] #logout.focus {
  8917. background-color: #fff;
  8918. border-color: #ccc;
  8919. }
  8920. span#login_widget > .button .badge,
  8921. #logout .badge {
  8922. color: #fff;
  8923. background-color: #333;
  8924. }
  8925. .nav-header {
  8926. text-transform: none;
  8927. }
  8928. #header > span {
  8929. margin-top: 10px;
  8930. }
  8931. .modal_stretch .modal-dialog {
  8932. /* Old browsers */
  8933. display: -webkit-box;
  8934. -webkit-box-orient: vertical;
  8935. -webkit-box-align: stretch;
  8936. display: -moz-box;
  8937. -moz-box-orient: vertical;
  8938. -moz-box-align: stretch;
  8939. display: box;
  8940. box-orient: vertical;
  8941. box-align: stretch;
  8942. /* Modern browsers */
  8943. display: flex;
  8944. flex-direction: column;
  8945. align-items: stretch;
  8946. min-height: 80vh;
  8947. }
  8948. .modal_stretch .modal-dialog .modal-body {
  8949. max-height: calc(100vh - 200px);
  8950. overflow: auto;
  8951. flex: 1;
  8952. }
  8953. @media (min-width: 768px) {
  8954. .modal .modal-dialog {
  8955. width: 700px;
  8956. }
  8957. }
  8958. @media (min-width: 768px) {
  8959. select.form-control {
  8960. margin-left: 12px;
  8961. margin-right: 12px;
  8962. }
  8963. }
  8964. /*!
  8965. *
  8966. * IPython auth
  8967. *
  8968. */
  8969. .center-nav {
  8970. display: inline-block;
  8971. margin-bottom: -4px;
  8972. }
  8973. /*!
  8974. *
  8975. * IPython tree view
  8976. *
  8977. */
  8978. /* We need an invisible input field on top of the sentense*/
  8979. /* "Drag file onto the list ..." */
  8980. .alternate_upload {
  8981. background-color: none;
  8982. display: inline;
  8983. }
  8984. .alternate_upload.form {
  8985. padding: 0;
  8986. margin: 0;
  8987. }
  8988. .alternate_upload input.fileinput {
  8989. text-align: center;
  8990. vertical-align: middle;
  8991. display: inline;
  8992. opacity: 0;
  8993. z-index: 2;
  8994. width: 12ex;
  8995. margin-right: -12ex;
  8996. }
  8997. .alternate_upload .btn-upload {
  8998. height: 22px;
  8999. }
  9000. /**
  9001. * Primary styles
  9002. *
  9003. * Author: Jupyter Development Team
  9004. */
  9005. [dir="rtl"] #tabs li {
  9006. float: right;
  9007. }
  9008. ul#tabs {
  9009. margin-bottom: 4px;
  9010. }
  9011. [dir="rtl"] ul#tabs {
  9012. margin-right: 0px;
  9013. }
  9014. ul#tabs a {
  9015. padding-top: 6px;
  9016. padding-bottom: 4px;
  9017. }
  9018. ul.breadcrumb a:focus,
  9019. ul.breadcrumb a:hover {
  9020. text-decoration: none;
  9021. }
  9022. ul.breadcrumb i.icon-home {
  9023. font-size: 16px;
  9024. margin-right: 4px;
  9025. }
  9026. ul.breadcrumb span {
  9027. color: #5e5e5e;
  9028. }
  9029. .list_toolbar {
  9030. padding: 4px 0 4px 0;
  9031. vertical-align: middle;
  9032. }
  9033. .list_toolbar .tree-buttons {
  9034. padding-top: 1px;
  9035. }
  9036. [dir="rtl"] .list_toolbar .tree-buttons {
  9037. float: left !important;
  9038. }
  9039. [dir="rtl"] .list_toolbar .pull-right {
  9040. padding-top: 1px;
  9041. float: left !important;
  9042. }
  9043. [dir="rtl"] .list_toolbar .pull-left {
  9044. float: right !important;
  9045. }
  9046. .dynamic-buttons {
  9047. padding-top: 3px;
  9048. display: inline-block;
  9049. }
  9050. .list_toolbar [class*="span"] {
  9051. min-height: 24px;
  9052. }
  9053. .list_header {
  9054. font-weight: bold;
  9055. background-color: #EEE;
  9056. }
  9057. .list_placeholder {
  9058. font-weight: bold;
  9059. padding-top: 4px;
  9060. padding-bottom: 4px;
  9061. padding-left: 7px;
  9062. padding-right: 7px;
  9063. }
  9064. .list_container {
  9065. margin-top: 4px;
  9066. margin-bottom: 20px;
  9067. border: 1px solid #ddd;
  9068. border-radius: 2px;
  9069. }
  9070. .list_container > div {
  9071. border-bottom: 1px solid #ddd;
  9072. }
  9073. .list_container > div:hover .list-item {
  9074. background-color: red;
  9075. }
  9076. .list_container > div:last-child {
  9077. border: none;
  9078. }
  9079. .list_item:hover .list_item {
  9080. background-color: #ddd;
  9081. }
  9082. .list_item a {
  9083. text-decoration: none;
  9084. }
  9085. .list_item:hover {
  9086. background-color: #fafafa;
  9087. }
  9088. .list_header > div,
  9089. .list_item > div {
  9090. padding-top: 4px;
  9091. padding-bottom: 4px;
  9092. padding-left: 7px;
  9093. padding-right: 7px;
  9094. line-height: 22px;
  9095. }
  9096. .list_header > div input,
  9097. .list_item > div input {
  9098. margin-right: 7px;
  9099. margin-left: 14px;
  9100. vertical-align: baseline;
  9101. line-height: 22px;
  9102. position: relative;
  9103. top: -1px;
  9104. }
  9105. .list_header > div .item_link,
  9106. .list_item > div .item_link {
  9107. margin-left: -1px;
  9108. vertical-align: baseline;
  9109. line-height: 22px;
  9110. }
  9111. .new-file input[type=checkbox] {
  9112. visibility: hidden;
  9113. }
  9114. .item_name {
  9115. line-height: 22px;
  9116. height: 24px;
  9117. }
  9118. .item_icon {
  9119. font-size: 14px;
  9120. color: #5e5e5e;
  9121. margin-right: 7px;
  9122. margin-left: 7px;
  9123. line-height: 22px;
  9124. vertical-align: baseline;
  9125. }
  9126. .item_buttons {
  9127. line-height: 1em;
  9128. margin-left: -5px;
  9129. }
  9130. .item_buttons .btn,
  9131. .item_buttons .btn-group,
  9132. .item_buttons .input-group {
  9133. float: left;
  9134. }
  9135. .item_buttons > .btn,
  9136. .item_buttons > .btn-group,
  9137. .item_buttons > .input-group {
  9138. margin-left: 5px;
  9139. }
  9140. .item_buttons .btn {
  9141. min-width: 13ex;
  9142. }
  9143. .item_buttons .running-indicator {
  9144. padding-top: 4px;
  9145. color: #5cb85c;
  9146. }
  9147. .item_buttons .kernel-name {
  9148. padding-top: 4px;
  9149. color: #5bc0de;
  9150. margin-right: 7px;
  9151. float: left;
  9152. }
  9153. .toolbar_info {
  9154. height: 24px;
  9155. line-height: 24px;
  9156. }
  9157. .list_item input:not([type=checkbox]) {
  9158. padding-top: 3px;
  9159. padding-bottom: 3px;
  9160. height: 22px;
  9161. line-height: 14px;
  9162. margin: 0px;
  9163. }
  9164. .highlight_text {
  9165. color: blue;
  9166. }
  9167. #project_name {
  9168. display: inline-block;
  9169. padding-left: 7px;
  9170. margin-left: -2px;
  9171. }
  9172. #project_name > .breadcrumb {
  9173. padding: 0px;
  9174. margin-bottom: 0px;
  9175. background-color: transparent;
  9176. font-weight: bold;
  9177. }
  9178. #tree-selector {
  9179. padding-right: 0px;
  9180. }
  9181. [dir="rtl"] #tree-selector a {
  9182. float: right;
  9183. }
  9184. #button-select-all {
  9185. min-width: 50px;
  9186. }
  9187. #select-all {
  9188. margin-left: 7px;
  9189. margin-right: 2px;
  9190. }
  9191. .menu_icon {
  9192. margin-right: 2px;
  9193. }
  9194. .tab-content .row {
  9195. margin-left: 0px;
  9196. margin-right: 0px;
  9197. }
  9198. .folder_icon:before {
  9199. display: inline-block;
  9200. font: normal normal normal 14px/1 FontAwesome;
  9201. font-size: inherit;
  9202. text-rendering: auto;
  9203. -webkit-font-smoothing: antialiased;
  9204. -moz-osx-font-smoothing: grayscale;
  9205. content: "\f114";
  9206. }
  9207. .folder_icon:before.pull-left {
  9208. margin-right: .3em;
  9209. }
  9210. .folder_icon:before.pull-right {
  9211. margin-left: .3em;
  9212. }
  9213. .notebook_icon:before {
  9214. display: inline-block;
  9215. font: normal normal normal 14px/1 FontAwesome;
  9216. font-size: inherit;
  9217. text-rendering: auto;
  9218. -webkit-font-smoothing: antialiased;
  9219. -moz-osx-font-smoothing: grayscale;
  9220. content: "\f02d";
  9221. position: relative;
  9222. top: -1px;
  9223. }
  9224. .notebook_icon:before.pull-left {
  9225. margin-right: .3em;
  9226. }
  9227. .notebook_icon:before.pull-right {
  9228. margin-left: .3em;
  9229. }
  9230. .running_notebook_icon:before {
  9231. display: inline-block;
  9232. font: normal normal normal 14px/1 FontAwesome;
  9233. font-size: inherit;
  9234. text-rendering: auto;
  9235. -webkit-font-smoothing: antialiased;
  9236. -moz-osx-font-smoothing: grayscale;
  9237. content: "\f02d";
  9238. position: relative;
  9239. top: -1px;
  9240. color: #5cb85c;
  9241. }
  9242. .running_notebook_icon:before.pull-left {
  9243. margin-right: .3em;
  9244. }
  9245. .running_notebook_icon:before.pull-right {
  9246. margin-left: .3em;
  9247. }
  9248. .file_icon:before {
  9249. display: inline-block;
  9250. font: normal normal normal 14px/1 FontAwesome;
  9251. font-size: inherit;
  9252. text-rendering: auto;
  9253. -webkit-font-smoothing: antialiased;
  9254. -moz-osx-font-smoothing: grayscale;
  9255. content: "\f016";
  9256. position: relative;
  9257. top: -2px;
  9258. }
  9259. .file_icon:before.pull-left {
  9260. margin-right: .3em;
  9261. }
  9262. .file_icon:before.pull-right {
  9263. margin-left: .3em;
  9264. }
  9265. #notebook_toolbar .pull-right {
  9266. padding-top: 0px;
  9267. margin-right: -1px;
  9268. }
  9269. ul#new-menu {
  9270. left: auto;
  9271. right: 0;
  9272. }
  9273. [dir="rtl"] #new-menu {
  9274. text-align: right;
  9275. }
  9276. .kernel-menu-icon {
  9277. padding-right: 12px;
  9278. width: 24px;
  9279. content: "\f096";
  9280. }
  9281. .kernel-menu-icon:before {
  9282. content: "\f096";
  9283. }
  9284. .kernel-menu-icon-current:before {
  9285. content: "\f00c";
  9286. }
  9287. #tab_content {
  9288. padding-top: 20px;
  9289. }
  9290. #running .panel-group .panel {
  9291. margin-top: 3px;
  9292. margin-bottom: 1em;
  9293. }
  9294. #running .panel-group .panel .panel-heading {
  9295. background-color: #EEE;
  9296. padding-top: 4px;
  9297. padding-bottom: 4px;
  9298. padding-left: 7px;
  9299. padding-right: 7px;
  9300. line-height: 22px;
  9301. }
  9302. #running .panel-group .panel .panel-heading a:focus,
  9303. #running .panel-group .panel .panel-heading a:hover {
  9304. text-decoration: none;
  9305. }
  9306. #running .panel-group .panel .panel-body {
  9307. padding: 0px;
  9308. }
  9309. #running .panel-group .panel .panel-body .list_container {
  9310. margin-top: 0px;
  9311. margin-bottom: 0px;
  9312. border: 0px;
  9313. border-radius: 0px;
  9314. }
  9315. #running .panel-group .panel .panel-body .list_container .list_item {
  9316. border-bottom: 1px solid #ddd;
  9317. }
  9318. #running .panel-group .panel .panel-body .list_container .list_item:last-child {
  9319. border-bottom: 0px;
  9320. }
  9321. [dir="rtl"] #running .col-sm-8 {
  9322. float: right !important;
  9323. }
  9324. .delete-button {
  9325. display: none;
  9326. }
  9327. .duplicate-button {
  9328. display: none;
  9329. }
  9330. .rename-button {
  9331. display: none;
  9332. }
  9333. .shutdown-button {
  9334. display: none;
  9335. }
  9336. .dynamic-instructions {
  9337. display: inline-block;
  9338. padding-top: 4px;
  9339. }
  9340. /*!
  9341. *
  9342. * IPython text editor webapp
  9343. *
  9344. */
  9345. .selected-keymap i.fa {
  9346. padding: 0px 5px;
  9347. }
  9348. .selected-keymap i.fa:before {
  9349. content: "\f00c";
  9350. }
  9351. #mode-menu {
  9352. overflow: auto;
  9353. max-height: 20em;
  9354. }
  9355. .edit_app #header {
  9356. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9357. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9358. }
  9359. .edit_app #menubar .navbar {
  9360. /* Use a negative 1 bottom margin, so the border overlaps the border of the
  9361. header */
  9362. margin-bottom: -1px;
  9363. }
  9364. .dirty-indicator {
  9365. display: inline-block;
  9366. font: normal normal normal 14px/1 FontAwesome;
  9367. font-size: inherit;
  9368. text-rendering: auto;
  9369. -webkit-font-smoothing: antialiased;
  9370. -moz-osx-font-smoothing: grayscale;
  9371. width: 20px;
  9372. }
  9373. .dirty-indicator.pull-left {
  9374. margin-right: .3em;
  9375. }
  9376. .dirty-indicator.pull-right {
  9377. margin-left: .3em;
  9378. }
  9379. .dirty-indicator-dirty {
  9380. display: inline-block;
  9381. font: normal normal normal 14px/1 FontAwesome;
  9382. font-size: inherit;
  9383. text-rendering: auto;
  9384. -webkit-font-smoothing: antialiased;
  9385. -moz-osx-font-smoothing: grayscale;
  9386. width: 20px;
  9387. }
  9388. .dirty-indicator-dirty.pull-left {
  9389. margin-right: .3em;
  9390. }
  9391. .dirty-indicator-dirty.pull-right {
  9392. margin-left: .3em;
  9393. }
  9394. .dirty-indicator-clean {
  9395. display: inline-block;
  9396. font: normal normal normal 14px/1 FontAwesome;
  9397. font-size: inherit;
  9398. text-rendering: auto;
  9399. -webkit-font-smoothing: antialiased;
  9400. -moz-osx-font-smoothing: grayscale;
  9401. width: 20px;
  9402. }
  9403. .dirty-indicator-clean.pull-left {
  9404. margin-right: .3em;
  9405. }
  9406. .dirty-indicator-clean.pull-right {
  9407. margin-left: .3em;
  9408. }
  9409. .dirty-indicator-clean:before {
  9410. display: inline-block;
  9411. font: normal normal normal 14px/1 FontAwesome;
  9412. font-size: inherit;
  9413. text-rendering: auto;
  9414. -webkit-font-smoothing: antialiased;
  9415. -moz-osx-font-smoothing: grayscale;
  9416. content: "\f00c";
  9417. }
  9418. .dirty-indicator-clean:before.pull-left {
  9419. margin-right: .3em;
  9420. }
  9421. .dirty-indicator-clean:before.pull-right {
  9422. margin-left: .3em;
  9423. }
  9424. #filename {
  9425. font-size: 16pt;
  9426. display: table;
  9427. padding: 0px 5px;
  9428. }
  9429. #current-mode {
  9430. padding-left: 5px;
  9431. padding-right: 5px;
  9432. }
  9433. #texteditor-backdrop {
  9434. padding-top: 20px;
  9435. padding-bottom: 20px;
  9436. }
  9437. @media not print {
  9438. #texteditor-backdrop {
  9439. background-color: #EEE;
  9440. }
  9441. }
  9442. @media print {
  9443. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  9444. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  9445. background-color: #fff;
  9446. }
  9447. }
  9448. @media not print {
  9449. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  9450. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  9451. background-color: #fff;
  9452. }
  9453. }
  9454. @media not print {
  9455. #texteditor-backdrop #texteditor-container {
  9456. padding: 0px;
  9457. background-color: #fff;
  9458. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9459. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9460. }
  9461. }
  9462. /*!
  9463. *
  9464. * IPython notebook
  9465. *
  9466. */
  9467. /* CSS font colors for translated ANSI colors. */
  9468. .ansibold {
  9469. font-weight: bold;
  9470. }
  9471. /* use dark versions for foreground, to improve visibility */
  9472. .ansiblack {
  9473. color: black;
  9474. }
  9475. .ansired {
  9476. color: darkred;
  9477. }
  9478. .ansigreen {
  9479. color: darkgreen;
  9480. }
  9481. .ansiyellow {
  9482. color: #c4a000;
  9483. }
  9484. .ansiblue {
  9485. color: darkblue;
  9486. }
  9487. .ansipurple {
  9488. color: darkviolet;
  9489. }
  9490. .ansicyan {
  9491. color: steelblue;
  9492. }
  9493. .ansigray {
  9494. color: gray;
  9495. }
  9496. /* and light for background, for the same reason */
  9497. .ansibgblack {
  9498. background-color: black;
  9499. }
  9500. .ansibgred {
  9501. background-color: red;
  9502. }
  9503. .ansibggreen {
  9504. background-color: green;
  9505. }
  9506. .ansibgyellow {
  9507. background-color: yellow;
  9508. }
  9509. .ansibgblue {
  9510. background-color: blue;
  9511. }
  9512. .ansibgpurple {
  9513. background-color: magenta;
  9514. }
  9515. .ansibgcyan {
  9516. background-color: cyan;
  9517. }
  9518. .ansibggray {
  9519. background-color: gray;
  9520. }
  9521. div.cell {
  9522. /* Old browsers */
  9523. display: -webkit-box;
  9524. -webkit-box-orient: vertical;
  9525. -webkit-box-align: stretch;
  9526. display: -moz-box;
  9527. -moz-box-orient: vertical;
  9528. -moz-box-align: stretch;
  9529. display: box;
  9530. box-orient: vertical;
  9531. box-align: stretch;
  9532. /* Modern browsers */
  9533. display: flex;
  9534. flex-direction: column;
  9535. align-items: stretch;
  9536. border-radius: 2px;
  9537. box-sizing: border-box;
  9538. -moz-box-sizing: border-box;
  9539. -webkit-box-sizing: border-box;
  9540. border-width: 1px;
  9541. border-style: solid;
  9542. border-color: transparent;
  9543. width: 100%;
  9544. padding: 5px;
  9545. /* This acts as a spacer between cells, that is outside the border */
  9546. margin: 0px;
  9547. outline: none;
  9548. border-left-width: 1px;
  9549. padding-left: 5px;
  9550. background: linear-gradient(to right, transparent -40px, transparent 1px, transparent 1px, transparent 100%);
  9551. }
  9552. div.cell.jupyter-soft-selected {
  9553. border-left-color: #90CAF9;
  9554. border-left-color: #E3F2FD;
  9555. border-left-width: 1px;
  9556. padding-left: 5px;
  9557. border-right-color: #E3F2FD;
  9558. border-right-width: 1px;
  9559. background: #E3F2FD;
  9560. }
  9561. @media print {
  9562. div.cell.jupyter-soft-selected {
  9563. border-color: transparent;
  9564. }
  9565. }
  9566. div.cell.selected {
  9567. border-color: #ababab;
  9568. border-left-width: 0px;
  9569. padding-left: 6px;
  9570. background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 5px, transparent 5px, transparent 100%);
  9571. }
  9572. @media print {
  9573. div.cell.selected {
  9574. border-color: transparent;
  9575. }
  9576. }
  9577. div.cell.selected.jupyter-soft-selected {
  9578. border-left-width: 0;
  9579. padding-left: 6px;
  9580. background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 7px, #E3F2FD 7px, #E3F2FD 100%);
  9581. }
  9582. .edit_mode div.cell.selected {
  9583. border-color: #66BB6A;
  9584. border-left-width: 0px;
  9585. padding-left: 6px;
  9586. background: linear-gradient(to right, #66BB6A -40px, #66BB6A 5px, transparent 5px, transparent 100%);
  9587. }
  9588. @media print {
  9589. .edit_mode div.cell.selected {
  9590. border-color: transparent;
  9591. }
  9592. }
  9593. .prompt {
  9594. /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
  9595. min-width: 14ex;
  9596. /* This padding is tuned to match the padding on the CodeMirror editor. */
  9597. padding: 0.4em;
  9598. margin: 0px;
  9599. font-family: monospace;
  9600. text-align: right;
  9601. /* This has to match that of the the CodeMirror class line-height below */
  9602. line-height: 1.21429em;
  9603. /* Don't highlight prompt number selection */
  9604. -webkit-touch-callout: none;
  9605. -webkit-user-select: none;
  9606. -khtml-user-select: none;
  9607. -moz-user-select: none;
  9608. -ms-user-select: none;
  9609. user-select: none;
  9610. /* Use default cursor */
  9611. cursor: default;
  9612. }
  9613. @media (max-width: 540px) {
  9614. .prompt {
  9615. text-align: left;
  9616. }
  9617. }
  9618. div.inner_cell {
  9619. min-width: 0;
  9620. /* Old browsers */
  9621. display: -webkit-box;
  9622. -webkit-box-orient: vertical;
  9623. -webkit-box-align: stretch;
  9624. display: -moz-box;
  9625. -moz-box-orient: vertical;
  9626. -moz-box-align: stretch;
  9627. display: box;
  9628. box-orient: vertical;
  9629. box-align: stretch;
  9630. /* Modern browsers */
  9631. display: flex;
  9632. flex-direction: column;
  9633. align-items: stretch;
  9634. /* Old browsers */
  9635. -webkit-box-flex: 1;
  9636. -moz-box-flex: 1;
  9637. box-flex: 1;
  9638. /* Modern browsers */
  9639. flex: 1;
  9640. }
  9641. /* input_area and input_prompt must match in top border and margin for alignment */
  9642. div.input_area {
  9643. border: 1px solid #cfcfcf;
  9644. border-radius: 2px;
  9645. background: #f7f7f7;
  9646. line-height: 1.21429em;
  9647. }
  9648. /* This is needed so that empty prompt areas can collapse to zero height when there
  9649. is no content in the output_subarea and the prompt. The main purpose of this is
  9650. to make sure that empty JavaScript output_subareas have no height. */
  9651. div.prompt:empty {
  9652. padding-top: 0;
  9653. padding-bottom: 0;
  9654. }
  9655. div.unrecognized_cell {
  9656. padding: 5px 5px 5px 0px;
  9657. /* Old browsers */
  9658. display: -webkit-box;
  9659. -webkit-box-orient: horizontal;
  9660. -webkit-box-align: stretch;
  9661. display: -moz-box;
  9662. -moz-box-orient: horizontal;
  9663. -moz-box-align: stretch;
  9664. display: box;
  9665. box-orient: horizontal;
  9666. box-align: stretch;
  9667. /* Modern browsers */
  9668. display: flex;
  9669. flex-direction: row;
  9670. align-items: stretch;
  9671. }
  9672. div.unrecognized_cell .inner_cell {
  9673. border-radius: 2px;
  9674. padding: 5px;
  9675. font-weight: bold;
  9676. color: red;
  9677. border: 1px solid #cfcfcf;
  9678. background: #eaeaea;
  9679. }
  9680. div.unrecognized_cell .inner_cell a {
  9681. color: inherit;
  9682. text-decoration: none;
  9683. }
  9684. div.unrecognized_cell .inner_cell a:hover {
  9685. color: inherit;
  9686. text-decoration: none;
  9687. }
  9688. @media (max-width: 540px) {
  9689. div.unrecognized_cell > div.prompt {
  9690. display: none;
  9691. }
  9692. }
  9693. div.code_cell {
  9694. /* avoid page breaking on code cells when printing */
  9695. }
  9696. @media print {
  9697. div.code_cell {
  9698. page-break-inside: avoid;
  9699. }
  9700. }
  9701. /* any special styling for code cells that are currently running goes here */
  9702. div.input {
  9703. page-break-inside: avoid;
  9704. /* Old browsers */
  9705. display: -webkit-box;
  9706. -webkit-box-orient: horizontal;
  9707. -webkit-box-align: stretch;
  9708. display: -moz-box;
  9709. -moz-box-orient: horizontal;
  9710. -moz-box-align: stretch;
  9711. display: box;
  9712. box-orient: horizontal;
  9713. box-align: stretch;
  9714. /* Modern browsers */
  9715. display: flex;
  9716. flex-direction: row;
  9717. align-items: stretch;
  9718. }
  9719. @media (max-width: 540px) {
  9720. div.input {
  9721. /* Old browsers */
  9722. display: -webkit-box;
  9723. -webkit-box-orient: vertical;
  9724. -webkit-box-align: stretch;
  9725. display: -moz-box;
  9726. -moz-box-orient: vertical;
  9727. -moz-box-align: stretch;
  9728. display: box;
  9729. box-orient: vertical;
  9730. box-align: stretch;
  9731. /* Modern browsers */
  9732. display: flex;
  9733. flex-direction: column;
  9734. align-items: stretch;
  9735. }
  9736. }
  9737. /* input_area and input_prompt must match in top border and margin for alignment */
  9738. div.input_prompt {
  9739. color: #303F9F;
  9740. border-top: 1px solid transparent;
  9741. }
  9742. div.input_area > div.highlight {
  9743. margin: 0.4em;
  9744. border: none;
  9745. padding: 0px;
  9746. background-color: transparent;
  9747. }
  9748. div.input_area > div.highlight > pre {
  9749. margin: 0px;
  9750. border: none;
  9751. padding: 0px;
  9752. background-color: transparent;
  9753. }
  9754. /* The following gets added to the <head> if it is detected that the user has a
  9755. * monospace font with inconsistent normal/bold/italic height. See
  9756. * notebookmain.js. Such fonts will have keywords vertically offset with
  9757. * respect to the rest of the text. The user should select a better font.
  9758. * See: https://github.com/ipython/ipython/issues/1503
  9759. *
  9760. * .CodeMirror span {
  9761. * vertical-align: bottom;
  9762. * }
  9763. */
  9764. .CodeMirror {
  9765. line-height: 1.21429em;
  9766. /* Changed from 1em to our global default */
  9767. font-size: 14px;
  9768. height: auto;
  9769. /* Changed to auto to autogrow */
  9770. background: none;
  9771. /* Changed from white to allow our bg to show through */
  9772. }
  9773. .CodeMirror-scroll {
  9774. /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
  9775. /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
  9776. overflow-y: hidden;
  9777. overflow-x: auto;
  9778. }
  9779. .CodeMirror-lines {
  9780. /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
  9781. /* we have set a different line-height and want this to scale with that. */
  9782. padding: 0.4em;
  9783. }
  9784. .CodeMirror-linenumber {
  9785. padding: 0 8px 0 4px;
  9786. }
  9787. .CodeMirror-gutters {
  9788. border-bottom-left-radius: 2px;
  9789. border-top-left-radius: 2px;
  9790. }
  9791. .CodeMirror pre {
  9792. /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
  9793. /* .CodeMirror-lines */
  9794. padding: 0;
  9795. border: 0;
  9796. border-radius: 0;
  9797. }
  9798. /*
  9799. Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  9800. Adapted from GitHub theme
  9801. */
  9802. .highlight-base {
  9803. color: #000;
  9804. }
  9805. .highlight-variable {
  9806. color: #000;
  9807. }
  9808. .highlight-variable-2 {
  9809. color: #1a1a1a;
  9810. }
  9811. .highlight-variable-3 {
  9812. color: #333333;
  9813. }
  9814. .highlight-string {
  9815. color: #BA2121;
  9816. }
  9817. .highlight-comment {
  9818. color: #408080;
  9819. font-style: italic;
  9820. }
  9821. .highlight-number {
  9822. color: #080;
  9823. }
  9824. .highlight-atom {
  9825. color: #88F;
  9826. }
  9827. .highlight-keyword {
  9828. color: #008000;
  9829. font-weight: bold;
  9830. }
  9831. .highlight-builtin {
  9832. color: #008000;
  9833. }
  9834. .highlight-error {
  9835. color: #f00;
  9836. }
  9837. .highlight-operator {
  9838. color: #AA22FF;
  9839. font-weight: bold;
  9840. }
  9841. .highlight-meta {
  9842. color: #AA22FF;
  9843. }
  9844. /* previously not defined, copying from default codemirror */
  9845. .highlight-def {
  9846. color: #00f;
  9847. }
  9848. .highlight-string-2 {
  9849. color: #f50;
  9850. }
  9851. .highlight-qualifier {
  9852. color: #555;
  9853. }
  9854. .highlight-bracket {
  9855. color: #997;
  9856. }
  9857. .highlight-tag {
  9858. color: #170;
  9859. }
  9860. .highlight-attribute {
  9861. color: #00c;
  9862. }
  9863. .highlight-header {
  9864. color: blue;
  9865. }
  9866. .highlight-quote {
  9867. color: #090;
  9868. }
  9869. .highlight-link {
  9870. color: #00c;
  9871. }
  9872. /* apply the same style to codemirror */
  9873. .cm-s-ipython span.cm-keyword {
  9874. color: #008000;
  9875. font-weight: bold;
  9876. }
  9877. .cm-s-ipython span.cm-atom {
  9878. color: #88F;
  9879. }
  9880. .cm-s-ipython span.cm-number {
  9881. color: #080;
  9882. }
  9883. .cm-s-ipython span.cm-def {
  9884. color: #00f;
  9885. }
  9886. .cm-s-ipython span.cm-variable {
  9887. color: #000;
  9888. }
  9889. .cm-s-ipython span.cm-operator {
  9890. color: #AA22FF;
  9891. font-weight: bold;
  9892. }
  9893. .cm-s-ipython span.cm-variable-2 {
  9894. color: #1a1a1a;
  9895. }
  9896. .cm-s-ipython span.cm-variable-3 {
  9897. color: #333333;
  9898. }
  9899. .cm-s-ipython span.cm-comment {
  9900. color: #408080;
  9901. font-style: italic;
  9902. }
  9903. .cm-s-ipython span.cm-string {
  9904. color: #BA2121;
  9905. }
  9906. .cm-s-ipython span.cm-string-2 {
  9907. color: #f50;
  9908. }
  9909. .cm-s-ipython span.cm-meta {
  9910. color: #AA22FF;
  9911. }
  9912. .cm-s-ipython span.cm-qualifier {
  9913. color: #555;
  9914. }
  9915. .cm-s-ipython span.cm-builtin {
  9916. color: #008000;
  9917. }
  9918. .cm-s-ipython span.cm-bracket {
  9919. color: #997;
  9920. }
  9921. .cm-s-ipython span.cm-tag {
  9922. color: #170;
  9923. }
  9924. .cm-s-ipython span.cm-attribute {
  9925. color: #00c;
  9926. }
  9927. .cm-s-ipython span.cm-header {
  9928. color: blue;
  9929. }
  9930. .cm-s-ipython span.cm-quote {
  9931. color: #090;
  9932. }
  9933. .cm-s-ipython span.cm-link {
  9934. color: #00c;
  9935. }
  9936. .cm-s-ipython span.cm-error {
  9937. color: #f00;
  9938. }
  9939. .cm-s-ipython span.cm-tab {
  9940. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  9941. background-position: right;
  9942. background-repeat: no-repeat;
  9943. }
  9944. div.output_wrapper {
  9945. /* this position must be relative to enable descendents to be absolute within it */
  9946. position: relative;
  9947. /* Old browsers */
  9948. display: -webkit-box;
  9949. -webkit-box-orient: vertical;
  9950. -webkit-box-align: stretch;
  9951. display: -moz-box;
  9952. -moz-box-orient: vertical;
  9953. -moz-box-align: stretch;
  9954. display: box;
  9955. box-orient: vertical;
  9956. box-align: stretch;
  9957. /* Modern browsers */
  9958. display: flex;
  9959. flex-direction: column;
  9960. align-items: stretch;
  9961. z-index: 1;
  9962. }
  9963. /* class for the output area when it should be height-limited */
  9964. div.output_scroll {
  9965. /* ideally, this would be max-height, but FF barfs all over that */
  9966. height: 24em;
  9967. /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
  9968. width: 100%;
  9969. overflow: auto;
  9970. border-radius: 2px;
  9971. -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  9972. box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  9973. display: block;
  9974. }
  9975. /* output div while it is collapsed */
  9976. div.output_collapsed {
  9977. margin: 0px;
  9978. padding: 0px;
  9979. /* Old browsers */
  9980. display: -webkit-box;
  9981. -webkit-box-orient: vertical;
  9982. -webkit-box-align: stretch;
  9983. display: -moz-box;
  9984. -moz-box-orient: vertical;
  9985. -moz-box-align: stretch;
  9986. display: box;
  9987. box-orient: vertical;
  9988. box-align: stretch;
  9989. /* Modern browsers */
  9990. display: flex;
  9991. flex-direction: column;
  9992. align-items: stretch;
  9993. }
  9994. div.out_prompt_overlay {
  9995. height: 100%;
  9996. padding: 0px 0.4em;
  9997. position: absolute;
  9998. border-radius: 2px;
  9999. }
  10000. div.out_prompt_overlay:hover {
  10001. /* use inner shadow to get border that is computed the same on WebKit/FF */
  10002. -webkit-box-shadow: inset 0 0 1px #000;
  10003. box-shadow: inset 0 0 1px #000;
  10004. background: rgba(240, 240, 240, 0.5);
  10005. }
  10006. div.output_prompt {
  10007. color: #D84315;
  10008. }
  10009. /* This class is the outer container of all output sections. */
  10010. div.output_area {
  10011. padding: 0px;
  10012. page-break-inside: avoid;
  10013. /* Old browsers */
  10014. display: -webkit-box;
  10015. -webkit-box-orient: horizontal;
  10016. -webkit-box-align: stretch;
  10017. display: -moz-box;
  10018. -moz-box-orient: horizontal;
  10019. -moz-box-align: stretch;
  10020. display: box;
  10021. box-orient: horizontal;
  10022. box-align: stretch;
  10023. /* Modern browsers */
  10024. display: flex;
  10025. flex-direction: row;
  10026. align-items: stretch;
  10027. }
  10028. div.output_area .MathJax_Display {
  10029. text-align: left !important;
  10030. }
  10031. div.output_area .rendered_html table {
  10032. margin-left: 0;
  10033. margin-right: 0;
  10034. }
  10035. div.output_area .rendered_html img {
  10036. margin-left: 0;
  10037. margin-right: 0;
  10038. }
  10039. div.output_area img,
  10040. div.output_area svg {
  10041. max-width: 100%;
  10042. height: auto;
  10043. }
  10044. div.output_area img.unconfined,
  10045. div.output_area svg.unconfined {
  10046. max-width: none;
  10047. }
  10048. /* This is needed to protect the pre formating from global settings such
  10049. as that of bootstrap */
  10050. .output {
  10051. /* Old browsers */
  10052. display: -webkit-box;
  10053. -webkit-box-orient: vertical;
  10054. -webkit-box-align: stretch;
  10055. display: -moz-box;
  10056. -moz-box-orient: vertical;
  10057. -moz-box-align: stretch;
  10058. display: box;
  10059. box-orient: vertical;
  10060. box-align: stretch;
  10061. /* Modern browsers */
  10062. display: flex;
  10063. flex-direction: column;
  10064. align-items: stretch;
  10065. }
  10066. @media (max-width: 540px) {
  10067. div.output_area {
  10068. /* Old browsers */
  10069. display: -webkit-box;
  10070. -webkit-box-orient: vertical;
  10071. -webkit-box-align: stretch;
  10072. display: -moz-box;
  10073. -moz-box-orient: vertical;
  10074. -moz-box-align: stretch;
  10075. display: box;
  10076. box-orient: vertical;
  10077. box-align: stretch;
  10078. /* Modern browsers */
  10079. display: flex;
  10080. flex-direction: column;
  10081. align-items: stretch;
  10082. }
  10083. }
  10084. div.output_area pre {
  10085. margin: 0;
  10086. padding: 0;
  10087. border: 0;
  10088. vertical-align: baseline;
  10089. color: black;
  10090. background-color: transparent;
  10091. border-radius: 0;
  10092. }
  10093. /* This class is for the output subarea inside the output_area and after
  10094. the prompt div. */
  10095. div.output_subarea {
  10096. overflow-x: auto;
  10097. padding: 0.4em;
  10098. /* Old browsers */
  10099. -webkit-box-flex: 1;
  10100. -moz-box-flex: 1;
  10101. box-flex: 1;
  10102. /* Modern browsers */
  10103. flex: 1;
  10104. max-width: calc(100% - 14ex);
  10105. }
  10106. div.output_scroll div.output_subarea {
  10107. overflow-x: visible;
  10108. }
  10109. /* The rest of the output_* classes are for special styling of the different
  10110. output types */
  10111. /* all text output has this class: */
  10112. div.output_text {
  10113. text-align: left;
  10114. color: #000;
  10115. /* This has to match that of the the CodeMirror class line-height below */
  10116. line-height: 1.21429em;
  10117. }
  10118. /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
  10119. div.output_stderr {
  10120. background: #fdd;
  10121. /* very light red background for stderr */
  10122. }
  10123. div.output_latex {
  10124. text-align: left;
  10125. }
  10126. /* Empty output_javascript divs should have no height */
  10127. div.output_javascript:empty {
  10128. padding: 0;
  10129. }
  10130. .js-error {
  10131. color: darkred;
  10132. }
  10133. /* raw_input styles */
  10134. div.raw_input_container {
  10135. line-height: 1.21429em;
  10136. padding-top: 5px;
  10137. }
  10138. pre.raw_input_prompt {
  10139. /* nothing needed here. */
  10140. }
  10141. input.raw_input {
  10142. font-family: monospace;
  10143. font-size: inherit;
  10144. color: inherit;
  10145. width: auto;
  10146. /* make sure input baseline aligns with prompt */
  10147. vertical-align: baseline;
  10148. /* padding + margin = 0.5em between prompt and cursor */
  10149. padding: 0em 0.25em;
  10150. margin: 0em 0.25em;
  10151. }
  10152. input.raw_input:focus {
  10153. box-shadow: none;
  10154. }
  10155. p.p-space {
  10156. margin-bottom: 10px;
  10157. }
  10158. div.output_unrecognized {
  10159. padding: 5px;
  10160. font-weight: bold;
  10161. color: red;
  10162. }
  10163. div.output_unrecognized a {
  10164. color: inherit;
  10165. text-decoration: none;
  10166. }
  10167. div.output_unrecognized a:hover {
  10168. color: inherit;
  10169. text-decoration: none;
  10170. }
  10171. .rendered_html {
  10172. color: #000;
  10173. /* any extras will just be numbers: */
  10174. }
  10175. .rendered_html em {
  10176. font-style: italic;
  10177. }
  10178. .rendered_html strong {
  10179. font-weight: bold;
  10180. }
  10181. .rendered_html u {
  10182. text-decoration: underline;
  10183. }
  10184. .rendered_html :link {
  10185. text-decoration: underline;
  10186. }
  10187. .rendered_html :visited {
  10188. text-decoration: underline;
  10189. }
  10190. .rendered_html h1 {
  10191. font-size: 185.7%;
  10192. margin: 1.08em 0 0 0;
  10193. font-weight: bold;
  10194. line-height: 1.0;
  10195. }
  10196. .rendered_html h2 {
  10197. font-size: 157.1%;
  10198. margin: 1.27em 0 0 0;
  10199. font-weight: bold;
  10200. line-height: 1.0;
  10201. }
  10202. .rendered_html h3 {
  10203. font-size: 128.6%;
  10204. margin: 1.55em 0 0 0;
  10205. font-weight: bold;
  10206. line-height: 1.0;
  10207. }
  10208. .rendered_html h4 {
  10209. font-size: 100%;
  10210. margin: 2em 0 0 0;
  10211. font-weight: bold;
  10212. line-height: 1.0;
  10213. }
  10214. .rendered_html h5 {
  10215. font-size: 100%;
  10216. margin: 2em 0 0 0;
  10217. font-weight: bold;
  10218. line-height: 1.0;
  10219. font-style: italic;
  10220. }
  10221. .rendered_html h6 {
  10222. font-size: 100%;
  10223. margin: 2em 0 0 0;
  10224. font-weight: bold;
  10225. line-height: 1.0;
  10226. font-style: italic;
  10227. }
  10228. .rendered_html h1:first-child {
  10229. margin-top: 0.538em;
  10230. }
  10231. .rendered_html h2:first-child {
  10232. margin-top: 0.636em;
  10233. }
  10234. .rendered_html h3:first-child {
  10235. margin-top: 0.777em;
  10236. }
  10237. .rendered_html h4:first-child {
  10238. margin-top: 1em;
  10239. }
  10240. .rendered_html h5:first-child {
  10241. margin-top: 1em;
  10242. }
  10243. .rendered_html h6:first-child {
  10244. margin-top: 1em;
  10245. }
  10246. .rendered_html ul {
  10247. list-style: disc;
  10248. margin: 0em 2em;
  10249. padding-left: 0px;
  10250. }
  10251. .rendered_html ul ul {
  10252. list-style: square;
  10253. margin: 0em 2em;
  10254. }
  10255. .rendered_html ul ul ul {
  10256. list-style: circle;
  10257. margin: 0em 2em;
  10258. }
  10259. .rendered_html ol {
  10260. list-style: decimal;
  10261. margin: 0em 2em;
  10262. padding-left: 0px;
  10263. }
  10264. .rendered_html ol ol {
  10265. list-style: upper-alpha;
  10266. margin: 0em 2em;
  10267. }
  10268. .rendered_html ol ol ol {
  10269. list-style: lower-alpha;
  10270. margin: 0em 2em;
  10271. }
  10272. .rendered_html ol ol ol ol {
  10273. list-style: lower-roman;
  10274. margin: 0em 2em;
  10275. }
  10276. .rendered_html ol ol ol ol ol {
  10277. list-style: decimal;
  10278. margin: 0em 2em;
  10279. }
  10280. .rendered_html * + ul {
  10281. margin-top: 1em;
  10282. }
  10283. .rendered_html * + ol {
  10284. margin-top: 1em;
  10285. }
  10286. .rendered_html hr {
  10287. color: black;
  10288. background-color: black;
  10289. }
  10290. .rendered_html pre {
  10291. margin: 1em 2em;
  10292. }
  10293. .rendered_html pre,
  10294. .rendered_html code {
  10295. border: 0;
  10296. background-color: #fff;
  10297. color: #000;
  10298. font-size: 100%;
  10299. padding: 0px;
  10300. }
  10301. .rendered_html blockquote {
  10302. margin: 1em 2em;
  10303. }
  10304. .rendered_html table {
  10305. margin-left: auto;
  10306. margin-right: auto;
  10307. border: 1px solid black;
  10308. border-collapse: collapse;
  10309. }
  10310. .rendered_html tr,
  10311. .rendered_html th,
  10312. .rendered_html td {
  10313. border: 1px solid black;
  10314. border-collapse: collapse;
  10315. margin: 1em 2em;
  10316. }
  10317. .rendered_html td,
  10318. .rendered_html th {
  10319. text-align: left;
  10320. vertical-align: middle;
  10321. padding: 4px;
  10322. }
  10323. .rendered_html th {
  10324. font-weight: bold;
  10325. }
  10326. .rendered_html * + table {
  10327. margin-top: 1em;
  10328. }
  10329. .rendered_html p {
  10330. text-align: left;
  10331. }
  10332. .rendered_html * + p {
  10333. margin-top: 1em;
  10334. }
  10335. .rendered_html img {
  10336. display: block;
  10337. margin-left: auto;
  10338. margin-right: auto;
  10339. }
  10340. .rendered_html * + img {
  10341. margin-top: 1em;
  10342. }
  10343. .rendered_html img,
  10344. .rendered_html svg {
  10345. max-width: 100%;
  10346. height: auto;
  10347. }
  10348. .rendered_html img.unconfined,
  10349. .rendered_html svg.unconfined {
  10350. max-width: none;
  10351. }
  10352. div.text_cell {
  10353. /* Old browsers */
  10354. display: -webkit-box;
  10355. -webkit-box-orient: horizontal;
  10356. -webkit-box-align: stretch;
  10357. display: -moz-box;
  10358. -moz-box-orient: horizontal;
  10359. -moz-box-align: stretch;
  10360. display: box;
  10361. box-orient: horizontal;
  10362. box-align: stretch;
  10363. /* Modern browsers */
  10364. display: flex;
  10365. flex-direction: row;
  10366. align-items: stretch;
  10367. }
  10368. @media (max-width: 540px) {
  10369. div.text_cell > div.prompt {
  10370. display: none;
  10371. }
  10372. }
  10373. div.text_cell_render {
  10374. /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
  10375. outline: none;
  10376. resize: none;
  10377. width: inherit;
  10378. border-style: none;
  10379. padding: 0.5em 0.5em 0.5em 0.4em;
  10380. color: #000;
  10381. box-sizing: border-box;
  10382. -moz-box-sizing: border-box;
  10383. -webkit-box-sizing: border-box;
  10384. }
  10385. a.anchor-link:link {
  10386. text-decoration: none;
  10387. padding: 0px 20px;
  10388. visibility: hidden;
  10389. }
  10390. h1:hover .anchor-link,
  10391. h2:hover .anchor-link,
  10392. h3:hover .anchor-link,
  10393. h4:hover .anchor-link,
  10394. h5:hover .anchor-link,
  10395. h6:hover .anchor-link {
  10396. visibility: visible;
  10397. }
  10398. .text_cell.rendered .input_area {
  10399. display: none;
  10400. }
  10401. .text_cell.rendered .rendered_html {
  10402. overflow-x: auto;
  10403. overflow-y: hidden;
  10404. }
  10405. .text_cell.unrendered .text_cell_render {
  10406. display: none;
  10407. }
  10408. .cm-header-1,
  10409. .cm-header-2,
  10410. .cm-header-3,
  10411. .cm-header-4,
  10412. .cm-header-5,
  10413. .cm-header-6 {
  10414. font-weight: bold;
  10415. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  10416. }
  10417. .cm-header-1 {
  10418. font-size: 185.7%;
  10419. }
  10420. .cm-header-2 {
  10421. font-size: 157.1%;
  10422. }
  10423. .cm-header-3 {
  10424. font-size: 128.6%;
  10425. }
  10426. .cm-header-4 {
  10427. font-size: 110%;
  10428. }
  10429. .cm-header-5 {
  10430. font-size: 100%;
  10431. font-style: italic;
  10432. }
  10433. .cm-header-6 {
  10434. font-size: 100%;
  10435. font-style: italic;
  10436. }
  10437. /*!
  10438. *
  10439. * IPython notebook webapp
  10440. *
  10441. */
  10442. @media (max-width: 767px) {
  10443. .notebook_app {
  10444. padding-left: 0px;
  10445. padding-right: 0px;
  10446. }
  10447. }
  10448. #ipython-main-app {
  10449. box-sizing: border-box;
  10450. -moz-box-sizing: border-box;
  10451. -webkit-box-sizing: border-box;
  10452. height: 100%;
  10453. }
  10454. div#notebook_panel {
  10455. margin: 0px;
  10456. padding: 0px;
  10457. box-sizing: border-box;
  10458. -moz-box-sizing: border-box;
  10459. -webkit-box-sizing: border-box;
  10460. height: 100%;
  10461. }
  10462. div#notebook {
  10463. font-size: 14px;
  10464. line-height: 20px;
  10465. overflow-y: hidden;
  10466. overflow-x: auto;
  10467. width: 100%;
  10468. /* This spaces the page away from the edge of the notebook area */
  10469. padding-top: 20px;
  10470. margin: 0px;
  10471. outline: none;
  10472. box-sizing: border-box;
  10473. -moz-box-sizing: border-box;
  10474. -webkit-box-sizing: border-box;
  10475. min-height: 100%;
  10476. }
  10477. @media not print {
  10478. #notebook-container {
  10479. padding: 15px;
  10480. background-color: #fff;
  10481. min-height: 0;
  10482. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10483. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10484. }
  10485. }
  10486. @media print {
  10487. #notebook-container {
  10488. width: 100%;
  10489. }
  10490. }
  10491. div.ui-widget-content {
  10492. border: 1px solid #ababab;
  10493. outline: none;
  10494. }
  10495. pre.dialog {
  10496. background-color: #f7f7f7;
  10497. border: 1px solid #ddd;
  10498. border-radius: 2px;
  10499. padding: 0.4em;
  10500. padding-left: 2em;
  10501. }
  10502. p.dialog {
  10503. padding: 0.2em;
  10504. }
  10505. /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
  10506. to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
  10507. */
  10508. pre,
  10509. code,
  10510. kbd,
  10511. samp {
  10512. white-space: pre-wrap;
  10513. }
  10514. #fonttest {
  10515. font-family: monospace;
  10516. }
  10517. p {
  10518. margin-bottom: 0;
  10519. }
  10520. .end_space {
  10521. min-height: 100px;
  10522. transition: height .2s ease;
  10523. }
  10524. .notebook_app > #header {
  10525. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10526. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10527. }
  10528. @media not print {
  10529. .notebook_app {
  10530. background-color: #EEE;
  10531. }
  10532. }
  10533. kbd {
  10534. border-style: solid;
  10535. border-width: 1px;
  10536. box-shadow: none;
  10537. margin: 2px;
  10538. padding-left: 2px;
  10539. padding-right: 2px;
  10540. padding-top: 1px;
  10541. padding-bottom: 1px;
  10542. }
  10543. /* CSS for the cell toolbar */
  10544. .celltoolbar {
  10545. border: thin solid #CFCFCF;
  10546. border-bottom: none;
  10547. background: #EEE;
  10548. border-radius: 2px 2px 0px 0px;
  10549. width: 100%;
  10550. height: 29px;
  10551. padding-right: 4px;
  10552. /* Old browsers */
  10553. display: -webkit-box;
  10554. -webkit-box-orient: horizontal;
  10555. -webkit-box-align: stretch;
  10556. display: -moz-box;
  10557. -moz-box-orient: horizontal;
  10558. -moz-box-align: stretch;
  10559. display: box;
  10560. box-orient: horizontal;
  10561. box-align: stretch;
  10562. /* Modern browsers */
  10563. display: flex;
  10564. flex-direction: row;
  10565. align-items: stretch;
  10566. /* Old browsers */
  10567. -webkit-box-pack: end;
  10568. -moz-box-pack: end;
  10569. box-pack: end;
  10570. /* Modern browsers */
  10571. justify-content: flex-end;
  10572. display: -webkit-flex;
  10573. }
  10574. @media print {
  10575. .celltoolbar {
  10576. display: none;
  10577. }
  10578. }
  10579. .ctb_hideshow {
  10580. display: none;
  10581. vertical-align: bottom;
  10582. }
  10583. /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
  10584. Cell toolbars are only shown when the ctb_global_show class is also set.
  10585. */
  10586. .ctb_global_show .ctb_show.ctb_hideshow {
  10587. display: block;
  10588. }
  10589. .ctb_global_show .ctb_show + .input_area,
  10590. .ctb_global_show .ctb_show + div.text_cell_input,
  10591. .ctb_global_show .ctb_show ~ div.text_cell_render {
  10592. border-top-right-radius: 0px;
  10593. border-top-left-radius: 0px;
  10594. }
  10595. .ctb_global_show .ctb_show ~ div.text_cell_render {
  10596. border: 1px solid #cfcfcf;
  10597. }
  10598. .celltoolbar {
  10599. font-size: 87%;
  10600. padding-top: 3px;
  10601. }
  10602. .celltoolbar select {
  10603. display: block;
  10604. width: 100%;
  10605. height: 32px;
  10606. padding: 6px 12px;
  10607. font-size: 13px;
  10608. line-height: 1.42857143;
  10609. color: #555555;
  10610. background-color: #fff;
  10611. background-image: none;
  10612. border: 1px solid #ccc;
  10613. border-radius: 2px;
  10614. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  10615. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  10616. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10617. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10618. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10619. height: 30px;
  10620. padding: 5px 10px;
  10621. font-size: 12px;
  10622. line-height: 1.5;
  10623. border-radius: 1px;
  10624. width: inherit;
  10625. font-size: inherit;
  10626. height: 22px;
  10627. padding: 0px;
  10628. display: inline-block;
  10629. }
  10630. .celltoolbar select:focus {
  10631. border-color: #66afe9;
  10632. outline: 0;
  10633. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  10634. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  10635. }
  10636. .celltoolbar select::-moz-placeholder {
  10637. color: #999;
  10638. opacity: 1;
  10639. }
  10640. .celltoolbar select:-ms-input-placeholder {
  10641. color: #999;
  10642. }
  10643. .celltoolbar select::-webkit-input-placeholder {
  10644. color: #999;
  10645. }
  10646. .celltoolbar select::-ms-expand {
  10647. border: 0;
  10648. background-color: transparent;
  10649. }
  10650. .celltoolbar select[disabled],
  10651. .celltoolbar select[readonly],
  10652. fieldset[disabled] .celltoolbar select {
  10653. background-color: #eeeeee;
  10654. opacity: 1;
  10655. }
  10656. .celltoolbar select[disabled],
  10657. fieldset[disabled] .celltoolbar select {
  10658. cursor: not-allowed;
  10659. }
  10660. textarea.celltoolbar select {
  10661. height: auto;
  10662. }
  10663. select.celltoolbar select {
  10664. height: 30px;
  10665. line-height: 30px;
  10666. }
  10667. textarea.celltoolbar select,
  10668. select[multiple].celltoolbar select {
  10669. height: auto;
  10670. }
  10671. .celltoolbar label {
  10672. margin-left: 5px;
  10673. margin-right: 5px;
  10674. }
  10675. .completions {
  10676. position: absolute;
  10677. z-index: 110;
  10678. overflow: hidden;
  10679. border: 1px solid #ababab;
  10680. border-radius: 2px;
  10681. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  10682. box-shadow: 0px 6px 10px -1px #adadad;
  10683. line-height: 1;
  10684. }
  10685. .completions select {
  10686. background: white;
  10687. outline: none;
  10688. border: none;
  10689. padding: 0px;
  10690. margin: 0px;
  10691. overflow: auto;
  10692. font-family: monospace;
  10693. font-size: 110%;
  10694. color: #000;
  10695. width: auto;
  10696. }
  10697. .completions select option.context {
  10698. color: #286090;
  10699. }
  10700. #kernel_logo_widget {
  10701. float: right !important;
  10702. float: right;
  10703. }
  10704. #kernel_logo_widget .current_kernel_logo {
  10705. display: none;
  10706. margin-top: -1px;
  10707. margin-bottom: -1px;
  10708. width: 32px;
  10709. height: 32px;
  10710. }
  10711. #menubar {
  10712. box-sizing: border-box;
  10713. -moz-box-sizing: border-box;
  10714. -webkit-box-sizing: border-box;
  10715. margin-top: 1px;
  10716. }
  10717. #menubar .navbar {
  10718. border-top: 1px;
  10719. border-radius: 0px 0px 2px 2px;
  10720. margin-bottom: 0px;
  10721. }
  10722. #menubar .navbar-toggle {
  10723. float: left;
  10724. padding-top: 7px;
  10725. padding-bottom: 7px;
  10726. border: none;
  10727. }
  10728. #menubar .navbar-collapse {
  10729. clear: left;
  10730. }
  10731. .nav-wrapper {
  10732. border-bottom: 1px solid #e7e7e7;
  10733. }
  10734. i.menu-icon {
  10735. padding-top: 4px;
  10736. }
  10737. ul#help_menu li a {
  10738. overflow: hidden;
  10739. padding-right: 2.2em;
  10740. }
  10741. ul#help_menu li a i {
  10742. margin-right: -1.2em;
  10743. }
  10744. .dropdown-submenu {
  10745. position: relative;
  10746. }
  10747. .dropdown-submenu > .dropdown-menu {
  10748. top: 0;
  10749. left: 100%;
  10750. margin-top: -6px;
  10751. margin-left: -1px;
  10752. }
  10753. .dropdown-submenu:hover > .dropdown-menu {
  10754. display: block;
  10755. }
  10756. .dropdown-submenu > a:after {
  10757. display: inline-block;
  10758. font: normal normal normal 14px/1 FontAwesome;
  10759. font-size: inherit;
  10760. text-rendering: auto;
  10761. -webkit-font-smoothing: antialiased;
  10762. -moz-osx-font-smoothing: grayscale;
  10763. display: block;
  10764. content: "\f0da";
  10765. float: right;
  10766. color: #333333;
  10767. margin-top: 2px;
  10768. margin-right: -10px;
  10769. }
  10770. .dropdown-submenu > a:after.pull-left {
  10771. margin-right: .3em;
  10772. }
  10773. .dropdown-submenu > a:after.pull-right {
  10774. margin-left: .3em;
  10775. }
  10776. .dropdown-submenu:hover > a:after {
  10777. color: #262626;
  10778. }
  10779. .dropdown-submenu.pull-left {
  10780. float: none;
  10781. }
  10782. .dropdown-submenu.pull-left > .dropdown-menu {
  10783. left: -100%;
  10784. margin-left: 10px;
  10785. }
  10786. #notification_area {
  10787. float: right !important;
  10788. float: right;
  10789. z-index: 10;
  10790. }
  10791. .indicator_area {
  10792. float: right !important;
  10793. float: right;
  10794. color: #777;
  10795. margin-left: 5px;
  10796. margin-right: 5px;
  10797. width: 11px;
  10798. z-index: 10;
  10799. text-align: center;
  10800. width: auto;
  10801. }
  10802. #kernel_indicator {
  10803. float: right !important;
  10804. float: right;
  10805. color: #777;
  10806. margin-left: 5px;
  10807. margin-right: 5px;
  10808. width: 11px;
  10809. z-index: 10;
  10810. text-align: center;
  10811. width: auto;
  10812. border-left: 1px solid;
  10813. }
  10814. #kernel_indicator .kernel_indicator_name {
  10815. padding-left: 5px;
  10816. padding-right: 5px;
  10817. }
  10818. #modal_indicator {
  10819. float: right !important;
  10820. float: right;
  10821. color: #777;
  10822. margin-left: 5px;
  10823. margin-right: 5px;
  10824. width: 11px;
  10825. z-index: 10;
  10826. text-align: center;
  10827. width: auto;
  10828. }
  10829. #readonly-indicator {
  10830. float: right !important;
  10831. float: right;
  10832. color: #777;
  10833. margin-left: 5px;
  10834. margin-right: 5px;
  10835. width: 11px;
  10836. z-index: 10;
  10837. text-align: center;
  10838. width: auto;
  10839. margin-top: 2px;
  10840. margin-bottom: 0px;
  10841. margin-left: 0px;
  10842. margin-right: 0px;
  10843. display: none;
  10844. }
  10845. .modal_indicator:before {
  10846. width: 1.28571429em;
  10847. text-align: center;
  10848. }
  10849. .edit_mode .modal_indicator:before {
  10850. display: inline-block;
  10851. font: normal normal normal 14px/1 FontAwesome;
  10852. font-size: inherit;
  10853. text-rendering: auto;
  10854. -webkit-font-smoothing: antialiased;
  10855. -moz-osx-font-smoothing: grayscale;
  10856. content: "\f040";
  10857. }
  10858. .edit_mode .modal_indicator:before.pull-left {
  10859. margin-right: .3em;
  10860. }
  10861. .edit_mode .modal_indicator:before.pull-right {
  10862. margin-left: .3em;
  10863. }
  10864. .command_mode .modal_indicator:before {
  10865. display: inline-block;
  10866. font: normal normal normal 14px/1 FontAwesome;
  10867. font-size: inherit;
  10868. text-rendering: auto;
  10869. -webkit-font-smoothing: antialiased;
  10870. -moz-osx-font-smoothing: grayscale;
  10871. content: ' ';
  10872. }
  10873. .command_mode .modal_indicator:before.pull-left {
  10874. margin-right: .3em;
  10875. }
  10876. .command_mode .modal_indicator:before.pull-right {
  10877. margin-left: .3em;
  10878. }
  10879. .kernel_idle_icon:before {
  10880. display: inline-block;
  10881. font: normal normal normal 14px/1 FontAwesome;
  10882. font-size: inherit;
  10883. text-rendering: auto;
  10884. -webkit-font-smoothing: antialiased;
  10885. -moz-osx-font-smoothing: grayscale;
  10886. content: "\f10c";
  10887. }
  10888. .kernel_idle_icon:before.pull-left {
  10889. margin-right: .3em;
  10890. }
  10891. .kernel_idle_icon:before.pull-right {
  10892. margin-left: .3em;
  10893. }
  10894. .kernel_busy_icon:before {
  10895. display: inline-block;
  10896. font: normal normal normal 14px/1 FontAwesome;
  10897. font-size: inherit;
  10898. text-rendering: auto;
  10899. -webkit-font-smoothing: antialiased;
  10900. -moz-osx-font-smoothing: grayscale;
  10901. content: "\f111";
  10902. }
  10903. .kernel_busy_icon:before.pull-left {
  10904. margin-right: .3em;
  10905. }
  10906. .kernel_busy_icon:before.pull-right {
  10907. margin-left: .3em;
  10908. }
  10909. .kernel_dead_icon:before {
  10910. display: inline-block;
  10911. font: normal normal normal 14px/1 FontAwesome;
  10912. font-size: inherit;
  10913. text-rendering: auto;
  10914. -webkit-font-smoothing: antialiased;
  10915. -moz-osx-font-smoothing: grayscale;
  10916. content: "\f1e2";
  10917. }
  10918. .kernel_dead_icon:before.pull-left {
  10919. margin-right: .3em;
  10920. }
  10921. .kernel_dead_icon:before.pull-right {
  10922. margin-left: .3em;
  10923. }
  10924. .kernel_disconnected_icon:before {
  10925. display: inline-block;
  10926. font: normal normal normal 14px/1 FontAwesome;
  10927. font-size: inherit;
  10928. text-rendering: auto;
  10929. -webkit-font-smoothing: antialiased;
  10930. -moz-osx-font-smoothing: grayscale;
  10931. content: "\f127";
  10932. }
  10933. .kernel_disconnected_icon:before.pull-left {
  10934. margin-right: .3em;
  10935. }
  10936. .kernel_disconnected_icon:before.pull-right {
  10937. margin-left: .3em;
  10938. }
  10939. .notification_widget {
  10940. color: #777;
  10941. z-index: 10;
  10942. background: rgba(240, 240, 240, 0.5);
  10943. margin-right: 4px;
  10944. color: #333;
  10945. background-color: #fff;
  10946. border-color: #ccc;
  10947. }
  10948. .notification_widget:focus,
  10949. .notification_widget.focus {
  10950. color: #333;
  10951. background-color: #e6e6e6;
  10952. border-color: #8c8c8c;
  10953. }
  10954. .notification_widget:hover {
  10955. color: #333;
  10956. background-color: #e6e6e6;
  10957. border-color: #adadad;
  10958. }
  10959. .notification_widget:active,
  10960. .notification_widget.active,
  10961. .open > .dropdown-toggle.notification_widget {
  10962. color: #333;
  10963. background-color: #e6e6e6;
  10964. border-color: #adadad;
  10965. }
  10966. .notification_widget:active:hover,
  10967. .notification_widget.active:hover,
  10968. .open > .dropdown-toggle.notification_widget:hover,
  10969. .notification_widget:active:focus,
  10970. .notification_widget.active:focus,
  10971. .open > .dropdown-toggle.notification_widget:focus,
  10972. .notification_widget:active.focus,
  10973. .notification_widget.active.focus,
  10974. .open > .dropdown-toggle.notification_widget.focus {
  10975. color: #333;
  10976. background-color: #d4d4d4;
  10977. border-color: #8c8c8c;
  10978. }
  10979. .notification_widget:active,
  10980. .notification_widget.active,
  10981. .open > .dropdown-toggle.notification_widget {
  10982. background-image: none;
  10983. }
  10984. .notification_widget.disabled:hover,
  10985. .notification_widget[disabled]:hover,
  10986. fieldset[disabled] .notification_widget:hover,
  10987. .notification_widget.disabled:focus,
  10988. .notification_widget[disabled]:focus,
  10989. fieldset[disabled] .notification_widget:focus,
  10990. .notification_widget.disabled.focus,
  10991. .notification_widget[disabled].focus,
  10992. fieldset[disabled] .notification_widget.focus {
  10993. background-color: #fff;
  10994. border-color: #ccc;
  10995. }
  10996. .notification_widget .badge {
  10997. color: #fff;
  10998. background-color: #333;
  10999. }
  11000. .notification_widget.warning {
  11001. color: #fff;
  11002. background-color: #f0ad4e;
  11003. border-color: #eea236;
  11004. }
  11005. .notification_widget.warning:focus,
  11006. .notification_widget.warning.focus {
  11007. color: #fff;
  11008. background-color: #ec971f;
  11009. border-color: #985f0d;
  11010. }
  11011. .notification_widget.warning:hover {
  11012. color: #fff;
  11013. background-color: #ec971f;
  11014. border-color: #d58512;
  11015. }
  11016. .notification_widget.warning:active,
  11017. .notification_widget.warning.active,
  11018. .open > .dropdown-toggle.notification_widget.warning {
  11019. color: #fff;
  11020. background-color: #ec971f;
  11021. border-color: #d58512;
  11022. }
  11023. .notification_widget.warning:active:hover,
  11024. .notification_widget.warning.active:hover,
  11025. .open > .dropdown-toggle.notification_widget.warning:hover,
  11026. .notification_widget.warning:active:focus,
  11027. .notification_widget.warning.active:focus,
  11028. .open > .dropdown-toggle.notification_widget.warning:focus,
  11029. .notification_widget.warning:active.focus,
  11030. .notification_widget.warning.active.focus,
  11031. .open > .dropdown-toggle.notification_widget.warning.focus {
  11032. color: #fff;
  11033. background-color: #d58512;
  11034. border-color: #985f0d;
  11035. }
  11036. .notification_widget.warning:active,
  11037. .notification_widget.warning.active,
  11038. .open > .dropdown-toggle.notification_widget.warning {
  11039. background-image: none;
  11040. }
  11041. .notification_widget.warning.disabled:hover,
  11042. .notification_widget.warning[disabled]:hover,
  11043. fieldset[disabled] .notification_widget.warning:hover,
  11044. .notification_widget.warning.disabled:focus,
  11045. .notification_widget.warning[disabled]:focus,
  11046. fieldset[disabled] .notification_widget.warning:focus,
  11047. .notification_widget.warning.disabled.focus,
  11048. .notification_widget.warning[disabled].focus,
  11049. fieldset[disabled] .notification_widget.warning.focus {
  11050. background-color: #f0ad4e;
  11051. border-color: #eea236;
  11052. }
  11053. .notification_widget.warning .badge {
  11054. color: #f0ad4e;
  11055. background-color: #fff;
  11056. }
  11057. .notification_widget.success {
  11058. color: #fff;
  11059. background-color: #5cb85c;
  11060. border-color: #4cae4c;
  11061. }
  11062. .notification_widget.success:focus,
  11063. .notification_widget.success.focus {
  11064. color: #fff;
  11065. background-color: #449d44;
  11066. border-color: #255625;
  11067. }
  11068. .notification_widget.success:hover {
  11069. color: #fff;
  11070. background-color: #449d44;
  11071. border-color: #398439;
  11072. }
  11073. .notification_widget.success:active,
  11074. .notification_widget.success.active,
  11075. .open > .dropdown-toggle.notification_widget.success {
  11076. color: #fff;
  11077. background-color: #449d44;
  11078. border-color: #398439;
  11079. }
  11080. .notification_widget.success:active:hover,
  11081. .notification_widget.success.active:hover,
  11082. .open > .dropdown-toggle.notification_widget.success:hover,
  11083. .notification_widget.success:active:focus,
  11084. .notification_widget.success.active:focus,
  11085. .open > .dropdown-toggle.notification_widget.success:focus,
  11086. .notification_widget.success:active.focus,
  11087. .notification_widget.success.active.focus,
  11088. .open > .dropdown-toggle.notification_widget.success.focus {
  11089. color: #fff;
  11090. background-color: #398439;
  11091. border-color: #255625;
  11092. }
  11093. .notification_widget.success:active,
  11094. .notification_widget.success.active,
  11095. .open > .dropdown-toggle.notification_widget.success {
  11096. background-image: none;
  11097. }
  11098. .notification_widget.success.disabled:hover,
  11099. .notification_widget.success[disabled]:hover,
  11100. fieldset[disabled] .notification_widget.success:hover,
  11101. .notification_widget.success.disabled:focus,
  11102. .notification_widget.success[disabled]:focus,
  11103. fieldset[disabled] .notification_widget.success:focus,
  11104. .notification_widget.success.disabled.focus,
  11105. .notification_widget.success[disabled].focus,
  11106. fieldset[disabled] .notification_widget.success.focus {
  11107. background-color: #5cb85c;
  11108. border-color: #4cae4c;
  11109. }
  11110. .notification_widget.success .badge {
  11111. color: #5cb85c;
  11112. background-color: #fff;
  11113. }
  11114. .notification_widget.info {
  11115. color: #fff;
  11116. background-color: #5bc0de;
  11117. border-color: #46b8da;
  11118. }
  11119. .notification_widget.info:focus,
  11120. .notification_widget.info.focus {
  11121. color: #fff;
  11122. background-color: #31b0d5;
  11123. border-color: #1b6d85;
  11124. }
  11125. .notification_widget.info:hover {
  11126. color: #fff;
  11127. background-color: #31b0d5;
  11128. border-color: #269abc;
  11129. }
  11130. .notification_widget.info:active,
  11131. .notification_widget.info.active,
  11132. .open > .dropdown-toggle.notification_widget.info {
  11133. color: #fff;
  11134. background-color: #31b0d5;
  11135. border-color: #269abc;
  11136. }
  11137. .notification_widget.info:active:hover,
  11138. .notification_widget.info.active:hover,
  11139. .open > .dropdown-toggle.notification_widget.info:hover,
  11140. .notification_widget.info:active:focus,
  11141. .notification_widget.info.active:focus,
  11142. .open > .dropdown-toggle.notification_widget.info:focus,
  11143. .notification_widget.info:active.focus,
  11144. .notification_widget.info.active.focus,
  11145. .open > .dropdown-toggle.notification_widget.info.focus {
  11146. color: #fff;
  11147. background-color: #269abc;
  11148. border-color: #1b6d85;
  11149. }
  11150. .notification_widget.info:active,
  11151. .notification_widget.info.active,
  11152. .open > .dropdown-toggle.notification_widget.info {
  11153. background-image: none;
  11154. }
  11155. .notification_widget.info.disabled:hover,
  11156. .notification_widget.info[disabled]:hover,
  11157. fieldset[disabled] .notification_widget.info:hover,
  11158. .notification_widget.info.disabled:focus,
  11159. .notification_widget.info[disabled]:focus,
  11160. fieldset[disabled] .notification_widget.info:focus,
  11161. .notification_widget.info.disabled.focus,
  11162. .notification_widget.info[disabled].focus,
  11163. fieldset[disabled] .notification_widget.info.focus {
  11164. background-color: #5bc0de;
  11165. border-color: #46b8da;
  11166. }
  11167. .notification_widget.info .badge {
  11168. color: #5bc0de;
  11169. background-color: #fff;
  11170. }
  11171. .notification_widget.danger {
  11172. color: #fff;
  11173. background-color: #d9534f;
  11174. border-color: #d43f3a;
  11175. }
  11176. .notification_widget.danger:focus,
  11177. .notification_widget.danger.focus {
  11178. color: #fff;
  11179. background-color: #c9302c;
  11180. border-color: #761c19;
  11181. }
  11182. .notification_widget.danger:hover {
  11183. color: #fff;
  11184. background-color: #c9302c;
  11185. border-color: #ac2925;
  11186. }
  11187. .notification_widget.danger:active,
  11188. .notification_widget.danger.active,
  11189. .open > .dropdown-toggle.notification_widget.danger {
  11190. color: #fff;
  11191. background-color: #c9302c;
  11192. border-color: #ac2925;
  11193. }
  11194. .notification_widget.danger:active:hover,
  11195. .notification_widget.danger.active:hover,
  11196. .open > .dropdown-toggle.notification_widget.danger:hover,
  11197. .notification_widget.danger:active:focus,
  11198. .notification_widget.danger.active:focus,
  11199. .open > .dropdown-toggle.notification_widget.danger:focus,
  11200. .notification_widget.danger:active.focus,
  11201. .notification_widget.danger.active.focus,
  11202. .open > .dropdown-toggle.notification_widget.danger.focus {
  11203. color: #fff;
  11204. background-color: #ac2925;
  11205. border-color: #761c19;
  11206. }
  11207. .notification_widget.danger:active,
  11208. .notification_widget.danger.active,
  11209. .open > .dropdown-toggle.notification_widget.danger {
  11210. background-image: none;
  11211. }
  11212. .notification_widget.danger.disabled:hover,
  11213. .notification_widget.danger[disabled]:hover,
  11214. fieldset[disabled] .notification_widget.danger:hover,
  11215. .notification_widget.danger.disabled:focus,
  11216. .notification_widget.danger[disabled]:focus,
  11217. fieldset[disabled] .notification_widget.danger:focus,
  11218. .notification_widget.danger.disabled.focus,
  11219. .notification_widget.danger[disabled].focus,
  11220. fieldset[disabled] .notification_widget.danger.focus {
  11221. background-color: #d9534f;
  11222. border-color: #d43f3a;
  11223. }
  11224. .notification_widget.danger .badge {
  11225. color: #d9534f;
  11226. background-color: #fff;
  11227. }
  11228. div#pager {
  11229. background-color: #fff;
  11230. font-size: 14px;
  11231. line-height: 20px;
  11232. overflow: hidden;
  11233. display: none;
  11234. position: fixed;
  11235. bottom: 0px;
  11236. width: 100%;
  11237. max-height: 50%;
  11238. padding-top: 8px;
  11239. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11240. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11241. /* Display over codemirror */
  11242. z-index: 100;
  11243. /* Hack which prevents jquery ui resizable from changing top. */
  11244. top: auto !important;
  11245. }
  11246. div#pager pre {
  11247. line-height: 1.21429em;
  11248. color: #000;
  11249. background-color: #f7f7f7;
  11250. padding: 0.4em;
  11251. }
  11252. div#pager #pager-button-area {
  11253. position: absolute;
  11254. top: 8px;
  11255. right: 20px;
  11256. }
  11257. div#pager #pager-contents {
  11258. position: relative;
  11259. overflow: auto;
  11260. width: 100%;
  11261. height: 100%;
  11262. }
  11263. div#pager #pager-contents #pager-container {
  11264. position: relative;
  11265. padding: 15px 0px;
  11266. box-sizing: border-box;
  11267. -moz-box-sizing: border-box;
  11268. -webkit-box-sizing: border-box;
  11269. }
  11270. div#pager .ui-resizable-handle {
  11271. top: 0px;
  11272. height: 8px;
  11273. background: #f7f7f7;
  11274. border-top: 1px solid #cfcfcf;
  11275. border-bottom: 1px solid #cfcfcf;
  11276. /* This injects handle bars (a short, wide = symbol) for
  11277. the resize handle. */
  11278. }
  11279. div#pager .ui-resizable-handle::after {
  11280. content: '';
  11281. top: 2px;
  11282. left: 50%;
  11283. height: 3px;
  11284. width: 30px;
  11285. margin-left: -15px;
  11286. position: absolute;
  11287. border-top: 1px solid #cfcfcf;
  11288. }
  11289. .quickhelp {
  11290. /* Old browsers */
  11291. display: -webkit-box;
  11292. -webkit-box-orient: horizontal;
  11293. -webkit-box-align: stretch;
  11294. display: -moz-box;
  11295. -moz-box-orient: horizontal;
  11296. -moz-box-align: stretch;
  11297. display: box;
  11298. box-orient: horizontal;
  11299. box-align: stretch;
  11300. /* Modern browsers */
  11301. display: flex;
  11302. flex-direction: row;
  11303. align-items: stretch;
  11304. line-height: 1.8em;
  11305. }
  11306. .shortcut_key {
  11307. display: inline-block;
  11308. width: 21ex;
  11309. text-align: right;
  11310. font-family: monospace;
  11311. }
  11312. .shortcut_descr {
  11313. display: inline-block;
  11314. /* Old browsers */
  11315. -webkit-box-flex: 1;
  11316. -moz-box-flex: 1;
  11317. box-flex: 1;
  11318. /* Modern browsers */
  11319. flex: 1;
  11320. }
  11321. span.save_widget {
  11322. margin-top: 6px;
  11323. }
  11324. span.save_widget span.filename {
  11325. height: 1em;
  11326. line-height: 1em;
  11327. padding: 3px;
  11328. margin-left: 16px;
  11329. border: none;
  11330. font-size: 146.5%;
  11331. border-radius: 2px;
  11332. }
  11333. span.save_widget span.filename:hover {
  11334. background-color: #e6e6e6;
  11335. }
  11336. span.checkpoint_status,
  11337. span.autosave_status {
  11338. font-size: small;
  11339. }
  11340. @media (max-width: 767px) {
  11341. span.save_widget {
  11342. font-size: small;
  11343. }
  11344. span.checkpoint_status,
  11345. span.autosave_status {
  11346. display: none;
  11347. }
  11348. }
  11349. @media (min-width: 768px) and (max-width: 991px) {
  11350. span.checkpoint_status {
  11351. display: none;
  11352. }
  11353. span.autosave_status {
  11354. font-size: x-small;
  11355. }
  11356. }
  11357. .toolbar {
  11358. padding: 0px;
  11359. margin-left: -5px;
  11360. margin-top: 2px;
  11361. margin-bottom: 5px;
  11362. box-sizing: border-box;
  11363. -moz-box-sizing: border-box;
  11364. -webkit-box-sizing: border-box;
  11365. }
  11366. .toolbar select,
  11367. .toolbar label {
  11368. width: auto;
  11369. vertical-align: middle;
  11370. margin-right: 2px;
  11371. margin-bottom: 0px;
  11372. display: inline;
  11373. font-size: 92%;
  11374. margin-left: 0.3em;
  11375. margin-right: 0.3em;
  11376. padding: 0px;
  11377. padding-top: 3px;
  11378. }
  11379. .toolbar .btn {
  11380. padding: 2px 8px;
  11381. }
  11382. .toolbar .btn-group {
  11383. margin-top: 0px;
  11384. margin-left: 5px;
  11385. }
  11386. #maintoolbar {
  11387. margin-bottom: -3px;
  11388. margin-top: -8px;
  11389. border: 0px;
  11390. min-height: 27px;
  11391. margin-left: 0px;
  11392. padding-top: 11px;
  11393. padding-bottom: 3px;
  11394. }
  11395. #maintoolbar .navbar-text {
  11396. float: none;
  11397. vertical-align: middle;
  11398. text-align: right;
  11399. margin-left: 5px;
  11400. margin-right: 0px;
  11401. margin-top: 0px;
  11402. }
  11403. .select-xs {
  11404. height: 24px;
  11405. }
  11406. .pulse,
  11407. .dropdown-menu > li > a.pulse,
  11408. li.pulse > a.dropdown-toggle,
  11409. li.pulse.open > a.dropdown-toggle {
  11410. background-color: #F37626;
  11411. color: white;
  11412. }
  11413. /**
  11414. * Primary styles
  11415. *
  11416. * Author: Jupyter Development Team
  11417. */
  11418. /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
  11419. * of chance of beeing generated from the ../less/[samename].less file, you can
  11420. * try to get back the less file by reverting somme commit in history
  11421. **/
  11422. /*
  11423. * We'll try to get something pretty, so we
  11424. * have some strange css to have the scroll bar on
  11425. * the left with fix button on the top right of the tooltip
  11426. */
  11427. @-moz-keyframes fadeOut {
  11428. from {
  11429. opacity: 1;
  11430. }
  11431. to {
  11432. opacity: 0;
  11433. }
  11434. }
  11435. @-webkit-keyframes fadeOut {
  11436. from {
  11437. opacity: 1;
  11438. }
  11439. to {
  11440. opacity: 0;
  11441. }
  11442. }
  11443. @-moz-keyframes fadeIn {
  11444. from {
  11445. opacity: 0;
  11446. }
  11447. to {
  11448. opacity: 1;
  11449. }
  11450. }
  11451. @-webkit-keyframes fadeIn {
  11452. from {
  11453. opacity: 0;
  11454. }
  11455. to {
  11456. opacity: 1;
  11457. }
  11458. }
  11459. /*properties of tooltip after "expand"*/
  11460. .bigtooltip {
  11461. overflow: auto;
  11462. height: 200px;
  11463. -webkit-transition-property: height;
  11464. -webkit-transition-duration: 500ms;
  11465. -moz-transition-property: height;
  11466. -moz-transition-duration: 500ms;
  11467. transition-property: height;
  11468. transition-duration: 500ms;
  11469. }
  11470. /*properties of tooltip before "expand"*/
  11471. .smalltooltip {
  11472. -webkit-transition-property: height;
  11473. -webkit-transition-duration: 500ms;
  11474. -moz-transition-property: height;
  11475. -moz-transition-duration: 500ms;
  11476. transition-property: height;
  11477. transition-duration: 500ms;
  11478. text-overflow: ellipsis;
  11479. overflow: hidden;
  11480. height: 80px;
  11481. }
  11482. .tooltipbuttons {
  11483. position: absolute;
  11484. padding-right: 15px;
  11485. top: 0px;
  11486. right: 0px;
  11487. }
  11488. .tooltiptext {
  11489. /*avoid the button to overlap on some docstring*/
  11490. padding-right: 30px;
  11491. }
  11492. .ipython_tooltip {
  11493. max-width: 700px;
  11494. /*fade-in animation when inserted*/
  11495. -webkit-animation: fadeOut 400ms;
  11496. -moz-animation: fadeOut 400ms;
  11497. animation: fadeOut 400ms;
  11498. -webkit-animation: fadeIn 400ms;
  11499. -moz-animation: fadeIn 400ms;
  11500. animation: fadeIn 400ms;
  11501. vertical-align: middle;
  11502. background-color: #f7f7f7;
  11503. overflow: visible;
  11504. border: #ababab 1px solid;
  11505. outline: none;
  11506. padding: 3px;
  11507. margin: 0px;
  11508. padding-left: 7px;
  11509. font-family: monospace;
  11510. min-height: 50px;
  11511. -moz-box-shadow: 0px 6px 10px -1px #adadad;
  11512. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  11513. box-shadow: 0px 6px 10px -1px #adadad;
  11514. border-radius: 2px;
  11515. position: absolute;
  11516. z-index: 1000;
  11517. }
  11518. .ipython_tooltip a {
  11519. float: right;
  11520. }
  11521. .ipython_tooltip .tooltiptext pre {
  11522. border: 0;
  11523. border-radius: 0;
  11524. font-size: 100%;
  11525. background-color: #f7f7f7;
  11526. }
  11527. .pretooltiparrow {
  11528. left: 0px;
  11529. margin: 0px;
  11530. top: -16px;
  11531. width: 40px;
  11532. height: 16px;
  11533. overflow: hidden;
  11534. position: absolute;
  11535. }
  11536. .pretooltiparrow:before {
  11537. background-color: #f7f7f7;
  11538. border: 1px #ababab solid;
  11539. z-index: 11;
  11540. content: "";
  11541. position: absolute;
  11542. left: 15px;
  11543. top: 10px;
  11544. width: 25px;
  11545. height: 25px;
  11546. -webkit-transform: rotate(45deg);
  11547. -moz-transform: rotate(45deg);
  11548. -ms-transform: rotate(45deg);
  11549. -o-transform: rotate(45deg);
  11550. }
  11551. ul.typeahead-list i {
  11552. margin-left: -10px;
  11553. width: 18px;
  11554. }
  11555. ul.typeahead-list {
  11556. max-height: 80vh;
  11557. overflow: auto;
  11558. }
  11559. ul.typeahead-list > li > a {
  11560. /** Firefox bug **/
  11561. /* see https://github.com/jupyter/notebook/issues/559 */
  11562. white-space: normal;
  11563. }
  11564. .cmd-palette .modal-body {
  11565. padding: 7px;
  11566. }
  11567. .cmd-palette form {
  11568. background: white;
  11569. }
  11570. .cmd-palette input {
  11571. outline: none;
  11572. }
  11573. .no-shortcut {
  11574. display: none;
  11575. }
  11576. .command-shortcut:before {
  11577. content: "(command)";
  11578. padding-right: 3px;
  11579. color: #777777;
  11580. }
  11581. .edit-shortcut:before {
  11582. content: "(edit)";
  11583. padding-right: 3px;
  11584. color: #777777;
  11585. }
  11586. #find-and-replace #replace-preview .match,
  11587. #find-and-replace #replace-preview .insert {
  11588. background-color: #BBDEFB;
  11589. border-color: #90CAF9;
  11590. border-style: solid;
  11591. border-width: 1px;
  11592. border-radius: 0px;
  11593. }
  11594. #find-and-replace #replace-preview .replace .match {
  11595. background-color: #FFCDD2;
  11596. border-color: #EF9A9A;
  11597. border-radius: 0px;
  11598. }
  11599. #find-and-replace #replace-preview .replace .insert {
  11600. background-color: #C8E6C9;
  11601. border-color: #A5D6A7;
  11602. border-radius: 0px;
  11603. }
  11604. #find-and-replace #replace-preview {
  11605. max-height: 60vh;
  11606. overflow: auto;
  11607. }
  11608. #find-and-replace #replace-preview pre {
  11609. padding: 5px 10px;
  11610. }
  11611. .terminal-app {
  11612. background: #EEE;
  11613. }
  11614. .terminal-app #header {
  11615. background: #fff;
  11616. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11617. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11618. }
  11619. .terminal-app .terminal {
  11620. width: 100%;
  11621. float: left;
  11622. font-family: monospace;
  11623. color: white;
  11624. background: black;
  11625. padding: 0.4em;
  11626. border-radius: 2px;
  11627. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  11628. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  11629. }
  11630. .terminal-app .terminal,
  11631. .terminal-app .terminal dummy-screen {
  11632. line-height: 1em;
  11633. font-size: 14px;
  11634. }
  11635. .terminal-app .terminal .xterm-rows {
  11636. padding: 10px;
  11637. }
  11638. .terminal-app .terminal-cursor {
  11639. color: black;
  11640. background: white;
  11641. }
  11642. .terminal-app #terminado-container {
  11643. margin-top: 20px;
  11644. }
  11645. /*# sourceMappingURL=style.min.css.map */
  11646. </style>
  11647. <style type="text/css">
  11648. .highlight .hll { background-color: #ffffcc }
  11649. .highlight { background: #f8f8f8; }
  11650. .highlight .c { color: #408080; font-style: italic } /* Comment */
  11651. .highlight .err { border: 1px solid #FF0000 } /* Error */
  11652. .highlight .k { color: #008000; font-weight: bold } /* Keyword */
  11653. .highlight .o { color: #666666 } /* Operator */
  11654. .highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
  11655. .highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
  11656. .highlight .cp { color: #BC7A00 } /* Comment.Preproc */
  11657. .highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
  11658. .highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
  11659. .highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
  11660. .highlight .gd { color: #A00000 } /* Generic.Deleted */
  11661. .highlight .ge { font-style: italic } /* Generic.Emph */
  11662. .highlight .gr { color: #FF0000 } /* Generic.Error */
  11663. .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
  11664. .highlight .gi { color: #00A000 } /* Generic.Inserted */
  11665. .highlight .go { color: #888888 } /* Generic.Output */
  11666. .highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
  11667. .highlight .gs { font-weight: bold } /* Generic.Strong */
  11668. .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
  11669. .highlight .gt { color: #0044DD } /* Generic.Traceback */
  11670. .highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
  11671. .highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
  11672. .highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
  11673. .highlight .kp { color: #008000 } /* Keyword.Pseudo */
  11674. .highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
  11675. .highlight .kt { color: #B00040 } /* Keyword.Type */
  11676. .highlight .m { color: #666666 } /* Literal.Number */
  11677. .highlight .s { color: #BA2121 } /* Literal.String */
  11678. .highlight .na { color: #7D9029 } /* Name.Attribute */
  11679. .highlight .nb { color: #008000 } /* Name.Builtin */
  11680. .highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
  11681. .highlight .no { color: #880000 } /* Name.Constant */
  11682. .highlight .nd { color: #AA22FF } /* Name.Decorator */
  11683. .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
  11684. .highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
  11685. .highlight .nf { color: #0000FF } /* Name.Function */
  11686. .highlight .nl { color: #A0A000 } /* Name.Label */
  11687. .highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
  11688. .highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
  11689. .highlight .nv { color: #19177C } /* Name.Variable */
  11690. .highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
  11691. .highlight .w { color: #bbbbbb } /* Text.Whitespace */
  11692. .highlight .mb { color: #666666 } /* Literal.Number.Bin */
  11693. .highlight .mf { color: #666666 } /* Literal.Number.Float */
  11694. .highlight .mh { color: #666666 } /* Literal.Number.Hex */
  11695. .highlight .mi { color: #666666 } /* Literal.Number.Integer */
  11696. .highlight .mo { color: #666666 } /* Literal.Number.Oct */
  11697. .highlight .sa { color: #BA2121 } /* Literal.String.Affix */
  11698. .highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
  11699. .highlight .sc { color: #BA2121 } /* Literal.String.Char */
  11700. .highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
  11701. .highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
  11702. .highlight .s2 { color: #BA2121 } /* Literal.String.Double */
  11703. .highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
  11704. .highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
  11705. .highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
  11706. .highlight .sx { color: #008000 } /* Literal.String.Other */
  11707. .highlight .sr { color: #BB6688 } /* Literal.String.Regex */
  11708. .highlight .s1 { color: #BA2121 } /* Literal.String.Single */
  11709. .highlight .ss { color: #19177C } /* Literal.String.Symbol */
  11710. .highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
  11711. .highlight .fm { color: #0000FF } /* Name.Function.Magic */
  11712. .highlight .vc { color: #19177C } /* Name.Variable.Class */
  11713. .highlight .vg { color: #19177C } /* Name.Variable.Global */
  11714. .highlight .vi { color: #19177C } /* Name.Variable.Instance */
  11715. .highlight .vm { color: #19177C } /* Name.Variable.Magic */
  11716. .highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
  11717. </style>
  11718. <style type="text/css">
  11719. /* Temporary definitions which will become obsolete with Notebook release 5.0 */
  11720. .ansi-black-fg { color: #3E424D; }
  11721. .ansi-black-bg { background-color: #3E424D; }
  11722. .ansi-black-intense-fg { color: #282C36; }
  11723. .ansi-black-intense-bg { background-color: #282C36; }
  11724. .ansi-red-fg { color: #E75C58; }
  11725. .ansi-red-bg { background-color: #E75C58; }
  11726. .ansi-red-intense-fg { color: #B22B31; }
  11727. .ansi-red-intense-bg { background-color: #B22B31; }
  11728. .ansi-green-fg { color: #00A250; }
  11729. .ansi-green-bg { background-color: #00A250; }
  11730. .ansi-green-intense-fg { color: #007427; }
  11731. .ansi-green-intense-bg { background-color: #007427; }
  11732. .ansi-yellow-fg { color: #DDB62B; }
  11733. .ansi-yellow-bg { background-color: #DDB62B; }
  11734. .ansi-yellow-intense-fg { color: #B27D12; }
  11735. .ansi-yellow-intense-bg { background-color: #B27D12; }
  11736. .ansi-blue-fg { color: #208FFB; }
  11737. .ansi-blue-bg { background-color: #208FFB; }
  11738. .ansi-blue-intense-fg { color: #0065CA; }
  11739. .ansi-blue-intense-bg { background-color: #0065CA; }
  11740. .ansi-magenta-fg { color: #D160C4; }
  11741. .ansi-magenta-bg { background-color: #D160C4; }
  11742. .ansi-magenta-intense-fg { color: #A03196; }
  11743. .ansi-magenta-intense-bg { background-color: #A03196; }
  11744. .ansi-cyan-fg { color: #60C6C8; }
  11745. .ansi-cyan-bg { background-color: #60C6C8; }
  11746. .ansi-cyan-intense-fg { color: #258F8F; }
  11747. .ansi-cyan-intense-bg { background-color: #258F8F; }
  11748. .ansi-white-fg { color: #C5C1B4; }
  11749. .ansi-white-bg { background-color: #C5C1B4; }
  11750. .ansi-white-intense-fg { color: #A1A6B2; }
  11751. .ansi-white-intense-bg { background-color: #A1A6B2; }
  11752. .ansi-bold { font-weight: bold; }
  11753. </style>
  11754. <style type="text/css">
  11755. /* Overrides of notebook CSS for static HTML export */
  11756. .reveal {
  11757. font-size: 160%;
  11758. }
  11759. .reveal pre {
  11760. width: inherit;
  11761. padding: 0.4em;
  11762. margin: 0px;
  11763. font-family: monospace, sans-serif;
  11764. font-size: 80%;
  11765. box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  11766. }
  11767. .reveal pre code {
  11768. padding: 0px;
  11769. }
  11770. .reveal section img {
  11771. border: 0px solid black;
  11772. box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  11773. }
  11774. .reveal i {
  11775. font-style: normal;
  11776. font-family: FontAwesome;
  11777. font-size: 2em;
  11778. }
  11779. .reveal .slides {
  11780. text-align: left;
  11781. }
  11782. .reveal.fade {
  11783. opacity: 1;
  11784. }
  11785. .reveal .progress {
  11786. position: static;
  11787. }
  11788. .reveal .controls .navigate-left,
  11789. .reveal .controls .navigate-left.enabled {
  11790. border-right-color: #727272;
  11791. }
  11792. .reveal .controls .navigate-left.enabled:hover,
  11793. .reveal .controls .navigate-left.enabled.enabled:hover {
  11794. border-right-color: #dfdfdf;
  11795. }
  11796. .reveal .controls .navigate-right,
  11797. .reveal .controls .navigate-right.enabled {
  11798. border-left-color: #727272;
  11799. }
  11800. .reveal .controls .navigate-right.enabled:hover,
  11801. .reveal .controls .navigate-right.enabled.enabled:hover {
  11802. border-left-color: #dfdfdf;
  11803. }
  11804. .reveal .controls .navigate-up,
  11805. .reveal .controls .navigate-up.enabled {
  11806. border-bottom-color: #727272;
  11807. }
  11808. .reveal .controls .navigate-up.enabled:hover,
  11809. .reveal .controls .navigate-up.enabled.enabled:hover {
  11810. border-bottom-color: #dfdfdf;
  11811. }
  11812. .reveal .controls .navigate-down,
  11813. .reveal .controls .navigate-down.enabled {
  11814. border-top-color: #727272;
  11815. }
  11816. .reveal .controls .navigate-down.enabled:hover,
  11817. .reveal .controls .navigate-down.enabled.enabled:hover {
  11818. border-top-color: #dfdfdf;
  11819. }
  11820. .reveal .progress span {
  11821. background: #727272;
  11822. }
  11823. div.input_area {
  11824. padding: 0.06em;
  11825. }
  11826. div.code_cell {
  11827. background-color: transparent;
  11828. }
  11829. div.prompt {
  11830. width: 11ex;
  11831. padding: 0.4em;
  11832. margin: 0px;
  11833. font-family: monospace, sans-serif;
  11834. font-size: 80%;
  11835. text-align: right;
  11836. }
  11837. div.output_area pre {
  11838. font-family: monospace, sans-serif;
  11839. font-size: 80%;
  11840. }
  11841. div.output_prompt {
  11842. /* 5px right shift to account for margin in parent container */
  11843. margin: 5px 5px 0 0;
  11844. }
  11845. div.text_cell.rendered .rendered_html {
  11846. /* The H1 height seems miscalculated, we are just hidding the scrollbar */
  11847. overflow-y: hidden;
  11848. }
  11849. a.anchor-link {
  11850. /* There is still an anchor, we are only hidding it */
  11851. display: none;
  11852. }
  11853. .rendered_html p {
  11854. text-align: inherit;
  11855. }
  11856. ::-webkit-scrollbar
  11857. {
  11858. width: 6px;
  11859. height: 6px;
  11860. }
  11861. ::-webkit-scrollbar *
  11862. {
  11863. background:transparent;
  11864. }
  11865. ::-webkit-scrollbar-thumb
  11866. {
  11867. background: #727272 !important;
  11868. }
  11869. </style>
  11870. <!-- Custom stylesheet, it must be in the same directory as the html file -->
  11871. <link rel="stylesheet" href="custom.css">
  11872. </head>
  11873. <body>
  11874. <div class="reveal">
  11875. <div class="slides">
  11876. <section><section>
  11877. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  11878. </div>
  11879. <div class="inner_cell">
  11880. <div class="text_cell_render border-box-sizing rendered_html">
  11881. <h1 id="Go-for-Science:-Programming-beyond-Python">Go for Science: Programming beyond Python<a class="anchor-link" href="#Go-for-Science:-Programming-beyond-Python">&#182;</a></h1>
  11882. </div>
  11883. </div>
  11884. </div>
  11885. <div class="cell border-box-sizing code_cell rendered">
  11886. <div class="input">
  11887. <div class="prompt input_prompt">In&nbsp;[1]:</div>
  11888. <div class="inner_cell">
  11889. <div class="input_area">
  11890. <div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="s2">&quot;fmt&quot;</span>
  11891. <span class="n">n</span><span class="p">,</span> <span class="n">err</span> <span class="p">:</span><span class="o">=</span> <span class="n">fmt</span><span class="o">.</span><span class="n">Println</span><span class="p">(</span><span class="s2">&quot;Hello, Gophers&quot;</span><span class="p">)</span>
  11892. </pre></div>
  11893. </div>
  11894. </div>
  11895. </div>
  11896. <div class="output_wrapper">
  11897. <div class="output">
  11898. <div class="output_area">
  11899. <div class="prompt"></div>
  11900. <div class="output_subarea output_stream output_stdout output_text">
  11901. <pre>Hello, Gophers
  11902. </pre>
  11903. </div>
  11904. </div>
  11905. </div>
  11906. </div>
  11907. </div></section></section><section><section>
  11908. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  11909. </div>
  11910. <div class="inner_cell">
  11911. <div class="text_cell_render border-box-sizing rendered_html">
  11912. <h2 id="Features">Features<a class="anchor-link" href="#Features">&#182;</a></h2><ul>
  11913. <li>Statically typed</li>
  11914. <li>Compiled</li>
  11915. <li>Quick and easy cross-compilation (Windows, Darwin, Linux, x86, ARM)</li>
  11916. <li>Garbage collection</li>
  11917. <li>Memory safe</li>
  11918. <li>Built-in concurrency</li>
  11919. <li>Fast compiler, fast runtime</li>
  11920. <li>Interoperates with C code (cgo)</li>
  11921. </ul>
  11922. <blockquote>
  11923. <pre><code>"Like C, but sane"
  11924. Achilleas Koutsou, 2018</code></pre>
  11925. </blockquote>
  11926. </div>
  11927. </div>
  11928. </div></section></section><section><section>
  11929. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  11930. </div>
  11931. <div class="inner_cell">
  11932. <div class="text_cell_render border-box-sizing rendered_html">
  11933. <h2 id="Why-we-think-it's-cool">Why we think it's <em>cool</em><a class="anchor-link" href="#Why-we-think-it's-cool">&#182;</a></h2><ul>
  11934. <li>Open source!</li>
  11935. <li>Fast growing (both community and ecosystem)</li>
  11936. <li><em>Clean</em> and <em>small</em>:<ul>
  11937. <li>Handful of keywords</li>
  11938. <li>Automatic formatting</li>
  11939. </ul>
  11940. </li>
  11941. <li>Designed for concurrency</li>
  11942. <li>Easy testing (for robust code)</li>
  11943. <li>Statically compiled binaries<ul>
  11944. <li>Makes it <strong>very</strong> easy to distribute executables to various platforms</li>
  11945. </ul>
  11946. </li>
  11947. </ul>
  11948. <p>...</p>
  11949. </div>
  11950. </div>
  11951. </div></section></section><section><section>
  11952. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  11953. </div>
  11954. <div class="inner_cell">
  11955. <div class="text_cell_render border-box-sizing rendered_html">
  11956. <h2 id="Why-we-think-it's-cool,-part-deux">Why we think it's cool, part deux<a class="anchor-link" href="#Why-we-think-it's-cool,-part-deux">&#182;</a></h2><ul>
  11957. <li>Automatic documentation generation and distribution:<ul>
  11958. <li>Function and package doc strings get automatically hosted on godoc.org</li>
  11959. </ul>
  11960. </li>
  11961. <li>Fast evolving but respects backwards compatibility</li>
  11962. <li>The compiler is seriously super fast</li>
  11963. <li>Easy and fun to learn:<ul>
  11964. <li>Go Tour quickly teaches everything you need to know to start working: <a href="https://tour.golang.org">https://tour.golang.org</a></li>
  11965. <li>Online <em>playground</em> makes it easy to test snippets and share complete examples: <a href="https://play.golang.org">https://play.golang.org</a></li>
  11966. </ul>
  11967. </li>
  11968. </ul>
  11969. <p>Most G-Node projects started after 2016 are written in Go: GIN, GIN Client, GIN DOI, GIN Indexing Service, and GIN Validator (if it's GIN, it's probably Go).</p>
  11970. </div>
  11971. </div>
  11972. </div></section></section><section><section>
  11973. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  11974. </div>
  11975. <div class="inner_cell">
  11976. <div class="text_cell_render border-box-sizing rendered_html">
  11977. <p><img src="./images/brace-style.jpg" alt="Brace Style"></p>
  11978. </div>
  11979. </div>
  11980. </div></section></section><section><section>
  11981. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  11982. </div>
  11983. <div class="inner_cell">
  11984. <div class="text_cell_render border-box-sizing rendered_html">
  11985. <h2 id="Other-people-like-it-too">Other people like it too<a class="anchor-link" href="#Other-people-like-it-too">&#182;</a></h2><p><img src="./images/most-loved-wanted-2017.png" alt="Most Loved"></p>
  11986. <p>Source: Stack Overflow developer survey, 2017 <a href="https://insights.stackoverflow.com/survey/2017#technology">https://insights.stackoverflow.com/survey/2017#technology</a></p>
  11987. </div>
  11988. </div>
  11989. </div></section></section><section><section>
  11990. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  11991. </div>
  11992. <div class="inner_cell">
  11993. <div class="text_cell_render border-box-sizing rendered_html">
  11994. <h2 id="Why-you-might-think-it's-cool">Why <em>you</em> might think it's cool<a class="anchor-link" href="#Why-you-might-think-it's-cool">&#182;</a></h2><ul>
  11995. <li>Fast and easy to learn (we went over this already)</li>
  11996. <li>Good (fast) for number crunching while still feeling like scripting</li>
  11997. <li>Concurrency for cluster analysis or multithreaded simulations</li>
  11998. <li>Easy to write, statically link, and crosscompile for all platforms (e.g., experimental setups using Raspberry Pi)</li>
  11999. <li>Scientific computing libraries with active dev communities</li>
  12000. </ul>
  12001. </div>
  12002. </div>
  12003. </div></section></section><section><section>
  12004. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  12005. </div>
  12006. <div class="inner_cell">
  12007. <div class="text_cell_render border-box-sizing rendered_html">
  12008. <h2 id="Example:-Basic-features">Example: Basic features<a class="anchor-link" href="#Example:-Basic-features">&#182;</a></h2>
  12009. </div>
  12010. </div>
  12011. </div>
  12012. <div class="cell border-box-sizing code_cell rendered">
  12013. <div class="input">
  12014. <div class="prompt input_prompt">In&nbsp;[2]:</div>
  12015. <div class="inner_cell">
  12016. <div class="input_area">
  12017. <div class=" highlight hl-ipython3"><pre><span></span><span class="o">//</span> <span class="n">C</span><span class="o">-</span><span class="n">like</span> <span class="n">structs</span>
  12018. <span class="nb">type</span> <span class="n">NewStruct</span> <span class="n">struct</span> <span class="p">{</span>
  12019. <span class="n">Prompt</span> <span class="n">string</span>
  12020. <span class="n">Number</span> <span class="nb">int</span>
  12021. <span class="p">}</span>
  12022. <span class="o">//</span> <span class="n">Can</span> <span class="n">define</span> <span class="n">methods</span> <span class="n">on</span> <span class="n">structs</span>
  12023. <span class="n">func</span> <span class="p">(</span><span class="n">ns</span> <span class="n">NewStruct</span><span class="p">)</span> <span class="n">ToString</span><span class="p">()</span> <span class="n">string</span> <span class="p">{</span>
  12024. <span class="o">//</span> <span class="n">C</span><span class="o">-</span><span class="n">like</span> <span class="nb">print</span> <span class="n">directives</span> <span class="ow">and</span> <span class="n">formatting</span>
  12025. <span class="k">return</span> <span class="n">fmt</span><span class="o">.</span><span class="n">Sprintf</span><span class="p">(</span><span class="s2">&quot;</span><span class="si">%s</span><span class="s2">: </span><span class="si">%d</span><span class="s2">&quot;</span><span class="p">,</span> <span class="n">ns</span><span class="o">.</span><span class="n">Prompt</span><span class="p">,</span> <span class="n">ns</span><span class="o">.</span><span class="n">Number</span><span class="p">)</span>
  12026. <span class="p">}</span>
  12027. </pre></div>
  12028. </div>
  12029. </div>
  12030. </div>
  12031. </div></section></section><section><section>
  12032. <div class="cell border-box-sizing code_cell rendered">
  12033. <div class="input">
  12034. <div class="prompt input_prompt">In&nbsp;[3]:</div>
  12035. <div class="inner_cell">
  12036. <div class="input_area">
  12037. <div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="s2">&quot;log&quot;</span>
  12038. <span class="o">//</span> <span class="n">Type</span> <span class="n">inference</span> <span class="k">with</span> <span class="p">:</span><span class="o">=</span>
  12039. <span class="n">number</span> <span class="p">:</span><span class="o">=</span> <span class="mi">10</span> <span class="o">*</span> <span class="mi">42</span>
  12040. <span class="n">news</span> <span class="p">:</span><span class="o">=</span> <span class="n">NewStruct</span><span class="p">{</span><span class="s2">&quot;Number&quot;</span><span class="p">,</span> <span class="n">number</span><span class="p">}</span>
  12041. <span class="n">s</span> <span class="p">:</span><span class="o">=</span> <span class="n">news</span><span class="o">.</span><span class="n">ToString</span><span class="p">()</span>
  12042. <span class="o">//</span> <span class="n">Explicit</span> <span class="ow">and</span> <span class="n">localised</span> <span class="n">error</span> <span class="n">handling</span>
  12043. <span class="n">n</span><span class="p">,</span> <span class="n">err</span> <span class="p">:</span><span class="o">=</span> <span class="n">fmt</span><span class="o">.</span><span class="n">Println</span><span class="p">(</span><span class="n">s</span><span class="p">)</span>
  12044. <span class="k">if</span> <span class="n">err</span> <span class="o">!=</span> <span class="n">nil</span> <span class="p">{</span>
  12045. <span class="n">log</span><span class="o">.</span><span class="n">Fatal</span><span class="p">(</span><span class="s2">&quot;Oh no! Print is broken&quot;</span><span class="p">)</span>
  12046. <span class="p">}</span>
  12047. </pre></div>
  12048. </div>
  12049. </div>
  12050. </div>
  12051. <div class="output_wrapper">
  12052. <div class="output">
  12053. <div class="output_area">
  12054. <div class="prompt"></div>
  12055. <div class="output_subarea output_stream output_stdout output_text">
  12056. <pre>Number: 420
  12057. </pre>
  12058. </div>
  12059. </div>
  12060. </div>
  12061. </div>
  12062. </div></section></section><section><section>
  12063. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  12064. </div>
  12065. <div class="inner_cell">
  12066. <div class="text_cell_render border-box-sizing rendered_html">
  12067. <h2 id="Example:-Concurrent-simulations-and-analysis">Example: Concurrent simulations and analysis<a class="anchor-link" href="#Example:-Concurrent-simulations-and-analysis">&#182;</a></h2>
  12068. </div>
  12069. </div>
  12070. </div></section></section><section><section>
  12071. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  12072. </div>
  12073. <div class="inner_cell">
  12074. <div class="text_cell_render border-box-sizing rendered_html">
  12075. <h2 id="Concurrency-vs.-parallelism">Concurrency vs. parallelism<a class="anchor-link" href="#Concurrency-vs.-parallelism">&#182;</a></h2><ul>
  12076. <li>Concurrency is about dealing with lots of things at once.</li>
  12077. <li>Parallelism is about doing lots of things at once.</li>
  12078. <li><p>Not the same, but related.</p>
  12079. </li>
  12080. <li><p>Concurrency is about structure, parallelism is about execution.</p>
  12081. </li>
  12082. <li><p>Concurrency provides a way to structure a solution to solve a problem that may (but not necessarily) be parallelizable.</p>
  12083. </li>
  12084. </ul>
  12085. <p>Taken from <a href="https://talks.golang.org/2012/waza.slide#8">https://talks.golang.org/2012/waza.slide#8</a>
  12086. "Concurrency is not Parallelism"</p>
  12087. </div>
  12088. </div>
  12089. </div></section></section><section><section>
  12090. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  12091. </div>
  12092. <div class="inner_cell">
  12093. <div class="text_cell_render border-box-sizing rendered_html">
  12094. <p><img src="./images/concurrent-gophers.jpg" alt="Concurrency sketch"></p>
  12095. <p>Taken from <a href="https://talks.golang.org/2012/waza.slide#19">https://talks.golang.org/2012/waza.slide#19</a></p>
  12096. </div>
  12097. </div>
  12098. </div></section></section><section><section>
  12099. <div class="cell border-box-sizing code_cell rendered">
  12100. <div class="input">
  12101. <div class="prompt input_prompt">In&nbsp;[6]:</div>
  12102. <div class="inner_cell">
  12103. <div class="input_area">
  12104. <div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="p">(</span>
  12105. <span class="s2">&quot;fmt&quot;</span>
  12106. <span class="s2">&quot;math/rand&quot;</span>
  12107. <span class="p">)</span>
  12108. <span class="n">func</span> <span class="n">RunSim</span><span class="p">(</span><span class="n">name</span> <span class="n">string</span><span class="p">,</span> <span class="n">steps</span> <span class="nb">int</span><span class="p">)</span> <span class="o">&lt;-</span><span class="n">chan</span> <span class="nb">int</span> <span class="p">{</span>
  12109. <span class="n">spikechan</span> <span class="p">:</span><span class="o">=</span> <span class="n">make</span><span class="p">(</span><span class="n">chan</span> <span class="nb">int</span><span class="p">)</span>
  12110. <span class="n">go</span> <span class="n">func</span><span class="p">()</span> <span class="p">{</span>
  12111. <span class="n">defer</span> <span class="n">close</span><span class="p">(</span><span class="n">spikechan</span><span class="p">)</span>
  12112. <span class="k">for</span> <span class="n">t</span> <span class="p">:</span><span class="o">=</span> <span class="mi">0</span><span class="p">;</span> <span class="n">t</span> <span class="o">&lt;</span> <span class="n">steps</span><span class="p">;</span> <span class="n">t</span><span class="o">++</span> <span class="p">{</span>
  12113. <span class="k">if</span> <span class="n">rand</span><span class="o">.</span><span class="n">Float32</span><span class="p">()</span> <span class="o">&gt;</span> <span class="mf">0.8</span> <span class="p">{</span>
  12114. <span class="n">spikechan</span> <span class="o">&lt;-</span> <span class="n">t</span>
  12115. <span class="p">}</span>
  12116. <span class="p">}</span>
  12117. <span class="k">return</span>
  12118. <span class="p">}()</span>
  12119. <span class="k">return</span> <span class="n">spikechan</span>
  12120. <span class="p">}</span>
  12121. </pre></div>
  12122. </div>
  12123. </div>
  12124. </div>
  12125. <div class="output_wrapper">
  12126. <div class="output">
  12127. <div class="output_area">
  12128. <div class="prompt"></div>
  12129. <div class="output_subarea output_text output_error">
  12130. <pre>
  12131. reflect.Value.Convert: value of type func(reflect.Value) cannot be converted to type func(chan int)</pre>
  12132. </div>
  12133. </div>
  12134. </div>
  12135. </div>
  12136. </div></section></section><section><section>
  12137. <div class="cell border-box-sizing code_cell rendered">
  12138. <div class="input">
  12139. <div class="prompt input_prompt">In&nbsp;[5]:</div>
  12140. <div class="inner_cell">
  12141. <div class="input_area">
  12142. <div class=" highlight hl-ipython3"><pre><span></span><span class="n">func</span> <span class="n">main</span><span class="p">()</span> <span class="p">{</span>
  12143. <span class="n">a</span> <span class="p">:</span><span class="o">=</span> <span class="n">RunSim</span><span class="p">(</span><span class="s2">&quot;A&quot;</span><span class="p">,</span> <span class="mi">100</span><span class="p">)</span>
  12144. <span class="n">b</span> <span class="p">:</span><span class="o">=</span> <span class="n">RunSim</span><span class="p">(</span><span class="s2">&quot;B&quot;</span><span class="p">,</span> <span class="mi">100</span><span class="p">)</span>
  12145. <span class="n">c</span> <span class="p">:</span><span class="o">=</span> <span class="n">RunSim</span><span class="p">(</span><span class="s2">&quot;C&quot;</span><span class="p">,</span> <span class="mi">100</span><span class="p">)</span>
  12146. <span class="k">for</span> <span class="p">{</span>
  12147. <span class="n">select</span> <span class="p">{</span>
  12148. <span class="n">case</span> <span class="n">ta</span><span class="p">,</span> <span class="n">ok</span> <span class="p">:</span><span class="o">=</span> <span class="o">&lt;-</span><span class="n">a</span><span class="p">:</span>
  12149. <span class="k">if</span> <span class="n">ok</span> <span class="p">{</span>
  12150. <span class="n">fmt</span><span class="o">.</span><span class="n">Printf</span><span class="p">(</span><span class="s2">&quot;A spiked at </span><span class="si">%d</span><span class="se">\n</span><span class="s2">&quot;</span><span class="p">,</span> <span class="n">ta</span><span class="p">)</span>
  12151. <span class="p">}</span> <span class="k">else</span> <span class="p">{</span>
  12152. <span class="n">a</span> <span class="o">=</span> <span class="n">nil</span>
  12153. <span class="p">}</span>
  12154. <span class="n">case</span> <span class="n">tb</span><span class="p">,</span> <span class="n">ok</span> <span class="p">:</span><span class="o">=</span> <span class="o">&lt;-</span><span class="n">b</span><span class="p">:</span>
  12155. <span class="k">if</span> <span class="n">ok</span> <span class="p">{</span>
  12156. <span class="n">fmt</span><span class="o">.</span><span class="n">Printf</span><span class="p">(</span><span class="s2">&quot;B spiked at </span><span class="si">%d</span><span class="se">\n</span><span class="s2">&quot;</span><span class="p">,</span> <span class="n">tb</span><span class="p">)</span>
  12157. <span class="p">}</span> <span class="k">else</span> <span class="p">{</span>
  12158. <span class="n">b</span> <span class="o">=</span> <span class="n">nil</span>
  12159. <span class="p">}</span>
  12160. <span class="n">case</span> <span class="n">tc</span><span class="p">,</span> <span class="n">ok</span> <span class="p">:</span><span class="o">=</span> <span class="o">&lt;-</span><span class="n">c</span><span class="p">:</span>
  12161. <span class="k">if</span> <span class="n">ok</span> <span class="p">{</span>
  12162. <span class="n">fmt</span><span class="o">.</span><span class="n">Printf</span><span class="p">(</span><span class="s2">&quot;C spiked at </span><span class="si">%d</span><span class="se">\n</span><span class="s2">&quot;</span><span class="p">,</span> <span class="n">tc</span><span class="p">)</span>
  12163. <span class="p">}</span> <span class="k">else</span> <span class="p">{</span>
  12164. <span class="n">c</span> <span class="o">=</span> <span class="n">nil</span>
  12165. <span class="p">}</span>
  12166. <span class="p">}</span>
  12167. <span class="k">if</span> <span class="n">a</span> <span class="o">==</span> <span class="n">nil</span> <span class="o">&amp;&amp;</span> <span class="n">b</span> <span class="o">==</span> <span class="n">nil</span> <span class="o">&amp;&amp;</span> <span class="n">c</span> <span class="o">==</span> <span class="n">nil</span> <span class="p">{</span>
  12168. <span class="k">break</span>
  12169. <span class="p">}</span>
  12170. <span class="p">}</span>
  12171. <span class="p">}</span>
  12172. </pre></div>
  12173. </div>
  12174. </div>
  12175. </div>
  12176. <div class="output_wrapper">
  12177. <div class="output">
  12178. <div class="output_area">
  12179. <div class="prompt"></div>
  12180. <div class="output_subarea output_text output_error">
  12181. <pre>
  12182. repl.go:3:10: undefined identifier: RunSim</pre>
  12183. </div>
  12184. </div>
  12185. </div>
  12186. </div>
  12187. </div></section></section><section><section>
  12188. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  12189. </div>
  12190. <div class="inner_cell">
  12191. <div class="text_cell_render border-box-sizing rendered_html">
  12192. <h2 id="Scientific-libraries-and-projects">Scientific libraries and projects<a class="anchor-link" href="#Scientific-libraries-and-projects">&#182;</a></h2><ul>
  12193. <li>GoNum: Numerical computing in Go (Go's numpy)</li>
  12194. <li>GoNum/mat64: Linear algebra for float64 matrices</li>
  12195. <li>GoNum/plot: For plotting and visualisation</li>
  12196. <li>Machine learning libraries: go-cluster, go-deep, libsvm, neural-go</li>
  12197. <li>GoBot: IoT and specialised hardware (check <a href="https://gobot.io/documentation/platforms/">https://gobot.io/documentation/platforms/</a> for a ridiculously long list of platforms and devices)</li>
  12198. <li>Jupyter kernel for Go notebooks (like this presentation)</li>
  12199. </ul>
  12200. <p>Find everything you need at <a href="https://github.com/avelino/awesome-go">https://github.com/avelino/awesome-go</a></p>
  12201. </div>
  12202. </div>
  12203. </div></section></section><section><section>
  12204. <div class="cell border-box-sizing text_cell rendered"><div class="prompt input_prompt">
  12205. </div>
  12206. <div class="inner_cell">
  12207. <div class="text_cell_render border-box-sizing rendered_html">
  12208. <h1 id="Questions-&amp;-Comments-welcome">Questions &amp; Comments welcome<a class="anchor-link" href="#Questions-&amp;-Comments-welcome">&#182;</a></h1><p>You can find this presentation at <a href="https://gin.g-node.org/G-Node/Go-CNS-talk-2018">https://gin.g-node.org/G-Node/Go-CNS-talk-2018</a></p>
  12209. </div>
  12210. </div>
  12211. </div></section></section>
  12212. </div>
  12213. </div>
  12214. <script>
  12215. require(
  12216. {
  12217. // it makes sense to wait a little bit when you are loading
  12218. // reveal from a cdn in a slow connection environment
  12219. waitSeconds: 15
  12220. },
  12221. [
  12222. "reveal.js/lib/js/head.min.js",
  12223. "reveal.js/js/reveal.js"
  12224. ],
  12225. function(head, Reveal){
  12226. // Full list of configuration options available here: https://github.com/hakimel/reveal.js#configuration
  12227. Reveal.initialize({
  12228. controls: true,
  12229. progress: true,
  12230. history: true,
  12231. transition: "slide",
  12232. // Optional libraries used to extend on reveal.js
  12233. dependencies: [
  12234. { src: "reveal.js/lib/js/classList.js",
  12235. condition: function() { return !document.body.classList; } },
  12236. { src: "reveal.js/plugin/notes/notes.js",
  12237. async: true,
  12238. condition: function() { return !!document.body.classList; } }
  12239. ]
  12240. });
  12241. var update = function(event){
  12242. if(MathJax.Hub.getAllJax(Reveal.getCurrentSlide())){
  12243. MathJax.Hub.Rerender(Reveal.getCurrentSlide());
  12244. }
  12245. };
  12246. Reveal.addEventListener('slidechanged', update);
  12247. function setScrollingSlide() {
  12248. var scroll = false
  12249. if (scroll === true) {
  12250. var h = $('.reveal').height() * 0.95;
  12251. $('section.present').find('section')
  12252. .filter(function() {
  12253. return $(this).height() > h;
  12254. })
  12255. .css('height', 'calc(95vh)')
  12256. .css('overflow-y', 'scroll')
  12257. .css('margin-top', '20px');
  12258. }
  12259. }
  12260. // check and set the scrolling slide every time the slide change
  12261. Reveal.addEventListener('slidechanged', setScrollingSlide);
  12262. }
  12263. );
  12264. </script>
  12265. </body>
  12266. </html>