Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

01-benko-EEG_read_in_example.html 351 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699
  1. <!DOCTYPE html>
  2. <html>
  3. <head><meta charset="utf-8" />
  4. <title>01-benko-read_in_example</title><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
  5. <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
  6. <style type="text/css">
  7. /*!
  8. *
  9. * Twitter Bootstrap
  10. *
  11. */
  12. /*!
  13. * Bootstrap v3.3.7 (http://getbootstrap.com)
  14. * Copyright 2011-2016 Twitter, Inc.
  15. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  16. */
  17. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  18. html {
  19. font-family: sans-serif;
  20. -ms-text-size-adjust: 100%;
  21. -webkit-text-size-adjust: 100%;
  22. }
  23. body {
  24. margin: 0;
  25. }
  26. article,
  27. aside,
  28. details,
  29. figcaption,
  30. figure,
  31. footer,
  32. header,
  33. hgroup,
  34. main,
  35. menu,
  36. nav,
  37. section,
  38. summary {
  39. display: block;
  40. }
  41. audio,
  42. canvas,
  43. progress,
  44. video {
  45. display: inline-block;
  46. vertical-align: baseline;
  47. }
  48. audio:not([controls]) {
  49. display: none;
  50. height: 0;
  51. }
  52. [hidden],
  53. template {
  54. display: none;
  55. }
  56. a {
  57. background-color: transparent;
  58. }
  59. a:active,
  60. a:hover {
  61. outline: 0;
  62. }
  63. abbr[title] {
  64. border-bottom: 1px dotted;
  65. }
  66. b,
  67. strong {
  68. font-weight: bold;
  69. }
  70. dfn {
  71. font-style: italic;
  72. }
  73. h1 {
  74. font-size: 2em;
  75. margin: 0.67em 0;
  76. }
  77. mark {
  78. background: #ff0;
  79. color: #000;
  80. }
  81. small {
  82. font-size: 80%;
  83. }
  84. sub,
  85. sup {
  86. font-size: 75%;
  87. line-height: 0;
  88. position: relative;
  89. vertical-align: baseline;
  90. }
  91. sup {
  92. top: -0.5em;
  93. }
  94. sub {
  95. bottom: -0.25em;
  96. }
  97. img {
  98. border: 0;
  99. }
  100. svg:not(:root) {
  101. overflow: hidden;
  102. }
  103. figure {
  104. margin: 1em 40px;
  105. }
  106. hr {
  107. box-sizing: content-box;
  108. height: 0;
  109. }
  110. pre {
  111. overflow: auto;
  112. }
  113. code,
  114. kbd,
  115. pre,
  116. samp {
  117. font-family: monospace, monospace;
  118. font-size: 1em;
  119. }
  120. button,
  121. input,
  122. optgroup,
  123. select,
  124. textarea {
  125. color: inherit;
  126. font: inherit;
  127. margin: 0;
  128. }
  129. button {
  130. overflow: visible;
  131. }
  132. button,
  133. select {
  134. text-transform: none;
  135. }
  136. button,
  137. html input[type="button"],
  138. input[type="reset"],
  139. input[type="submit"] {
  140. -webkit-appearance: button;
  141. cursor: pointer;
  142. }
  143. button[disabled],
  144. html input[disabled] {
  145. cursor: default;
  146. }
  147. button::-moz-focus-inner,
  148. input::-moz-focus-inner {
  149. border: 0;
  150. padding: 0;
  151. }
  152. input {
  153. line-height: normal;
  154. }
  155. input[type="checkbox"],
  156. input[type="radio"] {
  157. box-sizing: border-box;
  158. padding: 0;
  159. }
  160. input[type="number"]::-webkit-inner-spin-button,
  161. input[type="number"]::-webkit-outer-spin-button {
  162. height: auto;
  163. }
  164. input[type="search"] {
  165. -webkit-appearance: textfield;
  166. box-sizing: content-box;
  167. }
  168. input[type="search"]::-webkit-search-cancel-button,
  169. input[type="search"]::-webkit-search-decoration {
  170. -webkit-appearance: none;
  171. }
  172. fieldset {
  173. border: 1px solid #c0c0c0;
  174. margin: 0 2px;
  175. padding: 0.35em 0.625em 0.75em;
  176. }
  177. legend {
  178. border: 0;
  179. padding: 0;
  180. }
  181. textarea {
  182. overflow: auto;
  183. }
  184. optgroup {
  185. font-weight: bold;
  186. }
  187. table {
  188. border-collapse: collapse;
  189. border-spacing: 0;
  190. }
  191. td,
  192. th {
  193. padding: 0;
  194. }
  195. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  196. @media print {
  197. *,
  198. *:before,
  199. *:after {
  200. background: transparent !important;
  201. color: #000 !important;
  202. box-shadow: none !important;
  203. text-shadow: none !important;
  204. }
  205. a,
  206. a:visited {
  207. text-decoration: underline;
  208. }
  209. a[href]:after {
  210. content: " (" attr(href) ")";
  211. }
  212. abbr[title]:after {
  213. content: " (" attr(title) ")";
  214. }
  215. a[href^="#"]:after,
  216. a[href^="javascript:"]:after {
  217. content: "";
  218. }
  219. pre,
  220. blockquote {
  221. border: 1px solid #999;
  222. page-break-inside: avoid;
  223. }
  224. thead {
  225. display: table-header-group;
  226. }
  227. tr,
  228. img {
  229. page-break-inside: avoid;
  230. }
  231. img {
  232. max-width: 100% !important;
  233. }
  234. p,
  235. h2,
  236. h3 {
  237. orphans: 3;
  238. widows: 3;
  239. }
  240. h2,
  241. h3 {
  242. page-break-after: avoid;
  243. }
  244. .navbar {
  245. display: none;
  246. }
  247. .btn > .caret,
  248. .dropup > .btn > .caret {
  249. border-top-color: #000 !important;
  250. }
  251. .label {
  252. border: 1px solid #000;
  253. }
  254. .table {
  255. border-collapse: collapse !important;
  256. }
  257. .table td,
  258. .table th {
  259. background-color: #fff !important;
  260. }
  261. .table-bordered th,
  262. .table-bordered td {
  263. border: 1px solid #ddd !important;
  264. }
  265. }
  266. @font-face {
  267. font-family: 'Glyphicons Halflings';
  268. src: url('../components/bootstrap/fonts/glyphicons-halflings-regular.eot');
  269. 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');
  270. }
  271. .glyphicon {
  272. position: relative;
  273. top: 1px;
  274. display: inline-block;
  275. font-family: 'Glyphicons Halflings';
  276. font-style: normal;
  277. font-weight: normal;
  278. line-height: 1;
  279. -webkit-font-smoothing: antialiased;
  280. -moz-osx-font-smoothing: grayscale;
  281. }
  282. .glyphicon-asterisk:before {
  283. content: "\002a";
  284. }
  285. .glyphicon-plus:before {
  286. content: "\002b";
  287. }
  288. .glyphicon-euro:before,
  289. .glyphicon-eur:before {
  290. content: "\20ac";
  291. }
  292. .glyphicon-minus:before {
  293. content: "\2212";
  294. }
  295. .glyphicon-cloud:before {
  296. content: "\2601";
  297. }
  298. .glyphicon-envelope:before {
  299. content: "\2709";
  300. }
  301. .glyphicon-pencil:before {
  302. content: "\270f";
  303. }
  304. .glyphicon-glass:before {
  305. content: "\e001";
  306. }
  307. .glyphicon-music:before {
  308. content: "\e002";
  309. }
  310. .glyphicon-search:before {
  311. content: "\e003";
  312. }
  313. .glyphicon-heart:before {
  314. content: "\e005";
  315. }
  316. .glyphicon-star:before {
  317. content: "\e006";
  318. }
  319. .glyphicon-star-empty:before {
  320. content: "\e007";
  321. }
  322. .glyphicon-user:before {
  323. content: "\e008";
  324. }
  325. .glyphicon-film:before {
  326. content: "\e009";
  327. }
  328. .glyphicon-th-large:before {
  329. content: "\e010";
  330. }
  331. .glyphicon-th:before {
  332. content: "\e011";
  333. }
  334. .glyphicon-th-list:before {
  335. content: "\e012";
  336. }
  337. .glyphicon-ok:before {
  338. content: "\e013";
  339. }
  340. .glyphicon-remove:before {
  341. content: "\e014";
  342. }
  343. .glyphicon-zoom-in:before {
  344. content: "\e015";
  345. }
  346. .glyphicon-zoom-out:before {
  347. content: "\e016";
  348. }
  349. .glyphicon-off:before {
  350. content: "\e017";
  351. }
  352. .glyphicon-signal:before {
  353. content: "\e018";
  354. }
  355. .glyphicon-cog:before {
  356. content: "\e019";
  357. }
  358. .glyphicon-trash:before {
  359. content: "\e020";
  360. }
  361. .glyphicon-home:before {
  362. content: "\e021";
  363. }
  364. .glyphicon-file:before {
  365. content: "\e022";
  366. }
  367. .glyphicon-time:before {
  368. content: "\e023";
  369. }
  370. .glyphicon-road:before {
  371. content: "\e024";
  372. }
  373. .glyphicon-download-alt:before {
  374. content: "\e025";
  375. }
  376. .glyphicon-download:before {
  377. content: "\e026";
  378. }
  379. .glyphicon-upload:before {
  380. content: "\e027";
  381. }
  382. .glyphicon-inbox:before {
  383. content: "\e028";
  384. }
  385. .glyphicon-play-circle:before {
  386. content: "\e029";
  387. }
  388. .glyphicon-repeat:before {
  389. content: "\e030";
  390. }
  391. .glyphicon-refresh:before {
  392. content: "\e031";
  393. }
  394. .glyphicon-list-alt:before {
  395. content: "\e032";
  396. }
  397. .glyphicon-lock:before {
  398. content: "\e033";
  399. }
  400. .glyphicon-flag:before {
  401. content: "\e034";
  402. }
  403. .glyphicon-headphones:before {
  404. content: "\e035";
  405. }
  406. .glyphicon-volume-off:before {
  407. content: "\e036";
  408. }
  409. .glyphicon-volume-down:before {
  410. content: "\e037";
  411. }
  412. .glyphicon-volume-up:before {
  413. content: "\e038";
  414. }
  415. .glyphicon-qrcode:before {
  416. content: "\e039";
  417. }
  418. .glyphicon-barcode:before {
  419. content: "\e040";
  420. }
  421. .glyphicon-tag:before {
  422. content: "\e041";
  423. }
  424. .glyphicon-tags:before {
  425. content: "\e042";
  426. }
  427. .glyphicon-book:before {
  428. content: "\e043";
  429. }
  430. .glyphicon-bookmark:before {
  431. content: "\e044";
  432. }
  433. .glyphicon-print:before {
  434. content: "\e045";
  435. }
  436. .glyphicon-camera:before {
  437. content: "\e046";
  438. }
  439. .glyphicon-font:before {
  440. content: "\e047";
  441. }
  442. .glyphicon-bold:before {
  443. content: "\e048";
  444. }
  445. .glyphicon-italic:before {
  446. content: "\e049";
  447. }
  448. .glyphicon-text-height:before {
  449. content: "\e050";
  450. }
  451. .glyphicon-text-width:before {
  452. content: "\e051";
  453. }
  454. .glyphicon-align-left:before {
  455. content: "\e052";
  456. }
  457. .glyphicon-align-center:before {
  458. content: "\e053";
  459. }
  460. .glyphicon-align-right:before {
  461. content: "\e054";
  462. }
  463. .glyphicon-align-justify:before {
  464. content: "\e055";
  465. }
  466. .glyphicon-list:before {
  467. content: "\e056";
  468. }
  469. .glyphicon-indent-left:before {
  470. content: "\e057";
  471. }
  472. .glyphicon-indent-right:before {
  473. content: "\e058";
  474. }
  475. .glyphicon-facetime-video:before {
  476. content: "\e059";
  477. }
  478. .glyphicon-picture:before {
  479. content: "\e060";
  480. }
  481. .glyphicon-map-marker:before {
  482. content: "\e062";
  483. }
  484. .glyphicon-adjust:before {
  485. content: "\e063";
  486. }
  487. .glyphicon-tint:before {
  488. content: "\e064";
  489. }
  490. .glyphicon-edit:before {
  491. content: "\e065";
  492. }
  493. .glyphicon-share:before {
  494. content: "\e066";
  495. }
  496. .glyphicon-check:before {
  497. content: "\e067";
  498. }
  499. .glyphicon-move:before {
  500. content: "\e068";
  501. }
  502. .glyphicon-step-backward:before {
  503. content: "\e069";
  504. }
  505. .glyphicon-fast-backward:before {
  506. content: "\e070";
  507. }
  508. .glyphicon-backward:before {
  509. content: "\e071";
  510. }
  511. .glyphicon-play:before {
  512. content: "\e072";
  513. }
  514. .glyphicon-pause:before {
  515. content: "\e073";
  516. }
  517. .glyphicon-stop:before {
  518. content: "\e074";
  519. }
  520. .glyphicon-forward:before {
  521. content: "\e075";
  522. }
  523. .glyphicon-fast-forward:before {
  524. content: "\e076";
  525. }
  526. .glyphicon-step-forward:before {
  527. content: "\e077";
  528. }
  529. .glyphicon-eject:before {
  530. content: "\e078";
  531. }
  532. .glyphicon-chevron-left:before {
  533. content: "\e079";
  534. }
  535. .glyphicon-chevron-right:before {
  536. content: "\e080";
  537. }
  538. .glyphicon-plus-sign:before {
  539. content: "\e081";
  540. }
  541. .glyphicon-minus-sign:before {
  542. content: "\e082";
  543. }
  544. .glyphicon-remove-sign:before {
  545. content: "\e083";
  546. }
  547. .glyphicon-ok-sign:before {
  548. content: "\e084";
  549. }
  550. .glyphicon-question-sign:before {
  551. content: "\e085";
  552. }
  553. .glyphicon-info-sign:before {
  554. content: "\e086";
  555. }
  556. .glyphicon-screenshot:before {
  557. content: "\e087";
  558. }
  559. .glyphicon-remove-circle:before {
  560. content: "\e088";
  561. }
  562. .glyphicon-ok-circle:before {
  563. content: "\e089";
  564. }
  565. .glyphicon-ban-circle:before {
  566. content: "\e090";
  567. }
  568. .glyphicon-arrow-left:before {
  569. content: "\e091";
  570. }
  571. .glyphicon-arrow-right:before {
  572. content: "\e092";
  573. }
  574. .glyphicon-arrow-up:before {
  575. content: "\e093";
  576. }
  577. .glyphicon-arrow-down:before {
  578. content: "\e094";
  579. }
  580. .glyphicon-share-alt:before {
  581. content: "\e095";
  582. }
  583. .glyphicon-resize-full:before {
  584. content: "\e096";
  585. }
  586. .glyphicon-resize-small:before {
  587. content: "\e097";
  588. }
  589. .glyphicon-exclamation-sign:before {
  590. content: "\e101";
  591. }
  592. .glyphicon-gift:before {
  593. content: "\e102";
  594. }
  595. .glyphicon-leaf:before {
  596. content: "\e103";
  597. }
  598. .glyphicon-fire:before {
  599. content: "\e104";
  600. }
  601. .glyphicon-eye-open:before {
  602. content: "\e105";
  603. }
  604. .glyphicon-eye-close:before {
  605. content: "\e106";
  606. }
  607. .glyphicon-warning-sign:before {
  608. content: "\e107";
  609. }
  610. .glyphicon-plane:before {
  611. content: "\e108";
  612. }
  613. .glyphicon-calendar:before {
  614. content: "\e109";
  615. }
  616. .glyphicon-random:before {
  617. content: "\e110";
  618. }
  619. .glyphicon-comment:before {
  620. content: "\e111";
  621. }
  622. .glyphicon-magnet:before {
  623. content: "\e112";
  624. }
  625. .glyphicon-chevron-up:before {
  626. content: "\e113";
  627. }
  628. .glyphicon-chevron-down:before {
  629. content: "\e114";
  630. }
  631. .glyphicon-retweet:before {
  632. content: "\e115";
  633. }
  634. .glyphicon-shopping-cart:before {
  635. content: "\e116";
  636. }
  637. .glyphicon-folder-close:before {
  638. content: "\e117";
  639. }
  640. .glyphicon-folder-open:before {
  641. content: "\e118";
  642. }
  643. .glyphicon-resize-vertical:before {
  644. content: "\e119";
  645. }
  646. .glyphicon-resize-horizontal:before {
  647. content: "\e120";
  648. }
  649. .glyphicon-hdd:before {
  650. content: "\e121";
  651. }
  652. .glyphicon-bullhorn:before {
  653. content: "\e122";
  654. }
  655. .glyphicon-bell:before {
  656. content: "\e123";
  657. }
  658. .glyphicon-certificate:before {
  659. content: "\e124";
  660. }
  661. .glyphicon-thumbs-up:before {
  662. content: "\e125";
  663. }
  664. .glyphicon-thumbs-down:before {
  665. content: "\e126";
  666. }
  667. .glyphicon-hand-right:before {
  668. content: "\e127";
  669. }
  670. .glyphicon-hand-left:before {
  671. content: "\e128";
  672. }
  673. .glyphicon-hand-up:before {
  674. content: "\e129";
  675. }
  676. .glyphicon-hand-down:before {
  677. content: "\e130";
  678. }
  679. .glyphicon-circle-arrow-right:before {
  680. content: "\e131";
  681. }
  682. .glyphicon-circle-arrow-left:before {
  683. content: "\e132";
  684. }
  685. .glyphicon-circle-arrow-up:before {
  686. content: "\e133";
  687. }
  688. .glyphicon-circle-arrow-down:before {
  689. content: "\e134";
  690. }
  691. .glyphicon-globe:before {
  692. content: "\e135";
  693. }
  694. .glyphicon-wrench:before {
  695. content: "\e136";
  696. }
  697. .glyphicon-tasks:before {
  698. content: "\e137";
  699. }
  700. .glyphicon-filter:before {
  701. content: "\e138";
  702. }
  703. .glyphicon-briefcase:before {
  704. content: "\e139";
  705. }
  706. .glyphicon-fullscreen:before {
  707. content: "\e140";
  708. }
  709. .glyphicon-dashboard:before {
  710. content: "\e141";
  711. }
  712. .glyphicon-paperclip:before {
  713. content: "\e142";
  714. }
  715. .glyphicon-heart-empty:before {
  716. content: "\e143";
  717. }
  718. .glyphicon-link:before {
  719. content: "\e144";
  720. }
  721. .glyphicon-phone:before {
  722. content: "\e145";
  723. }
  724. .glyphicon-pushpin:before {
  725. content: "\e146";
  726. }
  727. .glyphicon-usd:before {
  728. content: "\e148";
  729. }
  730. .glyphicon-gbp:before {
  731. content: "\e149";
  732. }
  733. .glyphicon-sort:before {
  734. content: "\e150";
  735. }
  736. .glyphicon-sort-by-alphabet:before {
  737. content: "\e151";
  738. }
  739. .glyphicon-sort-by-alphabet-alt:before {
  740. content: "\e152";
  741. }
  742. .glyphicon-sort-by-order:before {
  743. content: "\e153";
  744. }
  745. .glyphicon-sort-by-order-alt:before {
  746. content: "\e154";
  747. }
  748. .glyphicon-sort-by-attributes:before {
  749. content: "\e155";
  750. }
  751. .glyphicon-sort-by-attributes-alt:before {
  752. content: "\e156";
  753. }
  754. .glyphicon-unchecked:before {
  755. content: "\e157";
  756. }
  757. .glyphicon-expand:before {
  758. content: "\e158";
  759. }
  760. .glyphicon-collapse-down:before {
  761. content: "\e159";
  762. }
  763. .glyphicon-collapse-up:before {
  764. content: "\e160";
  765. }
  766. .glyphicon-log-in:before {
  767. content: "\e161";
  768. }
  769. .glyphicon-flash:before {
  770. content: "\e162";
  771. }
  772. .glyphicon-log-out:before {
  773. content: "\e163";
  774. }
  775. .glyphicon-new-window:before {
  776. content: "\e164";
  777. }
  778. .glyphicon-record:before {
  779. content: "\e165";
  780. }
  781. .glyphicon-save:before {
  782. content: "\e166";
  783. }
  784. .glyphicon-open:before {
  785. content: "\e167";
  786. }
  787. .glyphicon-saved:before {
  788. content: "\e168";
  789. }
  790. .glyphicon-import:before {
  791. content: "\e169";
  792. }
  793. .glyphicon-export:before {
  794. content: "\e170";
  795. }
  796. .glyphicon-send:before {
  797. content: "\e171";
  798. }
  799. .glyphicon-floppy-disk:before {
  800. content: "\e172";
  801. }
  802. .glyphicon-floppy-saved:before {
  803. content: "\e173";
  804. }
  805. .glyphicon-floppy-remove:before {
  806. content: "\e174";
  807. }
  808. .glyphicon-floppy-save:before {
  809. content: "\e175";
  810. }
  811. .glyphicon-floppy-open:before {
  812. content: "\e176";
  813. }
  814. .glyphicon-credit-card:before {
  815. content: "\e177";
  816. }
  817. .glyphicon-transfer:before {
  818. content: "\e178";
  819. }
  820. .glyphicon-cutlery:before {
  821. content: "\e179";
  822. }
  823. .glyphicon-header:before {
  824. content: "\e180";
  825. }
  826. .glyphicon-compressed:before {
  827. content: "\e181";
  828. }
  829. .glyphicon-earphone:before {
  830. content: "\e182";
  831. }
  832. .glyphicon-phone-alt:before {
  833. content: "\e183";
  834. }
  835. .glyphicon-tower:before {
  836. content: "\e184";
  837. }
  838. .glyphicon-stats:before {
  839. content: "\e185";
  840. }
  841. .glyphicon-sd-video:before {
  842. content: "\e186";
  843. }
  844. .glyphicon-hd-video:before {
  845. content: "\e187";
  846. }
  847. .glyphicon-subtitles:before {
  848. content: "\e188";
  849. }
  850. .glyphicon-sound-stereo:before {
  851. content: "\e189";
  852. }
  853. .glyphicon-sound-dolby:before {
  854. content: "\e190";
  855. }
  856. .glyphicon-sound-5-1:before {
  857. content: "\e191";
  858. }
  859. .glyphicon-sound-6-1:before {
  860. content: "\e192";
  861. }
  862. .glyphicon-sound-7-1:before {
  863. content: "\e193";
  864. }
  865. .glyphicon-copyright-mark:before {
  866. content: "\e194";
  867. }
  868. .glyphicon-registration-mark:before {
  869. content: "\e195";
  870. }
  871. .glyphicon-cloud-download:before {
  872. content: "\e197";
  873. }
  874. .glyphicon-cloud-upload:before {
  875. content: "\e198";
  876. }
  877. .glyphicon-tree-conifer:before {
  878. content: "\e199";
  879. }
  880. .glyphicon-tree-deciduous:before {
  881. content: "\e200";
  882. }
  883. .glyphicon-cd:before {
  884. content: "\e201";
  885. }
  886. .glyphicon-save-file:before {
  887. content: "\e202";
  888. }
  889. .glyphicon-open-file:before {
  890. content: "\e203";
  891. }
  892. .glyphicon-level-up:before {
  893. content: "\e204";
  894. }
  895. .glyphicon-copy:before {
  896. content: "\e205";
  897. }
  898. .glyphicon-paste:before {
  899. content: "\e206";
  900. }
  901. .glyphicon-alert:before {
  902. content: "\e209";
  903. }
  904. .glyphicon-equalizer:before {
  905. content: "\e210";
  906. }
  907. .glyphicon-king:before {
  908. content: "\e211";
  909. }
  910. .glyphicon-queen:before {
  911. content: "\e212";
  912. }
  913. .glyphicon-pawn:before {
  914. content: "\e213";
  915. }
  916. .glyphicon-bishop:before {
  917. content: "\e214";
  918. }
  919. .glyphicon-knight:before {
  920. content: "\e215";
  921. }
  922. .glyphicon-baby-formula:before {
  923. content: "\e216";
  924. }
  925. .glyphicon-tent:before {
  926. content: "\26fa";
  927. }
  928. .glyphicon-blackboard:before {
  929. content: "\e218";
  930. }
  931. .glyphicon-bed:before {
  932. content: "\e219";
  933. }
  934. .glyphicon-apple:before {
  935. content: "\f8ff";
  936. }
  937. .glyphicon-erase:before {
  938. content: "\e221";
  939. }
  940. .glyphicon-hourglass:before {
  941. content: "\231b";
  942. }
  943. .glyphicon-lamp:before {
  944. content: "\e223";
  945. }
  946. .glyphicon-duplicate:before {
  947. content: "\e224";
  948. }
  949. .glyphicon-piggy-bank:before {
  950. content: "\e225";
  951. }
  952. .glyphicon-scissors:before {
  953. content: "\e226";
  954. }
  955. .glyphicon-bitcoin:before {
  956. content: "\e227";
  957. }
  958. .glyphicon-btc:before {
  959. content: "\e227";
  960. }
  961. .glyphicon-xbt:before {
  962. content: "\e227";
  963. }
  964. .glyphicon-yen:before {
  965. content: "\00a5";
  966. }
  967. .glyphicon-jpy:before {
  968. content: "\00a5";
  969. }
  970. .glyphicon-ruble:before {
  971. content: "\20bd";
  972. }
  973. .glyphicon-rub:before {
  974. content: "\20bd";
  975. }
  976. .glyphicon-scale:before {
  977. content: "\e230";
  978. }
  979. .glyphicon-ice-lolly:before {
  980. content: "\e231";
  981. }
  982. .glyphicon-ice-lolly-tasted:before {
  983. content: "\e232";
  984. }
  985. .glyphicon-education:before {
  986. content: "\e233";
  987. }
  988. .glyphicon-option-horizontal:before {
  989. content: "\e234";
  990. }
  991. .glyphicon-option-vertical:before {
  992. content: "\e235";
  993. }
  994. .glyphicon-menu-hamburger:before {
  995. content: "\e236";
  996. }
  997. .glyphicon-modal-window:before {
  998. content: "\e237";
  999. }
  1000. .glyphicon-oil:before {
  1001. content: "\e238";
  1002. }
  1003. .glyphicon-grain:before {
  1004. content: "\e239";
  1005. }
  1006. .glyphicon-sunglasses:before {
  1007. content: "\e240";
  1008. }
  1009. .glyphicon-text-size:before {
  1010. content: "\e241";
  1011. }
  1012. .glyphicon-text-color:before {
  1013. content: "\e242";
  1014. }
  1015. .glyphicon-text-background:before {
  1016. content: "\e243";
  1017. }
  1018. .glyphicon-object-align-top:before {
  1019. content: "\e244";
  1020. }
  1021. .glyphicon-object-align-bottom:before {
  1022. content: "\e245";
  1023. }
  1024. .glyphicon-object-align-horizontal:before {
  1025. content: "\e246";
  1026. }
  1027. .glyphicon-object-align-left:before {
  1028. content: "\e247";
  1029. }
  1030. .glyphicon-object-align-vertical:before {
  1031. content: "\e248";
  1032. }
  1033. .glyphicon-object-align-right:before {
  1034. content: "\e249";
  1035. }
  1036. .glyphicon-triangle-right:before {
  1037. content: "\e250";
  1038. }
  1039. .glyphicon-triangle-left:before {
  1040. content: "\e251";
  1041. }
  1042. .glyphicon-triangle-bottom:before {
  1043. content: "\e252";
  1044. }
  1045. .glyphicon-triangle-top:before {
  1046. content: "\e253";
  1047. }
  1048. .glyphicon-console:before {
  1049. content: "\e254";
  1050. }
  1051. .glyphicon-superscript:before {
  1052. content: "\e255";
  1053. }
  1054. .glyphicon-subscript:before {
  1055. content: "\e256";
  1056. }
  1057. .glyphicon-menu-left:before {
  1058. content: "\e257";
  1059. }
  1060. .glyphicon-menu-right:before {
  1061. content: "\e258";
  1062. }
  1063. .glyphicon-menu-down:before {
  1064. content: "\e259";
  1065. }
  1066. .glyphicon-menu-up:before {
  1067. content: "\e260";
  1068. }
  1069. * {
  1070. -webkit-box-sizing: border-box;
  1071. -moz-box-sizing: border-box;
  1072. box-sizing: border-box;
  1073. }
  1074. *:before,
  1075. *:after {
  1076. -webkit-box-sizing: border-box;
  1077. -moz-box-sizing: border-box;
  1078. box-sizing: border-box;
  1079. }
  1080. html {
  1081. font-size: 10px;
  1082. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1083. }
  1084. body {
  1085. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  1086. font-size: 13px;
  1087. line-height: 1.42857143;
  1088. color: #000;
  1089. background-color: #fff;
  1090. }
  1091. input,
  1092. button,
  1093. select,
  1094. textarea {
  1095. font-family: inherit;
  1096. font-size: inherit;
  1097. line-height: inherit;
  1098. }
  1099. a {
  1100. color: #337ab7;
  1101. text-decoration: none;
  1102. }
  1103. a:hover,
  1104. a:focus {
  1105. color: #23527c;
  1106. text-decoration: underline;
  1107. }
  1108. a:focus {
  1109. outline: 5px auto -webkit-focus-ring-color;
  1110. outline-offset: -2px;
  1111. }
  1112. figure {
  1113. margin: 0;
  1114. }
  1115. img {
  1116. vertical-align: middle;
  1117. }
  1118. .img-responsive,
  1119. .thumbnail > img,
  1120. .thumbnail a > img,
  1121. .carousel-inner > .item > img,
  1122. .carousel-inner > .item > a > img {
  1123. display: block;
  1124. max-width: 100%;
  1125. height: auto;
  1126. }
  1127. .img-rounded {
  1128. border-radius: 3px;
  1129. }
  1130. .img-thumbnail {
  1131. padding: 4px;
  1132. line-height: 1.42857143;
  1133. background-color: #fff;
  1134. border: 1px solid #ddd;
  1135. border-radius: 2px;
  1136. -webkit-transition: all 0.2s ease-in-out;
  1137. -o-transition: all 0.2s ease-in-out;
  1138. transition: all 0.2s ease-in-out;
  1139. display: inline-block;
  1140. max-width: 100%;
  1141. height: auto;
  1142. }
  1143. .img-circle {
  1144. border-radius: 50%;
  1145. }
  1146. hr {
  1147. margin-top: 18px;
  1148. margin-bottom: 18px;
  1149. border: 0;
  1150. border-top: 1px solid #eeeeee;
  1151. }
  1152. .sr-only {
  1153. position: absolute;
  1154. width: 1px;
  1155. height: 1px;
  1156. margin: -1px;
  1157. padding: 0;
  1158. overflow: hidden;
  1159. clip: rect(0, 0, 0, 0);
  1160. border: 0;
  1161. }
  1162. .sr-only-focusable:active,
  1163. .sr-only-focusable:focus {
  1164. position: static;
  1165. width: auto;
  1166. height: auto;
  1167. margin: 0;
  1168. overflow: visible;
  1169. clip: auto;
  1170. }
  1171. [role="button"] {
  1172. cursor: pointer;
  1173. }
  1174. h1,
  1175. h2,
  1176. h3,
  1177. h4,
  1178. h5,
  1179. h6,
  1180. .h1,
  1181. .h2,
  1182. .h3,
  1183. .h4,
  1184. .h5,
  1185. .h6 {
  1186. font-family: inherit;
  1187. font-weight: 500;
  1188. line-height: 1.1;
  1189. color: inherit;
  1190. }
  1191. h1 small,
  1192. h2 small,
  1193. h3 small,
  1194. h4 small,
  1195. h5 small,
  1196. h6 small,
  1197. .h1 small,
  1198. .h2 small,
  1199. .h3 small,
  1200. .h4 small,
  1201. .h5 small,
  1202. .h6 small,
  1203. h1 .small,
  1204. h2 .small,
  1205. h3 .small,
  1206. h4 .small,
  1207. h5 .small,
  1208. h6 .small,
  1209. .h1 .small,
  1210. .h2 .small,
  1211. .h3 .small,
  1212. .h4 .small,
  1213. .h5 .small,
  1214. .h6 .small {
  1215. font-weight: normal;
  1216. line-height: 1;
  1217. color: #777777;
  1218. }
  1219. h1,
  1220. .h1,
  1221. h2,
  1222. .h2,
  1223. h3,
  1224. .h3 {
  1225. margin-top: 18px;
  1226. margin-bottom: 9px;
  1227. }
  1228. h1 small,
  1229. .h1 small,
  1230. h2 small,
  1231. .h2 small,
  1232. h3 small,
  1233. .h3 small,
  1234. h1 .small,
  1235. .h1 .small,
  1236. h2 .small,
  1237. .h2 .small,
  1238. h3 .small,
  1239. .h3 .small {
  1240. font-size: 65%;
  1241. }
  1242. h4,
  1243. .h4,
  1244. h5,
  1245. .h5,
  1246. h6,
  1247. .h6 {
  1248. margin-top: 9px;
  1249. margin-bottom: 9px;
  1250. }
  1251. h4 small,
  1252. .h4 small,
  1253. h5 small,
  1254. .h5 small,
  1255. h6 small,
  1256. .h6 small,
  1257. h4 .small,
  1258. .h4 .small,
  1259. h5 .small,
  1260. .h5 .small,
  1261. h6 .small,
  1262. .h6 .small {
  1263. font-size: 75%;
  1264. }
  1265. h1,
  1266. .h1 {
  1267. font-size: 33px;
  1268. }
  1269. h2,
  1270. .h2 {
  1271. font-size: 27px;
  1272. }
  1273. h3,
  1274. .h3 {
  1275. font-size: 23px;
  1276. }
  1277. h4,
  1278. .h4 {
  1279. font-size: 17px;
  1280. }
  1281. h5,
  1282. .h5 {
  1283. font-size: 13px;
  1284. }
  1285. h6,
  1286. .h6 {
  1287. font-size: 12px;
  1288. }
  1289. p {
  1290. margin: 0 0 9px;
  1291. }
  1292. .lead {
  1293. margin-bottom: 18px;
  1294. font-size: 14px;
  1295. font-weight: 300;
  1296. line-height: 1.4;
  1297. }
  1298. @media (min-width: 768px) {
  1299. .lead {
  1300. font-size: 19.5px;
  1301. }
  1302. }
  1303. small,
  1304. .small {
  1305. font-size: 92%;
  1306. }
  1307. mark,
  1308. .mark {
  1309. background-color: #fcf8e3;
  1310. padding: .2em;
  1311. }
  1312. .text-left {
  1313. text-align: left;
  1314. }
  1315. .text-right {
  1316. text-align: right;
  1317. }
  1318. .text-center {
  1319. text-align: center;
  1320. }
  1321. .text-justify {
  1322. text-align: justify;
  1323. }
  1324. .text-nowrap {
  1325. white-space: nowrap;
  1326. }
  1327. .text-lowercase {
  1328. text-transform: lowercase;
  1329. }
  1330. .text-uppercase {
  1331. text-transform: uppercase;
  1332. }
  1333. .text-capitalize {
  1334. text-transform: capitalize;
  1335. }
  1336. .text-muted {
  1337. color: #777777;
  1338. }
  1339. .text-primary {
  1340. color: #337ab7;
  1341. }
  1342. a.text-primary:hover,
  1343. a.text-primary:focus {
  1344. color: #286090;
  1345. }
  1346. .text-success {
  1347. color: #3c763d;
  1348. }
  1349. a.text-success:hover,
  1350. a.text-success:focus {
  1351. color: #2b542c;
  1352. }
  1353. .text-info {
  1354. color: #31708f;
  1355. }
  1356. a.text-info:hover,
  1357. a.text-info:focus {
  1358. color: #245269;
  1359. }
  1360. .text-warning {
  1361. color: #8a6d3b;
  1362. }
  1363. a.text-warning:hover,
  1364. a.text-warning:focus {
  1365. color: #66512c;
  1366. }
  1367. .text-danger {
  1368. color: #a94442;
  1369. }
  1370. a.text-danger:hover,
  1371. a.text-danger:focus {
  1372. color: #843534;
  1373. }
  1374. .bg-primary {
  1375. color: #fff;
  1376. background-color: #337ab7;
  1377. }
  1378. a.bg-primary:hover,
  1379. a.bg-primary:focus {
  1380. background-color: #286090;
  1381. }
  1382. .bg-success {
  1383. background-color: #dff0d8;
  1384. }
  1385. a.bg-success:hover,
  1386. a.bg-success:focus {
  1387. background-color: #c1e2b3;
  1388. }
  1389. .bg-info {
  1390. background-color: #d9edf7;
  1391. }
  1392. a.bg-info:hover,
  1393. a.bg-info:focus {
  1394. background-color: #afd9ee;
  1395. }
  1396. .bg-warning {
  1397. background-color: #fcf8e3;
  1398. }
  1399. a.bg-warning:hover,
  1400. a.bg-warning:focus {
  1401. background-color: #f7ecb5;
  1402. }
  1403. .bg-danger {
  1404. background-color: #f2dede;
  1405. }
  1406. a.bg-danger:hover,
  1407. a.bg-danger:focus {
  1408. background-color: #e4b9b9;
  1409. }
  1410. .page-header {
  1411. padding-bottom: 8px;
  1412. margin: 36px 0 18px;
  1413. border-bottom: 1px solid #eeeeee;
  1414. }
  1415. ul,
  1416. ol {
  1417. margin-top: 0;
  1418. margin-bottom: 9px;
  1419. }
  1420. ul ul,
  1421. ol ul,
  1422. ul ol,
  1423. ol ol {
  1424. margin-bottom: 0;
  1425. }
  1426. .list-unstyled {
  1427. padding-left: 0;
  1428. list-style: none;
  1429. }
  1430. .list-inline {
  1431. padding-left: 0;
  1432. list-style: none;
  1433. margin-left: -5px;
  1434. }
  1435. .list-inline > li {
  1436. display: inline-block;
  1437. padding-left: 5px;
  1438. padding-right: 5px;
  1439. }
  1440. dl {
  1441. margin-top: 0;
  1442. margin-bottom: 18px;
  1443. }
  1444. dt,
  1445. dd {
  1446. line-height: 1.42857143;
  1447. }
  1448. dt {
  1449. font-weight: bold;
  1450. }
  1451. dd {
  1452. margin-left: 0;
  1453. }
  1454. @media (min-width: 541px) {
  1455. .dl-horizontal dt {
  1456. float: left;
  1457. width: 160px;
  1458. clear: left;
  1459. text-align: right;
  1460. overflow: hidden;
  1461. text-overflow: ellipsis;
  1462. white-space: nowrap;
  1463. }
  1464. .dl-horizontal dd {
  1465. margin-left: 180px;
  1466. }
  1467. }
  1468. abbr[title],
  1469. abbr[data-original-title] {
  1470. cursor: help;
  1471. border-bottom: 1px dotted #777777;
  1472. }
  1473. .initialism {
  1474. font-size: 90%;
  1475. text-transform: uppercase;
  1476. }
  1477. blockquote {
  1478. padding: 9px 18px;
  1479. margin: 0 0 18px;
  1480. font-size: inherit;
  1481. border-left: 5px solid #eeeeee;
  1482. }
  1483. blockquote p:last-child,
  1484. blockquote ul:last-child,
  1485. blockquote ol:last-child {
  1486. margin-bottom: 0;
  1487. }
  1488. blockquote footer,
  1489. blockquote small,
  1490. blockquote .small {
  1491. display: block;
  1492. font-size: 80%;
  1493. line-height: 1.42857143;
  1494. color: #777777;
  1495. }
  1496. blockquote footer:before,
  1497. blockquote small:before,
  1498. blockquote .small:before {
  1499. content: '\2014 \00A0';
  1500. }
  1501. .blockquote-reverse,
  1502. blockquote.pull-right {
  1503. padding-right: 15px;
  1504. padding-left: 0;
  1505. border-right: 5px solid #eeeeee;
  1506. border-left: 0;
  1507. text-align: right;
  1508. }
  1509. .blockquote-reverse footer:before,
  1510. blockquote.pull-right footer:before,
  1511. .blockquote-reverse small:before,
  1512. blockquote.pull-right small:before,
  1513. .blockquote-reverse .small:before,
  1514. blockquote.pull-right .small:before {
  1515. content: '';
  1516. }
  1517. .blockquote-reverse footer:after,
  1518. blockquote.pull-right footer:after,
  1519. .blockquote-reverse small:after,
  1520. blockquote.pull-right small:after,
  1521. .blockquote-reverse .small:after,
  1522. blockquote.pull-right .small:after {
  1523. content: '\00A0 \2014';
  1524. }
  1525. address {
  1526. margin-bottom: 18px;
  1527. font-style: normal;
  1528. line-height: 1.42857143;
  1529. }
  1530. code,
  1531. kbd,
  1532. pre,
  1533. samp {
  1534. font-family: monospace;
  1535. }
  1536. code {
  1537. padding: 2px 4px;
  1538. font-size: 90%;
  1539. color: #c7254e;
  1540. background-color: #f9f2f4;
  1541. border-radius: 2px;
  1542. }
  1543. kbd {
  1544. padding: 2px 4px;
  1545. font-size: 90%;
  1546. color: #888;
  1547. background-color: transparent;
  1548. border-radius: 1px;
  1549. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1550. }
  1551. kbd kbd {
  1552. padding: 0;
  1553. font-size: 100%;
  1554. font-weight: bold;
  1555. box-shadow: none;
  1556. }
  1557. pre {
  1558. display: block;
  1559. padding: 8.5px;
  1560. margin: 0 0 9px;
  1561. font-size: 12px;
  1562. line-height: 1.42857143;
  1563. word-break: break-all;
  1564. word-wrap: break-word;
  1565. color: #333333;
  1566. background-color: #f5f5f5;
  1567. border: 1px solid #ccc;
  1568. border-radius: 2px;
  1569. }
  1570. pre code {
  1571. padding: 0;
  1572. font-size: inherit;
  1573. color: inherit;
  1574. white-space: pre-wrap;
  1575. background-color: transparent;
  1576. border-radius: 0;
  1577. }
  1578. .pre-scrollable {
  1579. max-height: 340px;
  1580. overflow-y: scroll;
  1581. }
  1582. .container {
  1583. margin-right: auto;
  1584. margin-left: auto;
  1585. padding-left: 0px;
  1586. padding-right: 0px;
  1587. }
  1588. @media (min-width: 768px) {
  1589. .container {
  1590. width: 768px;
  1591. }
  1592. }
  1593. @media (min-width: 992px) {
  1594. .container {
  1595. width: 940px;
  1596. }
  1597. }
  1598. @media (min-width: 1200px) {
  1599. .container {
  1600. width: 1140px;
  1601. }
  1602. }
  1603. .container-fluid {
  1604. margin-right: auto;
  1605. margin-left: auto;
  1606. padding-left: 0px;
  1607. padding-right: 0px;
  1608. }
  1609. .row {
  1610. margin-left: 0px;
  1611. margin-right: 0px;
  1612. }
  1613. .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 {
  1614. position: relative;
  1615. min-height: 1px;
  1616. padding-left: 0px;
  1617. padding-right: 0px;
  1618. }
  1619. .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 {
  1620. float: left;
  1621. }
  1622. .col-xs-12 {
  1623. width: 100%;
  1624. }
  1625. .col-xs-11 {
  1626. width: 91.66666667%;
  1627. }
  1628. .col-xs-10 {
  1629. width: 83.33333333%;
  1630. }
  1631. .col-xs-9 {
  1632. width: 75%;
  1633. }
  1634. .col-xs-8 {
  1635. width: 66.66666667%;
  1636. }
  1637. .col-xs-7 {
  1638. width: 58.33333333%;
  1639. }
  1640. .col-xs-6 {
  1641. width: 50%;
  1642. }
  1643. .col-xs-5 {
  1644. width: 41.66666667%;
  1645. }
  1646. .col-xs-4 {
  1647. width: 33.33333333%;
  1648. }
  1649. .col-xs-3 {
  1650. width: 25%;
  1651. }
  1652. .col-xs-2 {
  1653. width: 16.66666667%;
  1654. }
  1655. .col-xs-1 {
  1656. width: 8.33333333%;
  1657. }
  1658. .col-xs-pull-12 {
  1659. right: 100%;
  1660. }
  1661. .col-xs-pull-11 {
  1662. right: 91.66666667%;
  1663. }
  1664. .col-xs-pull-10 {
  1665. right: 83.33333333%;
  1666. }
  1667. .col-xs-pull-9 {
  1668. right: 75%;
  1669. }
  1670. .col-xs-pull-8 {
  1671. right: 66.66666667%;
  1672. }
  1673. .col-xs-pull-7 {
  1674. right: 58.33333333%;
  1675. }
  1676. .col-xs-pull-6 {
  1677. right: 50%;
  1678. }
  1679. .col-xs-pull-5 {
  1680. right: 41.66666667%;
  1681. }
  1682. .col-xs-pull-4 {
  1683. right: 33.33333333%;
  1684. }
  1685. .col-xs-pull-3 {
  1686. right: 25%;
  1687. }
  1688. .col-xs-pull-2 {
  1689. right: 16.66666667%;
  1690. }
  1691. .col-xs-pull-1 {
  1692. right: 8.33333333%;
  1693. }
  1694. .col-xs-pull-0 {
  1695. right: auto;
  1696. }
  1697. .col-xs-push-12 {
  1698. left: 100%;
  1699. }
  1700. .col-xs-push-11 {
  1701. left: 91.66666667%;
  1702. }
  1703. .col-xs-push-10 {
  1704. left: 83.33333333%;
  1705. }
  1706. .col-xs-push-9 {
  1707. left: 75%;
  1708. }
  1709. .col-xs-push-8 {
  1710. left: 66.66666667%;
  1711. }
  1712. .col-xs-push-7 {
  1713. left: 58.33333333%;
  1714. }
  1715. .col-xs-push-6 {
  1716. left: 50%;
  1717. }
  1718. .col-xs-push-5 {
  1719. left: 41.66666667%;
  1720. }
  1721. .col-xs-push-4 {
  1722. left: 33.33333333%;
  1723. }
  1724. .col-xs-push-3 {
  1725. left: 25%;
  1726. }
  1727. .col-xs-push-2 {
  1728. left: 16.66666667%;
  1729. }
  1730. .col-xs-push-1 {
  1731. left: 8.33333333%;
  1732. }
  1733. .col-xs-push-0 {
  1734. left: auto;
  1735. }
  1736. .col-xs-offset-12 {
  1737. margin-left: 100%;
  1738. }
  1739. .col-xs-offset-11 {
  1740. margin-left: 91.66666667%;
  1741. }
  1742. .col-xs-offset-10 {
  1743. margin-left: 83.33333333%;
  1744. }
  1745. .col-xs-offset-9 {
  1746. margin-left: 75%;
  1747. }
  1748. .col-xs-offset-8 {
  1749. margin-left: 66.66666667%;
  1750. }
  1751. .col-xs-offset-7 {
  1752. margin-left: 58.33333333%;
  1753. }
  1754. .col-xs-offset-6 {
  1755. margin-left: 50%;
  1756. }
  1757. .col-xs-offset-5 {
  1758. margin-left: 41.66666667%;
  1759. }
  1760. .col-xs-offset-4 {
  1761. margin-left: 33.33333333%;
  1762. }
  1763. .col-xs-offset-3 {
  1764. margin-left: 25%;
  1765. }
  1766. .col-xs-offset-2 {
  1767. margin-left: 16.66666667%;
  1768. }
  1769. .col-xs-offset-1 {
  1770. margin-left: 8.33333333%;
  1771. }
  1772. .col-xs-offset-0 {
  1773. margin-left: 0%;
  1774. }
  1775. @media (min-width: 768px) {
  1776. .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 {
  1777. float: left;
  1778. }
  1779. .col-sm-12 {
  1780. width: 100%;
  1781. }
  1782. .col-sm-11 {
  1783. width: 91.66666667%;
  1784. }
  1785. .col-sm-10 {
  1786. width: 83.33333333%;
  1787. }
  1788. .col-sm-9 {
  1789. width: 75%;
  1790. }
  1791. .col-sm-8 {
  1792. width: 66.66666667%;
  1793. }
  1794. .col-sm-7 {
  1795. width: 58.33333333%;
  1796. }
  1797. .col-sm-6 {
  1798. width: 50%;
  1799. }
  1800. .col-sm-5 {
  1801. width: 41.66666667%;
  1802. }
  1803. .col-sm-4 {
  1804. width: 33.33333333%;
  1805. }
  1806. .col-sm-3 {
  1807. width: 25%;
  1808. }
  1809. .col-sm-2 {
  1810. width: 16.66666667%;
  1811. }
  1812. .col-sm-1 {
  1813. width: 8.33333333%;
  1814. }
  1815. .col-sm-pull-12 {
  1816. right: 100%;
  1817. }
  1818. .col-sm-pull-11 {
  1819. right: 91.66666667%;
  1820. }
  1821. .col-sm-pull-10 {
  1822. right: 83.33333333%;
  1823. }
  1824. .col-sm-pull-9 {
  1825. right: 75%;
  1826. }
  1827. .col-sm-pull-8 {
  1828. right: 66.66666667%;
  1829. }
  1830. .col-sm-pull-7 {
  1831. right: 58.33333333%;
  1832. }
  1833. .col-sm-pull-6 {
  1834. right: 50%;
  1835. }
  1836. .col-sm-pull-5 {
  1837. right: 41.66666667%;
  1838. }
  1839. .col-sm-pull-4 {
  1840. right: 33.33333333%;
  1841. }
  1842. .col-sm-pull-3 {
  1843. right: 25%;
  1844. }
  1845. .col-sm-pull-2 {
  1846. right: 16.66666667%;
  1847. }
  1848. .col-sm-pull-1 {
  1849. right: 8.33333333%;
  1850. }
  1851. .col-sm-pull-0 {
  1852. right: auto;
  1853. }
  1854. .col-sm-push-12 {
  1855. left: 100%;
  1856. }
  1857. .col-sm-push-11 {
  1858. left: 91.66666667%;
  1859. }
  1860. .col-sm-push-10 {
  1861. left: 83.33333333%;
  1862. }
  1863. .col-sm-push-9 {
  1864. left: 75%;
  1865. }
  1866. .col-sm-push-8 {
  1867. left: 66.66666667%;
  1868. }
  1869. .col-sm-push-7 {
  1870. left: 58.33333333%;
  1871. }
  1872. .col-sm-push-6 {
  1873. left: 50%;
  1874. }
  1875. .col-sm-push-5 {
  1876. left: 41.66666667%;
  1877. }
  1878. .col-sm-push-4 {
  1879. left: 33.33333333%;
  1880. }
  1881. .col-sm-push-3 {
  1882. left: 25%;
  1883. }
  1884. .col-sm-push-2 {
  1885. left: 16.66666667%;
  1886. }
  1887. .col-sm-push-1 {
  1888. left: 8.33333333%;
  1889. }
  1890. .col-sm-push-0 {
  1891. left: auto;
  1892. }
  1893. .col-sm-offset-12 {
  1894. margin-left: 100%;
  1895. }
  1896. .col-sm-offset-11 {
  1897. margin-left: 91.66666667%;
  1898. }
  1899. .col-sm-offset-10 {
  1900. margin-left: 83.33333333%;
  1901. }
  1902. .col-sm-offset-9 {
  1903. margin-left: 75%;
  1904. }
  1905. .col-sm-offset-8 {
  1906. margin-left: 66.66666667%;
  1907. }
  1908. .col-sm-offset-7 {
  1909. margin-left: 58.33333333%;
  1910. }
  1911. .col-sm-offset-6 {
  1912. margin-left: 50%;
  1913. }
  1914. .col-sm-offset-5 {
  1915. margin-left: 41.66666667%;
  1916. }
  1917. .col-sm-offset-4 {
  1918. margin-left: 33.33333333%;
  1919. }
  1920. .col-sm-offset-3 {
  1921. margin-left: 25%;
  1922. }
  1923. .col-sm-offset-2 {
  1924. margin-left: 16.66666667%;
  1925. }
  1926. .col-sm-offset-1 {
  1927. margin-left: 8.33333333%;
  1928. }
  1929. .col-sm-offset-0 {
  1930. margin-left: 0%;
  1931. }
  1932. }
  1933. @media (min-width: 992px) {
  1934. .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 {
  1935. float: left;
  1936. }
  1937. .col-md-12 {
  1938. width: 100%;
  1939. }
  1940. .col-md-11 {
  1941. width: 91.66666667%;
  1942. }
  1943. .col-md-10 {
  1944. width: 83.33333333%;
  1945. }
  1946. .col-md-9 {
  1947. width: 75%;
  1948. }
  1949. .col-md-8 {
  1950. width: 66.66666667%;
  1951. }
  1952. .col-md-7 {
  1953. width: 58.33333333%;
  1954. }
  1955. .col-md-6 {
  1956. width: 50%;
  1957. }
  1958. .col-md-5 {
  1959. width: 41.66666667%;
  1960. }
  1961. .col-md-4 {
  1962. width: 33.33333333%;
  1963. }
  1964. .col-md-3 {
  1965. width: 25%;
  1966. }
  1967. .col-md-2 {
  1968. width: 16.66666667%;
  1969. }
  1970. .col-md-1 {
  1971. width: 8.33333333%;
  1972. }
  1973. .col-md-pull-12 {
  1974. right: 100%;
  1975. }
  1976. .col-md-pull-11 {
  1977. right: 91.66666667%;
  1978. }
  1979. .col-md-pull-10 {
  1980. right: 83.33333333%;
  1981. }
  1982. .col-md-pull-9 {
  1983. right: 75%;
  1984. }
  1985. .col-md-pull-8 {
  1986. right: 66.66666667%;
  1987. }
  1988. .col-md-pull-7 {
  1989. right: 58.33333333%;
  1990. }
  1991. .col-md-pull-6 {
  1992. right: 50%;
  1993. }
  1994. .col-md-pull-5 {
  1995. right: 41.66666667%;
  1996. }
  1997. .col-md-pull-4 {
  1998. right: 33.33333333%;
  1999. }
  2000. .col-md-pull-3 {
  2001. right: 25%;
  2002. }
  2003. .col-md-pull-2 {
  2004. right: 16.66666667%;
  2005. }
  2006. .col-md-pull-1 {
  2007. right: 8.33333333%;
  2008. }
  2009. .col-md-pull-0 {
  2010. right: auto;
  2011. }
  2012. .col-md-push-12 {
  2013. left: 100%;
  2014. }
  2015. .col-md-push-11 {
  2016. left: 91.66666667%;
  2017. }
  2018. .col-md-push-10 {
  2019. left: 83.33333333%;
  2020. }
  2021. .col-md-push-9 {
  2022. left: 75%;
  2023. }
  2024. .col-md-push-8 {
  2025. left: 66.66666667%;
  2026. }
  2027. .col-md-push-7 {
  2028. left: 58.33333333%;
  2029. }
  2030. .col-md-push-6 {
  2031. left: 50%;
  2032. }
  2033. .col-md-push-5 {
  2034. left: 41.66666667%;
  2035. }
  2036. .col-md-push-4 {
  2037. left: 33.33333333%;
  2038. }
  2039. .col-md-push-3 {
  2040. left: 25%;
  2041. }
  2042. .col-md-push-2 {
  2043. left: 16.66666667%;
  2044. }
  2045. .col-md-push-1 {
  2046. left: 8.33333333%;
  2047. }
  2048. .col-md-push-0 {
  2049. left: auto;
  2050. }
  2051. .col-md-offset-12 {
  2052. margin-left: 100%;
  2053. }
  2054. .col-md-offset-11 {
  2055. margin-left: 91.66666667%;
  2056. }
  2057. .col-md-offset-10 {
  2058. margin-left: 83.33333333%;
  2059. }
  2060. .col-md-offset-9 {
  2061. margin-left: 75%;
  2062. }
  2063. .col-md-offset-8 {
  2064. margin-left: 66.66666667%;
  2065. }
  2066. .col-md-offset-7 {
  2067. margin-left: 58.33333333%;
  2068. }
  2069. .col-md-offset-6 {
  2070. margin-left: 50%;
  2071. }
  2072. .col-md-offset-5 {
  2073. margin-left: 41.66666667%;
  2074. }
  2075. .col-md-offset-4 {
  2076. margin-left: 33.33333333%;
  2077. }
  2078. .col-md-offset-3 {
  2079. margin-left: 25%;
  2080. }
  2081. .col-md-offset-2 {
  2082. margin-left: 16.66666667%;
  2083. }
  2084. .col-md-offset-1 {
  2085. margin-left: 8.33333333%;
  2086. }
  2087. .col-md-offset-0 {
  2088. margin-left: 0%;
  2089. }
  2090. }
  2091. @media (min-width: 1200px) {
  2092. .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 {
  2093. float: left;
  2094. }
  2095. .col-lg-12 {
  2096. width: 100%;
  2097. }
  2098. .col-lg-11 {
  2099. width: 91.66666667%;
  2100. }
  2101. .col-lg-10 {
  2102. width: 83.33333333%;
  2103. }
  2104. .col-lg-9 {
  2105. width: 75%;
  2106. }
  2107. .col-lg-8 {
  2108. width: 66.66666667%;
  2109. }
  2110. .col-lg-7 {
  2111. width: 58.33333333%;
  2112. }
  2113. .col-lg-6 {
  2114. width: 50%;
  2115. }
  2116. .col-lg-5 {
  2117. width: 41.66666667%;
  2118. }
  2119. .col-lg-4 {
  2120. width: 33.33333333%;
  2121. }
  2122. .col-lg-3 {
  2123. width: 25%;
  2124. }
  2125. .col-lg-2 {
  2126. width: 16.66666667%;
  2127. }
  2128. .col-lg-1 {
  2129. width: 8.33333333%;
  2130. }
  2131. .col-lg-pull-12 {
  2132. right: 100%;
  2133. }
  2134. .col-lg-pull-11 {
  2135. right: 91.66666667%;
  2136. }
  2137. .col-lg-pull-10 {
  2138. right: 83.33333333%;
  2139. }
  2140. .col-lg-pull-9 {
  2141. right: 75%;
  2142. }
  2143. .col-lg-pull-8 {
  2144. right: 66.66666667%;
  2145. }
  2146. .col-lg-pull-7 {
  2147. right: 58.33333333%;
  2148. }
  2149. .col-lg-pull-6 {
  2150. right: 50%;
  2151. }
  2152. .col-lg-pull-5 {
  2153. right: 41.66666667%;
  2154. }
  2155. .col-lg-pull-4 {
  2156. right: 33.33333333%;
  2157. }
  2158. .col-lg-pull-3 {
  2159. right: 25%;
  2160. }
  2161. .col-lg-pull-2 {
  2162. right: 16.66666667%;
  2163. }
  2164. .col-lg-pull-1 {
  2165. right: 8.33333333%;
  2166. }
  2167. .col-lg-pull-0 {
  2168. right: auto;
  2169. }
  2170. .col-lg-push-12 {
  2171. left: 100%;
  2172. }
  2173. .col-lg-push-11 {
  2174. left: 91.66666667%;
  2175. }
  2176. .col-lg-push-10 {
  2177. left: 83.33333333%;
  2178. }
  2179. .col-lg-push-9 {
  2180. left: 75%;
  2181. }
  2182. .col-lg-push-8 {
  2183. left: 66.66666667%;
  2184. }
  2185. .col-lg-push-7 {
  2186. left: 58.33333333%;
  2187. }
  2188. .col-lg-push-6 {
  2189. left: 50%;
  2190. }
  2191. .col-lg-push-5 {
  2192. left: 41.66666667%;
  2193. }
  2194. .col-lg-push-4 {
  2195. left: 33.33333333%;
  2196. }
  2197. .col-lg-push-3 {
  2198. left: 25%;
  2199. }
  2200. .col-lg-push-2 {
  2201. left: 16.66666667%;
  2202. }
  2203. .col-lg-push-1 {
  2204. left: 8.33333333%;
  2205. }
  2206. .col-lg-push-0 {
  2207. left: auto;
  2208. }
  2209. .col-lg-offset-12 {
  2210. margin-left: 100%;
  2211. }
  2212. .col-lg-offset-11 {
  2213. margin-left: 91.66666667%;
  2214. }
  2215. .col-lg-offset-10 {
  2216. margin-left: 83.33333333%;
  2217. }
  2218. .col-lg-offset-9 {
  2219. margin-left: 75%;
  2220. }
  2221. .col-lg-offset-8 {
  2222. margin-left: 66.66666667%;
  2223. }
  2224. .col-lg-offset-7 {
  2225. margin-left: 58.33333333%;
  2226. }
  2227. .col-lg-offset-6 {
  2228. margin-left: 50%;
  2229. }
  2230. .col-lg-offset-5 {
  2231. margin-left: 41.66666667%;
  2232. }
  2233. .col-lg-offset-4 {
  2234. margin-left: 33.33333333%;
  2235. }
  2236. .col-lg-offset-3 {
  2237. margin-left: 25%;
  2238. }
  2239. .col-lg-offset-2 {
  2240. margin-left: 16.66666667%;
  2241. }
  2242. .col-lg-offset-1 {
  2243. margin-left: 8.33333333%;
  2244. }
  2245. .col-lg-offset-0 {
  2246. margin-left: 0%;
  2247. }
  2248. }
  2249. table {
  2250. background-color: transparent;
  2251. }
  2252. caption {
  2253. padding-top: 8px;
  2254. padding-bottom: 8px;
  2255. color: #777777;
  2256. text-align: left;
  2257. }
  2258. th {
  2259. text-align: left;
  2260. }
  2261. .table {
  2262. width: 100%;
  2263. max-width: 100%;
  2264. margin-bottom: 18px;
  2265. }
  2266. .table > thead > tr > th,
  2267. .table > tbody > tr > th,
  2268. .table > tfoot > tr > th,
  2269. .table > thead > tr > td,
  2270. .table > tbody > tr > td,
  2271. .table > tfoot > tr > td {
  2272. padding: 8px;
  2273. line-height: 1.42857143;
  2274. vertical-align: top;
  2275. border-top: 1px solid #ddd;
  2276. }
  2277. .table > thead > tr > th {
  2278. vertical-align: bottom;
  2279. border-bottom: 2px solid #ddd;
  2280. }
  2281. .table > caption + thead > tr:first-child > th,
  2282. .table > colgroup + thead > tr:first-child > th,
  2283. .table > thead:first-child > tr:first-child > th,
  2284. .table > caption + thead > tr:first-child > td,
  2285. .table > colgroup + thead > tr:first-child > td,
  2286. .table > thead:first-child > tr:first-child > td {
  2287. border-top: 0;
  2288. }
  2289. .table > tbody + tbody {
  2290. border-top: 2px solid #ddd;
  2291. }
  2292. .table .table {
  2293. background-color: #fff;
  2294. }
  2295. .table-condensed > thead > tr > th,
  2296. .table-condensed > tbody > tr > th,
  2297. .table-condensed > tfoot > tr > th,
  2298. .table-condensed > thead > tr > td,
  2299. .table-condensed > tbody > tr > td,
  2300. .table-condensed > tfoot > tr > td {
  2301. padding: 5px;
  2302. }
  2303. .table-bordered {
  2304. border: 1px solid #ddd;
  2305. }
  2306. .table-bordered > thead > tr > th,
  2307. .table-bordered > tbody > tr > th,
  2308. .table-bordered > tfoot > tr > th,
  2309. .table-bordered > thead > tr > td,
  2310. .table-bordered > tbody > tr > td,
  2311. .table-bordered > tfoot > tr > td {
  2312. border: 1px solid #ddd;
  2313. }
  2314. .table-bordered > thead > tr > th,
  2315. .table-bordered > thead > tr > td {
  2316. border-bottom-width: 2px;
  2317. }
  2318. .table-striped > tbody > tr:nth-of-type(odd) {
  2319. background-color: #f9f9f9;
  2320. }
  2321. .table-hover > tbody > tr:hover {
  2322. background-color: #f5f5f5;
  2323. }
  2324. table col[class*="col-"] {
  2325. position: static;
  2326. float: none;
  2327. display: table-column;
  2328. }
  2329. table td[class*="col-"],
  2330. table th[class*="col-"] {
  2331. position: static;
  2332. float: none;
  2333. display: table-cell;
  2334. }
  2335. .table > thead > tr > td.active,
  2336. .table > tbody > tr > td.active,
  2337. .table > tfoot > tr > td.active,
  2338. .table > thead > tr > th.active,
  2339. .table > tbody > tr > th.active,
  2340. .table > tfoot > tr > th.active,
  2341. .table > thead > tr.active > td,
  2342. .table > tbody > tr.active > td,
  2343. .table > tfoot > tr.active > td,
  2344. .table > thead > tr.active > th,
  2345. .table > tbody > tr.active > th,
  2346. .table > tfoot > tr.active > th {
  2347. background-color: #f5f5f5;
  2348. }
  2349. .table-hover > tbody > tr > td.active:hover,
  2350. .table-hover > tbody > tr > th.active:hover,
  2351. .table-hover > tbody > tr.active:hover > td,
  2352. .table-hover > tbody > tr:hover > .active,
  2353. .table-hover > tbody > tr.active:hover > th {
  2354. background-color: #e8e8e8;
  2355. }
  2356. .table > thead > tr > td.success,
  2357. .table > tbody > tr > td.success,
  2358. .table > tfoot > tr > td.success,
  2359. .table > thead > tr > th.success,
  2360. .table > tbody > tr > th.success,
  2361. .table > tfoot > tr > th.success,
  2362. .table > thead > tr.success > td,
  2363. .table > tbody > tr.success > td,
  2364. .table > tfoot > tr.success > td,
  2365. .table > thead > tr.success > th,
  2366. .table > tbody > tr.success > th,
  2367. .table > tfoot > tr.success > th {
  2368. background-color: #dff0d8;
  2369. }
  2370. .table-hover > tbody > tr > td.success:hover,
  2371. .table-hover > tbody > tr > th.success:hover,
  2372. .table-hover > tbody > tr.success:hover > td,
  2373. .table-hover > tbody > tr:hover > .success,
  2374. .table-hover > tbody > tr.success:hover > th {
  2375. background-color: #d0e9c6;
  2376. }
  2377. .table > thead > tr > td.info,
  2378. .table > tbody > tr > td.info,
  2379. .table > tfoot > tr > td.info,
  2380. .table > thead > tr > th.info,
  2381. .table > tbody > tr > th.info,
  2382. .table > tfoot > tr > th.info,
  2383. .table > thead > tr.info > td,
  2384. .table > tbody > tr.info > td,
  2385. .table > tfoot > tr.info > td,
  2386. .table > thead > tr.info > th,
  2387. .table > tbody > tr.info > th,
  2388. .table > tfoot > tr.info > th {
  2389. background-color: #d9edf7;
  2390. }
  2391. .table-hover > tbody > tr > td.info:hover,
  2392. .table-hover > tbody > tr > th.info:hover,
  2393. .table-hover > tbody > tr.info:hover > td,
  2394. .table-hover > tbody > tr:hover > .info,
  2395. .table-hover > tbody > tr.info:hover > th {
  2396. background-color: #c4e3f3;
  2397. }
  2398. .table > thead > tr > td.warning,
  2399. .table > tbody > tr > td.warning,
  2400. .table > tfoot > tr > td.warning,
  2401. .table > thead > tr > th.warning,
  2402. .table > tbody > tr > th.warning,
  2403. .table > tfoot > tr > th.warning,
  2404. .table > thead > tr.warning > td,
  2405. .table > tbody > tr.warning > td,
  2406. .table > tfoot > tr.warning > td,
  2407. .table > thead > tr.warning > th,
  2408. .table > tbody > tr.warning > th,
  2409. .table > tfoot > tr.warning > th {
  2410. background-color: #fcf8e3;
  2411. }
  2412. .table-hover > tbody > tr > td.warning:hover,
  2413. .table-hover > tbody > tr > th.warning:hover,
  2414. .table-hover > tbody > tr.warning:hover > td,
  2415. .table-hover > tbody > tr:hover > .warning,
  2416. .table-hover > tbody > tr.warning:hover > th {
  2417. background-color: #faf2cc;
  2418. }
  2419. .table > thead > tr > td.danger,
  2420. .table > tbody > tr > td.danger,
  2421. .table > tfoot > tr > td.danger,
  2422. .table > thead > tr > th.danger,
  2423. .table > tbody > tr > th.danger,
  2424. .table > tfoot > tr > th.danger,
  2425. .table > thead > tr.danger > td,
  2426. .table > tbody > tr.danger > td,
  2427. .table > tfoot > tr.danger > td,
  2428. .table > thead > tr.danger > th,
  2429. .table > tbody > tr.danger > th,
  2430. .table > tfoot > tr.danger > th {
  2431. background-color: #f2dede;
  2432. }
  2433. .table-hover > tbody > tr > td.danger:hover,
  2434. .table-hover > tbody > tr > th.danger:hover,
  2435. .table-hover > tbody > tr.danger:hover > td,
  2436. .table-hover > tbody > tr:hover > .danger,
  2437. .table-hover > tbody > tr.danger:hover > th {
  2438. background-color: #ebcccc;
  2439. }
  2440. .table-responsive {
  2441. overflow-x: auto;
  2442. min-height: 0.01%;
  2443. }
  2444. @media screen and (max-width: 767px) {
  2445. .table-responsive {
  2446. width: 100%;
  2447. margin-bottom: 13.5px;
  2448. overflow-y: hidden;
  2449. -ms-overflow-style: -ms-autohiding-scrollbar;
  2450. border: 1px solid #ddd;
  2451. }
  2452. .table-responsive > .table {
  2453. margin-bottom: 0;
  2454. }
  2455. .table-responsive > .table > thead > tr > th,
  2456. .table-responsive > .table > tbody > tr > th,
  2457. .table-responsive > .table > tfoot > tr > th,
  2458. .table-responsive > .table > thead > tr > td,
  2459. .table-responsive > .table > tbody > tr > td,
  2460. .table-responsive > .table > tfoot > tr > td {
  2461. white-space: nowrap;
  2462. }
  2463. .table-responsive > .table-bordered {
  2464. border: 0;
  2465. }
  2466. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2467. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2468. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2469. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2470. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2471. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2472. border-left: 0;
  2473. }
  2474. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2475. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2476. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2477. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2478. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2479. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2480. border-right: 0;
  2481. }
  2482. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2483. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2484. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2485. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2486. border-bottom: 0;
  2487. }
  2488. }
  2489. fieldset {
  2490. padding: 0;
  2491. margin: 0;
  2492. border: 0;
  2493. min-width: 0;
  2494. }
  2495. legend {
  2496. display: block;
  2497. width: 100%;
  2498. padding: 0;
  2499. margin-bottom: 18px;
  2500. font-size: 19.5px;
  2501. line-height: inherit;
  2502. color: #333333;
  2503. border: 0;
  2504. border-bottom: 1px solid #e5e5e5;
  2505. }
  2506. label {
  2507. display: inline-block;
  2508. max-width: 100%;
  2509. margin-bottom: 5px;
  2510. font-weight: bold;
  2511. }
  2512. input[type="search"] {
  2513. -webkit-box-sizing: border-box;
  2514. -moz-box-sizing: border-box;
  2515. box-sizing: border-box;
  2516. }
  2517. input[type="radio"],
  2518. input[type="checkbox"] {
  2519. margin: 4px 0 0;
  2520. margin-top: 1px \9;
  2521. line-height: normal;
  2522. }
  2523. input[type="file"] {
  2524. display: block;
  2525. }
  2526. input[type="range"] {
  2527. display: block;
  2528. width: 100%;
  2529. }
  2530. select[multiple],
  2531. select[size] {
  2532. height: auto;
  2533. }
  2534. input[type="file"]:focus,
  2535. input[type="radio"]:focus,
  2536. input[type="checkbox"]:focus {
  2537. outline: 5px auto -webkit-focus-ring-color;
  2538. outline-offset: -2px;
  2539. }
  2540. output {
  2541. display: block;
  2542. padding-top: 7px;
  2543. font-size: 13px;
  2544. line-height: 1.42857143;
  2545. color: #555555;
  2546. }
  2547. .form-control {
  2548. display: block;
  2549. width: 100%;
  2550. height: 32px;
  2551. padding: 6px 12px;
  2552. font-size: 13px;
  2553. line-height: 1.42857143;
  2554. color: #555555;
  2555. background-color: #fff;
  2556. background-image: none;
  2557. border: 1px solid #ccc;
  2558. border-radius: 2px;
  2559. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2560. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2561. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2562. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2563. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2564. }
  2565. .form-control:focus {
  2566. border-color: #66afe9;
  2567. outline: 0;
  2568. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2569. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2570. }
  2571. .form-control::-moz-placeholder {
  2572. color: #999;
  2573. opacity: 1;
  2574. }
  2575. .form-control:-ms-input-placeholder {
  2576. color: #999;
  2577. }
  2578. .form-control::-webkit-input-placeholder {
  2579. color: #999;
  2580. }
  2581. .form-control::-ms-expand {
  2582. border: 0;
  2583. background-color: transparent;
  2584. }
  2585. .form-control[disabled],
  2586. .form-control[readonly],
  2587. fieldset[disabled] .form-control {
  2588. background-color: #eeeeee;
  2589. opacity: 1;
  2590. }
  2591. .form-control[disabled],
  2592. fieldset[disabled] .form-control {
  2593. cursor: not-allowed;
  2594. }
  2595. textarea.form-control {
  2596. height: auto;
  2597. }
  2598. input[type="search"] {
  2599. -webkit-appearance: none;
  2600. }
  2601. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2602. input[type="date"].form-control,
  2603. input[type="time"].form-control,
  2604. input[type="datetime-local"].form-control,
  2605. input[type="month"].form-control {
  2606. line-height: 32px;
  2607. }
  2608. input[type="date"].input-sm,
  2609. input[type="time"].input-sm,
  2610. input[type="datetime-local"].input-sm,
  2611. input[type="month"].input-sm,
  2612. .input-group-sm input[type="date"],
  2613. .input-group-sm input[type="time"],
  2614. .input-group-sm input[type="datetime-local"],
  2615. .input-group-sm input[type="month"] {
  2616. line-height: 30px;
  2617. }
  2618. input[type="date"].input-lg,
  2619. input[type="time"].input-lg,
  2620. input[type="datetime-local"].input-lg,
  2621. input[type="month"].input-lg,
  2622. .input-group-lg input[type="date"],
  2623. .input-group-lg input[type="time"],
  2624. .input-group-lg input[type="datetime-local"],
  2625. .input-group-lg input[type="month"] {
  2626. line-height: 45px;
  2627. }
  2628. }
  2629. .form-group {
  2630. margin-bottom: 15px;
  2631. }
  2632. .radio,
  2633. .checkbox {
  2634. position: relative;
  2635. display: block;
  2636. margin-top: 10px;
  2637. margin-bottom: 10px;
  2638. }
  2639. .radio label,
  2640. .checkbox label {
  2641. min-height: 18px;
  2642. padding-left: 20px;
  2643. margin-bottom: 0;
  2644. font-weight: normal;
  2645. cursor: pointer;
  2646. }
  2647. .radio input[type="radio"],
  2648. .radio-inline input[type="radio"],
  2649. .checkbox input[type="checkbox"],
  2650. .checkbox-inline input[type="checkbox"] {
  2651. position: absolute;
  2652. margin-left: -20px;
  2653. margin-top: 4px \9;
  2654. }
  2655. .radio + .radio,
  2656. .checkbox + .checkbox {
  2657. margin-top: -5px;
  2658. }
  2659. .radio-inline,
  2660. .checkbox-inline {
  2661. position: relative;
  2662. display: inline-block;
  2663. padding-left: 20px;
  2664. margin-bottom: 0;
  2665. vertical-align: middle;
  2666. font-weight: normal;
  2667. cursor: pointer;
  2668. }
  2669. .radio-inline + .radio-inline,
  2670. .checkbox-inline + .checkbox-inline {
  2671. margin-top: 0;
  2672. margin-left: 10px;
  2673. }
  2674. input[type="radio"][disabled],
  2675. input[type="checkbox"][disabled],
  2676. input[type="radio"].disabled,
  2677. input[type="checkbox"].disabled,
  2678. fieldset[disabled] input[type="radio"],
  2679. fieldset[disabled] input[type="checkbox"] {
  2680. cursor: not-allowed;
  2681. }
  2682. .radio-inline.disabled,
  2683. .checkbox-inline.disabled,
  2684. fieldset[disabled] .radio-inline,
  2685. fieldset[disabled] .checkbox-inline {
  2686. cursor: not-allowed;
  2687. }
  2688. .radio.disabled label,
  2689. .checkbox.disabled label,
  2690. fieldset[disabled] .radio label,
  2691. fieldset[disabled] .checkbox label {
  2692. cursor: not-allowed;
  2693. }
  2694. .form-control-static {
  2695. padding-top: 7px;
  2696. padding-bottom: 7px;
  2697. margin-bottom: 0;
  2698. min-height: 31px;
  2699. }
  2700. .form-control-static.input-lg,
  2701. .form-control-static.input-sm {
  2702. padding-left: 0;
  2703. padding-right: 0;
  2704. }
  2705. .input-sm {
  2706. height: 30px;
  2707. padding: 5px 10px;
  2708. font-size: 12px;
  2709. line-height: 1.5;
  2710. border-radius: 1px;
  2711. }
  2712. select.input-sm {
  2713. height: 30px;
  2714. line-height: 30px;
  2715. }
  2716. textarea.input-sm,
  2717. select[multiple].input-sm {
  2718. height: auto;
  2719. }
  2720. .form-group-sm .form-control {
  2721. height: 30px;
  2722. padding: 5px 10px;
  2723. font-size: 12px;
  2724. line-height: 1.5;
  2725. border-radius: 1px;
  2726. }
  2727. .form-group-sm select.form-control {
  2728. height: 30px;
  2729. line-height: 30px;
  2730. }
  2731. .form-group-sm textarea.form-control,
  2732. .form-group-sm select[multiple].form-control {
  2733. height: auto;
  2734. }
  2735. .form-group-sm .form-control-static {
  2736. height: 30px;
  2737. min-height: 30px;
  2738. padding: 6px 10px;
  2739. font-size: 12px;
  2740. line-height: 1.5;
  2741. }
  2742. .input-lg {
  2743. height: 45px;
  2744. padding: 10px 16px;
  2745. font-size: 17px;
  2746. line-height: 1.3333333;
  2747. border-radius: 3px;
  2748. }
  2749. select.input-lg {
  2750. height: 45px;
  2751. line-height: 45px;
  2752. }
  2753. textarea.input-lg,
  2754. select[multiple].input-lg {
  2755. height: auto;
  2756. }
  2757. .form-group-lg .form-control {
  2758. height: 45px;
  2759. padding: 10px 16px;
  2760. font-size: 17px;
  2761. line-height: 1.3333333;
  2762. border-radius: 3px;
  2763. }
  2764. .form-group-lg select.form-control {
  2765. height: 45px;
  2766. line-height: 45px;
  2767. }
  2768. .form-group-lg textarea.form-control,
  2769. .form-group-lg select[multiple].form-control {
  2770. height: auto;
  2771. }
  2772. .form-group-lg .form-control-static {
  2773. height: 45px;
  2774. min-height: 35px;
  2775. padding: 11px 16px;
  2776. font-size: 17px;
  2777. line-height: 1.3333333;
  2778. }
  2779. .has-feedback {
  2780. position: relative;
  2781. }
  2782. .has-feedback .form-control {
  2783. padding-right: 40px;
  2784. }
  2785. .form-control-feedback {
  2786. position: absolute;
  2787. top: 0;
  2788. right: 0;
  2789. z-index: 2;
  2790. display: block;
  2791. width: 32px;
  2792. height: 32px;
  2793. line-height: 32px;
  2794. text-align: center;
  2795. pointer-events: none;
  2796. }
  2797. .input-lg + .form-control-feedback,
  2798. .input-group-lg + .form-control-feedback,
  2799. .form-group-lg .form-control + .form-control-feedback {
  2800. width: 45px;
  2801. height: 45px;
  2802. line-height: 45px;
  2803. }
  2804. .input-sm + .form-control-feedback,
  2805. .input-group-sm + .form-control-feedback,
  2806. .form-group-sm .form-control + .form-control-feedback {
  2807. width: 30px;
  2808. height: 30px;
  2809. line-height: 30px;
  2810. }
  2811. .has-success .help-block,
  2812. .has-success .control-label,
  2813. .has-success .radio,
  2814. .has-success .checkbox,
  2815. .has-success .radio-inline,
  2816. .has-success .checkbox-inline,
  2817. .has-success.radio label,
  2818. .has-success.checkbox label,
  2819. .has-success.radio-inline label,
  2820. .has-success.checkbox-inline label {
  2821. color: #3c763d;
  2822. }
  2823. .has-success .form-control {
  2824. border-color: #3c763d;
  2825. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2826. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2827. }
  2828. .has-success .form-control:focus {
  2829. border-color: #2b542c;
  2830. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2831. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  2832. }
  2833. .has-success .input-group-addon {
  2834. color: #3c763d;
  2835. border-color: #3c763d;
  2836. background-color: #dff0d8;
  2837. }
  2838. .has-success .form-control-feedback {
  2839. color: #3c763d;
  2840. }
  2841. .has-warning .help-block,
  2842. .has-warning .control-label,
  2843. .has-warning .radio,
  2844. .has-warning .checkbox,
  2845. .has-warning .radio-inline,
  2846. .has-warning .checkbox-inline,
  2847. .has-warning.radio label,
  2848. .has-warning.checkbox label,
  2849. .has-warning.radio-inline label,
  2850. .has-warning.checkbox-inline label {
  2851. color: #8a6d3b;
  2852. }
  2853. .has-warning .form-control {
  2854. border-color: #8a6d3b;
  2855. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2856. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2857. }
  2858. .has-warning .form-control:focus {
  2859. border-color: #66512c;
  2860. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2861. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  2862. }
  2863. .has-warning .input-group-addon {
  2864. color: #8a6d3b;
  2865. border-color: #8a6d3b;
  2866. background-color: #fcf8e3;
  2867. }
  2868. .has-warning .form-control-feedback {
  2869. color: #8a6d3b;
  2870. }
  2871. .has-error .help-block,
  2872. .has-error .control-label,
  2873. .has-error .radio,
  2874. .has-error .checkbox,
  2875. .has-error .radio-inline,
  2876. .has-error .checkbox-inline,
  2877. .has-error.radio label,
  2878. .has-error.checkbox label,
  2879. .has-error.radio-inline label,
  2880. .has-error.checkbox-inline label {
  2881. color: #a94442;
  2882. }
  2883. .has-error .form-control {
  2884. border-color: #a94442;
  2885. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2886. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2887. }
  2888. .has-error .form-control:focus {
  2889. border-color: #843534;
  2890. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2891. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  2892. }
  2893. .has-error .input-group-addon {
  2894. color: #a94442;
  2895. border-color: #a94442;
  2896. background-color: #f2dede;
  2897. }
  2898. .has-error .form-control-feedback {
  2899. color: #a94442;
  2900. }
  2901. .has-feedback label ~ .form-control-feedback {
  2902. top: 23px;
  2903. }
  2904. .has-feedback label.sr-only ~ .form-control-feedback {
  2905. top: 0;
  2906. }
  2907. .help-block {
  2908. display: block;
  2909. margin-top: 5px;
  2910. margin-bottom: 10px;
  2911. color: #404040;
  2912. }
  2913. @media (min-width: 768px) {
  2914. .form-inline .form-group {
  2915. display: inline-block;
  2916. margin-bottom: 0;
  2917. vertical-align: middle;
  2918. }
  2919. .form-inline .form-control {
  2920. display: inline-block;
  2921. width: auto;
  2922. vertical-align: middle;
  2923. }
  2924. .form-inline .form-control-static {
  2925. display: inline-block;
  2926. }
  2927. .form-inline .input-group {
  2928. display: inline-table;
  2929. vertical-align: middle;
  2930. }
  2931. .form-inline .input-group .input-group-addon,
  2932. .form-inline .input-group .input-group-btn,
  2933. .form-inline .input-group .form-control {
  2934. width: auto;
  2935. }
  2936. .form-inline .input-group > .form-control {
  2937. width: 100%;
  2938. }
  2939. .form-inline .control-label {
  2940. margin-bottom: 0;
  2941. vertical-align: middle;
  2942. }
  2943. .form-inline .radio,
  2944. .form-inline .checkbox {
  2945. display: inline-block;
  2946. margin-top: 0;
  2947. margin-bottom: 0;
  2948. vertical-align: middle;
  2949. }
  2950. .form-inline .radio label,
  2951. .form-inline .checkbox label {
  2952. padding-left: 0;
  2953. }
  2954. .form-inline .radio input[type="radio"],
  2955. .form-inline .checkbox input[type="checkbox"] {
  2956. position: relative;
  2957. margin-left: 0;
  2958. }
  2959. .form-inline .has-feedback .form-control-feedback {
  2960. top: 0;
  2961. }
  2962. }
  2963. .form-horizontal .radio,
  2964. .form-horizontal .checkbox,
  2965. .form-horizontal .radio-inline,
  2966. .form-horizontal .checkbox-inline {
  2967. margin-top: 0;
  2968. margin-bottom: 0;
  2969. padding-top: 7px;
  2970. }
  2971. .form-horizontal .radio,
  2972. .form-horizontal .checkbox {
  2973. min-height: 25px;
  2974. }
  2975. .form-horizontal .form-group {
  2976. margin-left: 0px;
  2977. margin-right: 0px;
  2978. }
  2979. @media (min-width: 768px) {
  2980. .form-horizontal .control-label {
  2981. text-align: right;
  2982. margin-bottom: 0;
  2983. padding-top: 7px;
  2984. }
  2985. }
  2986. .form-horizontal .has-feedback .form-control-feedback {
  2987. right: 0px;
  2988. }
  2989. @media (min-width: 768px) {
  2990. .form-horizontal .form-group-lg .control-label {
  2991. padding-top: 11px;
  2992. font-size: 17px;
  2993. }
  2994. }
  2995. @media (min-width: 768px) {
  2996. .form-horizontal .form-group-sm .control-label {
  2997. padding-top: 6px;
  2998. font-size: 12px;
  2999. }
  3000. }
  3001. .btn {
  3002. display: inline-block;
  3003. margin-bottom: 0;
  3004. font-weight: normal;
  3005. text-align: center;
  3006. vertical-align: middle;
  3007. touch-action: manipulation;
  3008. cursor: pointer;
  3009. background-image: none;
  3010. border: 1px solid transparent;
  3011. white-space: nowrap;
  3012. padding: 6px 12px;
  3013. font-size: 13px;
  3014. line-height: 1.42857143;
  3015. border-radius: 2px;
  3016. -webkit-user-select: none;
  3017. -moz-user-select: none;
  3018. -ms-user-select: none;
  3019. user-select: none;
  3020. }
  3021. .btn:focus,
  3022. .btn:active:focus,
  3023. .btn.active:focus,
  3024. .btn.focus,
  3025. .btn:active.focus,
  3026. .btn.active.focus {
  3027. outline: 5px auto -webkit-focus-ring-color;
  3028. outline-offset: -2px;
  3029. }
  3030. .btn:hover,
  3031. .btn:focus,
  3032. .btn.focus {
  3033. color: #333;
  3034. text-decoration: none;
  3035. }
  3036. .btn:active,
  3037. .btn.active {
  3038. outline: 0;
  3039. background-image: none;
  3040. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3041. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3042. }
  3043. .btn.disabled,
  3044. .btn[disabled],
  3045. fieldset[disabled] .btn {
  3046. cursor: not-allowed;
  3047. opacity: 0.65;
  3048. filter: alpha(opacity=65);
  3049. -webkit-box-shadow: none;
  3050. box-shadow: none;
  3051. }
  3052. a.btn.disabled,
  3053. fieldset[disabled] a.btn {
  3054. pointer-events: none;
  3055. }
  3056. .btn-default {
  3057. color: #333;
  3058. background-color: #fff;
  3059. border-color: #ccc;
  3060. }
  3061. .btn-default:focus,
  3062. .btn-default.focus {
  3063. color: #333;
  3064. background-color: #e6e6e6;
  3065. border-color: #8c8c8c;
  3066. }
  3067. .btn-default:hover {
  3068. color: #333;
  3069. background-color: #e6e6e6;
  3070. border-color: #adadad;
  3071. }
  3072. .btn-default:active,
  3073. .btn-default.active,
  3074. .open > .dropdown-toggle.btn-default {
  3075. color: #333;
  3076. background-color: #e6e6e6;
  3077. border-color: #adadad;
  3078. }
  3079. .btn-default:active:hover,
  3080. .btn-default.active:hover,
  3081. .open > .dropdown-toggle.btn-default:hover,
  3082. .btn-default:active:focus,
  3083. .btn-default.active:focus,
  3084. .open > .dropdown-toggle.btn-default:focus,
  3085. .btn-default:active.focus,
  3086. .btn-default.active.focus,
  3087. .open > .dropdown-toggle.btn-default.focus {
  3088. color: #333;
  3089. background-color: #d4d4d4;
  3090. border-color: #8c8c8c;
  3091. }
  3092. .btn-default:active,
  3093. .btn-default.active,
  3094. .open > .dropdown-toggle.btn-default {
  3095. background-image: none;
  3096. }
  3097. .btn-default.disabled:hover,
  3098. .btn-default[disabled]:hover,
  3099. fieldset[disabled] .btn-default:hover,
  3100. .btn-default.disabled:focus,
  3101. .btn-default[disabled]:focus,
  3102. fieldset[disabled] .btn-default:focus,
  3103. .btn-default.disabled.focus,
  3104. .btn-default[disabled].focus,
  3105. fieldset[disabled] .btn-default.focus {
  3106. background-color: #fff;
  3107. border-color: #ccc;
  3108. }
  3109. .btn-default .badge {
  3110. color: #fff;
  3111. background-color: #333;
  3112. }
  3113. .btn-primary {
  3114. color: #fff;
  3115. background-color: #337ab7;
  3116. border-color: #2e6da4;
  3117. }
  3118. .btn-primary:focus,
  3119. .btn-primary.focus {
  3120. color: #fff;
  3121. background-color: #286090;
  3122. border-color: #122b40;
  3123. }
  3124. .btn-primary:hover {
  3125. color: #fff;
  3126. background-color: #286090;
  3127. border-color: #204d74;
  3128. }
  3129. .btn-primary:active,
  3130. .btn-primary.active,
  3131. .open > .dropdown-toggle.btn-primary {
  3132. color: #fff;
  3133. background-color: #286090;
  3134. border-color: #204d74;
  3135. }
  3136. .btn-primary:active:hover,
  3137. .btn-primary.active:hover,
  3138. .open > .dropdown-toggle.btn-primary:hover,
  3139. .btn-primary:active:focus,
  3140. .btn-primary.active:focus,
  3141. .open > .dropdown-toggle.btn-primary:focus,
  3142. .btn-primary:active.focus,
  3143. .btn-primary.active.focus,
  3144. .open > .dropdown-toggle.btn-primary.focus {
  3145. color: #fff;
  3146. background-color: #204d74;
  3147. border-color: #122b40;
  3148. }
  3149. .btn-primary:active,
  3150. .btn-primary.active,
  3151. .open > .dropdown-toggle.btn-primary {
  3152. background-image: none;
  3153. }
  3154. .btn-primary.disabled:hover,
  3155. .btn-primary[disabled]:hover,
  3156. fieldset[disabled] .btn-primary:hover,
  3157. .btn-primary.disabled:focus,
  3158. .btn-primary[disabled]:focus,
  3159. fieldset[disabled] .btn-primary:focus,
  3160. .btn-primary.disabled.focus,
  3161. .btn-primary[disabled].focus,
  3162. fieldset[disabled] .btn-primary.focus {
  3163. background-color: #337ab7;
  3164. border-color: #2e6da4;
  3165. }
  3166. .btn-primary .badge {
  3167. color: #337ab7;
  3168. background-color: #fff;
  3169. }
  3170. .btn-success {
  3171. color: #fff;
  3172. background-color: #5cb85c;
  3173. border-color: #4cae4c;
  3174. }
  3175. .btn-success:focus,
  3176. .btn-success.focus {
  3177. color: #fff;
  3178. background-color: #449d44;
  3179. border-color: #255625;
  3180. }
  3181. .btn-success:hover {
  3182. color: #fff;
  3183. background-color: #449d44;
  3184. border-color: #398439;
  3185. }
  3186. .btn-success:active,
  3187. .btn-success.active,
  3188. .open > .dropdown-toggle.btn-success {
  3189. color: #fff;
  3190. background-color: #449d44;
  3191. border-color: #398439;
  3192. }
  3193. .btn-success:active:hover,
  3194. .btn-success.active:hover,
  3195. .open > .dropdown-toggle.btn-success:hover,
  3196. .btn-success:active:focus,
  3197. .btn-success.active:focus,
  3198. .open > .dropdown-toggle.btn-success:focus,
  3199. .btn-success:active.focus,
  3200. .btn-success.active.focus,
  3201. .open > .dropdown-toggle.btn-success.focus {
  3202. color: #fff;
  3203. background-color: #398439;
  3204. border-color: #255625;
  3205. }
  3206. .btn-success:active,
  3207. .btn-success.active,
  3208. .open > .dropdown-toggle.btn-success {
  3209. background-image: none;
  3210. }
  3211. .btn-success.disabled:hover,
  3212. .btn-success[disabled]:hover,
  3213. fieldset[disabled] .btn-success:hover,
  3214. .btn-success.disabled:focus,
  3215. .btn-success[disabled]:focus,
  3216. fieldset[disabled] .btn-success:focus,
  3217. .btn-success.disabled.focus,
  3218. .btn-success[disabled].focus,
  3219. fieldset[disabled] .btn-success.focus {
  3220. background-color: #5cb85c;
  3221. border-color: #4cae4c;
  3222. }
  3223. .btn-success .badge {
  3224. color: #5cb85c;
  3225. background-color: #fff;
  3226. }
  3227. .btn-info {
  3228. color: #fff;
  3229. background-color: #5bc0de;
  3230. border-color: #46b8da;
  3231. }
  3232. .btn-info:focus,
  3233. .btn-info.focus {
  3234. color: #fff;
  3235. background-color: #31b0d5;
  3236. border-color: #1b6d85;
  3237. }
  3238. .btn-info:hover {
  3239. color: #fff;
  3240. background-color: #31b0d5;
  3241. border-color: #269abc;
  3242. }
  3243. .btn-info:active,
  3244. .btn-info.active,
  3245. .open > .dropdown-toggle.btn-info {
  3246. color: #fff;
  3247. background-color: #31b0d5;
  3248. border-color: #269abc;
  3249. }
  3250. .btn-info:active:hover,
  3251. .btn-info.active:hover,
  3252. .open > .dropdown-toggle.btn-info:hover,
  3253. .btn-info:active:focus,
  3254. .btn-info.active:focus,
  3255. .open > .dropdown-toggle.btn-info:focus,
  3256. .btn-info:active.focus,
  3257. .btn-info.active.focus,
  3258. .open > .dropdown-toggle.btn-info.focus {
  3259. color: #fff;
  3260. background-color: #269abc;
  3261. border-color: #1b6d85;
  3262. }
  3263. .btn-info:active,
  3264. .btn-info.active,
  3265. .open > .dropdown-toggle.btn-info {
  3266. background-image: none;
  3267. }
  3268. .btn-info.disabled:hover,
  3269. .btn-info[disabled]:hover,
  3270. fieldset[disabled] .btn-info:hover,
  3271. .btn-info.disabled:focus,
  3272. .btn-info[disabled]:focus,
  3273. fieldset[disabled] .btn-info:focus,
  3274. .btn-info.disabled.focus,
  3275. .btn-info[disabled].focus,
  3276. fieldset[disabled] .btn-info.focus {
  3277. background-color: #5bc0de;
  3278. border-color: #46b8da;
  3279. }
  3280. .btn-info .badge {
  3281. color: #5bc0de;
  3282. background-color: #fff;
  3283. }
  3284. .btn-warning {
  3285. color: #fff;
  3286. background-color: #f0ad4e;
  3287. border-color: #eea236;
  3288. }
  3289. .btn-warning:focus,
  3290. .btn-warning.focus {
  3291. color: #fff;
  3292. background-color: #ec971f;
  3293. border-color: #985f0d;
  3294. }
  3295. .btn-warning:hover {
  3296. color: #fff;
  3297. background-color: #ec971f;
  3298. border-color: #d58512;
  3299. }
  3300. .btn-warning:active,
  3301. .btn-warning.active,
  3302. .open > .dropdown-toggle.btn-warning {
  3303. color: #fff;
  3304. background-color: #ec971f;
  3305. border-color: #d58512;
  3306. }
  3307. .btn-warning:active:hover,
  3308. .btn-warning.active:hover,
  3309. .open > .dropdown-toggle.btn-warning:hover,
  3310. .btn-warning:active:focus,
  3311. .btn-warning.active:focus,
  3312. .open > .dropdown-toggle.btn-warning:focus,
  3313. .btn-warning:active.focus,
  3314. .btn-warning.active.focus,
  3315. .open > .dropdown-toggle.btn-warning.focus {
  3316. color: #fff;
  3317. background-color: #d58512;
  3318. border-color: #985f0d;
  3319. }
  3320. .btn-warning:active,
  3321. .btn-warning.active,
  3322. .open > .dropdown-toggle.btn-warning {
  3323. background-image: none;
  3324. }
  3325. .btn-warning.disabled:hover,
  3326. .btn-warning[disabled]:hover,
  3327. fieldset[disabled] .btn-warning:hover,
  3328. .btn-warning.disabled:focus,
  3329. .btn-warning[disabled]:focus,
  3330. fieldset[disabled] .btn-warning:focus,
  3331. .btn-warning.disabled.focus,
  3332. .btn-warning[disabled].focus,
  3333. fieldset[disabled] .btn-warning.focus {
  3334. background-color: #f0ad4e;
  3335. border-color: #eea236;
  3336. }
  3337. .btn-warning .badge {
  3338. color: #f0ad4e;
  3339. background-color: #fff;
  3340. }
  3341. .btn-danger {
  3342. color: #fff;
  3343. background-color: #d9534f;
  3344. border-color: #d43f3a;
  3345. }
  3346. .btn-danger:focus,
  3347. .btn-danger.focus {
  3348. color: #fff;
  3349. background-color: #c9302c;
  3350. border-color: #761c19;
  3351. }
  3352. .btn-danger:hover {
  3353. color: #fff;
  3354. background-color: #c9302c;
  3355. border-color: #ac2925;
  3356. }
  3357. .btn-danger:active,
  3358. .btn-danger.active,
  3359. .open > .dropdown-toggle.btn-danger {
  3360. color: #fff;
  3361. background-color: #c9302c;
  3362. border-color: #ac2925;
  3363. }
  3364. .btn-danger:active:hover,
  3365. .btn-danger.active:hover,
  3366. .open > .dropdown-toggle.btn-danger:hover,
  3367. .btn-danger:active:focus,
  3368. .btn-danger.active:focus,
  3369. .open > .dropdown-toggle.btn-danger:focus,
  3370. .btn-danger:active.focus,
  3371. .btn-danger.active.focus,
  3372. .open > .dropdown-toggle.btn-danger.focus {
  3373. color: #fff;
  3374. background-color: #ac2925;
  3375. border-color: #761c19;
  3376. }
  3377. .btn-danger:active,
  3378. .btn-danger.active,
  3379. .open > .dropdown-toggle.btn-danger {
  3380. background-image: none;
  3381. }
  3382. .btn-danger.disabled:hover,
  3383. .btn-danger[disabled]:hover,
  3384. fieldset[disabled] .btn-danger:hover,
  3385. .btn-danger.disabled:focus,
  3386. .btn-danger[disabled]:focus,
  3387. fieldset[disabled] .btn-danger:focus,
  3388. .btn-danger.disabled.focus,
  3389. .btn-danger[disabled].focus,
  3390. fieldset[disabled] .btn-danger.focus {
  3391. background-color: #d9534f;
  3392. border-color: #d43f3a;
  3393. }
  3394. .btn-danger .badge {
  3395. color: #d9534f;
  3396. background-color: #fff;
  3397. }
  3398. .btn-link {
  3399. color: #337ab7;
  3400. font-weight: normal;
  3401. border-radius: 0;
  3402. }
  3403. .btn-link,
  3404. .btn-link:active,
  3405. .btn-link.active,
  3406. .btn-link[disabled],
  3407. fieldset[disabled] .btn-link {
  3408. background-color: transparent;
  3409. -webkit-box-shadow: none;
  3410. box-shadow: none;
  3411. }
  3412. .btn-link,
  3413. .btn-link:hover,
  3414. .btn-link:focus,
  3415. .btn-link:active {
  3416. border-color: transparent;
  3417. }
  3418. .btn-link:hover,
  3419. .btn-link:focus {
  3420. color: #23527c;
  3421. text-decoration: underline;
  3422. background-color: transparent;
  3423. }
  3424. .btn-link[disabled]:hover,
  3425. fieldset[disabled] .btn-link:hover,
  3426. .btn-link[disabled]:focus,
  3427. fieldset[disabled] .btn-link:focus {
  3428. color: #777777;
  3429. text-decoration: none;
  3430. }
  3431. .btn-lg,
  3432. .btn-group-lg > .btn {
  3433. padding: 10px 16px;
  3434. font-size: 17px;
  3435. line-height: 1.3333333;
  3436. border-radius: 3px;
  3437. }
  3438. .btn-sm,
  3439. .btn-group-sm > .btn {
  3440. padding: 5px 10px;
  3441. font-size: 12px;
  3442. line-height: 1.5;
  3443. border-radius: 1px;
  3444. }
  3445. .btn-xs,
  3446. .btn-group-xs > .btn {
  3447. padding: 1px 5px;
  3448. font-size: 12px;
  3449. line-height: 1.5;
  3450. border-radius: 1px;
  3451. }
  3452. .btn-block {
  3453. display: block;
  3454. width: 100%;
  3455. }
  3456. .btn-block + .btn-block {
  3457. margin-top: 5px;
  3458. }
  3459. input[type="submit"].btn-block,
  3460. input[type="reset"].btn-block,
  3461. input[type="button"].btn-block {
  3462. width: 100%;
  3463. }
  3464. .fade {
  3465. opacity: 0;
  3466. -webkit-transition: opacity 0.15s linear;
  3467. -o-transition: opacity 0.15s linear;
  3468. transition: opacity 0.15s linear;
  3469. }
  3470. .fade.in {
  3471. opacity: 1;
  3472. }
  3473. .collapse {
  3474. display: none;
  3475. }
  3476. .collapse.in {
  3477. display: block;
  3478. }
  3479. tr.collapse.in {
  3480. display: table-row;
  3481. }
  3482. tbody.collapse.in {
  3483. display: table-row-group;
  3484. }
  3485. .collapsing {
  3486. position: relative;
  3487. height: 0;
  3488. overflow: hidden;
  3489. -webkit-transition-property: height, visibility;
  3490. transition-property: height, visibility;
  3491. -webkit-transition-duration: 0.35s;
  3492. transition-duration: 0.35s;
  3493. -webkit-transition-timing-function: ease;
  3494. transition-timing-function: ease;
  3495. }
  3496. .caret {
  3497. display: inline-block;
  3498. width: 0;
  3499. height: 0;
  3500. margin-left: 2px;
  3501. vertical-align: middle;
  3502. border-top: 4px dashed;
  3503. border-top: 4px solid \9;
  3504. border-right: 4px solid transparent;
  3505. border-left: 4px solid transparent;
  3506. }
  3507. .dropup,
  3508. .dropdown {
  3509. position: relative;
  3510. }
  3511. .dropdown-toggle:focus {
  3512. outline: 0;
  3513. }
  3514. .dropdown-menu {
  3515. position: absolute;
  3516. top: 100%;
  3517. left: 0;
  3518. z-index: 1000;
  3519. display: none;
  3520. float: left;
  3521. min-width: 160px;
  3522. padding: 5px 0;
  3523. margin: 2px 0 0;
  3524. list-style: none;
  3525. font-size: 13px;
  3526. text-align: left;
  3527. background-color: #fff;
  3528. border: 1px solid #ccc;
  3529. border: 1px solid rgba(0, 0, 0, 0.15);
  3530. border-radius: 2px;
  3531. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3532. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3533. background-clip: padding-box;
  3534. }
  3535. .dropdown-menu.pull-right {
  3536. right: 0;
  3537. left: auto;
  3538. }
  3539. .dropdown-menu .divider {
  3540. height: 1px;
  3541. margin: 8px 0;
  3542. overflow: hidden;
  3543. background-color: #e5e5e5;
  3544. }
  3545. .dropdown-menu > li > a {
  3546. display: block;
  3547. padding: 3px 20px;
  3548. clear: both;
  3549. font-weight: normal;
  3550. line-height: 1.42857143;
  3551. color: #333333;
  3552. white-space: nowrap;
  3553. }
  3554. .dropdown-menu > li > a:hover,
  3555. .dropdown-menu > li > a:focus {
  3556. text-decoration: none;
  3557. color: #262626;
  3558. background-color: #f5f5f5;
  3559. }
  3560. .dropdown-menu > .active > a,
  3561. .dropdown-menu > .active > a:hover,
  3562. .dropdown-menu > .active > a:focus {
  3563. color: #fff;
  3564. text-decoration: none;
  3565. outline: 0;
  3566. background-color: #337ab7;
  3567. }
  3568. .dropdown-menu > .disabled > a,
  3569. .dropdown-menu > .disabled > a:hover,
  3570. .dropdown-menu > .disabled > a:focus {
  3571. color: #777777;
  3572. }
  3573. .dropdown-menu > .disabled > a:hover,
  3574. .dropdown-menu > .disabled > a:focus {
  3575. text-decoration: none;
  3576. background-color: transparent;
  3577. background-image: none;
  3578. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3579. cursor: not-allowed;
  3580. }
  3581. .open > .dropdown-menu {
  3582. display: block;
  3583. }
  3584. .open > a {
  3585. outline: 0;
  3586. }
  3587. .dropdown-menu-right {
  3588. left: auto;
  3589. right: 0;
  3590. }
  3591. .dropdown-menu-left {
  3592. left: 0;
  3593. right: auto;
  3594. }
  3595. .dropdown-header {
  3596. display: block;
  3597. padding: 3px 20px;
  3598. font-size: 12px;
  3599. line-height: 1.42857143;
  3600. color: #777777;
  3601. white-space: nowrap;
  3602. }
  3603. .dropdown-backdrop {
  3604. position: fixed;
  3605. left: 0;
  3606. right: 0;
  3607. bottom: 0;
  3608. top: 0;
  3609. z-index: 990;
  3610. }
  3611. .pull-right > .dropdown-menu {
  3612. right: 0;
  3613. left: auto;
  3614. }
  3615. .dropup .caret,
  3616. .navbar-fixed-bottom .dropdown .caret {
  3617. border-top: 0;
  3618. border-bottom: 4px dashed;
  3619. border-bottom: 4px solid \9;
  3620. content: "";
  3621. }
  3622. .dropup .dropdown-menu,
  3623. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3624. top: auto;
  3625. bottom: 100%;
  3626. margin-bottom: 2px;
  3627. }
  3628. @media (min-width: 541px) {
  3629. .navbar-right .dropdown-menu {
  3630. left: auto;
  3631. right: 0;
  3632. }
  3633. .navbar-right .dropdown-menu-left {
  3634. left: 0;
  3635. right: auto;
  3636. }
  3637. }
  3638. .btn-group,
  3639. .btn-group-vertical {
  3640. position: relative;
  3641. display: inline-block;
  3642. vertical-align: middle;
  3643. }
  3644. .btn-group > .btn,
  3645. .btn-group-vertical > .btn {
  3646. position: relative;
  3647. float: left;
  3648. }
  3649. .btn-group > .btn:hover,
  3650. .btn-group-vertical > .btn:hover,
  3651. .btn-group > .btn:focus,
  3652. .btn-group-vertical > .btn:focus,
  3653. .btn-group > .btn:active,
  3654. .btn-group-vertical > .btn:active,
  3655. .btn-group > .btn.active,
  3656. .btn-group-vertical > .btn.active {
  3657. z-index: 2;
  3658. }
  3659. .btn-group .btn + .btn,
  3660. .btn-group .btn + .btn-group,
  3661. .btn-group .btn-group + .btn,
  3662. .btn-group .btn-group + .btn-group {
  3663. margin-left: -1px;
  3664. }
  3665. .btn-toolbar {
  3666. margin-left: -5px;
  3667. }
  3668. .btn-toolbar .btn,
  3669. .btn-toolbar .btn-group,
  3670. .btn-toolbar .input-group {
  3671. float: left;
  3672. }
  3673. .btn-toolbar > .btn,
  3674. .btn-toolbar > .btn-group,
  3675. .btn-toolbar > .input-group {
  3676. margin-left: 5px;
  3677. }
  3678. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3679. border-radius: 0;
  3680. }
  3681. .btn-group > .btn:first-child {
  3682. margin-left: 0;
  3683. }
  3684. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3685. border-bottom-right-radius: 0;
  3686. border-top-right-radius: 0;
  3687. }
  3688. .btn-group > .btn:last-child:not(:first-child),
  3689. .btn-group > .dropdown-toggle:not(:first-child) {
  3690. border-bottom-left-radius: 0;
  3691. border-top-left-radius: 0;
  3692. }
  3693. .btn-group > .btn-group {
  3694. float: left;
  3695. }
  3696. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3697. border-radius: 0;
  3698. }
  3699. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3700. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3701. border-bottom-right-radius: 0;
  3702. border-top-right-radius: 0;
  3703. }
  3704. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3705. border-bottom-left-radius: 0;
  3706. border-top-left-radius: 0;
  3707. }
  3708. .btn-group .dropdown-toggle:active,
  3709. .btn-group.open .dropdown-toggle {
  3710. outline: 0;
  3711. }
  3712. .btn-group > .btn + .dropdown-toggle {
  3713. padding-left: 8px;
  3714. padding-right: 8px;
  3715. }
  3716. .btn-group > .btn-lg + .dropdown-toggle {
  3717. padding-left: 12px;
  3718. padding-right: 12px;
  3719. }
  3720. .btn-group.open .dropdown-toggle {
  3721. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3722. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3723. }
  3724. .btn-group.open .dropdown-toggle.btn-link {
  3725. -webkit-box-shadow: none;
  3726. box-shadow: none;
  3727. }
  3728. .btn .caret {
  3729. margin-left: 0;
  3730. }
  3731. .btn-lg .caret {
  3732. border-width: 5px 5px 0;
  3733. border-bottom-width: 0;
  3734. }
  3735. .dropup .btn-lg .caret {
  3736. border-width: 0 5px 5px;
  3737. }
  3738. .btn-group-vertical > .btn,
  3739. .btn-group-vertical > .btn-group,
  3740. .btn-group-vertical > .btn-group > .btn {
  3741. display: block;
  3742. float: none;
  3743. width: 100%;
  3744. max-width: 100%;
  3745. }
  3746. .btn-group-vertical > .btn-group > .btn {
  3747. float: none;
  3748. }
  3749. .btn-group-vertical > .btn + .btn,
  3750. .btn-group-vertical > .btn + .btn-group,
  3751. .btn-group-vertical > .btn-group + .btn,
  3752. .btn-group-vertical > .btn-group + .btn-group {
  3753. margin-top: -1px;
  3754. margin-left: 0;
  3755. }
  3756. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3757. border-radius: 0;
  3758. }
  3759. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3760. border-top-right-radius: 2px;
  3761. border-top-left-radius: 2px;
  3762. border-bottom-right-radius: 0;
  3763. border-bottom-left-radius: 0;
  3764. }
  3765. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3766. border-top-right-radius: 0;
  3767. border-top-left-radius: 0;
  3768. border-bottom-right-radius: 2px;
  3769. border-bottom-left-radius: 2px;
  3770. }
  3771. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3772. border-radius: 0;
  3773. }
  3774. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3775. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3776. border-bottom-right-radius: 0;
  3777. border-bottom-left-radius: 0;
  3778. }
  3779. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3780. border-top-right-radius: 0;
  3781. border-top-left-radius: 0;
  3782. }
  3783. .btn-group-justified {
  3784. display: table;
  3785. width: 100%;
  3786. table-layout: fixed;
  3787. border-collapse: separate;
  3788. }
  3789. .btn-group-justified > .btn,
  3790. .btn-group-justified > .btn-group {
  3791. float: none;
  3792. display: table-cell;
  3793. width: 1%;
  3794. }
  3795. .btn-group-justified > .btn-group .btn {
  3796. width: 100%;
  3797. }
  3798. .btn-group-justified > .btn-group .dropdown-menu {
  3799. left: auto;
  3800. }
  3801. [data-toggle="buttons"] > .btn input[type="radio"],
  3802. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3803. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3804. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3805. position: absolute;
  3806. clip: rect(0, 0, 0, 0);
  3807. pointer-events: none;
  3808. }
  3809. .input-group {
  3810. position: relative;
  3811. display: table;
  3812. border-collapse: separate;
  3813. }
  3814. .input-group[class*="col-"] {
  3815. float: none;
  3816. padding-left: 0;
  3817. padding-right: 0;
  3818. }
  3819. .input-group .form-control {
  3820. position: relative;
  3821. z-index: 2;
  3822. float: left;
  3823. width: 100%;
  3824. margin-bottom: 0;
  3825. }
  3826. .input-group .form-control:focus {
  3827. z-index: 3;
  3828. }
  3829. .input-group-lg > .form-control,
  3830. .input-group-lg > .input-group-addon,
  3831. .input-group-lg > .input-group-btn > .btn {
  3832. height: 45px;
  3833. padding: 10px 16px;
  3834. font-size: 17px;
  3835. line-height: 1.3333333;
  3836. border-radius: 3px;
  3837. }
  3838. select.input-group-lg > .form-control,
  3839. select.input-group-lg > .input-group-addon,
  3840. select.input-group-lg > .input-group-btn > .btn {
  3841. height: 45px;
  3842. line-height: 45px;
  3843. }
  3844. textarea.input-group-lg > .form-control,
  3845. textarea.input-group-lg > .input-group-addon,
  3846. textarea.input-group-lg > .input-group-btn > .btn,
  3847. select[multiple].input-group-lg > .form-control,
  3848. select[multiple].input-group-lg > .input-group-addon,
  3849. select[multiple].input-group-lg > .input-group-btn > .btn {
  3850. height: auto;
  3851. }
  3852. .input-group-sm > .form-control,
  3853. .input-group-sm > .input-group-addon,
  3854. .input-group-sm > .input-group-btn > .btn {
  3855. height: 30px;
  3856. padding: 5px 10px;
  3857. font-size: 12px;
  3858. line-height: 1.5;
  3859. border-radius: 1px;
  3860. }
  3861. select.input-group-sm > .form-control,
  3862. select.input-group-sm > .input-group-addon,
  3863. select.input-group-sm > .input-group-btn > .btn {
  3864. height: 30px;
  3865. line-height: 30px;
  3866. }
  3867. textarea.input-group-sm > .form-control,
  3868. textarea.input-group-sm > .input-group-addon,
  3869. textarea.input-group-sm > .input-group-btn > .btn,
  3870. select[multiple].input-group-sm > .form-control,
  3871. select[multiple].input-group-sm > .input-group-addon,
  3872. select[multiple].input-group-sm > .input-group-btn > .btn {
  3873. height: auto;
  3874. }
  3875. .input-group-addon,
  3876. .input-group-btn,
  3877. .input-group .form-control {
  3878. display: table-cell;
  3879. }
  3880. .input-group-addon:not(:first-child):not(:last-child),
  3881. .input-group-btn:not(:first-child):not(:last-child),
  3882. .input-group .form-control:not(:first-child):not(:last-child) {
  3883. border-radius: 0;
  3884. }
  3885. .input-group-addon,
  3886. .input-group-btn {
  3887. width: 1%;
  3888. white-space: nowrap;
  3889. vertical-align: middle;
  3890. }
  3891. .input-group-addon {
  3892. padding: 6px 12px;
  3893. font-size: 13px;
  3894. font-weight: normal;
  3895. line-height: 1;
  3896. color: #555555;
  3897. text-align: center;
  3898. background-color: #eeeeee;
  3899. border: 1px solid #ccc;
  3900. border-radius: 2px;
  3901. }
  3902. .input-group-addon.input-sm {
  3903. padding: 5px 10px;
  3904. font-size: 12px;
  3905. border-radius: 1px;
  3906. }
  3907. .input-group-addon.input-lg {
  3908. padding: 10px 16px;
  3909. font-size: 17px;
  3910. border-radius: 3px;
  3911. }
  3912. .input-group-addon input[type="radio"],
  3913. .input-group-addon input[type="checkbox"] {
  3914. margin-top: 0;
  3915. }
  3916. .input-group .form-control:first-child,
  3917. .input-group-addon:first-child,
  3918. .input-group-btn:first-child > .btn,
  3919. .input-group-btn:first-child > .btn-group > .btn,
  3920. .input-group-btn:first-child > .dropdown-toggle,
  3921. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3922. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3923. border-bottom-right-radius: 0;
  3924. border-top-right-radius: 0;
  3925. }
  3926. .input-group-addon:first-child {
  3927. border-right: 0;
  3928. }
  3929. .input-group .form-control:last-child,
  3930. .input-group-addon:last-child,
  3931. .input-group-btn:last-child > .btn,
  3932. .input-group-btn:last-child > .btn-group > .btn,
  3933. .input-group-btn:last-child > .dropdown-toggle,
  3934. .input-group-btn:first-child > .btn:not(:first-child),
  3935. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3936. border-bottom-left-radius: 0;
  3937. border-top-left-radius: 0;
  3938. }
  3939. .input-group-addon:last-child {
  3940. border-left: 0;
  3941. }
  3942. .input-group-btn {
  3943. position: relative;
  3944. font-size: 0;
  3945. white-space: nowrap;
  3946. }
  3947. .input-group-btn > .btn {
  3948. position: relative;
  3949. }
  3950. .input-group-btn > .btn + .btn {
  3951. margin-left: -1px;
  3952. }
  3953. .input-group-btn > .btn:hover,
  3954. .input-group-btn > .btn:focus,
  3955. .input-group-btn > .btn:active {
  3956. z-index: 2;
  3957. }
  3958. .input-group-btn:first-child > .btn,
  3959. .input-group-btn:first-child > .btn-group {
  3960. margin-right: -1px;
  3961. }
  3962. .input-group-btn:last-child > .btn,
  3963. .input-group-btn:last-child > .btn-group {
  3964. z-index: 2;
  3965. margin-left: -1px;
  3966. }
  3967. .nav {
  3968. margin-bottom: 0;
  3969. padding-left: 0;
  3970. list-style: none;
  3971. }
  3972. .nav > li {
  3973. position: relative;
  3974. display: block;
  3975. }
  3976. .nav > li > a {
  3977. position: relative;
  3978. display: block;
  3979. padding: 10px 15px;
  3980. }
  3981. .nav > li > a:hover,
  3982. .nav > li > a:focus {
  3983. text-decoration: none;
  3984. background-color: #eeeeee;
  3985. }
  3986. .nav > li.disabled > a {
  3987. color: #777777;
  3988. }
  3989. .nav > li.disabled > a:hover,
  3990. .nav > li.disabled > a:focus {
  3991. color: #777777;
  3992. text-decoration: none;
  3993. background-color: transparent;
  3994. cursor: not-allowed;
  3995. }
  3996. .nav .open > a,
  3997. .nav .open > a:hover,
  3998. .nav .open > a:focus {
  3999. background-color: #eeeeee;
  4000. border-color: #337ab7;
  4001. }
  4002. .nav .nav-divider {
  4003. height: 1px;
  4004. margin: 8px 0;
  4005. overflow: hidden;
  4006. background-color: #e5e5e5;
  4007. }
  4008. .nav > li > a > img {
  4009. max-width: none;
  4010. }
  4011. .nav-tabs {
  4012. border-bottom: 1px solid #ddd;
  4013. }
  4014. .nav-tabs > li {
  4015. float: left;
  4016. margin-bottom: -1px;
  4017. }
  4018. .nav-tabs > li > a {
  4019. margin-right: 2px;
  4020. line-height: 1.42857143;
  4021. border: 1px solid transparent;
  4022. border-radius: 2px 2px 0 0;
  4023. }
  4024. .nav-tabs > li > a:hover {
  4025. border-color: #eeeeee #eeeeee #ddd;
  4026. }
  4027. .nav-tabs > li.active > a,
  4028. .nav-tabs > li.active > a:hover,
  4029. .nav-tabs > li.active > a:focus {
  4030. color: #555555;
  4031. background-color: #fff;
  4032. border: 1px solid #ddd;
  4033. border-bottom-color: transparent;
  4034. cursor: default;
  4035. }
  4036. .nav-tabs.nav-justified {
  4037. width: 100%;
  4038. border-bottom: 0;
  4039. }
  4040. .nav-tabs.nav-justified > li {
  4041. float: none;
  4042. }
  4043. .nav-tabs.nav-justified > li > a {
  4044. text-align: center;
  4045. margin-bottom: 5px;
  4046. }
  4047. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  4048. top: auto;
  4049. left: auto;
  4050. }
  4051. @media (min-width: 768px) {
  4052. .nav-tabs.nav-justified > li {
  4053. display: table-cell;
  4054. width: 1%;
  4055. }
  4056. .nav-tabs.nav-justified > li > a {
  4057. margin-bottom: 0;
  4058. }
  4059. }
  4060. .nav-tabs.nav-justified > li > a {
  4061. margin-right: 0;
  4062. border-radius: 2px;
  4063. }
  4064. .nav-tabs.nav-justified > .active > a,
  4065. .nav-tabs.nav-justified > .active > a:hover,
  4066. .nav-tabs.nav-justified > .active > a:focus {
  4067. border: 1px solid #ddd;
  4068. }
  4069. @media (min-width: 768px) {
  4070. .nav-tabs.nav-justified > li > a {
  4071. border-bottom: 1px solid #ddd;
  4072. border-radius: 2px 2px 0 0;
  4073. }
  4074. .nav-tabs.nav-justified > .active > a,
  4075. .nav-tabs.nav-justified > .active > a:hover,
  4076. .nav-tabs.nav-justified > .active > a:focus {
  4077. border-bottom-color: #fff;
  4078. }
  4079. }
  4080. .nav-pills > li {
  4081. float: left;
  4082. }
  4083. .nav-pills > li > a {
  4084. border-radius: 2px;
  4085. }
  4086. .nav-pills > li + li {
  4087. margin-left: 2px;
  4088. }
  4089. .nav-pills > li.active > a,
  4090. .nav-pills > li.active > a:hover,
  4091. .nav-pills > li.active > a:focus {
  4092. color: #fff;
  4093. background-color: #337ab7;
  4094. }
  4095. .nav-stacked > li {
  4096. float: none;
  4097. }
  4098. .nav-stacked > li + li {
  4099. margin-top: 2px;
  4100. margin-left: 0;
  4101. }
  4102. .nav-justified {
  4103. width: 100%;
  4104. }
  4105. .nav-justified > li {
  4106. float: none;
  4107. }
  4108. .nav-justified > li > a {
  4109. text-align: center;
  4110. margin-bottom: 5px;
  4111. }
  4112. .nav-justified > .dropdown .dropdown-menu {
  4113. top: auto;
  4114. left: auto;
  4115. }
  4116. @media (min-width: 768px) {
  4117. .nav-justified > li {
  4118. display: table-cell;
  4119. width: 1%;
  4120. }
  4121. .nav-justified > li > a {
  4122. margin-bottom: 0;
  4123. }
  4124. }
  4125. .nav-tabs-justified {
  4126. border-bottom: 0;
  4127. }
  4128. .nav-tabs-justified > li > a {
  4129. margin-right: 0;
  4130. border-radius: 2px;
  4131. }
  4132. .nav-tabs-justified > .active > a,
  4133. .nav-tabs-justified > .active > a:hover,
  4134. .nav-tabs-justified > .active > a:focus {
  4135. border: 1px solid #ddd;
  4136. }
  4137. @media (min-width: 768px) {
  4138. .nav-tabs-justified > li > a {
  4139. border-bottom: 1px solid #ddd;
  4140. border-radius: 2px 2px 0 0;
  4141. }
  4142. .nav-tabs-justified > .active > a,
  4143. .nav-tabs-justified > .active > a:hover,
  4144. .nav-tabs-justified > .active > a:focus {
  4145. border-bottom-color: #fff;
  4146. }
  4147. }
  4148. .tab-content > .tab-pane {
  4149. display: none;
  4150. }
  4151. .tab-content > .active {
  4152. display: block;
  4153. }
  4154. .nav-tabs .dropdown-menu {
  4155. margin-top: -1px;
  4156. border-top-right-radius: 0;
  4157. border-top-left-radius: 0;
  4158. }
  4159. .navbar {
  4160. position: relative;
  4161. min-height: 30px;
  4162. margin-bottom: 18px;
  4163. border: 1px solid transparent;
  4164. }
  4165. @media (min-width: 541px) {
  4166. .navbar {
  4167. border-radius: 2px;
  4168. }
  4169. }
  4170. @media (min-width: 541px) {
  4171. .navbar-header {
  4172. float: left;
  4173. }
  4174. }
  4175. .navbar-collapse {
  4176. overflow-x: visible;
  4177. padding-right: 0px;
  4178. padding-left: 0px;
  4179. border-top: 1px solid transparent;
  4180. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4181. -webkit-overflow-scrolling: touch;
  4182. }
  4183. .navbar-collapse.in {
  4184. overflow-y: auto;
  4185. }
  4186. @media (min-width: 541px) {
  4187. .navbar-collapse {
  4188. width: auto;
  4189. border-top: 0;
  4190. box-shadow: none;
  4191. }
  4192. .navbar-collapse.collapse {
  4193. display: block !important;
  4194. height: auto !important;
  4195. padding-bottom: 0;
  4196. overflow: visible !important;
  4197. }
  4198. .navbar-collapse.in {
  4199. overflow-y: visible;
  4200. }
  4201. .navbar-fixed-top .navbar-collapse,
  4202. .navbar-static-top .navbar-collapse,
  4203. .navbar-fixed-bottom .navbar-collapse {
  4204. padding-left: 0;
  4205. padding-right: 0;
  4206. }
  4207. }
  4208. .navbar-fixed-top .navbar-collapse,
  4209. .navbar-fixed-bottom .navbar-collapse {
  4210. max-height: 340px;
  4211. }
  4212. @media (max-device-width: 540px) and (orientation: landscape) {
  4213. .navbar-fixed-top .navbar-collapse,
  4214. .navbar-fixed-bottom .navbar-collapse {
  4215. max-height: 200px;
  4216. }
  4217. }
  4218. .container > .navbar-header,
  4219. .container-fluid > .navbar-header,
  4220. .container > .navbar-collapse,
  4221. .container-fluid > .navbar-collapse {
  4222. margin-right: 0px;
  4223. margin-left: 0px;
  4224. }
  4225. @media (min-width: 541px) {
  4226. .container > .navbar-header,
  4227. .container-fluid > .navbar-header,
  4228. .container > .navbar-collapse,
  4229. .container-fluid > .navbar-collapse {
  4230. margin-right: 0;
  4231. margin-left: 0;
  4232. }
  4233. }
  4234. .navbar-static-top {
  4235. z-index: 1000;
  4236. border-width: 0 0 1px;
  4237. }
  4238. @media (min-width: 541px) {
  4239. .navbar-static-top {
  4240. border-radius: 0;
  4241. }
  4242. }
  4243. .navbar-fixed-top,
  4244. .navbar-fixed-bottom {
  4245. position: fixed;
  4246. right: 0;
  4247. left: 0;
  4248. z-index: 1030;
  4249. }
  4250. @media (min-width: 541px) {
  4251. .navbar-fixed-top,
  4252. .navbar-fixed-bottom {
  4253. border-radius: 0;
  4254. }
  4255. }
  4256. .navbar-fixed-top {
  4257. top: 0;
  4258. border-width: 0 0 1px;
  4259. }
  4260. .navbar-fixed-bottom {
  4261. bottom: 0;
  4262. margin-bottom: 0;
  4263. border-width: 1px 0 0;
  4264. }
  4265. .navbar-brand {
  4266. float: left;
  4267. padding: 6px 0px;
  4268. font-size: 17px;
  4269. line-height: 18px;
  4270. height: 30px;
  4271. }
  4272. .navbar-brand:hover,
  4273. .navbar-brand:focus {
  4274. text-decoration: none;
  4275. }
  4276. .navbar-brand > img {
  4277. display: block;
  4278. }
  4279. @media (min-width: 541px) {
  4280. .navbar > .container .navbar-brand,
  4281. .navbar > .container-fluid .navbar-brand {
  4282. margin-left: 0px;
  4283. }
  4284. }
  4285. .navbar-toggle {
  4286. position: relative;
  4287. float: right;
  4288. margin-right: 0px;
  4289. padding: 9px 10px;
  4290. margin-top: -2px;
  4291. margin-bottom: -2px;
  4292. background-color: transparent;
  4293. background-image: none;
  4294. border: 1px solid transparent;
  4295. border-radius: 2px;
  4296. }
  4297. .navbar-toggle:focus {
  4298. outline: 0;
  4299. }
  4300. .navbar-toggle .icon-bar {
  4301. display: block;
  4302. width: 22px;
  4303. height: 2px;
  4304. border-radius: 1px;
  4305. }
  4306. .navbar-toggle .icon-bar + .icon-bar {
  4307. margin-top: 4px;
  4308. }
  4309. @media (min-width: 541px) {
  4310. .navbar-toggle {
  4311. display: none;
  4312. }
  4313. }
  4314. .navbar-nav {
  4315. margin: 3px 0px;
  4316. }
  4317. .navbar-nav > li > a {
  4318. padding-top: 10px;
  4319. padding-bottom: 10px;
  4320. line-height: 18px;
  4321. }
  4322. @media (max-width: 540px) {
  4323. .navbar-nav .open .dropdown-menu {
  4324. position: static;
  4325. float: none;
  4326. width: auto;
  4327. margin-top: 0;
  4328. background-color: transparent;
  4329. border: 0;
  4330. box-shadow: none;
  4331. }
  4332. .navbar-nav .open .dropdown-menu > li > a,
  4333. .navbar-nav .open .dropdown-menu .dropdown-header {
  4334. padding: 5px 15px 5px 25px;
  4335. }
  4336. .navbar-nav .open .dropdown-menu > li > a {
  4337. line-height: 18px;
  4338. }
  4339. .navbar-nav .open .dropdown-menu > li > a:hover,
  4340. .navbar-nav .open .dropdown-menu > li > a:focus {
  4341. background-image: none;
  4342. }
  4343. }
  4344. @media (min-width: 541px) {
  4345. .navbar-nav {
  4346. float: left;
  4347. margin: 0;
  4348. }
  4349. .navbar-nav > li {
  4350. float: left;
  4351. }
  4352. .navbar-nav > li > a {
  4353. padding-top: 6px;
  4354. padding-bottom: 6px;
  4355. }
  4356. }
  4357. .navbar-form {
  4358. margin-left: 0px;
  4359. margin-right: 0px;
  4360. padding: 10px 0px;
  4361. border-top: 1px solid transparent;
  4362. border-bottom: 1px solid transparent;
  4363. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4364. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4365. margin-top: -1px;
  4366. margin-bottom: -1px;
  4367. }
  4368. @media (min-width: 768px) {
  4369. .navbar-form .form-group {
  4370. display: inline-block;
  4371. margin-bottom: 0;
  4372. vertical-align: middle;
  4373. }
  4374. .navbar-form .form-control {
  4375. display: inline-block;
  4376. width: auto;
  4377. vertical-align: middle;
  4378. }
  4379. .navbar-form .form-control-static {
  4380. display: inline-block;
  4381. }
  4382. .navbar-form .input-group {
  4383. display: inline-table;
  4384. vertical-align: middle;
  4385. }
  4386. .navbar-form .input-group .input-group-addon,
  4387. .navbar-form .input-group .input-group-btn,
  4388. .navbar-form .input-group .form-control {
  4389. width: auto;
  4390. }
  4391. .navbar-form .input-group > .form-control {
  4392. width: 100%;
  4393. }
  4394. .navbar-form .control-label {
  4395. margin-bottom: 0;
  4396. vertical-align: middle;
  4397. }
  4398. .navbar-form .radio,
  4399. .navbar-form .checkbox {
  4400. display: inline-block;
  4401. margin-top: 0;
  4402. margin-bottom: 0;
  4403. vertical-align: middle;
  4404. }
  4405. .navbar-form .radio label,
  4406. .navbar-form .checkbox label {
  4407. padding-left: 0;
  4408. }
  4409. .navbar-form .radio input[type="radio"],
  4410. .navbar-form .checkbox input[type="checkbox"] {
  4411. position: relative;
  4412. margin-left: 0;
  4413. }
  4414. .navbar-form .has-feedback .form-control-feedback {
  4415. top: 0;
  4416. }
  4417. }
  4418. @media (max-width: 540px) {
  4419. .navbar-form .form-group {
  4420. margin-bottom: 5px;
  4421. }
  4422. .navbar-form .form-group:last-child {
  4423. margin-bottom: 0;
  4424. }
  4425. }
  4426. @media (min-width: 541px) {
  4427. .navbar-form {
  4428. width: auto;
  4429. border: 0;
  4430. margin-left: 0;
  4431. margin-right: 0;
  4432. padding-top: 0;
  4433. padding-bottom: 0;
  4434. -webkit-box-shadow: none;
  4435. box-shadow: none;
  4436. }
  4437. }
  4438. .navbar-nav > li > .dropdown-menu {
  4439. margin-top: 0;
  4440. border-top-right-radius: 0;
  4441. border-top-left-radius: 0;
  4442. }
  4443. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4444. margin-bottom: 0;
  4445. border-top-right-radius: 2px;
  4446. border-top-left-radius: 2px;
  4447. border-bottom-right-radius: 0;
  4448. border-bottom-left-radius: 0;
  4449. }
  4450. .navbar-btn {
  4451. margin-top: -1px;
  4452. margin-bottom: -1px;
  4453. }
  4454. .navbar-btn.btn-sm {
  4455. margin-top: 0px;
  4456. margin-bottom: 0px;
  4457. }
  4458. .navbar-btn.btn-xs {
  4459. margin-top: 4px;
  4460. margin-bottom: 4px;
  4461. }
  4462. .navbar-text {
  4463. margin-top: 6px;
  4464. margin-bottom: 6px;
  4465. }
  4466. @media (min-width: 541px) {
  4467. .navbar-text {
  4468. float: left;
  4469. margin-left: 0px;
  4470. margin-right: 0px;
  4471. }
  4472. }
  4473. @media (min-width: 541px) {
  4474. .navbar-left {
  4475. float: left !important;
  4476. float: left;
  4477. }
  4478. .navbar-right {
  4479. float: right !important;
  4480. float: right;
  4481. margin-right: 0px;
  4482. }
  4483. .navbar-right ~ .navbar-right {
  4484. margin-right: 0;
  4485. }
  4486. }
  4487. .navbar-default {
  4488. background-color: #f8f8f8;
  4489. border-color: #e7e7e7;
  4490. }
  4491. .navbar-default .navbar-brand {
  4492. color: #777;
  4493. }
  4494. .navbar-default .navbar-brand:hover,
  4495. .navbar-default .navbar-brand:focus {
  4496. color: #5e5e5e;
  4497. background-color: transparent;
  4498. }
  4499. .navbar-default .navbar-text {
  4500. color: #777;
  4501. }
  4502. .navbar-default .navbar-nav > li > a {
  4503. color: #777;
  4504. }
  4505. .navbar-default .navbar-nav > li > a:hover,
  4506. .navbar-default .navbar-nav > li > a:focus {
  4507. color: #333;
  4508. background-color: transparent;
  4509. }
  4510. .navbar-default .navbar-nav > .active > a,
  4511. .navbar-default .navbar-nav > .active > a:hover,
  4512. .navbar-default .navbar-nav > .active > a:focus {
  4513. color: #555;
  4514. background-color: #e7e7e7;
  4515. }
  4516. .navbar-default .navbar-nav > .disabled > a,
  4517. .navbar-default .navbar-nav > .disabled > a:hover,
  4518. .navbar-default .navbar-nav > .disabled > a:focus {
  4519. color: #ccc;
  4520. background-color: transparent;
  4521. }
  4522. .navbar-default .navbar-toggle {
  4523. border-color: #ddd;
  4524. }
  4525. .navbar-default .navbar-toggle:hover,
  4526. .navbar-default .navbar-toggle:focus {
  4527. background-color: #ddd;
  4528. }
  4529. .navbar-default .navbar-toggle .icon-bar {
  4530. background-color: #888;
  4531. }
  4532. .navbar-default .navbar-collapse,
  4533. .navbar-default .navbar-form {
  4534. border-color: #e7e7e7;
  4535. }
  4536. .navbar-default .navbar-nav > .open > a,
  4537. .navbar-default .navbar-nav > .open > a:hover,
  4538. .navbar-default .navbar-nav > .open > a:focus {
  4539. background-color: #e7e7e7;
  4540. color: #555;
  4541. }
  4542. @media (max-width: 540px) {
  4543. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4544. color: #777;
  4545. }
  4546. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4547. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4548. color: #333;
  4549. background-color: transparent;
  4550. }
  4551. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4552. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4553. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4554. color: #555;
  4555. background-color: #e7e7e7;
  4556. }
  4557. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4558. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4559. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4560. color: #ccc;
  4561. background-color: transparent;
  4562. }
  4563. }
  4564. .navbar-default .navbar-link {
  4565. color: #777;
  4566. }
  4567. .navbar-default .navbar-link:hover {
  4568. color: #333;
  4569. }
  4570. .navbar-default .btn-link {
  4571. color: #777;
  4572. }
  4573. .navbar-default .btn-link:hover,
  4574. .navbar-default .btn-link:focus {
  4575. color: #333;
  4576. }
  4577. .navbar-default .btn-link[disabled]:hover,
  4578. fieldset[disabled] .navbar-default .btn-link:hover,
  4579. .navbar-default .btn-link[disabled]:focus,
  4580. fieldset[disabled] .navbar-default .btn-link:focus {
  4581. color: #ccc;
  4582. }
  4583. .navbar-inverse {
  4584. background-color: #222;
  4585. border-color: #080808;
  4586. }
  4587. .navbar-inverse .navbar-brand {
  4588. color: #9d9d9d;
  4589. }
  4590. .navbar-inverse .navbar-brand:hover,
  4591. .navbar-inverse .navbar-brand:focus {
  4592. color: #fff;
  4593. background-color: transparent;
  4594. }
  4595. .navbar-inverse .navbar-text {
  4596. color: #9d9d9d;
  4597. }
  4598. .navbar-inverse .navbar-nav > li > a {
  4599. color: #9d9d9d;
  4600. }
  4601. .navbar-inverse .navbar-nav > li > a:hover,
  4602. .navbar-inverse .navbar-nav > li > a:focus {
  4603. color: #fff;
  4604. background-color: transparent;
  4605. }
  4606. .navbar-inverse .navbar-nav > .active > a,
  4607. .navbar-inverse .navbar-nav > .active > a:hover,
  4608. .navbar-inverse .navbar-nav > .active > a:focus {
  4609. color: #fff;
  4610. background-color: #080808;
  4611. }
  4612. .navbar-inverse .navbar-nav > .disabled > a,
  4613. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4614. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4615. color: #444;
  4616. background-color: transparent;
  4617. }
  4618. .navbar-inverse .navbar-toggle {
  4619. border-color: #333;
  4620. }
  4621. .navbar-inverse .navbar-toggle:hover,
  4622. .navbar-inverse .navbar-toggle:focus {
  4623. background-color: #333;
  4624. }
  4625. .navbar-inverse .navbar-toggle .icon-bar {
  4626. background-color: #fff;
  4627. }
  4628. .navbar-inverse .navbar-collapse,
  4629. .navbar-inverse .navbar-form {
  4630. border-color: #101010;
  4631. }
  4632. .navbar-inverse .navbar-nav > .open > a,
  4633. .navbar-inverse .navbar-nav > .open > a:hover,
  4634. .navbar-inverse .navbar-nav > .open > a:focus {
  4635. background-color: #080808;
  4636. color: #fff;
  4637. }
  4638. @media (max-width: 540px) {
  4639. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4640. border-color: #080808;
  4641. }
  4642. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4643. background-color: #080808;
  4644. }
  4645. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4646. color: #9d9d9d;
  4647. }
  4648. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4649. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4650. color: #fff;
  4651. background-color: transparent;
  4652. }
  4653. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4654. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4655. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4656. color: #fff;
  4657. background-color: #080808;
  4658. }
  4659. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4660. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4661. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4662. color: #444;
  4663. background-color: transparent;
  4664. }
  4665. }
  4666. .navbar-inverse .navbar-link {
  4667. color: #9d9d9d;
  4668. }
  4669. .navbar-inverse .navbar-link:hover {
  4670. color: #fff;
  4671. }
  4672. .navbar-inverse .btn-link {
  4673. color: #9d9d9d;
  4674. }
  4675. .navbar-inverse .btn-link:hover,
  4676. .navbar-inverse .btn-link:focus {
  4677. color: #fff;
  4678. }
  4679. .navbar-inverse .btn-link[disabled]:hover,
  4680. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4681. .navbar-inverse .btn-link[disabled]:focus,
  4682. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4683. color: #444;
  4684. }
  4685. .breadcrumb {
  4686. padding: 8px 15px;
  4687. margin-bottom: 18px;
  4688. list-style: none;
  4689. background-color: #f5f5f5;
  4690. border-radius: 2px;
  4691. }
  4692. .breadcrumb > li {
  4693. display: inline-block;
  4694. }
  4695. .breadcrumb > li + li:before {
  4696. content: "/\00a0";
  4697. padding: 0 5px;
  4698. color: #5e5e5e;
  4699. }
  4700. .breadcrumb > .active {
  4701. color: #777777;
  4702. }
  4703. .pagination {
  4704. display: inline-block;
  4705. padding-left: 0;
  4706. margin: 18px 0;
  4707. border-radius: 2px;
  4708. }
  4709. .pagination > li {
  4710. display: inline;
  4711. }
  4712. .pagination > li > a,
  4713. .pagination > li > span {
  4714. position: relative;
  4715. float: left;
  4716. padding: 6px 12px;
  4717. line-height: 1.42857143;
  4718. text-decoration: none;
  4719. color: #337ab7;
  4720. background-color: #fff;
  4721. border: 1px solid #ddd;
  4722. margin-left: -1px;
  4723. }
  4724. .pagination > li:first-child > a,
  4725. .pagination > li:first-child > span {
  4726. margin-left: 0;
  4727. border-bottom-left-radius: 2px;
  4728. border-top-left-radius: 2px;
  4729. }
  4730. .pagination > li:last-child > a,
  4731. .pagination > li:last-child > span {
  4732. border-bottom-right-radius: 2px;
  4733. border-top-right-radius: 2px;
  4734. }
  4735. .pagination > li > a:hover,
  4736. .pagination > li > span:hover,
  4737. .pagination > li > a:focus,
  4738. .pagination > li > span:focus {
  4739. z-index: 2;
  4740. color: #23527c;
  4741. background-color: #eeeeee;
  4742. border-color: #ddd;
  4743. }
  4744. .pagination > .active > a,
  4745. .pagination > .active > span,
  4746. .pagination > .active > a:hover,
  4747. .pagination > .active > span:hover,
  4748. .pagination > .active > a:focus,
  4749. .pagination > .active > span:focus {
  4750. z-index: 3;
  4751. color: #fff;
  4752. background-color: #337ab7;
  4753. border-color: #337ab7;
  4754. cursor: default;
  4755. }
  4756. .pagination > .disabled > span,
  4757. .pagination > .disabled > span:hover,
  4758. .pagination > .disabled > span:focus,
  4759. .pagination > .disabled > a,
  4760. .pagination > .disabled > a:hover,
  4761. .pagination > .disabled > a:focus {
  4762. color: #777777;
  4763. background-color: #fff;
  4764. border-color: #ddd;
  4765. cursor: not-allowed;
  4766. }
  4767. .pagination-lg > li > a,
  4768. .pagination-lg > li > span {
  4769. padding: 10px 16px;
  4770. font-size: 17px;
  4771. line-height: 1.3333333;
  4772. }
  4773. .pagination-lg > li:first-child > a,
  4774. .pagination-lg > li:first-child > span {
  4775. border-bottom-left-radius: 3px;
  4776. border-top-left-radius: 3px;
  4777. }
  4778. .pagination-lg > li:last-child > a,
  4779. .pagination-lg > li:last-child > span {
  4780. border-bottom-right-radius: 3px;
  4781. border-top-right-radius: 3px;
  4782. }
  4783. .pagination-sm > li > a,
  4784. .pagination-sm > li > span {
  4785. padding: 5px 10px;
  4786. font-size: 12px;
  4787. line-height: 1.5;
  4788. }
  4789. .pagination-sm > li:first-child > a,
  4790. .pagination-sm > li:first-child > span {
  4791. border-bottom-left-radius: 1px;
  4792. border-top-left-radius: 1px;
  4793. }
  4794. .pagination-sm > li:last-child > a,
  4795. .pagination-sm > li:last-child > span {
  4796. border-bottom-right-radius: 1px;
  4797. border-top-right-radius: 1px;
  4798. }
  4799. .pager {
  4800. padding-left: 0;
  4801. margin: 18px 0;
  4802. list-style: none;
  4803. text-align: center;
  4804. }
  4805. .pager li {
  4806. display: inline;
  4807. }
  4808. .pager li > a,
  4809. .pager li > span {
  4810. display: inline-block;
  4811. padding: 5px 14px;
  4812. background-color: #fff;
  4813. border: 1px solid #ddd;
  4814. border-radius: 15px;
  4815. }
  4816. .pager li > a:hover,
  4817. .pager li > a:focus {
  4818. text-decoration: none;
  4819. background-color: #eeeeee;
  4820. }
  4821. .pager .next > a,
  4822. .pager .next > span {
  4823. float: right;
  4824. }
  4825. .pager .previous > a,
  4826. .pager .previous > span {
  4827. float: left;
  4828. }
  4829. .pager .disabled > a,
  4830. .pager .disabled > a:hover,
  4831. .pager .disabled > a:focus,
  4832. .pager .disabled > span {
  4833. color: #777777;
  4834. background-color: #fff;
  4835. cursor: not-allowed;
  4836. }
  4837. .label {
  4838. display: inline;
  4839. padding: .2em .6em .3em;
  4840. font-size: 75%;
  4841. font-weight: bold;
  4842. line-height: 1;
  4843. color: #fff;
  4844. text-align: center;
  4845. white-space: nowrap;
  4846. vertical-align: baseline;
  4847. border-radius: .25em;
  4848. }
  4849. a.label:hover,
  4850. a.label:focus {
  4851. color: #fff;
  4852. text-decoration: none;
  4853. cursor: pointer;
  4854. }
  4855. .label:empty {
  4856. display: none;
  4857. }
  4858. .btn .label {
  4859. position: relative;
  4860. top: -1px;
  4861. }
  4862. .label-default {
  4863. background-color: #777777;
  4864. }
  4865. .label-default[href]:hover,
  4866. .label-default[href]:focus {
  4867. background-color: #5e5e5e;
  4868. }
  4869. .label-primary {
  4870. background-color: #337ab7;
  4871. }
  4872. .label-primary[href]:hover,
  4873. .label-primary[href]:focus {
  4874. background-color: #286090;
  4875. }
  4876. .label-success {
  4877. background-color: #5cb85c;
  4878. }
  4879. .label-success[href]:hover,
  4880. .label-success[href]:focus {
  4881. background-color: #449d44;
  4882. }
  4883. .label-info {
  4884. background-color: #5bc0de;
  4885. }
  4886. .label-info[href]:hover,
  4887. .label-info[href]:focus {
  4888. background-color: #31b0d5;
  4889. }
  4890. .label-warning {
  4891. background-color: #f0ad4e;
  4892. }
  4893. .label-warning[href]:hover,
  4894. .label-warning[href]:focus {
  4895. background-color: #ec971f;
  4896. }
  4897. .label-danger {
  4898. background-color: #d9534f;
  4899. }
  4900. .label-danger[href]:hover,
  4901. .label-danger[href]:focus {
  4902. background-color: #c9302c;
  4903. }
  4904. .badge {
  4905. display: inline-block;
  4906. min-width: 10px;
  4907. padding: 3px 7px;
  4908. font-size: 12px;
  4909. font-weight: bold;
  4910. color: #fff;
  4911. line-height: 1;
  4912. vertical-align: middle;
  4913. white-space: nowrap;
  4914. text-align: center;
  4915. background-color: #777777;
  4916. border-radius: 10px;
  4917. }
  4918. .badge:empty {
  4919. display: none;
  4920. }
  4921. .btn .badge {
  4922. position: relative;
  4923. top: -1px;
  4924. }
  4925. .btn-xs .badge,
  4926. .btn-group-xs > .btn .badge {
  4927. top: 0;
  4928. padding: 1px 5px;
  4929. }
  4930. a.badge:hover,
  4931. a.badge:focus {
  4932. color: #fff;
  4933. text-decoration: none;
  4934. cursor: pointer;
  4935. }
  4936. .list-group-item.active > .badge,
  4937. .nav-pills > .active > a > .badge {
  4938. color: #337ab7;
  4939. background-color: #fff;
  4940. }
  4941. .list-group-item > .badge {
  4942. float: right;
  4943. }
  4944. .list-group-item > .badge + .badge {
  4945. margin-right: 5px;
  4946. }
  4947. .nav-pills > li > a > .badge {
  4948. margin-left: 3px;
  4949. }
  4950. .jumbotron {
  4951. padding-top: 30px;
  4952. padding-bottom: 30px;
  4953. margin-bottom: 30px;
  4954. color: inherit;
  4955. background-color: #eeeeee;
  4956. }
  4957. .jumbotron h1,
  4958. .jumbotron .h1 {
  4959. color: inherit;
  4960. }
  4961. .jumbotron p {
  4962. margin-bottom: 15px;
  4963. font-size: 20px;
  4964. font-weight: 200;
  4965. }
  4966. .jumbotron > hr {
  4967. border-top-color: #d5d5d5;
  4968. }
  4969. .container .jumbotron,
  4970. .container-fluid .jumbotron {
  4971. border-radius: 3px;
  4972. padding-left: 0px;
  4973. padding-right: 0px;
  4974. }
  4975. .jumbotron .container {
  4976. max-width: 100%;
  4977. }
  4978. @media screen and (min-width: 768px) {
  4979. .jumbotron {
  4980. padding-top: 48px;
  4981. padding-bottom: 48px;
  4982. }
  4983. .container .jumbotron,
  4984. .container-fluid .jumbotron {
  4985. padding-left: 60px;
  4986. padding-right: 60px;
  4987. }
  4988. .jumbotron h1,
  4989. .jumbotron .h1 {
  4990. font-size: 59px;
  4991. }
  4992. }
  4993. .thumbnail {
  4994. display: block;
  4995. padding: 4px;
  4996. margin-bottom: 18px;
  4997. line-height: 1.42857143;
  4998. background-color: #fff;
  4999. border: 1px solid #ddd;
  5000. border-radius: 2px;
  5001. -webkit-transition: border 0.2s ease-in-out;
  5002. -o-transition: border 0.2s ease-in-out;
  5003. transition: border 0.2s ease-in-out;
  5004. }
  5005. .thumbnail > img,
  5006. .thumbnail a > img {
  5007. margin-left: auto;
  5008. margin-right: auto;
  5009. }
  5010. a.thumbnail:hover,
  5011. a.thumbnail:focus,
  5012. a.thumbnail.active {
  5013. border-color: #337ab7;
  5014. }
  5015. .thumbnail .caption {
  5016. padding: 9px;
  5017. color: #000;
  5018. }
  5019. .alert {
  5020. padding: 15px;
  5021. margin-bottom: 18px;
  5022. border: 1px solid transparent;
  5023. border-radius: 2px;
  5024. }
  5025. .alert h4 {
  5026. margin-top: 0;
  5027. color: inherit;
  5028. }
  5029. .alert .alert-link {
  5030. font-weight: bold;
  5031. }
  5032. .alert > p,
  5033. .alert > ul {
  5034. margin-bottom: 0;
  5035. }
  5036. .alert > p + p {
  5037. margin-top: 5px;
  5038. }
  5039. .alert-dismissable,
  5040. .alert-dismissible {
  5041. padding-right: 35px;
  5042. }
  5043. .alert-dismissable .close,
  5044. .alert-dismissible .close {
  5045. position: relative;
  5046. top: -2px;
  5047. right: -21px;
  5048. color: inherit;
  5049. }
  5050. .alert-success {
  5051. background-color: #dff0d8;
  5052. border-color: #d6e9c6;
  5053. color: #3c763d;
  5054. }
  5055. .alert-success hr {
  5056. border-top-color: #c9e2b3;
  5057. }
  5058. .alert-success .alert-link {
  5059. color: #2b542c;
  5060. }
  5061. .alert-info {
  5062. background-color: #d9edf7;
  5063. border-color: #bce8f1;
  5064. color: #31708f;
  5065. }
  5066. .alert-info hr {
  5067. border-top-color: #a6e1ec;
  5068. }
  5069. .alert-info .alert-link {
  5070. color: #245269;
  5071. }
  5072. .alert-warning {
  5073. background-color: #fcf8e3;
  5074. border-color: #faebcc;
  5075. color: #8a6d3b;
  5076. }
  5077. .alert-warning hr {
  5078. border-top-color: #f7e1b5;
  5079. }
  5080. .alert-warning .alert-link {
  5081. color: #66512c;
  5082. }
  5083. .alert-danger {
  5084. background-color: #f2dede;
  5085. border-color: #ebccd1;
  5086. color: #a94442;
  5087. }
  5088. .alert-danger hr {
  5089. border-top-color: #e4b9c0;
  5090. }
  5091. .alert-danger .alert-link {
  5092. color: #843534;
  5093. }
  5094. @-webkit-keyframes progress-bar-stripes {
  5095. from {
  5096. background-position: 40px 0;
  5097. }
  5098. to {
  5099. background-position: 0 0;
  5100. }
  5101. }
  5102. @keyframes progress-bar-stripes {
  5103. from {
  5104. background-position: 40px 0;
  5105. }
  5106. to {
  5107. background-position: 0 0;
  5108. }
  5109. }
  5110. .progress {
  5111. overflow: hidden;
  5112. height: 18px;
  5113. margin-bottom: 18px;
  5114. background-color: #f5f5f5;
  5115. border-radius: 2px;
  5116. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5117. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5118. }
  5119. .progress-bar {
  5120. float: left;
  5121. width: 0%;
  5122. height: 100%;
  5123. font-size: 12px;
  5124. line-height: 18px;
  5125. color: #fff;
  5126. text-align: center;
  5127. background-color: #337ab7;
  5128. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5129. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5130. -webkit-transition: width 0.6s ease;
  5131. -o-transition: width 0.6s ease;
  5132. transition: width 0.6s ease;
  5133. }
  5134. .progress-striped .progress-bar,
  5135. .progress-bar-striped {
  5136. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5137. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5138. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  5139. background-size: 40px 40px;
  5140. }
  5141. .progress.active .progress-bar,
  5142. .progress-bar.active {
  5143. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5144. -o-animation: progress-bar-stripes 2s linear infinite;
  5145. animation: progress-bar-stripes 2s linear infinite;
  5146. }
  5147. .progress-bar-success {
  5148. background-color: #5cb85c;
  5149. }
  5150. .progress-striped .progress-bar-success {
  5151. 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);
  5152. 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);
  5153. 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);
  5154. }
  5155. .progress-bar-info {
  5156. background-color: #5bc0de;
  5157. }
  5158. .progress-striped .progress-bar-info {
  5159. 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);
  5160. 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);
  5161. 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);
  5162. }
  5163. .progress-bar-warning {
  5164. background-color: #f0ad4e;
  5165. }
  5166. .progress-striped .progress-bar-warning {
  5167. 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);
  5168. 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);
  5169. 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);
  5170. }
  5171. .progress-bar-danger {
  5172. background-color: #d9534f;
  5173. }
  5174. .progress-striped .progress-bar-danger {
  5175. 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);
  5176. 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);
  5177. 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);
  5178. }
  5179. .media {
  5180. margin-top: 15px;
  5181. }
  5182. .media:first-child {
  5183. margin-top: 0;
  5184. }
  5185. .media,
  5186. .media-body {
  5187. zoom: 1;
  5188. overflow: hidden;
  5189. }
  5190. .media-body {
  5191. width: 10000px;
  5192. }
  5193. .media-object {
  5194. display: block;
  5195. }
  5196. .media-object.img-thumbnail {
  5197. max-width: none;
  5198. }
  5199. .media-right,
  5200. .media > .pull-right {
  5201. padding-left: 10px;
  5202. }
  5203. .media-left,
  5204. .media > .pull-left {
  5205. padding-right: 10px;
  5206. }
  5207. .media-left,
  5208. .media-right,
  5209. .media-body {
  5210. display: table-cell;
  5211. vertical-align: top;
  5212. }
  5213. .media-middle {
  5214. vertical-align: middle;
  5215. }
  5216. .media-bottom {
  5217. vertical-align: bottom;
  5218. }
  5219. .media-heading {
  5220. margin-top: 0;
  5221. margin-bottom: 5px;
  5222. }
  5223. .media-list {
  5224. padding-left: 0;
  5225. list-style: none;
  5226. }
  5227. .list-group {
  5228. margin-bottom: 20px;
  5229. padding-left: 0;
  5230. }
  5231. .list-group-item {
  5232. position: relative;
  5233. display: block;
  5234. padding: 10px 15px;
  5235. margin-bottom: -1px;
  5236. background-color: #fff;
  5237. border: 1px solid #ddd;
  5238. }
  5239. .list-group-item:first-child {
  5240. border-top-right-radius: 2px;
  5241. border-top-left-radius: 2px;
  5242. }
  5243. .list-group-item:last-child {
  5244. margin-bottom: 0;
  5245. border-bottom-right-radius: 2px;
  5246. border-bottom-left-radius: 2px;
  5247. }
  5248. a.list-group-item,
  5249. button.list-group-item {
  5250. color: #555;
  5251. }
  5252. a.list-group-item .list-group-item-heading,
  5253. button.list-group-item .list-group-item-heading {
  5254. color: #333;
  5255. }
  5256. a.list-group-item:hover,
  5257. button.list-group-item:hover,
  5258. a.list-group-item:focus,
  5259. button.list-group-item:focus {
  5260. text-decoration: none;
  5261. color: #555;
  5262. background-color: #f5f5f5;
  5263. }
  5264. button.list-group-item {
  5265. width: 100%;
  5266. text-align: left;
  5267. }
  5268. .list-group-item.disabled,
  5269. .list-group-item.disabled:hover,
  5270. .list-group-item.disabled:focus {
  5271. background-color: #eeeeee;
  5272. color: #777777;
  5273. cursor: not-allowed;
  5274. }
  5275. .list-group-item.disabled .list-group-item-heading,
  5276. .list-group-item.disabled:hover .list-group-item-heading,
  5277. .list-group-item.disabled:focus .list-group-item-heading {
  5278. color: inherit;
  5279. }
  5280. .list-group-item.disabled .list-group-item-text,
  5281. .list-group-item.disabled:hover .list-group-item-text,
  5282. .list-group-item.disabled:focus .list-group-item-text {
  5283. color: #777777;
  5284. }
  5285. .list-group-item.active,
  5286. .list-group-item.active:hover,
  5287. .list-group-item.active:focus {
  5288. z-index: 2;
  5289. color: #fff;
  5290. background-color: #337ab7;
  5291. border-color: #337ab7;
  5292. }
  5293. .list-group-item.active .list-group-item-heading,
  5294. .list-group-item.active:hover .list-group-item-heading,
  5295. .list-group-item.active:focus .list-group-item-heading,
  5296. .list-group-item.active .list-group-item-heading > small,
  5297. .list-group-item.active:hover .list-group-item-heading > small,
  5298. .list-group-item.active:focus .list-group-item-heading > small,
  5299. .list-group-item.active .list-group-item-heading > .small,
  5300. .list-group-item.active:hover .list-group-item-heading > .small,
  5301. .list-group-item.active:focus .list-group-item-heading > .small {
  5302. color: inherit;
  5303. }
  5304. .list-group-item.active .list-group-item-text,
  5305. .list-group-item.active:hover .list-group-item-text,
  5306. .list-group-item.active:focus .list-group-item-text {
  5307. color: #c7ddef;
  5308. }
  5309. .list-group-item-success {
  5310. color: #3c763d;
  5311. background-color: #dff0d8;
  5312. }
  5313. a.list-group-item-success,
  5314. button.list-group-item-success {
  5315. color: #3c763d;
  5316. }
  5317. a.list-group-item-success .list-group-item-heading,
  5318. button.list-group-item-success .list-group-item-heading {
  5319. color: inherit;
  5320. }
  5321. a.list-group-item-success:hover,
  5322. button.list-group-item-success:hover,
  5323. a.list-group-item-success:focus,
  5324. button.list-group-item-success:focus {
  5325. color: #3c763d;
  5326. background-color: #d0e9c6;
  5327. }
  5328. a.list-group-item-success.active,
  5329. button.list-group-item-success.active,
  5330. a.list-group-item-success.active:hover,
  5331. button.list-group-item-success.active:hover,
  5332. a.list-group-item-success.active:focus,
  5333. button.list-group-item-success.active:focus {
  5334. color: #fff;
  5335. background-color: #3c763d;
  5336. border-color: #3c763d;
  5337. }
  5338. .list-group-item-info {
  5339. color: #31708f;
  5340. background-color: #d9edf7;
  5341. }
  5342. a.list-group-item-info,
  5343. button.list-group-item-info {
  5344. color: #31708f;
  5345. }
  5346. a.list-group-item-info .list-group-item-heading,
  5347. button.list-group-item-info .list-group-item-heading {
  5348. color: inherit;
  5349. }
  5350. a.list-group-item-info:hover,
  5351. button.list-group-item-info:hover,
  5352. a.list-group-item-info:focus,
  5353. button.list-group-item-info:focus {
  5354. color: #31708f;
  5355. background-color: #c4e3f3;
  5356. }
  5357. a.list-group-item-info.active,
  5358. button.list-group-item-info.active,
  5359. a.list-group-item-info.active:hover,
  5360. button.list-group-item-info.active:hover,
  5361. a.list-group-item-info.active:focus,
  5362. button.list-group-item-info.active:focus {
  5363. color: #fff;
  5364. background-color: #31708f;
  5365. border-color: #31708f;
  5366. }
  5367. .list-group-item-warning {
  5368. color: #8a6d3b;
  5369. background-color: #fcf8e3;
  5370. }
  5371. a.list-group-item-warning,
  5372. button.list-group-item-warning {
  5373. color: #8a6d3b;
  5374. }
  5375. a.list-group-item-warning .list-group-item-heading,
  5376. button.list-group-item-warning .list-group-item-heading {
  5377. color: inherit;
  5378. }
  5379. a.list-group-item-warning:hover,
  5380. button.list-group-item-warning:hover,
  5381. a.list-group-item-warning:focus,
  5382. button.list-group-item-warning:focus {
  5383. color: #8a6d3b;
  5384. background-color: #faf2cc;
  5385. }
  5386. a.list-group-item-warning.active,
  5387. button.list-group-item-warning.active,
  5388. a.list-group-item-warning.active:hover,
  5389. button.list-group-item-warning.active:hover,
  5390. a.list-group-item-warning.active:focus,
  5391. button.list-group-item-warning.active:focus {
  5392. color: #fff;
  5393. background-color: #8a6d3b;
  5394. border-color: #8a6d3b;
  5395. }
  5396. .list-group-item-danger {
  5397. color: #a94442;
  5398. background-color: #f2dede;
  5399. }
  5400. a.list-group-item-danger,
  5401. button.list-group-item-danger {
  5402. color: #a94442;
  5403. }
  5404. a.list-group-item-danger .list-group-item-heading,
  5405. button.list-group-item-danger .list-group-item-heading {
  5406. color: inherit;
  5407. }
  5408. a.list-group-item-danger:hover,
  5409. button.list-group-item-danger:hover,
  5410. a.list-group-item-danger:focus,
  5411. button.list-group-item-danger:focus {
  5412. color: #a94442;
  5413. background-color: #ebcccc;
  5414. }
  5415. a.list-group-item-danger.active,
  5416. button.list-group-item-danger.active,
  5417. a.list-group-item-danger.active:hover,
  5418. button.list-group-item-danger.active:hover,
  5419. a.list-group-item-danger.active:focus,
  5420. button.list-group-item-danger.active:focus {
  5421. color: #fff;
  5422. background-color: #a94442;
  5423. border-color: #a94442;
  5424. }
  5425. .list-group-item-heading {
  5426. margin-top: 0;
  5427. margin-bottom: 5px;
  5428. }
  5429. .list-group-item-text {
  5430. margin-bottom: 0;
  5431. line-height: 1.3;
  5432. }
  5433. .panel {
  5434. margin-bottom: 18px;
  5435. background-color: #fff;
  5436. border: 1px solid transparent;
  5437. border-radius: 2px;
  5438. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5439. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5440. }
  5441. .panel-body {
  5442. padding: 15px;
  5443. }
  5444. .panel-heading {
  5445. padding: 10px 15px;
  5446. border-bottom: 1px solid transparent;
  5447. border-top-right-radius: 1px;
  5448. border-top-left-radius: 1px;
  5449. }
  5450. .panel-heading > .dropdown .dropdown-toggle {
  5451. color: inherit;
  5452. }
  5453. .panel-title {
  5454. margin-top: 0;
  5455. margin-bottom: 0;
  5456. font-size: 15px;
  5457. color: inherit;
  5458. }
  5459. .panel-title > a,
  5460. .panel-title > small,
  5461. .panel-title > .small,
  5462. .panel-title > small > a,
  5463. .panel-title > .small > a {
  5464. color: inherit;
  5465. }
  5466. .panel-footer {
  5467. padding: 10px 15px;
  5468. background-color: #f5f5f5;
  5469. border-top: 1px solid #ddd;
  5470. border-bottom-right-radius: 1px;
  5471. border-bottom-left-radius: 1px;
  5472. }
  5473. .panel > .list-group,
  5474. .panel > .panel-collapse > .list-group {
  5475. margin-bottom: 0;
  5476. }
  5477. .panel > .list-group .list-group-item,
  5478. .panel > .panel-collapse > .list-group .list-group-item {
  5479. border-width: 1px 0;
  5480. border-radius: 0;
  5481. }
  5482. .panel > .list-group:first-child .list-group-item:first-child,
  5483. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5484. border-top: 0;
  5485. border-top-right-radius: 1px;
  5486. border-top-left-radius: 1px;
  5487. }
  5488. .panel > .list-group:last-child .list-group-item:last-child,
  5489. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5490. border-bottom: 0;
  5491. border-bottom-right-radius: 1px;
  5492. border-bottom-left-radius: 1px;
  5493. }
  5494. .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  5495. border-top-right-radius: 0;
  5496. border-top-left-radius: 0;
  5497. }
  5498. .panel-heading + .list-group .list-group-item:first-child {
  5499. border-top-width: 0;
  5500. }
  5501. .list-group + .panel-footer {
  5502. border-top-width: 0;
  5503. }
  5504. .panel > .table,
  5505. .panel > .table-responsive > .table,
  5506. .panel > .panel-collapse > .table {
  5507. margin-bottom: 0;
  5508. }
  5509. .panel > .table caption,
  5510. .panel > .table-responsive > .table caption,
  5511. .panel > .panel-collapse > .table caption {
  5512. padding-left: 15px;
  5513. padding-right: 15px;
  5514. }
  5515. .panel > .table:first-child,
  5516. .panel > .table-responsive:first-child > .table:first-child {
  5517. border-top-right-radius: 1px;
  5518. border-top-left-radius: 1px;
  5519. }
  5520. .panel > .table:first-child > thead:first-child > tr:first-child,
  5521. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5522. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5523. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5524. border-top-left-radius: 1px;
  5525. border-top-right-radius: 1px;
  5526. }
  5527. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5528. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5529. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5530. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5531. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5532. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5533. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5534. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5535. border-top-left-radius: 1px;
  5536. }
  5537. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5538. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5539. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5540. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5541. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5542. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5543. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5544. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5545. border-top-right-radius: 1px;
  5546. }
  5547. .panel > .table:last-child,
  5548. .panel > .table-responsive:last-child > .table:last-child {
  5549. border-bottom-right-radius: 1px;
  5550. border-bottom-left-radius: 1px;
  5551. }
  5552. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5553. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5554. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5555. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5556. border-bottom-left-radius: 1px;
  5557. border-bottom-right-radius: 1px;
  5558. }
  5559. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5560. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5561. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5562. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5563. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5564. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5565. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5566. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5567. border-bottom-left-radius: 1px;
  5568. }
  5569. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5570. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5571. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5572. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5573. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5574. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5575. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5576. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5577. border-bottom-right-radius: 1px;
  5578. }
  5579. .panel > .panel-body + .table,
  5580. .panel > .panel-body + .table-responsive,
  5581. .panel > .table + .panel-body,
  5582. .panel > .table-responsive + .panel-body {
  5583. border-top: 1px solid #ddd;
  5584. }
  5585. .panel > .table > tbody:first-child > tr:first-child th,
  5586. .panel > .table > tbody:first-child > tr:first-child td {
  5587. border-top: 0;
  5588. }
  5589. .panel > .table-bordered,
  5590. .panel > .table-responsive > .table-bordered {
  5591. border: 0;
  5592. }
  5593. .panel > .table-bordered > thead > tr > th:first-child,
  5594. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5595. .panel > .table-bordered > tbody > tr > th:first-child,
  5596. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5597. .panel > .table-bordered > tfoot > tr > th:first-child,
  5598. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5599. .panel > .table-bordered > thead > tr > td:first-child,
  5600. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5601. .panel > .table-bordered > tbody > tr > td:first-child,
  5602. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5603. .panel > .table-bordered > tfoot > tr > td:first-child,
  5604. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5605. border-left: 0;
  5606. }
  5607. .panel > .table-bordered > thead > tr > th:last-child,
  5608. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5609. .panel > .table-bordered > tbody > tr > th:last-child,
  5610. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5611. .panel > .table-bordered > tfoot > tr > th:last-child,
  5612. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5613. .panel > .table-bordered > thead > tr > td:last-child,
  5614. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5615. .panel > .table-bordered > tbody > tr > td:last-child,
  5616. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5617. .panel > .table-bordered > tfoot > tr > td:last-child,
  5618. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5619. border-right: 0;
  5620. }
  5621. .panel > .table-bordered > thead > tr:first-child > td,
  5622. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5623. .panel > .table-bordered > tbody > tr:first-child > td,
  5624. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5625. .panel > .table-bordered > thead > tr:first-child > th,
  5626. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5627. .panel > .table-bordered > tbody > tr:first-child > th,
  5628. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5629. border-bottom: 0;
  5630. }
  5631. .panel > .table-bordered > tbody > tr:last-child > td,
  5632. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5633. .panel > .table-bordered > tfoot > tr:last-child > td,
  5634. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5635. .panel > .table-bordered > tbody > tr:last-child > th,
  5636. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5637. .panel > .table-bordered > tfoot > tr:last-child > th,
  5638. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5639. border-bottom: 0;
  5640. }
  5641. .panel > .table-responsive {
  5642. border: 0;
  5643. margin-bottom: 0;
  5644. }
  5645. .panel-group {
  5646. margin-bottom: 18px;
  5647. }
  5648. .panel-group .panel {
  5649. margin-bottom: 0;
  5650. border-radius: 2px;
  5651. }
  5652. .panel-group .panel + .panel {
  5653. margin-top: 5px;
  5654. }
  5655. .panel-group .panel-heading {
  5656. border-bottom: 0;
  5657. }
  5658. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5659. .panel-group .panel-heading + .panel-collapse > .list-group {
  5660. border-top: 1px solid #ddd;
  5661. }
  5662. .panel-group .panel-footer {
  5663. border-top: 0;
  5664. }
  5665. .panel-group .panel-footer + .panel-collapse .panel-body {
  5666. border-bottom: 1px solid #ddd;
  5667. }
  5668. .panel-default {
  5669. border-color: #ddd;
  5670. }
  5671. .panel-default > .panel-heading {
  5672. color: #333333;
  5673. background-color: #f5f5f5;
  5674. border-color: #ddd;
  5675. }
  5676. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5677. border-top-color: #ddd;
  5678. }
  5679. .panel-default > .panel-heading .badge {
  5680. color: #f5f5f5;
  5681. background-color: #333333;
  5682. }
  5683. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5684. border-bottom-color: #ddd;
  5685. }
  5686. .panel-primary {
  5687. border-color: #337ab7;
  5688. }
  5689. .panel-primary > .panel-heading {
  5690. color: #fff;
  5691. background-color: #337ab7;
  5692. border-color: #337ab7;
  5693. }
  5694. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5695. border-top-color: #337ab7;
  5696. }
  5697. .panel-primary > .panel-heading .badge {
  5698. color: #337ab7;
  5699. background-color: #fff;
  5700. }
  5701. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5702. border-bottom-color: #337ab7;
  5703. }
  5704. .panel-success {
  5705. border-color: #d6e9c6;
  5706. }
  5707. .panel-success > .panel-heading {
  5708. color: #3c763d;
  5709. background-color: #dff0d8;
  5710. border-color: #d6e9c6;
  5711. }
  5712. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5713. border-top-color: #d6e9c6;
  5714. }
  5715. .panel-success > .panel-heading .badge {
  5716. color: #dff0d8;
  5717. background-color: #3c763d;
  5718. }
  5719. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5720. border-bottom-color: #d6e9c6;
  5721. }
  5722. .panel-info {
  5723. border-color: #bce8f1;
  5724. }
  5725. .panel-info > .panel-heading {
  5726. color: #31708f;
  5727. background-color: #d9edf7;
  5728. border-color: #bce8f1;
  5729. }
  5730. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5731. border-top-color: #bce8f1;
  5732. }
  5733. .panel-info > .panel-heading .badge {
  5734. color: #d9edf7;
  5735. background-color: #31708f;
  5736. }
  5737. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5738. border-bottom-color: #bce8f1;
  5739. }
  5740. .panel-warning {
  5741. border-color: #faebcc;
  5742. }
  5743. .panel-warning > .panel-heading {
  5744. color: #8a6d3b;
  5745. background-color: #fcf8e3;
  5746. border-color: #faebcc;
  5747. }
  5748. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5749. border-top-color: #faebcc;
  5750. }
  5751. .panel-warning > .panel-heading .badge {
  5752. color: #fcf8e3;
  5753. background-color: #8a6d3b;
  5754. }
  5755. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5756. border-bottom-color: #faebcc;
  5757. }
  5758. .panel-danger {
  5759. border-color: #ebccd1;
  5760. }
  5761. .panel-danger > .panel-heading {
  5762. color: #a94442;
  5763. background-color: #f2dede;
  5764. border-color: #ebccd1;
  5765. }
  5766. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5767. border-top-color: #ebccd1;
  5768. }
  5769. .panel-danger > .panel-heading .badge {
  5770. color: #f2dede;
  5771. background-color: #a94442;
  5772. }
  5773. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5774. border-bottom-color: #ebccd1;
  5775. }
  5776. .embed-responsive {
  5777. position: relative;
  5778. display: block;
  5779. height: 0;
  5780. padding: 0;
  5781. overflow: hidden;
  5782. }
  5783. .embed-responsive .embed-responsive-item,
  5784. .embed-responsive iframe,
  5785. .embed-responsive embed,
  5786. .embed-responsive object,
  5787. .embed-responsive video {
  5788. position: absolute;
  5789. top: 0;
  5790. left: 0;
  5791. bottom: 0;
  5792. height: 100%;
  5793. width: 100%;
  5794. border: 0;
  5795. }
  5796. .embed-responsive-16by9 {
  5797. padding-bottom: 56.25%;
  5798. }
  5799. .embed-responsive-4by3 {
  5800. padding-bottom: 75%;
  5801. }
  5802. .well {
  5803. min-height: 20px;
  5804. padding: 19px;
  5805. margin-bottom: 20px;
  5806. background-color: #f5f5f5;
  5807. border: 1px solid #e3e3e3;
  5808. border-radius: 2px;
  5809. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5810. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5811. }
  5812. .well blockquote {
  5813. border-color: #ddd;
  5814. border-color: rgba(0, 0, 0, 0.15);
  5815. }
  5816. .well-lg {
  5817. padding: 24px;
  5818. border-radius: 3px;
  5819. }
  5820. .well-sm {
  5821. padding: 9px;
  5822. border-radius: 1px;
  5823. }
  5824. .close {
  5825. float: right;
  5826. font-size: 19.5px;
  5827. font-weight: bold;
  5828. line-height: 1;
  5829. color: #000;
  5830. text-shadow: 0 1px 0 #fff;
  5831. opacity: 0.2;
  5832. filter: alpha(opacity=20);
  5833. }
  5834. .close:hover,
  5835. .close:focus {
  5836. color: #000;
  5837. text-decoration: none;
  5838. cursor: pointer;
  5839. opacity: 0.5;
  5840. filter: alpha(opacity=50);
  5841. }
  5842. button.close {
  5843. padding: 0;
  5844. cursor: pointer;
  5845. background: transparent;
  5846. border: 0;
  5847. -webkit-appearance: none;
  5848. }
  5849. .modal-open {
  5850. overflow: hidden;
  5851. }
  5852. .modal {
  5853. display: none;
  5854. overflow: hidden;
  5855. position: fixed;
  5856. top: 0;
  5857. right: 0;
  5858. bottom: 0;
  5859. left: 0;
  5860. z-index: 1050;
  5861. -webkit-overflow-scrolling: touch;
  5862. outline: 0;
  5863. }
  5864. .modal.fade .modal-dialog {
  5865. -webkit-transform: translate(0, -25%);
  5866. -ms-transform: translate(0, -25%);
  5867. -o-transform: translate(0, -25%);
  5868. transform: translate(0, -25%);
  5869. -webkit-transition: -webkit-transform 0.3s ease-out;
  5870. -moz-transition: -moz-transform 0.3s ease-out;
  5871. -o-transition: -o-transform 0.3s ease-out;
  5872. transition: transform 0.3s ease-out;
  5873. }
  5874. .modal.in .modal-dialog {
  5875. -webkit-transform: translate(0, 0);
  5876. -ms-transform: translate(0, 0);
  5877. -o-transform: translate(0, 0);
  5878. transform: translate(0, 0);
  5879. }
  5880. .modal-open .modal {
  5881. overflow-x: hidden;
  5882. overflow-y: auto;
  5883. }
  5884. .modal-dialog {
  5885. position: relative;
  5886. width: auto;
  5887. margin: 10px;
  5888. }
  5889. .modal-content {
  5890. position: relative;
  5891. background-color: #fff;
  5892. border: 1px solid #999;
  5893. border: 1px solid rgba(0, 0, 0, 0.2);
  5894. border-radius: 3px;
  5895. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5896. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5897. background-clip: padding-box;
  5898. outline: 0;
  5899. }
  5900. .modal-backdrop {
  5901. position: fixed;
  5902. top: 0;
  5903. right: 0;
  5904. bottom: 0;
  5905. left: 0;
  5906. z-index: 1040;
  5907. background-color: #000;
  5908. }
  5909. .modal-backdrop.fade {
  5910. opacity: 0;
  5911. filter: alpha(opacity=0);
  5912. }
  5913. .modal-backdrop.in {
  5914. opacity: 0.5;
  5915. filter: alpha(opacity=50);
  5916. }
  5917. .modal-header {
  5918. padding: 15px;
  5919. border-bottom: 1px solid #e5e5e5;
  5920. }
  5921. .modal-header .close {
  5922. margin-top: -2px;
  5923. }
  5924. .modal-title {
  5925. margin: 0;
  5926. line-height: 1.42857143;
  5927. }
  5928. .modal-body {
  5929. position: relative;
  5930. padding: 15px;
  5931. }
  5932. .modal-footer {
  5933. padding: 15px;
  5934. text-align: right;
  5935. border-top: 1px solid #e5e5e5;
  5936. }
  5937. .modal-footer .btn + .btn {
  5938. margin-left: 5px;
  5939. margin-bottom: 0;
  5940. }
  5941. .modal-footer .btn-group .btn + .btn {
  5942. margin-left: -1px;
  5943. }
  5944. .modal-footer .btn-block + .btn-block {
  5945. margin-left: 0;
  5946. }
  5947. .modal-scrollbar-measure {
  5948. position: absolute;
  5949. top: -9999px;
  5950. width: 50px;
  5951. height: 50px;
  5952. overflow: scroll;
  5953. }
  5954. @media (min-width: 768px) {
  5955. .modal-dialog {
  5956. width: 600px;
  5957. margin: 30px auto;
  5958. }
  5959. .modal-content {
  5960. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5961. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5962. }
  5963. .modal-sm {
  5964. width: 300px;
  5965. }
  5966. }
  5967. @media (min-width: 992px) {
  5968. .modal-lg {
  5969. width: 900px;
  5970. }
  5971. }
  5972. .tooltip {
  5973. position: absolute;
  5974. z-index: 1070;
  5975. display: block;
  5976. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  5977. font-style: normal;
  5978. font-weight: normal;
  5979. letter-spacing: normal;
  5980. line-break: auto;
  5981. line-height: 1.42857143;
  5982. text-align: left;
  5983. text-align: start;
  5984. text-decoration: none;
  5985. text-shadow: none;
  5986. text-transform: none;
  5987. white-space: normal;
  5988. word-break: normal;
  5989. word-spacing: normal;
  5990. word-wrap: normal;
  5991. font-size: 12px;
  5992. opacity: 0;
  5993. filter: alpha(opacity=0);
  5994. }
  5995. .tooltip.in {
  5996. opacity: 0.9;
  5997. filter: alpha(opacity=90);
  5998. }
  5999. .tooltip.top {
  6000. margin-top: -3px;
  6001. padding: 5px 0;
  6002. }
  6003. .tooltip.right {
  6004. margin-left: 3px;
  6005. padding: 0 5px;
  6006. }
  6007. .tooltip.bottom {
  6008. margin-top: 3px;
  6009. padding: 5px 0;
  6010. }
  6011. .tooltip.left {
  6012. margin-left: -3px;
  6013. padding: 0 5px;
  6014. }
  6015. .tooltip-inner {
  6016. max-width: 200px;
  6017. padding: 3px 8px;
  6018. color: #fff;
  6019. text-align: center;
  6020. background-color: #000;
  6021. border-radius: 2px;
  6022. }
  6023. .tooltip-arrow {
  6024. position: absolute;
  6025. width: 0;
  6026. height: 0;
  6027. border-color: transparent;
  6028. border-style: solid;
  6029. }
  6030. .tooltip.top .tooltip-arrow {
  6031. bottom: 0;
  6032. left: 50%;
  6033. margin-left: -5px;
  6034. border-width: 5px 5px 0;
  6035. border-top-color: #000;
  6036. }
  6037. .tooltip.top-left .tooltip-arrow {
  6038. bottom: 0;
  6039. right: 5px;
  6040. margin-bottom: -5px;
  6041. border-width: 5px 5px 0;
  6042. border-top-color: #000;
  6043. }
  6044. .tooltip.top-right .tooltip-arrow {
  6045. bottom: 0;
  6046. left: 5px;
  6047. margin-bottom: -5px;
  6048. border-width: 5px 5px 0;
  6049. border-top-color: #000;
  6050. }
  6051. .tooltip.right .tooltip-arrow {
  6052. top: 50%;
  6053. left: 0;
  6054. margin-top: -5px;
  6055. border-width: 5px 5px 5px 0;
  6056. border-right-color: #000;
  6057. }
  6058. .tooltip.left .tooltip-arrow {
  6059. top: 50%;
  6060. right: 0;
  6061. margin-top: -5px;
  6062. border-width: 5px 0 5px 5px;
  6063. border-left-color: #000;
  6064. }
  6065. .tooltip.bottom .tooltip-arrow {
  6066. top: 0;
  6067. left: 50%;
  6068. margin-left: -5px;
  6069. border-width: 0 5px 5px;
  6070. border-bottom-color: #000;
  6071. }
  6072. .tooltip.bottom-left .tooltip-arrow {
  6073. top: 0;
  6074. right: 5px;
  6075. margin-top: -5px;
  6076. border-width: 0 5px 5px;
  6077. border-bottom-color: #000;
  6078. }
  6079. .tooltip.bottom-right .tooltip-arrow {
  6080. top: 0;
  6081. left: 5px;
  6082. margin-top: -5px;
  6083. border-width: 0 5px 5px;
  6084. border-bottom-color: #000;
  6085. }
  6086. .popover {
  6087. position: absolute;
  6088. top: 0;
  6089. left: 0;
  6090. z-index: 1060;
  6091. display: none;
  6092. max-width: 276px;
  6093. padding: 1px;
  6094. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  6095. font-style: normal;
  6096. font-weight: normal;
  6097. letter-spacing: normal;
  6098. line-break: auto;
  6099. line-height: 1.42857143;
  6100. text-align: left;
  6101. text-align: start;
  6102. text-decoration: none;
  6103. text-shadow: none;
  6104. text-transform: none;
  6105. white-space: normal;
  6106. word-break: normal;
  6107. word-spacing: normal;
  6108. word-wrap: normal;
  6109. font-size: 13px;
  6110. background-color: #fff;
  6111. background-clip: padding-box;
  6112. border: 1px solid #ccc;
  6113. border: 1px solid rgba(0, 0, 0, 0.2);
  6114. border-radius: 3px;
  6115. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6116. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  6117. }
  6118. .popover.top {
  6119. margin-top: -10px;
  6120. }
  6121. .popover.right {
  6122. margin-left: 10px;
  6123. }
  6124. .popover.bottom {
  6125. margin-top: 10px;
  6126. }
  6127. .popover.left {
  6128. margin-left: -10px;
  6129. }
  6130. .popover-title {
  6131. margin: 0;
  6132. padding: 8px 14px;
  6133. font-size: 13px;
  6134. background-color: #f7f7f7;
  6135. border-bottom: 1px solid #ebebeb;
  6136. border-radius: 2px 2px 0 0;
  6137. }
  6138. .popover-content {
  6139. padding: 9px 14px;
  6140. }
  6141. .popover > .arrow,
  6142. .popover > .arrow:after {
  6143. position: absolute;
  6144. display: block;
  6145. width: 0;
  6146. height: 0;
  6147. border-color: transparent;
  6148. border-style: solid;
  6149. }
  6150. .popover > .arrow {
  6151. border-width: 11px;
  6152. }
  6153. .popover > .arrow:after {
  6154. border-width: 10px;
  6155. content: "";
  6156. }
  6157. .popover.top > .arrow {
  6158. left: 50%;
  6159. margin-left: -11px;
  6160. border-bottom-width: 0;
  6161. border-top-color: #999999;
  6162. border-top-color: rgba(0, 0, 0, 0.25);
  6163. bottom: -11px;
  6164. }
  6165. .popover.top > .arrow:after {
  6166. content: " ";
  6167. bottom: 1px;
  6168. margin-left: -10px;
  6169. border-bottom-width: 0;
  6170. border-top-color: #fff;
  6171. }
  6172. .popover.right > .arrow {
  6173. top: 50%;
  6174. left: -11px;
  6175. margin-top: -11px;
  6176. border-left-width: 0;
  6177. border-right-color: #999999;
  6178. border-right-color: rgba(0, 0, 0, 0.25);
  6179. }
  6180. .popover.right > .arrow:after {
  6181. content: " ";
  6182. left: 1px;
  6183. bottom: -10px;
  6184. border-left-width: 0;
  6185. border-right-color: #fff;
  6186. }
  6187. .popover.bottom > .arrow {
  6188. left: 50%;
  6189. margin-left: -11px;
  6190. border-top-width: 0;
  6191. border-bottom-color: #999999;
  6192. border-bottom-color: rgba(0, 0, 0, 0.25);
  6193. top: -11px;
  6194. }
  6195. .popover.bottom > .arrow:after {
  6196. content: " ";
  6197. top: 1px;
  6198. margin-left: -10px;
  6199. border-top-width: 0;
  6200. border-bottom-color: #fff;
  6201. }
  6202. .popover.left > .arrow {
  6203. top: 50%;
  6204. right: -11px;
  6205. margin-top: -11px;
  6206. border-right-width: 0;
  6207. border-left-color: #999999;
  6208. border-left-color: rgba(0, 0, 0, 0.25);
  6209. }
  6210. .popover.left > .arrow:after {
  6211. content: " ";
  6212. right: 1px;
  6213. border-right-width: 0;
  6214. border-left-color: #fff;
  6215. bottom: -10px;
  6216. }
  6217. .carousel {
  6218. position: relative;
  6219. }
  6220. .carousel-inner {
  6221. position: relative;
  6222. overflow: hidden;
  6223. width: 100%;
  6224. }
  6225. .carousel-inner > .item {
  6226. display: none;
  6227. position: relative;
  6228. -webkit-transition: 0.6s ease-in-out left;
  6229. -o-transition: 0.6s ease-in-out left;
  6230. transition: 0.6s ease-in-out left;
  6231. }
  6232. .carousel-inner > .item > img,
  6233. .carousel-inner > .item > a > img {
  6234. line-height: 1;
  6235. }
  6236. @media all and (transform-3d), (-webkit-transform-3d) {
  6237. .carousel-inner > .item {
  6238. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6239. -moz-transition: -moz-transform 0.6s ease-in-out;
  6240. -o-transition: -o-transform 0.6s ease-in-out;
  6241. transition: transform 0.6s ease-in-out;
  6242. -webkit-backface-visibility: hidden;
  6243. -moz-backface-visibility: hidden;
  6244. backface-visibility: hidden;
  6245. -webkit-perspective: 1000px;
  6246. -moz-perspective: 1000px;
  6247. perspective: 1000px;
  6248. }
  6249. .carousel-inner > .item.next,
  6250. .carousel-inner > .item.active.right {
  6251. -webkit-transform: translate3d(100%, 0, 0);
  6252. transform: translate3d(100%, 0, 0);
  6253. left: 0;
  6254. }
  6255. .carousel-inner > .item.prev,
  6256. .carousel-inner > .item.active.left {
  6257. -webkit-transform: translate3d(-100%, 0, 0);
  6258. transform: translate3d(-100%, 0, 0);
  6259. left: 0;
  6260. }
  6261. .carousel-inner > .item.next.left,
  6262. .carousel-inner > .item.prev.right,
  6263. .carousel-inner > .item.active {
  6264. -webkit-transform: translate3d(0, 0, 0);
  6265. transform: translate3d(0, 0, 0);
  6266. left: 0;
  6267. }
  6268. }
  6269. .carousel-inner > .active,
  6270. .carousel-inner > .next,
  6271. .carousel-inner > .prev {
  6272. display: block;
  6273. }
  6274. .carousel-inner > .active {
  6275. left: 0;
  6276. }
  6277. .carousel-inner > .next,
  6278. .carousel-inner > .prev {
  6279. position: absolute;
  6280. top: 0;
  6281. width: 100%;
  6282. }
  6283. .carousel-inner > .next {
  6284. left: 100%;
  6285. }
  6286. .carousel-inner > .prev {
  6287. left: -100%;
  6288. }
  6289. .carousel-inner > .next.left,
  6290. .carousel-inner > .prev.right {
  6291. left: 0;
  6292. }
  6293. .carousel-inner > .active.left {
  6294. left: -100%;
  6295. }
  6296. .carousel-inner > .active.right {
  6297. left: 100%;
  6298. }
  6299. .carousel-control {
  6300. position: absolute;
  6301. top: 0;
  6302. left: 0;
  6303. bottom: 0;
  6304. width: 15%;
  6305. opacity: 0.5;
  6306. filter: alpha(opacity=50);
  6307. font-size: 20px;
  6308. color: #fff;
  6309. text-align: center;
  6310. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6311. background-color: rgba(0, 0, 0, 0);
  6312. }
  6313. .carousel-control.left {
  6314. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6315. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6316. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6317. background-repeat: repeat-x;
  6318. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6319. }
  6320. .carousel-control.right {
  6321. left: auto;
  6322. right: 0;
  6323. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6324. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6325. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6326. background-repeat: repeat-x;
  6327. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6328. }
  6329. .carousel-control:hover,
  6330. .carousel-control:focus {
  6331. outline: 0;
  6332. color: #fff;
  6333. text-decoration: none;
  6334. opacity: 0.9;
  6335. filter: alpha(opacity=90);
  6336. }
  6337. .carousel-control .icon-prev,
  6338. .carousel-control .icon-next,
  6339. .carousel-control .glyphicon-chevron-left,
  6340. .carousel-control .glyphicon-chevron-right {
  6341. position: absolute;
  6342. top: 50%;
  6343. margin-top: -10px;
  6344. z-index: 5;
  6345. display: inline-block;
  6346. }
  6347. .carousel-control .icon-prev,
  6348. .carousel-control .glyphicon-chevron-left {
  6349. left: 50%;
  6350. margin-left: -10px;
  6351. }
  6352. .carousel-control .icon-next,
  6353. .carousel-control .glyphicon-chevron-right {
  6354. right: 50%;
  6355. margin-right: -10px;
  6356. }
  6357. .carousel-control .icon-prev,
  6358. .carousel-control .icon-next {
  6359. width: 20px;
  6360. height: 20px;
  6361. line-height: 1;
  6362. font-family: serif;
  6363. }
  6364. .carousel-control .icon-prev:before {
  6365. content: '\2039';
  6366. }
  6367. .carousel-control .icon-next:before {
  6368. content: '\203a';
  6369. }
  6370. .carousel-indicators {
  6371. position: absolute;
  6372. bottom: 10px;
  6373. left: 50%;
  6374. z-index: 15;
  6375. width: 60%;
  6376. margin-left: -30%;
  6377. padding-left: 0;
  6378. list-style: none;
  6379. text-align: center;
  6380. }
  6381. .carousel-indicators li {
  6382. display: inline-block;
  6383. width: 10px;
  6384. height: 10px;
  6385. margin: 1px;
  6386. text-indent: -999px;
  6387. border: 1px solid #fff;
  6388. border-radius: 10px;
  6389. cursor: pointer;
  6390. background-color: #000 \9;
  6391. background-color: rgba(0, 0, 0, 0);
  6392. }
  6393. .carousel-indicators .active {
  6394. margin: 0;
  6395. width: 12px;
  6396. height: 12px;
  6397. background-color: #fff;
  6398. }
  6399. .carousel-caption {
  6400. position: absolute;
  6401. left: 15%;
  6402. right: 15%;
  6403. bottom: 20px;
  6404. z-index: 10;
  6405. padding-top: 20px;
  6406. padding-bottom: 20px;
  6407. color: #fff;
  6408. text-align: center;
  6409. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6410. }
  6411. .carousel-caption .btn {
  6412. text-shadow: none;
  6413. }
  6414. @media screen and (min-width: 768px) {
  6415. .carousel-control .glyphicon-chevron-left,
  6416. .carousel-control .glyphicon-chevron-right,
  6417. .carousel-control .icon-prev,
  6418. .carousel-control .icon-next {
  6419. width: 30px;
  6420. height: 30px;
  6421. margin-top: -10px;
  6422. font-size: 30px;
  6423. }
  6424. .carousel-control .glyphicon-chevron-left,
  6425. .carousel-control .icon-prev {
  6426. margin-left: -10px;
  6427. }
  6428. .carousel-control .glyphicon-chevron-right,
  6429. .carousel-control .icon-next {
  6430. margin-right: -10px;
  6431. }
  6432. .carousel-caption {
  6433. left: 20%;
  6434. right: 20%;
  6435. padding-bottom: 30px;
  6436. }
  6437. .carousel-indicators {
  6438. bottom: 20px;
  6439. }
  6440. }
  6441. .clearfix:before,
  6442. .clearfix:after,
  6443. .dl-horizontal dd:before,
  6444. .dl-horizontal dd:after,
  6445. .container:before,
  6446. .container:after,
  6447. .container-fluid:before,
  6448. .container-fluid:after,
  6449. .row:before,
  6450. .row:after,
  6451. .form-horizontal .form-group:before,
  6452. .form-horizontal .form-group:after,
  6453. .btn-toolbar:before,
  6454. .btn-toolbar:after,
  6455. .btn-group-vertical > .btn-group:before,
  6456. .btn-group-vertical > .btn-group:after,
  6457. .nav:before,
  6458. .nav:after,
  6459. .navbar:before,
  6460. .navbar:after,
  6461. .navbar-header:before,
  6462. .navbar-header:after,
  6463. .navbar-collapse:before,
  6464. .navbar-collapse:after,
  6465. .pager:before,
  6466. .pager:after,
  6467. .panel-body:before,
  6468. .panel-body:after,
  6469. .modal-header:before,
  6470. .modal-header:after,
  6471. .modal-footer:before,
  6472. .modal-footer:after,
  6473. .item_buttons:before,
  6474. .item_buttons:after {
  6475. content: " ";
  6476. display: table;
  6477. }
  6478. .clearfix:after,
  6479. .dl-horizontal dd:after,
  6480. .container:after,
  6481. .container-fluid:after,
  6482. .row:after,
  6483. .form-horizontal .form-group:after,
  6484. .btn-toolbar:after,
  6485. .btn-group-vertical > .btn-group:after,
  6486. .nav:after,
  6487. .navbar:after,
  6488. .navbar-header:after,
  6489. .navbar-collapse:after,
  6490. .pager:after,
  6491. .panel-body:after,
  6492. .modal-header:after,
  6493. .modal-footer:after,
  6494. .item_buttons:after {
  6495. clear: both;
  6496. }
  6497. .center-block {
  6498. display: block;
  6499. margin-left: auto;
  6500. margin-right: auto;
  6501. }
  6502. .pull-right {
  6503. float: right !important;
  6504. }
  6505. .pull-left {
  6506. float: left !important;
  6507. }
  6508. .hide {
  6509. display: none !important;
  6510. }
  6511. .show {
  6512. display: block !important;
  6513. }
  6514. .invisible {
  6515. visibility: hidden;
  6516. }
  6517. .text-hide {
  6518. font: 0/0 a;
  6519. color: transparent;
  6520. text-shadow: none;
  6521. background-color: transparent;
  6522. border: 0;
  6523. }
  6524. .hidden {
  6525. display: none !important;
  6526. }
  6527. .affix {
  6528. position: fixed;
  6529. }
  6530. @-ms-viewport {
  6531. width: device-width;
  6532. }
  6533. .visible-xs,
  6534. .visible-sm,
  6535. .visible-md,
  6536. .visible-lg {
  6537. display: none !important;
  6538. }
  6539. .visible-xs-block,
  6540. .visible-xs-inline,
  6541. .visible-xs-inline-block,
  6542. .visible-sm-block,
  6543. .visible-sm-inline,
  6544. .visible-sm-inline-block,
  6545. .visible-md-block,
  6546. .visible-md-inline,
  6547. .visible-md-inline-block,
  6548. .visible-lg-block,
  6549. .visible-lg-inline,
  6550. .visible-lg-inline-block {
  6551. display: none !important;
  6552. }
  6553. @media (max-width: 767px) {
  6554. .visible-xs {
  6555. display: block !important;
  6556. }
  6557. table.visible-xs {
  6558. display: table !important;
  6559. }
  6560. tr.visible-xs {
  6561. display: table-row !important;
  6562. }
  6563. th.visible-xs,
  6564. td.visible-xs {
  6565. display: table-cell !important;
  6566. }
  6567. }
  6568. @media (max-width: 767px) {
  6569. .visible-xs-block {
  6570. display: block !important;
  6571. }
  6572. }
  6573. @media (max-width: 767px) {
  6574. .visible-xs-inline {
  6575. display: inline !important;
  6576. }
  6577. }
  6578. @media (max-width: 767px) {
  6579. .visible-xs-inline-block {
  6580. display: inline-block !important;
  6581. }
  6582. }
  6583. @media (min-width: 768px) and (max-width: 991px) {
  6584. .visible-sm {
  6585. display: block !important;
  6586. }
  6587. table.visible-sm {
  6588. display: table !important;
  6589. }
  6590. tr.visible-sm {
  6591. display: table-row !important;
  6592. }
  6593. th.visible-sm,
  6594. td.visible-sm {
  6595. display: table-cell !important;
  6596. }
  6597. }
  6598. @media (min-width: 768px) and (max-width: 991px) {
  6599. .visible-sm-block {
  6600. display: block !important;
  6601. }
  6602. }
  6603. @media (min-width: 768px) and (max-width: 991px) {
  6604. .visible-sm-inline {
  6605. display: inline !important;
  6606. }
  6607. }
  6608. @media (min-width: 768px) and (max-width: 991px) {
  6609. .visible-sm-inline-block {
  6610. display: inline-block !important;
  6611. }
  6612. }
  6613. @media (min-width: 992px) and (max-width: 1199px) {
  6614. .visible-md {
  6615. display: block !important;
  6616. }
  6617. table.visible-md {
  6618. display: table !important;
  6619. }
  6620. tr.visible-md {
  6621. display: table-row !important;
  6622. }
  6623. th.visible-md,
  6624. td.visible-md {
  6625. display: table-cell !important;
  6626. }
  6627. }
  6628. @media (min-width: 992px) and (max-width: 1199px) {
  6629. .visible-md-block {
  6630. display: block !important;
  6631. }
  6632. }
  6633. @media (min-width: 992px) and (max-width: 1199px) {
  6634. .visible-md-inline {
  6635. display: inline !important;
  6636. }
  6637. }
  6638. @media (min-width: 992px) and (max-width: 1199px) {
  6639. .visible-md-inline-block {
  6640. display: inline-block !important;
  6641. }
  6642. }
  6643. @media (min-width: 1200px) {
  6644. .visible-lg {
  6645. display: block !important;
  6646. }
  6647. table.visible-lg {
  6648. display: table !important;
  6649. }
  6650. tr.visible-lg {
  6651. display: table-row !important;
  6652. }
  6653. th.visible-lg,
  6654. td.visible-lg {
  6655. display: table-cell !important;
  6656. }
  6657. }
  6658. @media (min-width: 1200px) {
  6659. .visible-lg-block {
  6660. display: block !important;
  6661. }
  6662. }
  6663. @media (min-width: 1200px) {
  6664. .visible-lg-inline {
  6665. display: inline !important;
  6666. }
  6667. }
  6668. @media (min-width: 1200px) {
  6669. .visible-lg-inline-block {
  6670. display: inline-block !important;
  6671. }
  6672. }
  6673. @media (max-width: 767px) {
  6674. .hidden-xs {
  6675. display: none !important;
  6676. }
  6677. }
  6678. @media (min-width: 768px) and (max-width: 991px) {
  6679. .hidden-sm {
  6680. display: none !important;
  6681. }
  6682. }
  6683. @media (min-width: 992px) and (max-width: 1199px) {
  6684. .hidden-md {
  6685. display: none !important;
  6686. }
  6687. }
  6688. @media (min-width: 1200px) {
  6689. .hidden-lg {
  6690. display: none !important;
  6691. }
  6692. }
  6693. .visible-print {
  6694. display: none !important;
  6695. }
  6696. @media print {
  6697. .visible-print {
  6698. display: block !important;
  6699. }
  6700. table.visible-print {
  6701. display: table !important;
  6702. }
  6703. tr.visible-print {
  6704. display: table-row !important;
  6705. }
  6706. th.visible-print,
  6707. td.visible-print {
  6708. display: table-cell !important;
  6709. }
  6710. }
  6711. .visible-print-block {
  6712. display: none !important;
  6713. }
  6714. @media print {
  6715. .visible-print-block {
  6716. display: block !important;
  6717. }
  6718. }
  6719. .visible-print-inline {
  6720. display: none !important;
  6721. }
  6722. @media print {
  6723. .visible-print-inline {
  6724. display: inline !important;
  6725. }
  6726. }
  6727. .visible-print-inline-block {
  6728. display: none !important;
  6729. }
  6730. @media print {
  6731. .visible-print-inline-block {
  6732. display: inline-block !important;
  6733. }
  6734. }
  6735. @media print {
  6736. .hidden-print {
  6737. display: none !important;
  6738. }
  6739. }
  6740. /*!
  6741. *
  6742. * Font Awesome
  6743. *
  6744. */
  6745. /*!
  6746. * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
  6747. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  6748. */
  6749. /* FONT PATH
  6750. * -------------------------- */
  6751. @font-face {
  6752. font-family: 'FontAwesome';
  6753. src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
  6754. 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');
  6755. font-weight: normal;
  6756. font-style: normal;
  6757. }
  6758. .fa {
  6759. display: inline-block;
  6760. font: normal normal normal 14px/1 FontAwesome;
  6761. font-size: inherit;
  6762. text-rendering: auto;
  6763. -webkit-font-smoothing: antialiased;
  6764. -moz-osx-font-smoothing: grayscale;
  6765. }
  6766. /* makes the font 33% larger relative to the icon container */
  6767. .fa-lg {
  6768. font-size: 1.33333333em;
  6769. line-height: 0.75em;
  6770. vertical-align: -15%;
  6771. }
  6772. .fa-2x {
  6773. font-size: 2em;
  6774. }
  6775. .fa-3x {
  6776. font-size: 3em;
  6777. }
  6778. .fa-4x {
  6779. font-size: 4em;
  6780. }
  6781. .fa-5x {
  6782. font-size: 5em;
  6783. }
  6784. .fa-fw {
  6785. width: 1.28571429em;
  6786. text-align: center;
  6787. }
  6788. .fa-ul {
  6789. padding-left: 0;
  6790. margin-left: 2.14285714em;
  6791. list-style-type: none;
  6792. }
  6793. .fa-ul > li {
  6794. position: relative;
  6795. }
  6796. .fa-li {
  6797. position: absolute;
  6798. left: -2.14285714em;
  6799. width: 2.14285714em;
  6800. top: 0.14285714em;
  6801. text-align: center;
  6802. }
  6803. .fa-li.fa-lg {
  6804. left: -1.85714286em;
  6805. }
  6806. .fa-border {
  6807. padding: .2em .25em .15em;
  6808. border: solid 0.08em #eee;
  6809. border-radius: .1em;
  6810. }
  6811. .pull-right {
  6812. float: right;
  6813. }
  6814. .pull-left {
  6815. float: left;
  6816. }
  6817. .fa.pull-left {
  6818. margin-right: .3em;
  6819. }
  6820. .fa.pull-right {
  6821. margin-left: .3em;
  6822. }
  6823. .fa-spin {
  6824. -webkit-animation: fa-spin 2s infinite linear;
  6825. animation: fa-spin 2s infinite linear;
  6826. }
  6827. @-webkit-keyframes fa-spin {
  6828. 0% {
  6829. -webkit-transform: rotate(0deg);
  6830. transform: rotate(0deg);
  6831. }
  6832. 100% {
  6833. -webkit-transform: rotate(359deg);
  6834. transform: rotate(359deg);
  6835. }
  6836. }
  6837. @keyframes fa-spin {
  6838. 0% {
  6839. -webkit-transform: rotate(0deg);
  6840. transform: rotate(0deg);
  6841. }
  6842. 100% {
  6843. -webkit-transform: rotate(359deg);
  6844. transform: rotate(359deg);
  6845. }
  6846. }
  6847. .fa-rotate-90 {
  6848. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  6849. -webkit-transform: rotate(90deg);
  6850. -ms-transform: rotate(90deg);
  6851. transform: rotate(90deg);
  6852. }
  6853. .fa-rotate-180 {
  6854. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  6855. -webkit-transform: rotate(180deg);
  6856. -ms-transform: rotate(180deg);
  6857. transform: rotate(180deg);
  6858. }
  6859. .fa-rotate-270 {
  6860. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  6861. -webkit-transform: rotate(270deg);
  6862. -ms-transform: rotate(270deg);
  6863. transform: rotate(270deg);
  6864. }
  6865. .fa-flip-horizontal {
  6866. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  6867. -webkit-transform: scale(-1, 1);
  6868. -ms-transform: scale(-1, 1);
  6869. transform: scale(-1, 1);
  6870. }
  6871. .fa-flip-vertical {
  6872. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  6873. -webkit-transform: scale(1, -1);
  6874. -ms-transform: scale(1, -1);
  6875. transform: scale(1, -1);
  6876. }
  6877. :root .fa-rotate-90,
  6878. :root .fa-rotate-180,
  6879. :root .fa-rotate-270,
  6880. :root .fa-flip-horizontal,
  6881. :root .fa-flip-vertical {
  6882. filter: none;
  6883. }
  6884. .fa-stack {
  6885. position: relative;
  6886. display: inline-block;
  6887. width: 2em;
  6888. height: 2em;
  6889. line-height: 2em;
  6890. vertical-align: middle;
  6891. }
  6892. .fa-stack-1x,
  6893. .fa-stack-2x {
  6894. position: absolute;
  6895. left: 0;
  6896. width: 100%;
  6897. text-align: center;
  6898. }
  6899. .fa-stack-1x {
  6900. line-height: inherit;
  6901. }
  6902. .fa-stack-2x {
  6903. font-size: 2em;
  6904. }
  6905. .fa-inverse {
  6906. color: #fff;
  6907. }
  6908. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  6909. readers do not read off random characters that represent icons */
  6910. .fa-glass:before {
  6911. content: "\f000";
  6912. }
  6913. .fa-music:before {
  6914. content: "\f001";
  6915. }
  6916. .fa-search:before {
  6917. content: "\f002";
  6918. }
  6919. .fa-envelope-o:before {
  6920. content: "\f003";
  6921. }
  6922. .fa-heart:before {
  6923. content: "\f004";
  6924. }
  6925. .fa-star:before {
  6926. content: "\f005";
  6927. }
  6928. .fa-star-o:before {
  6929. content: "\f006";
  6930. }
  6931. .fa-user:before {
  6932. content: "\f007";
  6933. }
  6934. .fa-film:before {
  6935. content: "\f008";
  6936. }
  6937. .fa-th-large:before {
  6938. content: "\f009";
  6939. }
  6940. .fa-th:before {
  6941. content: "\f00a";
  6942. }
  6943. .fa-th-list:before {
  6944. content: "\f00b";
  6945. }
  6946. .fa-check:before {
  6947. content: "\f00c";
  6948. }
  6949. .fa-remove:before,
  6950. .fa-close:before,
  6951. .fa-times:before {
  6952. content: "\f00d";
  6953. }
  6954. .fa-search-plus:before {
  6955. content: "\f00e";
  6956. }
  6957. .fa-search-minus:before {
  6958. content: "\f010";
  6959. }
  6960. .fa-power-off:before {
  6961. content: "\f011";
  6962. }
  6963. .fa-signal:before {
  6964. content: "\f012";
  6965. }
  6966. .fa-gear:before,
  6967. .fa-cog:before {
  6968. content: "\f013";
  6969. }
  6970. .fa-trash-o:before {
  6971. content: "\f014";
  6972. }
  6973. .fa-home:before {
  6974. content: "\f015";
  6975. }
  6976. .fa-file-o:before {
  6977. content: "\f016";
  6978. }
  6979. .fa-clock-o:before {
  6980. content: "\f017";
  6981. }
  6982. .fa-road:before {
  6983. content: "\f018";
  6984. }
  6985. .fa-download:before {
  6986. content: "\f019";
  6987. }
  6988. .fa-arrow-circle-o-down:before {
  6989. content: "\f01a";
  6990. }
  6991. .fa-arrow-circle-o-up:before {
  6992. content: "\f01b";
  6993. }
  6994. .fa-inbox:before {
  6995. content: "\f01c";
  6996. }
  6997. .fa-play-circle-o:before {
  6998. content: "\f01d";
  6999. }
  7000. .fa-rotate-right:before,
  7001. .fa-repeat:before {
  7002. content: "\f01e";
  7003. }
  7004. .fa-refresh:before {
  7005. content: "\f021";
  7006. }
  7007. .fa-list-alt:before {
  7008. content: "\f022";
  7009. }
  7010. .fa-lock:before {
  7011. content: "\f023";
  7012. }
  7013. .fa-flag:before {
  7014. content: "\f024";
  7015. }
  7016. .fa-headphones:before {
  7017. content: "\f025";
  7018. }
  7019. .fa-volume-off:before {
  7020. content: "\f026";
  7021. }
  7022. .fa-volume-down:before {
  7023. content: "\f027";
  7024. }
  7025. .fa-volume-up:before {
  7026. content: "\f028";
  7027. }
  7028. .fa-qrcode:before {
  7029. content: "\f029";
  7030. }
  7031. .fa-barcode:before {
  7032. content: "\f02a";
  7033. }
  7034. .fa-tag:before {
  7035. content: "\f02b";
  7036. }
  7037. .fa-tags:before {
  7038. content: "\f02c";
  7039. }
  7040. .fa-book:before {
  7041. content: "\f02d";
  7042. }
  7043. .fa-bookmark:before {
  7044. content: "\f02e";
  7045. }
  7046. .fa-print:before {
  7047. content: "\f02f";
  7048. }
  7049. .fa-camera:before {
  7050. content: "\f030";
  7051. }
  7052. .fa-font:before {
  7053. content: "\f031";
  7054. }
  7055. .fa-bold:before {
  7056. content: "\f032";
  7057. }
  7058. .fa-italic:before {
  7059. content: "\f033";
  7060. }
  7061. .fa-text-height:before {
  7062. content: "\f034";
  7063. }
  7064. .fa-text-width:before {
  7065. content: "\f035";
  7066. }
  7067. .fa-align-left:before {
  7068. content: "\f036";
  7069. }
  7070. .fa-align-center:before {
  7071. content: "\f037";
  7072. }
  7073. .fa-align-right:before {
  7074. content: "\f038";
  7075. }
  7076. .fa-align-justify:before {
  7077. content: "\f039";
  7078. }
  7079. .fa-list:before {
  7080. content: "\f03a";
  7081. }
  7082. .fa-dedent:before,
  7083. .fa-outdent:before {
  7084. content: "\f03b";
  7085. }
  7086. .fa-indent:before {
  7087. content: "\f03c";
  7088. }
  7089. .fa-video-camera:before {
  7090. content: "\f03d";
  7091. }
  7092. .fa-photo:before,
  7093. .fa-image:before,
  7094. .fa-picture-o:before {
  7095. content: "\f03e";
  7096. }
  7097. .fa-pencil:before {
  7098. content: "\f040";
  7099. }
  7100. .fa-map-marker:before {
  7101. content: "\f041";
  7102. }
  7103. .fa-adjust:before {
  7104. content: "\f042";
  7105. }
  7106. .fa-tint:before {
  7107. content: "\f043";
  7108. }
  7109. .fa-edit:before,
  7110. .fa-pencil-square-o:before {
  7111. content: "\f044";
  7112. }
  7113. .fa-share-square-o:before {
  7114. content: "\f045";
  7115. }
  7116. .fa-check-square-o:before {
  7117. content: "\f046";
  7118. }
  7119. .fa-arrows:before {
  7120. content: "\f047";
  7121. }
  7122. .fa-step-backward:before {
  7123. content: "\f048";
  7124. }
  7125. .fa-fast-backward:before {
  7126. content: "\f049";
  7127. }
  7128. .fa-backward:before {
  7129. content: "\f04a";
  7130. }
  7131. .fa-play:before {
  7132. content: "\f04b";
  7133. }
  7134. .fa-pause:before {
  7135. content: "\f04c";
  7136. }
  7137. .fa-stop:before {
  7138. content: "\f04d";
  7139. }
  7140. .fa-forward:before {
  7141. content: "\f04e";
  7142. }
  7143. .fa-fast-forward:before {
  7144. content: "\f050";
  7145. }
  7146. .fa-step-forward:before {
  7147. content: "\f051";
  7148. }
  7149. .fa-eject:before {
  7150. content: "\f052";
  7151. }
  7152. .fa-chevron-left:before {
  7153. content: "\f053";
  7154. }
  7155. .fa-chevron-right:before {
  7156. content: "\f054";
  7157. }
  7158. .fa-plus-circle:before {
  7159. content: "\f055";
  7160. }
  7161. .fa-minus-circle:before {
  7162. content: "\f056";
  7163. }
  7164. .fa-times-circle:before {
  7165. content: "\f057";
  7166. }
  7167. .fa-check-circle:before {
  7168. content: "\f058";
  7169. }
  7170. .fa-question-circle:before {
  7171. content: "\f059";
  7172. }
  7173. .fa-info-circle:before {
  7174. content: "\f05a";
  7175. }
  7176. .fa-crosshairs:before {
  7177. content: "\f05b";
  7178. }
  7179. .fa-times-circle-o:before {
  7180. content: "\f05c";
  7181. }
  7182. .fa-check-circle-o:before {
  7183. content: "\f05d";
  7184. }
  7185. .fa-ban:before {
  7186. content: "\f05e";
  7187. }
  7188. .fa-arrow-left:before {
  7189. content: "\f060";
  7190. }
  7191. .fa-arrow-right:before {
  7192. content: "\f061";
  7193. }
  7194. .fa-arrow-up:before {
  7195. content: "\f062";
  7196. }
  7197. .fa-arrow-down:before {
  7198. content: "\f063";
  7199. }
  7200. .fa-mail-forward:before,
  7201. .fa-share:before {
  7202. content: "\f064";
  7203. }
  7204. .fa-expand:before {
  7205. content: "\f065";
  7206. }
  7207. .fa-compress:before {
  7208. content: "\f066";
  7209. }
  7210. .fa-plus:before {
  7211. content: "\f067";
  7212. }
  7213. .fa-minus:before {
  7214. content: "\f068";
  7215. }
  7216. .fa-asterisk:before {
  7217. content: "\f069";
  7218. }
  7219. .fa-exclamation-circle:before {
  7220. content: "\f06a";
  7221. }
  7222. .fa-gift:before {
  7223. content: "\f06b";
  7224. }
  7225. .fa-leaf:before {
  7226. content: "\f06c";
  7227. }
  7228. .fa-fire:before {
  7229. content: "\f06d";
  7230. }
  7231. .fa-eye:before {
  7232. content: "\f06e";
  7233. }
  7234. .fa-eye-slash:before {
  7235. content: "\f070";
  7236. }
  7237. .fa-warning:before,
  7238. .fa-exclamation-triangle:before {
  7239. content: "\f071";
  7240. }
  7241. .fa-plane:before {
  7242. content: "\f072";
  7243. }
  7244. .fa-calendar:before {
  7245. content: "\f073";
  7246. }
  7247. .fa-random:before {
  7248. content: "\f074";
  7249. }
  7250. .fa-comment:before {
  7251. content: "\f075";
  7252. }
  7253. .fa-magnet:before {
  7254. content: "\f076";
  7255. }
  7256. .fa-chevron-up:before {
  7257. content: "\f077";
  7258. }
  7259. .fa-chevron-down:before {
  7260. content: "\f078";
  7261. }
  7262. .fa-retweet:before {
  7263. content: "\f079";
  7264. }
  7265. .fa-shopping-cart:before {
  7266. content: "\f07a";
  7267. }
  7268. .fa-folder:before {
  7269. content: "\f07b";
  7270. }
  7271. .fa-folder-open:before {
  7272. content: "\f07c";
  7273. }
  7274. .fa-arrows-v:before {
  7275. content: "\f07d";
  7276. }
  7277. .fa-arrows-h:before {
  7278. content: "\f07e";
  7279. }
  7280. .fa-bar-chart-o:before,
  7281. .fa-bar-chart:before {
  7282. content: "\f080";
  7283. }
  7284. .fa-twitter-square:before {
  7285. content: "\f081";
  7286. }
  7287. .fa-facebook-square:before {
  7288. content: "\f082";
  7289. }
  7290. .fa-camera-retro:before {
  7291. content: "\f083";
  7292. }
  7293. .fa-key:before {
  7294. content: "\f084";
  7295. }
  7296. .fa-gears:before,
  7297. .fa-cogs:before {
  7298. content: "\f085";
  7299. }
  7300. .fa-comments:before {
  7301. content: "\f086";
  7302. }
  7303. .fa-thumbs-o-up:before {
  7304. content: "\f087";
  7305. }
  7306. .fa-thumbs-o-down:before {
  7307. content: "\f088";
  7308. }
  7309. .fa-star-half:before {
  7310. content: "\f089";
  7311. }
  7312. .fa-heart-o:before {
  7313. content: "\f08a";
  7314. }
  7315. .fa-sign-out:before {
  7316. content: "\f08b";
  7317. }
  7318. .fa-linkedin-square:before {
  7319. content: "\f08c";
  7320. }
  7321. .fa-thumb-tack:before {
  7322. content: "\f08d";
  7323. }
  7324. .fa-external-link:before {
  7325. content: "\f08e";
  7326. }
  7327. .fa-sign-in:before {
  7328. content: "\f090";
  7329. }
  7330. .fa-trophy:before {
  7331. content: "\f091";
  7332. }
  7333. .fa-github-square:before {
  7334. content: "\f092";
  7335. }
  7336. .fa-upload:before {
  7337. content: "\f093";
  7338. }
  7339. .fa-lemon-o:before {
  7340. content: "\f094";
  7341. }
  7342. .fa-phone:before {
  7343. content: "\f095";
  7344. }
  7345. .fa-square-o:before {
  7346. content: "\f096";
  7347. }
  7348. .fa-bookmark-o:before {
  7349. content: "\f097";
  7350. }
  7351. .fa-phone-square:before {
  7352. content: "\f098";
  7353. }
  7354. .fa-twitter:before {
  7355. content: "\f099";
  7356. }
  7357. .fa-facebook:before {
  7358. content: "\f09a";
  7359. }
  7360. .fa-github:before {
  7361. content: "\f09b";
  7362. }
  7363. .fa-unlock:before {
  7364. content: "\f09c";
  7365. }
  7366. .fa-credit-card:before {
  7367. content: "\f09d";
  7368. }
  7369. .fa-rss:before {
  7370. content: "\f09e";
  7371. }
  7372. .fa-hdd-o:before {
  7373. content: "\f0a0";
  7374. }
  7375. .fa-bullhorn:before {
  7376. content: "\f0a1";
  7377. }
  7378. .fa-bell:before {
  7379. content: "\f0f3";
  7380. }
  7381. .fa-certificate:before {
  7382. content: "\f0a3";
  7383. }
  7384. .fa-hand-o-right:before {
  7385. content: "\f0a4";
  7386. }
  7387. .fa-hand-o-left:before {
  7388. content: "\f0a5";
  7389. }
  7390. .fa-hand-o-up:before {
  7391. content: "\f0a6";
  7392. }
  7393. .fa-hand-o-down:before {
  7394. content: "\f0a7";
  7395. }
  7396. .fa-arrow-circle-left:before {
  7397. content: "\f0a8";
  7398. }
  7399. .fa-arrow-circle-right:before {
  7400. content: "\f0a9";
  7401. }
  7402. .fa-arrow-circle-up:before {
  7403. content: "\f0aa";
  7404. }
  7405. .fa-arrow-circle-down:before {
  7406. content: "\f0ab";
  7407. }
  7408. .fa-globe:before {
  7409. content: "\f0ac";
  7410. }
  7411. .fa-wrench:before {
  7412. content: "\f0ad";
  7413. }
  7414. .fa-tasks:before {
  7415. content: "\f0ae";
  7416. }
  7417. .fa-filter:before {
  7418. content: "\f0b0";
  7419. }
  7420. .fa-briefcase:before {
  7421. content: "\f0b1";
  7422. }
  7423. .fa-arrows-alt:before {
  7424. content: "\f0b2";
  7425. }
  7426. .fa-group:before,
  7427. .fa-users:before {
  7428. content: "\f0c0";
  7429. }
  7430. .fa-chain:before,
  7431. .fa-link:before {
  7432. content: "\f0c1";
  7433. }
  7434. .fa-cloud:before {
  7435. content: "\f0c2";
  7436. }
  7437. .fa-flask:before {
  7438. content: "\f0c3";
  7439. }
  7440. .fa-cut:before,
  7441. .fa-scissors:before {
  7442. content: "\f0c4";
  7443. }
  7444. .fa-copy:before,
  7445. .fa-files-o:before {
  7446. content: "\f0c5";
  7447. }
  7448. .fa-paperclip:before {
  7449. content: "\f0c6";
  7450. }
  7451. .fa-save:before,
  7452. .fa-floppy-o:before {
  7453. content: "\f0c7";
  7454. }
  7455. .fa-square:before {
  7456. content: "\f0c8";
  7457. }
  7458. .fa-navicon:before,
  7459. .fa-reorder:before,
  7460. .fa-bars:before {
  7461. content: "\f0c9";
  7462. }
  7463. .fa-list-ul:before {
  7464. content: "\f0ca";
  7465. }
  7466. .fa-list-ol:before {
  7467. content: "\f0cb";
  7468. }
  7469. .fa-strikethrough:before {
  7470. content: "\f0cc";
  7471. }
  7472. .fa-underline:before {
  7473. content: "\f0cd";
  7474. }
  7475. .fa-table:before {
  7476. content: "\f0ce";
  7477. }
  7478. .fa-magic:before {
  7479. content: "\f0d0";
  7480. }
  7481. .fa-truck:before {
  7482. content: "\f0d1";
  7483. }
  7484. .fa-pinterest:before {
  7485. content: "\f0d2";
  7486. }
  7487. .fa-pinterest-square:before {
  7488. content: "\f0d3";
  7489. }
  7490. .fa-google-plus-square:before {
  7491. content: "\f0d4";
  7492. }
  7493. .fa-google-plus:before {
  7494. content: "\f0d5";
  7495. }
  7496. .fa-money:before {
  7497. content: "\f0d6";
  7498. }
  7499. .fa-caret-down:before {
  7500. content: "\f0d7";
  7501. }
  7502. .fa-caret-up:before {
  7503. content: "\f0d8";
  7504. }
  7505. .fa-caret-left:before {
  7506. content: "\f0d9";
  7507. }
  7508. .fa-caret-right:before {
  7509. content: "\f0da";
  7510. }
  7511. .fa-columns:before {
  7512. content: "\f0db";
  7513. }
  7514. .fa-unsorted:before,
  7515. .fa-sort:before {
  7516. content: "\f0dc";
  7517. }
  7518. .fa-sort-down:before,
  7519. .fa-sort-desc:before {
  7520. content: "\f0dd";
  7521. }
  7522. .fa-sort-up:before,
  7523. .fa-sort-asc:before {
  7524. content: "\f0de";
  7525. }
  7526. .fa-envelope:before {
  7527. content: "\f0e0";
  7528. }
  7529. .fa-linkedin:before {
  7530. content: "\f0e1";
  7531. }
  7532. .fa-rotate-left:before,
  7533. .fa-undo:before {
  7534. content: "\f0e2";
  7535. }
  7536. .fa-legal:before,
  7537. .fa-gavel:before {
  7538. content: "\f0e3";
  7539. }
  7540. .fa-dashboard:before,
  7541. .fa-tachometer:before {
  7542. content: "\f0e4";
  7543. }
  7544. .fa-comment-o:before {
  7545. content: "\f0e5";
  7546. }
  7547. .fa-comments-o:before {
  7548. content: "\f0e6";
  7549. }
  7550. .fa-flash:before,
  7551. .fa-bolt:before {
  7552. content: "\f0e7";
  7553. }
  7554. .fa-sitemap:before {
  7555. content: "\f0e8";
  7556. }
  7557. .fa-umbrella:before {
  7558. content: "\f0e9";
  7559. }
  7560. .fa-paste:before,
  7561. .fa-clipboard:before {
  7562. content: "\f0ea";
  7563. }
  7564. .fa-lightbulb-o:before {
  7565. content: "\f0eb";
  7566. }
  7567. .fa-exchange:before {
  7568. content: "\f0ec";
  7569. }
  7570. .fa-cloud-download:before {
  7571. content: "\f0ed";
  7572. }
  7573. .fa-cloud-upload:before {
  7574. content: "\f0ee";
  7575. }
  7576. .fa-user-md:before {
  7577. content: "\f0f0";
  7578. }
  7579. .fa-stethoscope:before {
  7580. content: "\f0f1";
  7581. }
  7582. .fa-suitcase:before {
  7583. content: "\f0f2";
  7584. }
  7585. .fa-bell-o:before {
  7586. content: "\f0a2";
  7587. }
  7588. .fa-coffee:before {
  7589. content: "\f0f4";
  7590. }
  7591. .fa-cutlery:before {
  7592. content: "\f0f5";
  7593. }
  7594. .fa-file-text-o:before {
  7595. content: "\f0f6";
  7596. }
  7597. .fa-building-o:before {
  7598. content: "\f0f7";
  7599. }
  7600. .fa-hospital-o:before {
  7601. content: "\f0f8";
  7602. }
  7603. .fa-ambulance:before {
  7604. content: "\f0f9";
  7605. }
  7606. .fa-medkit:before {
  7607. content: "\f0fa";
  7608. }
  7609. .fa-fighter-jet:before {
  7610. content: "\f0fb";
  7611. }
  7612. .fa-beer:before {
  7613. content: "\f0fc";
  7614. }
  7615. .fa-h-square:before {
  7616. content: "\f0fd";
  7617. }
  7618. .fa-plus-square:before {
  7619. content: "\f0fe";
  7620. }
  7621. .fa-angle-double-left:before {
  7622. content: "\f100";
  7623. }
  7624. .fa-angle-double-right:before {
  7625. content: "\f101";
  7626. }
  7627. .fa-angle-double-up:before {
  7628. content: "\f102";
  7629. }
  7630. .fa-angle-double-down:before {
  7631. content: "\f103";
  7632. }
  7633. .fa-angle-left:before {
  7634. content: "\f104";
  7635. }
  7636. .fa-angle-right:before {
  7637. content: "\f105";
  7638. }
  7639. .fa-angle-up:before {
  7640. content: "\f106";
  7641. }
  7642. .fa-angle-down:before {
  7643. content: "\f107";
  7644. }
  7645. .fa-desktop:before {
  7646. content: "\f108";
  7647. }
  7648. .fa-laptop:before {
  7649. content: "\f109";
  7650. }
  7651. .fa-tablet:before {
  7652. content: "\f10a";
  7653. }
  7654. .fa-mobile-phone:before,
  7655. .fa-mobile:before {
  7656. content: "\f10b";
  7657. }
  7658. .fa-circle-o:before {
  7659. content: "\f10c";
  7660. }
  7661. .fa-quote-left:before {
  7662. content: "\f10d";
  7663. }
  7664. .fa-quote-right:before {
  7665. content: "\f10e";
  7666. }
  7667. .fa-spinner:before {
  7668. content: "\f110";
  7669. }
  7670. .fa-circle:before {
  7671. content: "\f111";
  7672. }
  7673. .fa-mail-reply:before,
  7674. .fa-reply:before {
  7675. content: "\f112";
  7676. }
  7677. .fa-github-alt:before {
  7678. content: "\f113";
  7679. }
  7680. .fa-folder-o:before {
  7681. content: "\f114";
  7682. }
  7683. .fa-folder-open-o:before {
  7684. content: "\f115";
  7685. }
  7686. .fa-smile-o:before {
  7687. content: "\f118";
  7688. }
  7689. .fa-frown-o:before {
  7690. content: "\f119";
  7691. }
  7692. .fa-meh-o:before {
  7693. content: "\f11a";
  7694. }
  7695. .fa-gamepad:before {
  7696. content: "\f11b";
  7697. }
  7698. .fa-keyboard-o:before {
  7699. content: "\f11c";
  7700. }
  7701. .fa-flag-o:before {
  7702. content: "\f11d";
  7703. }
  7704. .fa-flag-checkered:before {
  7705. content: "\f11e";
  7706. }
  7707. .fa-terminal:before {
  7708. content: "\f120";
  7709. }
  7710. .fa-code:before {
  7711. content: "\f121";
  7712. }
  7713. .fa-mail-reply-all:before,
  7714. .fa-reply-all:before {
  7715. content: "\f122";
  7716. }
  7717. .fa-star-half-empty:before,
  7718. .fa-star-half-full:before,
  7719. .fa-star-half-o:before {
  7720. content: "\f123";
  7721. }
  7722. .fa-location-arrow:before {
  7723. content: "\f124";
  7724. }
  7725. .fa-crop:before {
  7726. content: "\f125";
  7727. }
  7728. .fa-code-fork:before {
  7729. content: "\f126";
  7730. }
  7731. .fa-unlink:before,
  7732. .fa-chain-broken:before {
  7733. content: "\f127";
  7734. }
  7735. .fa-question:before {
  7736. content: "\f128";
  7737. }
  7738. .fa-info:before {
  7739. content: "\f129";
  7740. }
  7741. .fa-exclamation:before {
  7742. content: "\f12a";
  7743. }
  7744. .fa-superscript:before {
  7745. content: "\f12b";
  7746. }
  7747. .fa-subscript:before {
  7748. content: "\f12c";
  7749. }
  7750. .fa-eraser:before {
  7751. content: "\f12d";
  7752. }
  7753. .fa-puzzle-piece:before {
  7754. content: "\f12e";
  7755. }
  7756. .fa-microphone:before {
  7757. content: "\f130";
  7758. }
  7759. .fa-microphone-slash:before {
  7760. content: "\f131";
  7761. }
  7762. .fa-shield:before {
  7763. content: "\f132";
  7764. }
  7765. .fa-calendar-o:before {
  7766. content: "\f133";
  7767. }
  7768. .fa-fire-extinguisher:before {
  7769. content: "\f134";
  7770. }
  7771. .fa-rocket:before {
  7772. content: "\f135";
  7773. }
  7774. .fa-maxcdn:before {
  7775. content: "\f136";
  7776. }
  7777. .fa-chevron-circle-left:before {
  7778. content: "\f137";
  7779. }
  7780. .fa-chevron-circle-right:before {
  7781. content: "\f138";
  7782. }
  7783. .fa-chevron-circle-up:before {
  7784. content: "\f139";
  7785. }
  7786. .fa-chevron-circle-down:before {
  7787. content: "\f13a";
  7788. }
  7789. .fa-html5:before {
  7790. content: "\f13b";
  7791. }
  7792. .fa-css3:before {
  7793. content: "\f13c";
  7794. }
  7795. .fa-anchor:before {
  7796. content: "\f13d";
  7797. }
  7798. .fa-unlock-alt:before {
  7799. content: "\f13e";
  7800. }
  7801. .fa-bullseye:before {
  7802. content: "\f140";
  7803. }
  7804. .fa-ellipsis-h:before {
  7805. content: "\f141";
  7806. }
  7807. .fa-ellipsis-v:before {
  7808. content: "\f142";
  7809. }
  7810. .fa-rss-square:before {
  7811. content: "\f143";
  7812. }
  7813. .fa-play-circle:before {
  7814. content: "\f144";
  7815. }
  7816. .fa-ticket:before {
  7817. content: "\f145";
  7818. }
  7819. .fa-minus-square:before {
  7820. content: "\f146";
  7821. }
  7822. .fa-minus-square-o:before {
  7823. content: "\f147";
  7824. }
  7825. .fa-level-up:before {
  7826. content: "\f148";
  7827. }
  7828. .fa-level-down:before {
  7829. content: "\f149";
  7830. }
  7831. .fa-check-square:before {
  7832. content: "\f14a";
  7833. }
  7834. .fa-pencil-square:before {
  7835. content: "\f14b";
  7836. }
  7837. .fa-external-link-square:before {
  7838. content: "\f14c";
  7839. }
  7840. .fa-share-square:before {
  7841. content: "\f14d";
  7842. }
  7843. .fa-compass:before {
  7844. content: "\f14e";
  7845. }
  7846. .fa-toggle-down:before,
  7847. .fa-caret-square-o-down:before {
  7848. content: "\f150";
  7849. }
  7850. .fa-toggle-up:before,
  7851. .fa-caret-square-o-up:before {
  7852. content: "\f151";
  7853. }
  7854. .fa-toggle-right:before,
  7855. .fa-caret-square-o-right:before {
  7856. content: "\f152";
  7857. }
  7858. .fa-euro:before,
  7859. .fa-eur:before {
  7860. content: "\f153";
  7861. }
  7862. .fa-gbp:before {
  7863. content: "\f154";
  7864. }
  7865. .fa-dollar:before,
  7866. .fa-usd:before {
  7867. content: "\f155";
  7868. }
  7869. .fa-rupee:before,
  7870. .fa-inr:before {
  7871. content: "\f156";
  7872. }
  7873. .fa-cny:before,
  7874. .fa-rmb:before,
  7875. .fa-yen:before,
  7876. .fa-jpy:before {
  7877. content: "\f157";
  7878. }
  7879. .fa-ruble:before,
  7880. .fa-rouble:before,
  7881. .fa-rub:before {
  7882. content: "\f158";
  7883. }
  7884. .fa-won:before,
  7885. .fa-krw:before {
  7886. content: "\f159";
  7887. }
  7888. .fa-bitcoin:before,
  7889. .fa-btc:before {
  7890. content: "\f15a";
  7891. }
  7892. .fa-file:before {
  7893. content: "\f15b";
  7894. }
  7895. .fa-file-text:before {
  7896. content: "\f15c";
  7897. }
  7898. .fa-sort-alpha-asc:before {
  7899. content: "\f15d";
  7900. }
  7901. .fa-sort-alpha-desc:before {
  7902. content: "\f15e";
  7903. }
  7904. .fa-sort-amount-asc:before {
  7905. content: "\f160";
  7906. }
  7907. .fa-sort-amount-desc:before {
  7908. content: "\f161";
  7909. }
  7910. .fa-sort-numeric-asc:before {
  7911. content: "\f162";
  7912. }
  7913. .fa-sort-numeric-desc:before {
  7914. content: "\f163";
  7915. }
  7916. .fa-thumbs-up:before {
  7917. content: "\f164";
  7918. }
  7919. .fa-thumbs-down:before {
  7920. content: "\f165";
  7921. }
  7922. .fa-youtube-square:before {
  7923. content: "\f166";
  7924. }
  7925. .fa-youtube:before {
  7926. content: "\f167";
  7927. }
  7928. .fa-xing:before {
  7929. content: "\f168";
  7930. }
  7931. .fa-xing-square:before {
  7932. content: "\f169";
  7933. }
  7934. .fa-youtube-play:before {
  7935. content: "\f16a";
  7936. }
  7937. .fa-dropbox:before {
  7938. content: "\f16b";
  7939. }
  7940. .fa-stack-overflow:before {
  7941. content: "\f16c";
  7942. }
  7943. .fa-instagram:before {
  7944. content: "\f16d";
  7945. }
  7946. .fa-flickr:before {
  7947. content: "\f16e";
  7948. }
  7949. .fa-adn:before {
  7950. content: "\f170";
  7951. }
  7952. .fa-bitbucket:before {
  7953. content: "\f171";
  7954. }
  7955. .fa-bitbucket-square:before {
  7956. content: "\f172";
  7957. }
  7958. .fa-tumblr:before {
  7959. content: "\f173";
  7960. }
  7961. .fa-tumblr-square:before {
  7962. content: "\f174";
  7963. }
  7964. .fa-long-arrow-down:before {
  7965. content: "\f175";
  7966. }
  7967. .fa-long-arrow-up:before {
  7968. content: "\f176";
  7969. }
  7970. .fa-long-arrow-left:before {
  7971. content: "\f177";
  7972. }
  7973. .fa-long-arrow-right:before {
  7974. content: "\f178";
  7975. }
  7976. .fa-apple:before {
  7977. content: "\f179";
  7978. }
  7979. .fa-windows:before {
  7980. content: "\f17a";
  7981. }
  7982. .fa-android:before {
  7983. content: "\f17b";
  7984. }
  7985. .fa-linux:before {
  7986. content: "\f17c";
  7987. }
  7988. .fa-dribbble:before {
  7989. content: "\f17d";
  7990. }
  7991. .fa-skype:before {
  7992. content: "\f17e";
  7993. }
  7994. .fa-foursquare:before {
  7995. content: "\f180";
  7996. }
  7997. .fa-trello:before {
  7998. content: "\f181";
  7999. }
  8000. .fa-female:before {
  8001. content: "\f182";
  8002. }
  8003. .fa-male:before {
  8004. content: "\f183";
  8005. }
  8006. .fa-gittip:before {
  8007. content: "\f184";
  8008. }
  8009. .fa-sun-o:before {
  8010. content: "\f185";
  8011. }
  8012. .fa-moon-o:before {
  8013. content: "\f186";
  8014. }
  8015. .fa-archive:before {
  8016. content: "\f187";
  8017. }
  8018. .fa-bug:before {
  8019. content: "\f188";
  8020. }
  8021. .fa-vk:before {
  8022. content: "\f189";
  8023. }
  8024. .fa-weibo:before {
  8025. content: "\f18a";
  8026. }
  8027. .fa-renren:before {
  8028. content: "\f18b";
  8029. }
  8030. .fa-pagelines:before {
  8031. content: "\f18c";
  8032. }
  8033. .fa-stack-exchange:before {
  8034. content: "\f18d";
  8035. }
  8036. .fa-arrow-circle-o-right:before {
  8037. content: "\f18e";
  8038. }
  8039. .fa-arrow-circle-o-left:before {
  8040. content: "\f190";
  8041. }
  8042. .fa-toggle-left:before,
  8043. .fa-caret-square-o-left:before {
  8044. content: "\f191";
  8045. }
  8046. .fa-dot-circle-o:before {
  8047. content: "\f192";
  8048. }
  8049. .fa-wheelchair:before {
  8050. content: "\f193";
  8051. }
  8052. .fa-vimeo-square:before {
  8053. content: "\f194";
  8054. }
  8055. .fa-turkish-lira:before,
  8056. .fa-try:before {
  8057. content: "\f195";
  8058. }
  8059. .fa-plus-square-o:before {
  8060. content: "\f196";
  8061. }
  8062. .fa-space-shuttle:before {
  8063. content: "\f197";
  8064. }
  8065. .fa-slack:before {
  8066. content: "\f198";
  8067. }
  8068. .fa-envelope-square:before {
  8069. content: "\f199";
  8070. }
  8071. .fa-wordpress:before {
  8072. content: "\f19a";
  8073. }
  8074. .fa-openid:before {
  8075. content: "\f19b";
  8076. }
  8077. .fa-institution:before,
  8078. .fa-bank:before,
  8079. .fa-university:before {
  8080. content: "\f19c";
  8081. }
  8082. .fa-mortar-board:before,
  8083. .fa-graduation-cap:before {
  8084. content: "\f19d";
  8085. }
  8086. .fa-yahoo:before {
  8087. content: "\f19e";
  8088. }
  8089. .fa-google:before {
  8090. content: "\f1a0";
  8091. }
  8092. .fa-reddit:before {
  8093. content: "\f1a1";
  8094. }
  8095. .fa-reddit-square:before {
  8096. content: "\f1a2";
  8097. }
  8098. .fa-stumbleupon-circle:before {
  8099. content: "\f1a3";
  8100. }
  8101. .fa-stumbleupon:before {
  8102. content: "\f1a4";
  8103. }
  8104. .fa-delicious:before {
  8105. content: "\f1a5";
  8106. }
  8107. .fa-digg:before {
  8108. content: "\f1a6";
  8109. }
  8110. .fa-pied-piper:before {
  8111. content: "\f1a7";
  8112. }
  8113. .fa-pied-piper-alt:before {
  8114. content: "\f1a8";
  8115. }
  8116. .fa-drupal:before {
  8117. content: "\f1a9";
  8118. }
  8119. .fa-joomla:before {
  8120. content: "\f1aa";
  8121. }
  8122. .fa-language:before {
  8123. content: "\f1ab";
  8124. }
  8125. .fa-fax:before {
  8126. content: "\f1ac";
  8127. }
  8128. .fa-building:before {
  8129. content: "\f1ad";
  8130. }
  8131. .fa-child:before {
  8132. content: "\f1ae";
  8133. }
  8134. .fa-paw:before {
  8135. content: "\f1b0";
  8136. }
  8137. .fa-spoon:before {
  8138. content: "\f1b1";
  8139. }
  8140. .fa-cube:before {
  8141. content: "\f1b2";
  8142. }
  8143. .fa-cubes:before {
  8144. content: "\f1b3";
  8145. }
  8146. .fa-behance:before {
  8147. content: "\f1b4";
  8148. }
  8149. .fa-behance-square:before {
  8150. content: "\f1b5";
  8151. }
  8152. .fa-steam:before {
  8153. content: "\f1b6";
  8154. }
  8155. .fa-steam-square:before {
  8156. content: "\f1b7";
  8157. }
  8158. .fa-recycle:before {
  8159. content: "\f1b8";
  8160. }
  8161. .fa-automobile:before,
  8162. .fa-car:before {
  8163. content: "\f1b9";
  8164. }
  8165. .fa-cab:before,
  8166. .fa-taxi:before {
  8167. content: "\f1ba";
  8168. }
  8169. .fa-tree:before {
  8170. content: "\f1bb";
  8171. }
  8172. .fa-spotify:before {
  8173. content: "\f1bc";
  8174. }
  8175. .fa-deviantart:before {
  8176. content: "\f1bd";
  8177. }
  8178. .fa-soundcloud:before {
  8179. content: "\f1be";
  8180. }
  8181. .fa-database:before {
  8182. content: "\f1c0";
  8183. }
  8184. .fa-file-pdf-o:before {
  8185. content: "\f1c1";
  8186. }
  8187. .fa-file-word-o:before {
  8188. content: "\f1c2";
  8189. }
  8190. .fa-file-excel-o:before {
  8191. content: "\f1c3";
  8192. }
  8193. .fa-file-powerpoint-o:before {
  8194. content: "\f1c4";
  8195. }
  8196. .fa-file-photo-o:before,
  8197. .fa-file-picture-o:before,
  8198. .fa-file-image-o:before {
  8199. content: "\f1c5";
  8200. }
  8201. .fa-file-zip-o:before,
  8202. .fa-file-archive-o:before {
  8203. content: "\f1c6";
  8204. }
  8205. .fa-file-sound-o:before,
  8206. .fa-file-audio-o:before {
  8207. content: "\f1c7";
  8208. }
  8209. .fa-file-movie-o:before,
  8210. .fa-file-video-o:before {
  8211. content: "\f1c8";
  8212. }
  8213. .fa-file-code-o:before {
  8214. content: "\f1c9";
  8215. }
  8216. .fa-vine:before {
  8217. content: "\f1ca";
  8218. }
  8219. .fa-codepen:before {
  8220. content: "\f1cb";
  8221. }
  8222. .fa-jsfiddle:before {
  8223. content: "\f1cc";
  8224. }
  8225. .fa-life-bouy:before,
  8226. .fa-life-buoy:before,
  8227. .fa-life-saver:before,
  8228. .fa-support:before,
  8229. .fa-life-ring:before {
  8230. content: "\f1cd";
  8231. }
  8232. .fa-circle-o-notch:before {
  8233. content: "\f1ce";
  8234. }
  8235. .fa-ra:before,
  8236. .fa-rebel:before {
  8237. content: "\f1d0";
  8238. }
  8239. .fa-ge:before,
  8240. .fa-empire:before {
  8241. content: "\f1d1";
  8242. }
  8243. .fa-git-square:before {
  8244. content: "\f1d2";
  8245. }
  8246. .fa-git:before {
  8247. content: "\f1d3";
  8248. }
  8249. .fa-hacker-news:before {
  8250. content: "\f1d4";
  8251. }
  8252. .fa-tencent-weibo:before {
  8253. content: "\f1d5";
  8254. }
  8255. .fa-qq:before {
  8256. content: "\f1d6";
  8257. }
  8258. .fa-wechat:before,
  8259. .fa-weixin:before {
  8260. content: "\f1d7";
  8261. }
  8262. .fa-send:before,
  8263. .fa-paper-plane:before {
  8264. content: "\f1d8";
  8265. }
  8266. .fa-send-o:before,
  8267. .fa-paper-plane-o:before {
  8268. content: "\f1d9";
  8269. }
  8270. .fa-history:before {
  8271. content: "\f1da";
  8272. }
  8273. .fa-circle-thin:before {
  8274. content: "\f1db";
  8275. }
  8276. .fa-header:before {
  8277. content: "\f1dc";
  8278. }
  8279. .fa-paragraph:before {
  8280. content: "\f1dd";
  8281. }
  8282. .fa-sliders:before {
  8283. content: "\f1de";
  8284. }
  8285. .fa-share-alt:before {
  8286. content: "\f1e0";
  8287. }
  8288. .fa-share-alt-square:before {
  8289. content: "\f1e1";
  8290. }
  8291. .fa-bomb:before {
  8292. content: "\f1e2";
  8293. }
  8294. .fa-soccer-ball-o:before,
  8295. .fa-futbol-o:before {
  8296. content: "\f1e3";
  8297. }
  8298. .fa-tty:before {
  8299. content: "\f1e4";
  8300. }
  8301. .fa-binoculars:before {
  8302. content: "\f1e5";
  8303. }
  8304. .fa-plug:before {
  8305. content: "\f1e6";
  8306. }
  8307. .fa-slideshare:before {
  8308. content: "\f1e7";
  8309. }
  8310. .fa-twitch:before {
  8311. content: "\f1e8";
  8312. }
  8313. .fa-yelp:before {
  8314. content: "\f1e9";
  8315. }
  8316. .fa-newspaper-o:before {
  8317. content: "\f1ea";
  8318. }
  8319. .fa-wifi:before {
  8320. content: "\f1eb";
  8321. }
  8322. .fa-calculator:before {
  8323. content: "\f1ec";
  8324. }
  8325. .fa-paypal:before {
  8326. content: "\f1ed";
  8327. }
  8328. .fa-google-wallet:before {
  8329. content: "\f1ee";
  8330. }
  8331. .fa-cc-visa:before {
  8332. content: "\f1f0";
  8333. }
  8334. .fa-cc-mastercard:before {
  8335. content: "\f1f1";
  8336. }
  8337. .fa-cc-discover:before {
  8338. content: "\f1f2";
  8339. }
  8340. .fa-cc-amex:before {
  8341. content: "\f1f3";
  8342. }
  8343. .fa-cc-paypal:before {
  8344. content: "\f1f4";
  8345. }
  8346. .fa-cc-stripe:before {
  8347. content: "\f1f5";
  8348. }
  8349. .fa-bell-slash:before {
  8350. content: "\f1f6";
  8351. }
  8352. .fa-bell-slash-o:before {
  8353. content: "\f1f7";
  8354. }
  8355. .fa-trash:before {
  8356. content: "\f1f8";
  8357. }
  8358. .fa-copyright:before {
  8359. content: "\f1f9";
  8360. }
  8361. .fa-at:before {
  8362. content: "\f1fa";
  8363. }
  8364. .fa-eyedropper:before {
  8365. content: "\f1fb";
  8366. }
  8367. .fa-paint-brush:before {
  8368. content: "\f1fc";
  8369. }
  8370. .fa-birthday-cake:before {
  8371. content: "\f1fd";
  8372. }
  8373. .fa-area-chart:before {
  8374. content: "\f1fe";
  8375. }
  8376. .fa-pie-chart:before {
  8377. content: "\f200";
  8378. }
  8379. .fa-line-chart:before {
  8380. content: "\f201";
  8381. }
  8382. .fa-lastfm:before {
  8383. content: "\f202";
  8384. }
  8385. .fa-lastfm-square:before {
  8386. content: "\f203";
  8387. }
  8388. .fa-toggle-off:before {
  8389. content: "\f204";
  8390. }
  8391. .fa-toggle-on:before {
  8392. content: "\f205";
  8393. }
  8394. .fa-bicycle:before {
  8395. content: "\f206";
  8396. }
  8397. .fa-bus:before {
  8398. content: "\f207";
  8399. }
  8400. .fa-ioxhost:before {
  8401. content: "\f208";
  8402. }
  8403. .fa-angellist:before {
  8404. content: "\f209";
  8405. }
  8406. .fa-cc:before {
  8407. content: "\f20a";
  8408. }
  8409. .fa-shekel:before,
  8410. .fa-sheqel:before,
  8411. .fa-ils:before {
  8412. content: "\f20b";
  8413. }
  8414. .fa-meanpath:before {
  8415. content: "\f20c";
  8416. }
  8417. /*!
  8418. *
  8419. * IPython base
  8420. *
  8421. */
  8422. .modal.fade .modal-dialog {
  8423. -webkit-transform: translate(0, 0);
  8424. -ms-transform: translate(0, 0);
  8425. -o-transform: translate(0, 0);
  8426. transform: translate(0, 0);
  8427. }
  8428. code {
  8429. color: #000;
  8430. }
  8431. pre {
  8432. font-size: inherit;
  8433. line-height: inherit;
  8434. }
  8435. label {
  8436. font-weight: normal;
  8437. }
  8438. /* Make the page background atleast 100% the height of the view port */
  8439. /* Make the page itself atleast 70% the height of the view port */
  8440. .border-box-sizing {
  8441. box-sizing: border-box;
  8442. -moz-box-sizing: border-box;
  8443. -webkit-box-sizing: border-box;
  8444. }
  8445. .corner-all {
  8446. border-radius: 2px;
  8447. }
  8448. .no-padding {
  8449. padding: 0px;
  8450. }
  8451. /* Flexible box model classes */
  8452. /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
  8453. /* This file is a compatability layer. It allows the usage of flexible box
  8454. model layouts accross multiple browsers, including older browsers. The newest,
  8455. universal implementation of the flexible box model is used when available (see
  8456. `Modern browsers` comments below). Browsers that are known to implement this
  8457. new spec completely include:
  8458. Firefox 28.0+
  8459. Chrome 29.0+
  8460. Internet Explorer 11+
  8461. Opera 17.0+
  8462. Browsers not listed, including Safari, are supported via the styling under the
  8463. `Old browsers` comments below.
  8464. */
  8465. .hbox {
  8466. /* Old browsers */
  8467. display: -webkit-box;
  8468. -webkit-box-orient: horizontal;
  8469. -webkit-box-align: stretch;
  8470. display: -moz-box;
  8471. -moz-box-orient: horizontal;
  8472. -moz-box-align: stretch;
  8473. display: box;
  8474. box-orient: horizontal;
  8475. box-align: stretch;
  8476. /* Modern browsers */
  8477. display: flex;
  8478. flex-direction: row;
  8479. align-items: stretch;
  8480. }
  8481. .hbox > * {
  8482. /* Old browsers */
  8483. -webkit-box-flex: 0;
  8484. -moz-box-flex: 0;
  8485. box-flex: 0;
  8486. /* Modern browsers */
  8487. flex: none;
  8488. }
  8489. .vbox {
  8490. /* Old browsers */
  8491. display: -webkit-box;
  8492. -webkit-box-orient: vertical;
  8493. -webkit-box-align: stretch;
  8494. display: -moz-box;
  8495. -moz-box-orient: vertical;
  8496. -moz-box-align: stretch;
  8497. display: box;
  8498. box-orient: vertical;
  8499. box-align: stretch;
  8500. /* Modern browsers */
  8501. display: flex;
  8502. flex-direction: column;
  8503. align-items: stretch;
  8504. }
  8505. .vbox > * {
  8506. /* Old browsers */
  8507. -webkit-box-flex: 0;
  8508. -moz-box-flex: 0;
  8509. box-flex: 0;
  8510. /* Modern browsers */
  8511. flex: none;
  8512. }
  8513. .hbox.reverse,
  8514. .vbox.reverse,
  8515. .reverse {
  8516. /* Old browsers */
  8517. -webkit-box-direction: reverse;
  8518. -moz-box-direction: reverse;
  8519. box-direction: reverse;
  8520. /* Modern browsers */
  8521. flex-direction: row-reverse;
  8522. }
  8523. .hbox.box-flex0,
  8524. .vbox.box-flex0,
  8525. .box-flex0 {
  8526. /* Old browsers */
  8527. -webkit-box-flex: 0;
  8528. -moz-box-flex: 0;
  8529. box-flex: 0;
  8530. /* Modern browsers */
  8531. flex: none;
  8532. width: auto;
  8533. }
  8534. .hbox.box-flex1,
  8535. .vbox.box-flex1,
  8536. .box-flex1 {
  8537. /* Old browsers */
  8538. -webkit-box-flex: 1;
  8539. -moz-box-flex: 1;
  8540. box-flex: 1;
  8541. /* Modern browsers */
  8542. flex: 1;
  8543. }
  8544. .hbox.box-flex,
  8545. .vbox.box-flex,
  8546. .box-flex {
  8547. /* Old browsers */
  8548. /* Old browsers */
  8549. -webkit-box-flex: 1;
  8550. -moz-box-flex: 1;
  8551. box-flex: 1;
  8552. /* Modern browsers */
  8553. flex: 1;
  8554. }
  8555. .hbox.box-flex2,
  8556. .vbox.box-flex2,
  8557. .box-flex2 {
  8558. /* Old browsers */
  8559. -webkit-box-flex: 2;
  8560. -moz-box-flex: 2;
  8561. box-flex: 2;
  8562. /* Modern browsers */
  8563. flex: 2;
  8564. }
  8565. .box-group1 {
  8566. /* Deprecated */
  8567. -webkit-box-flex-group: 1;
  8568. -moz-box-flex-group: 1;
  8569. box-flex-group: 1;
  8570. }
  8571. .box-group2 {
  8572. /* Deprecated */
  8573. -webkit-box-flex-group: 2;
  8574. -moz-box-flex-group: 2;
  8575. box-flex-group: 2;
  8576. }
  8577. .hbox.start,
  8578. .vbox.start,
  8579. .start {
  8580. /* Old browsers */
  8581. -webkit-box-pack: start;
  8582. -moz-box-pack: start;
  8583. box-pack: start;
  8584. /* Modern browsers */
  8585. justify-content: flex-start;
  8586. }
  8587. .hbox.end,
  8588. .vbox.end,
  8589. .end {
  8590. /* Old browsers */
  8591. -webkit-box-pack: end;
  8592. -moz-box-pack: end;
  8593. box-pack: end;
  8594. /* Modern browsers */
  8595. justify-content: flex-end;
  8596. }
  8597. .hbox.center,
  8598. .vbox.center,
  8599. .center {
  8600. /* Old browsers */
  8601. -webkit-box-pack: center;
  8602. -moz-box-pack: center;
  8603. box-pack: center;
  8604. /* Modern browsers */
  8605. justify-content: center;
  8606. }
  8607. .hbox.baseline,
  8608. .vbox.baseline,
  8609. .baseline {
  8610. /* Old browsers */
  8611. -webkit-box-pack: baseline;
  8612. -moz-box-pack: baseline;
  8613. box-pack: baseline;
  8614. /* Modern browsers */
  8615. justify-content: baseline;
  8616. }
  8617. .hbox.stretch,
  8618. .vbox.stretch,
  8619. .stretch {
  8620. /* Old browsers */
  8621. -webkit-box-pack: stretch;
  8622. -moz-box-pack: stretch;
  8623. box-pack: stretch;
  8624. /* Modern browsers */
  8625. justify-content: stretch;
  8626. }
  8627. .hbox.align-start,
  8628. .vbox.align-start,
  8629. .align-start {
  8630. /* Old browsers */
  8631. -webkit-box-align: start;
  8632. -moz-box-align: start;
  8633. box-align: start;
  8634. /* Modern browsers */
  8635. align-items: flex-start;
  8636. }
  8637. .hbox.align-end,
  8638. .vbox.align-end,
  8639. .align-end {
  8640. /* Old browsers */
  8641. -webkit-box-align: end;
  8642. -moz-box-align: end;
  8643. box-align: end;
  8644. /* Modern browsers */
  8645. align-items: flex-end;
  8646. }
  8647. .hbox.align-center,
  8648. .vbox.align-center,
  8649. .align-center {
  8650. /* Old browsers */
  8651. -webkit-box-align: center;
  8652. -moz-box-align: center;
  8653. box-align: center;
  8654. /* Modern browsers */
  8655. align-items: center;
  8656. }
  8657. .hbox.align-baseline,
  8658. .vbox.align-baseline,
  8659. .align-baseline {
  8660. /* Old browsers */
  8661. -webkit-box-align: baseline;
  8662. -moz-box-align: baseline;
  8663. box-align: baseline;
  8664. /* Modern browsers */
  8665. align-items: baseline;
  8666. }
  8667. .hbox.align-stretch,
  8668. .vbox.align-stretch,
  8669. .align-stretch {
  8670. /* Old browsers */
  8671. -webkit-box-align: stretch;
  8672. -moz-box-align: stretch;
  8673. box-align: stretch;
  8674. /* Modern browsers */
  8675. align-items: stretch;
  8676. }
  8677. div.error {
  8678. margin: 2em;
  8679. text-align: center;
  8680. }
  8681. div.error > h1 {
  8682. font-size: 500%;
  8683. line-height: normal;
  8684. }
  8685. div.error > p {
  8686. font-size: 200%;
  8687. line-height: normal;
  8688. }
  8689. div.traceback-wrapper {
  8690. text-align: left;
  8691. max-width: 800px;
  8692. margin: auto;
  8693. }
  8694. /**
  8695. * Primary styles
  8696. *
  8697. * Author: Jupyter Development Team
  8698. */
  8699. body {
  8700. background-color: #fff;
  8701. /* This makes sure that the body covers the entire window and needs to
  8702. be in a different element than the display: box in wrapper below */
  8703. position: absolute;
  8704. left: 0px;
  8705. right: 0px;
  8706. top: 0px;
  8707. bottom: 0px;
  8708. overflow: visible;
  8709. }
  8710. body > #header {
  8711. /* Initially hidden to prevent FLOUC */
  8712. display: none;
  8713. background-color: #fff;
  8714. /* Display over codemirror */
  8715. position: relative;
  8716. z-index: 100;
  8717. }
  8718. body > #header #header-container {
  8719. padding-bottom: 5px;
  8720. padding-top: 5px;
  8721. box-sizing: border-box;
  8722. -moz-box-sizing: border-box;
  8723. -webkit-box-sizing: border-box;
  8724. }
  8725. body > #header .header-bar {
  8726. width: 100%;
  8727. height: 1px;
  8728. background: #e7e7e7;
  8729. margin-bottom: -1px;
  8730. }
  8731. @media print {
  8732. body > #header {
  8733. display: none !important;
  8734. }
  8735. }
  8736. #header-spacer {
  8737. width: 100%;
  8738. visibility: hidden;
  8739. }
  8740. @media print {
  8741. #header-spacer {
  8742. display: none;
  8743. }
  8744. }
  8745. #ipython_notebook {
  8746. padding-left: 0px;
  8747. padding-top: 1px;
  8748. padding-bottom: 1px;
  8749. }
  8750. @media (max-width: 991px) {
  8751. #ipython_notebook {
  8752. margin-left: 10px;
  8753. }
  8754. }
  8755. [dir="rtl"] #ipython_notebook {
  8756. float: right !important;
  8757. }
  8758. #noscript {
  8759. width: auto;
  8760. padding-top: 16px;
  8761. padding-bottom: 16px;
  8762. text-align: center;
  8763. font-size: 22px;
  8764. color: red;
  8765. font-weight: bold;
  8766. }
  8767. #ipython_notebook img {
  8768. height: 28px;
  8769. }
  8770. #site {
  8771. width: 100%;
  8772. display: none;
  8773. box-sizing: border-box;
  8774. -moz-box-sizing: border-box;
  8775. -webkit-box-sizing: border-box;
  8776. overflow: auto;
  8777. }
  8778. @media print {
  8779. #site {
  8780. height: auto !important;
  8781. }
  8782. }
  8783. /* Smaller buttons */
  8784. .ui-button .ui-button-text {
  8785. padding: 0.2em 0.8em;
  8786. font-size: 77%;
  8787. }
  8788. input.ui-button {
  8789. padding: 0.3em 0.9em;
  8790. }
  8791. span#login_widget {
  8792. float: right;
  8793. }
  8794. span#login_widget > .button,
  8795. #logout {
  8796. color: #333;
  8797. background-color: #fff;
  8798. border-color: #ccc;
  8799. }
  8800. span#login_widget > .button:focus,
  8801. #logout:focus,
  8802. span#login_widget > .button.focus,
  8803. #logout.focus {
  8804. color: #333;
  8805. background-color: #e6e6e6;
  8806. border-color: #8c8c8c;
  8807. }
  8808. span#login_widget > .button:hover,
  8809. #logout:hover {
  8810. color: #333;
  8811. background-color: #e6e6e6;
  8812. border-color: #adadad;
  8813. }
  8814. span#login_widget > .button:active,
  8815. #logout:active,
  8816. span#login_widget > .button.active,
  8817. #logout.active,
  8818. .open > .dropdown-togglespan#login_widget > .button,
  8819. .open > .dropdown-toggle#logout {
  8820. color: #333;
  8821. background-color: #e6e6e6;
  8822. border-color: #adadad;
  8823. }
  8824. span#login_widget > .button:active:hover,
  8825. #logout:active:hover,
  8826. span#login_widget > .button.active:hover,
  8827. #logout.active:hover,
  8828. .open > .dropdown-togglespan#login_widget > .button:hover,
  8829. .open > .dropdown-toggle#logout:hover,
  8830. span#login_widget > .button:active:focus,
  8831. #logout:active:focus,
  8832. span#login_widget > .button.active:focus,
  8833. #logout.active:focus,
  8834. .open > .dropdown-togglespan#login_widget > .button:focus,
  8835. .open > .dropdown-toggle#logout:focus,
  8836. span#login_widget > .button:active.focus,
  8837. #logout:active.focus,
  8838. span#login_widget > .button.active.focus,
  8839. #logout.active.focus,
  8840. .open > .dropdown-togglespan#login_widget > .button.focus,
  8841. .open > .dropdown-toggle#logout.focus {
  8842. color: #333;
  8843. background-color: #d4d4d4;
  8844. border-color: #8c8c8c;
  8845. }
  8846. span#login_widget > .button:active,
  8847. #logout:active,
  8848. span#login_widget > .button.active,
  8849. #logout.active,
  8850. .open > .dropdown-togglespan#login_widget > .button,
  8851. .open > .dropdown-toggle#logout {
  8852. background-image: none;
  8853. }
  8854. span#login_widget > .button.disabled:hover,
  8855. #logout.disabled:hover,
  8856. span#login_widget > .button[disabled]:hover,
  8857. #logout[disabled]:hover,
  8858. fieldset[disabled] span#login_widget > .button:hover,
  8859. fieldset[disabled] #logout:hover,
  8860. span#login_widget > .button.disabled:focus,
  8861. #logout.disabled:focus,
  8862. span#login_widget > .button[disabled]:focus,
  8863. #logout[disabled]:focus,
  8864. fieldset[disabled] span#login_widget > .button:focus,
  8865. fieldset[disabled] #logout:focus,
  8866. span#login_widget > .button.disabled.focus,
  8867. #logout.disabled.focus,
  8868. span#login_widget > .button[disabled].focus,
  8869. #logout[disabled].focus,
  8870. fieldset[disabled] span#login_widget > .button.focus,
  8871. fieldset[disabled] #logout.focus {
  8872. background-color: #fff;
  8873. border-color: #ccc;
  8874. }
  8875. span#login_widget > .button .badge,
  8876. #logout .badge {
  8877. color: #fff;
  8878. background-color: #333;
  8879. }
  8880. .nav-header {
  8881. text-transform: none;
  8882. }
  8883. #header > span {
  8884. margin-top: 10px;
  8885. }
  8886. .modal_stretch .modal-dialog {
  8887. /* Old browsers */
  8888. display: -webkit-box;
  8889. -webkit-box-orient: vertical;
  8890. -webkit-box-align: stretch;
  8891. display: -moz-box;
  8892. -moz-box-orient: vertical;
  8893. -moz-box-align: stretch;
  8894. display: box;
  8895. box-orient: vertical;
  8896. box-align: stretch;
  8897. /* Modern browsers */
  8898. display: flex;
  8899. flex-direction: column;
  8900. align-items: stretch;
  8901. min-height: 80vh;
  8902. }
  8903. .modal_stretch .modal-dialog .modal-body {
  8904. max-height: calc(100vh - 200px);
  8905. overflow: auto;
  8906. flex: 1;
  8907. }
  8908. @media (min-width: 768px) {
  8909. .modal .modal-dialog {
  8910. width: 700px;
  8911. }
  8912. }
  8913. @media (min-width: 768px) {
  8914. select.form-control {
  8915. margin-left: 12px;
  8916. margin-right: 12px;
  8917. }
  8918. }
  8919. /*!
  8920. *
  8921. * IPython auth
  8922. *
  8923. */
  8924. .center-nav {
  8925. display: inline-block;
  8926. margin-bottom: -4px;
  8927. }
  8928. /*!
  8929. *
  8930. * IPython tree view
  8931. *
  8932. */
  8933. /* We need an invisible input field on top of the sentense*/
  8934. /* "Drag file onto the list ..." */
  8935. .alternate_upload {
  8936. background-color: none;
  8937. display: inline;
  8938. }
  8939. .alternate_upload.form {
  8940. padding: 0;
  8941. margin: 0;
  8942. }
  8943. .alternate_upload input.fileinput {
  8944. text-align: center;
  8945. vertical-align: middle;
  8946. display: inline;
  8947. opacity: 0;
  8948. z-index: 2;
  8949. width: 12ex;
  8950. margin-right: -12ex;
  8951. }
  8952. .alternate_upload .btn-upload {
  8953. height: 22px;
  8954. }
  8955. /**
  8956. * Primary styles
  8957. *
  8958. * Author: Jupyter Development Team
  8959. */
  8960. [dir="rtl"] #tabs li {
  8961. float: right;
  8962. }
  8963. ul#tabs {
  8964. margin-bottom: 4px;
  8965. }
  8966. [dir="rtl"] ul#tabs {
  8967. margin-right: 0px;
  8968. }
  8969. ul#tabs a {
  8970. padding-top: 6px;
  8971. padding-bottom: 4px;
  8972. }
  8973. ul.breadcrumb a:focus,
  8974. ul.breadcrumb a:hover {
  8975. text-decoration: none;
  8976. }
  8977. ul.breadcrumb i.icon-home {
  8978. font-size: 16px;
  8979. margin-right: 4px;
  8980. }
  8981. ul.breadcrumb span {
  8982. color: #5e5e5e;
  8983. }
  8984. .list_toolbar {
  8985. padding: 4px 0 4px 0;
  8986. vertical-align: middle;
  8987. }
  8988. .list_toolbar .tree-buttons {
  8989. padding-top: 1px;
  8990. }
  8991. [dir="rtl"] .list_toolbar .tree-buttons {
  8992. float: left !important;
  8993. }
  8994. [dir="rtl"] .list_toolbar .pull-right {
  8995. padding-top: 1px;
  8996. float: left !important;
  8997. }
  8998. [dir="rtl"] .list_toolbar .pull-left {
  8999. float: right !important;
  9000. }
  9001. .dynamic-buttons {
  9002. padding-top: 3px;
  9003. display: inline-block;
  9004. }
  9005. .list_toolbar [class*="span"] {
  9006. min-height: 24px;
  9007. }
  9008. .list_header {
  9009. font-weight: bold;
  9010. background-color: #EEE;
  9011. }
  9012. .list_placeholder {
  9013. font-weight: bold;
  9014. padding-top: 4px;
  9015. padding-bottom: 4px;
  9016. padding-left: 7px;
  9017. padding-right: 7px;
  9018. }
  9019. .list_container {
  9020. margin-top: 4px;
  9021. margin-bottom: 20px;
  9022. border: 1px solid #ddd;
  9023. border-radius: 2px;
  9024. }
  9025. .list_container > div {
  9026. border-bottom: 1px solid #ddd;
  9027. }
  9028. .list_container > div:hover .list-item {
  9029. background-color: red;
  9030. }
  9031. .list_container > div:last-child {
  9032. border: none;
  9033. }
  9034. .list_item:hover .list_item {
  9035. background-color: #ddd;
  9036. }
  9037. .list_item a {
  9038. text-decoration: none;
  9039. }
  9040. .list_item:hover {
  9041. background-color: #fafafa;
  9042. }
  9043. .list_header > div,
  9044. .list_item > div {
  9045. padding-top: 4px;
  9046. padding-bottom: 4px;
  9047. padding-left: 7px;
  9048. padding-right: 7px;
  9049. line-height: 22px;
  9050. }
  9051. .list_header > div input,
  9052. .list_item > div input {
  9053. margin-right: 7px;
  9054. margin-left: 14px;
  9055. vertical-align: baseline;
  9056. line-height: 22px;
  9057. position: relative;
  9058. top: -1px;
  9059. }
  9060. .list_header > div .item_link,
  9061. .list_item > div .item_link {
  9062. margin-left: -1px;
  9063. vertical-align: baseline;
  9064. line-height: 22px;
  9065. }
  9066. .new-file input[type=checkbox] {
  9067. visibility: hidden;
  9068. }
  9069. .item_name {
  9070. line-height: 22px;
  9071. height: 24px;
  9072. }
  9073. .item_icon {
  9074. font-size: 14px;
  9075. color: #5e5e5e;
  9076. margin-right: 7px;
  9077. margin-left: 7px;
  9078. line-height: 22px;
  9079. vertical-align: baseline;
  9080. }
  9081. .item_buttons {
  9082. line-height: 1em;
  9083. margin-left: -5px;
  9084. }
  9085. .item_buttons .btn,
  9086. .item_buttons .btn-group,
  9087. .item_buttons .input-group {
  9088. float: left;
  9089. }
  9090. .item_buttons > .btn,
  9091. .item_buttons > .btn-group,
  9092. .item_buttons > .input-group {
  9093. margin-left: 5px;
  9094. }
  9095. .item_buttons .btn {
  9096. min-width: 13ex;
  9097. }
  9098. .item_buttons .running-indicator {
  9099. padding-top: 4px;
  9100. color: #5cb85c;
  9101. }
  9102. .item_buttons .kernel-name {
  9103. padding-top: 4px;
  9104. color: #5bc0de;
  9105. margin-right: 7px;
  9106. float: left;
  9107. }
  9108. .toolbar_info {
  9109. height: 24px;
  9110. line-height: 24px;
  9111. }
  9112. .list_item input:not([type=checkbox]) {
  9113. padding-top: 3px;
  9114. padding-bottom: 3px;
  9115. height: 22px;
  9116. line-height: 14px;
  9117. margin: 0px;
  9118. }
  9119. .highlight_text {
  9120. color: blue;
  9121. }
  9122. #project_name {
  9123. display: inline-block;
  9124. padding-left: 7px;
  9125. margin-left: -2px;
  9126. }
  9127. #project_name > .breadcrumb {
  9128. padding: 0px;
  9129. margin-bottom: 0px;
  9130. background-color: transparent;
  9131. font-weight: bold;
  9132. }
  9133. #tree-selector {
  9134. padding-right: 0px;
  9135. }
  9136. [dir="rtl"] #tree-selector a {
  9137. float: right;
  9138. }
  9139. #button-select-all {
  9140. min-width: 50px;
  9141. }
  9142. #select-all {
  9143. margin-left: 7px;
  9144. margin-right: 2px;
  9145. }
  9146. .menu_icon {
  9147. margin-right: 2px;
  9148. }
  9149. .tab-content .row {
  9150. margin-left: 0px;
  9151. margin-right: 0px;
  9152. }
  9153. .folder_icon:before {
  9154. display: inline-block;
  9155. font: normal normal normal 14px/1 FontAwesome;
  9156. font-size: inherit;
  9157. text-rendering: auto;
  9158. -webkit-font-smoothing: antialiased;
  9159. -moz-osx-font-smoothing: grayscale;
  9160. content: "\f114";
  9161. }
  9162. .folder_icon:before.pull-left {
  9163. margin-right: .3em;
  9164. }
  9165. .folder_icon:before.pull-right {
  9166. margin-left: .3em;
  9167. }
  9168. .notebook_icon:before {
  9169. display: inline-block;
  9170. font: normal normal normal 14px/1 FontAwesome;
  9171. font-size: inherit;
  9172. text-rendering: auto;
  9173. -webkit-font-smoothing: antialiased;
  9174. -moz-osx-font-smoothing: grayscale;
  9175. content: "\f02d";
  9176. position: relative;
  9177. top: -1px;
  9178. }
  9179. .notebook_icon:before.pull-left {
  9180. margin-right: .3em;
  9181. }
  9182. .notebook_icon:before.pull-right {
  9183. margin-left: .3em;
  9184. }
  9185. .running_notebook_icon:before {
  9186. display: inline-block;
  9187. font: normal normal normal 14px/1 FontAwesome;
  9188. font-size: inherit;
  9189. text-rendering: auto;
  9190. -webkit-font-smoothing: antialiased;
  9191. -moz-osx-font-smoothing: grayscale;
  9192. content: "\f02d";
  9193. position: relative;
  9194. top: -1px;
  9195. color: #5cb85c;
  9196. }
  9197. .running_notebook_icon:before.pull-left {
  9198. margin-right: .3em;
  9199. }
  9200. .running_notebook_icon:before.pull-right {
  9201. margin-left: .3em;
  9202. }
  9203. .file_icon:before {
  9204. display: inline-block;
  9205. font: normal normal normal 14px/1 FontAwesome;
  9206. font-size: inherit;
  9207. text-rendering: auto;
  9208. -webkit-font-smoothing: antialiased;
  9209. -moz-osx-font-smoothing: grayscale;
  9210. content: "\f016";
  9211. position: relative;
  9212. top: -2px;
  9213. }
  9214. .file_icon:before.pull-left {
  9215. margin-right: .3em;
  9216. }
  9217. .file_icon:before.pull-right {
  9218. margin-left: .3em;
  9219. }
  9220. #notebook_toolbar .pull-right {
  9221. padding-top: 0px;
  9222. margin-right: -1px;
  9223. }
  9224. ul#new-menu {
  9225. left: auto;
  9226. right: 0;
  9227. }
  9228. [dir="rtl"] #new-menu {
  9229. text-align: right;
  9230. }
  9231. .kernel-menu-icon {
  9232. padding-right: 12px;
  9233. width: 24px;
  9234. content: "\f096";
  9235. }
  9236. .kernel-menu-icon:before {
  9237. content: "\f096";
  9238. }
  9239. .kernel-menu-icon-current:before {
  9240. content: "\f00c";
  9241. }
  9242. #tab_content {
  9243. padding-top: 20px;
  9244. }
  9245. #running .panel-group .panel {
  9246. margin-top: 3px;
  9247. margin-bottom: 1em;
  9248. }
  9249. #running .panel-group .panel .panel-heading {
  9250. background-color: #EEE;
  9251. padding-top: 4px;
  9252. padding-bottom: 4px;
  9253. padding-left: 7px;
  9254. padding-right: 7px;
  9255. line-height: 22px;
  9256. }
  9257. #running .panel-group .panel .panel-heading a:focus,
  9258. #running .panel-group .panel .panel-heading a:hover {
  9259. text-decoration: none;
  9260. }
  9261. #running .panel-group .panel .panel-body {
  9262. padding: 0px;
  9263. }
  9264. #running .panel-group .panel .panel-body .list_container {
  9265. margin-top: 0px;
  9266. margin-bottom: 0px;
  9267. border: 0px;
  9268. border-radius: 0px;
  9269. }
  9270. #running .panel-group .panel .panel-body .list_container .list_item {
  9271. border-bottom: 1px solid #ddd;
  9272. }
  9273. #running .panel-group .panel .panel-body .list_container .list_item:last-child {
  9274. border-bottom: 0px;
  9275. }
  9276. [dir="rtl"] #running .col-sm-8 {
  9277. float: right !important;
  9278. }
  9279. .delete-button {
  9280. display: none;
  9281. }
  9282. .duplicate-button {
  9283. display: none;
  9284. }
  9285. .rename-button {
  9286. display: none;
  9287. }
  9288. .shutdown-button {
  9289. display: none;
  9290. }
  9291. .dynamic-instructions {
  9292. display: inline-block;
  9293. padding-top: 4px;
  9294. }
  9295. /*!
  9296. *
  9297. * IPython text editor webapp
  9298. *
  9299. */
  9300. .selected-keymap i.fa {
  9301. padding: 0px 5px;
  9302. }
  9303. .selected-keymap i.fa:before {
  9304. content: "\f00c";
  9305. }
  9306. #mode-menu {
  9307. overflow: auto;
  9308. max-height: 20em;
  9309. }
  9310. .edit_app #header {
  9311. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9312. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9313. }
  9314. .edit_app #menubar .navbar {
  9315. /* Use a negative 1 bottom margin, so the border overlaps the border of the
  9316. header */
  9317. margin-bottom: -1px;
  9318. }
  9319. .dirty-indicator {
  9320. display: inline-block;
  9321. font: normal normal normal 14px/1 FontAwesome;
  9322. font-size: inherit;
  9323. text-rendering: auto;
  9324. -webkit-font-smoothing: antialiased;
  9325. -moz-osx-font-smoothing: grayscale;
  9326. width: 20px;
  9327. }
  9328. .dirty-indicator.pull-left {
  9329. margin-right: .3em;
  9330. }
  9331. .dirty-indicator.pull-right {
  9332. margin-left: .3em;
  9333. }
  9334. .dirty-indicator-dirty {
  9335. display: inline-block;
  9336. font: normal normal normal 14px/1 FontAwesome;
  9337. font-size: inherit;
  9338. text-rendering: auto;
  9339. -webkit-font-smoothing: antialiased;
  9340. -moz-osx-font-smoothing: grayscale;
  9341. width: 20px;
  9342. }
  9343. .dirty-indicator-dirty.pull-left {
  9344. margin-right: .3em;
  9345. }
  9346. .dirty-indicator-dirty.pull-right {
  9347. margin-left: .3em;
  9348. }
  9349. .dirty-indicator-clean {
  9350. display: inline-block;
  9351. font: normal normal normal 14px/1 FontAwesome;
  9352. font-size: inherit;
  9353. text-rendering: auto;
  9354. -webkit-font-smoothing: antialiased;
  9355. -moz-osx-font-smoothing: grayscale;
  9356. width: 20px;
  9357. }
  9358. .dirty-indicator-clean.pull-left {
  9359. margin-right: .3em;
  9360. }
  9361. .dirty-indicator-clean.pull-right {
  9362. margin-left: .3em;
  9363. }
  9364. .dirty-indicator-clean:before {
  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. content: "\f00c";
  9372. }
  9373. .dirty-indicator-clean:before.pull-left {
  9374. margin-right: .3em;
  9375. }
  9376. .dirty-indicator-clean:before.pull-right {
  9377. margin-left: .3em;
  9378. }
  9379. #filename {
  9380. font-size: 16pt;
  9381. display: table;
  9382. padding: 0px 5px;
  9383. }
  9384. #current-mode {
  9385. padding-left: 5px;
  9386. padding-right: 5px;
  9387. }
  9388. #texteditor-backdrop {
  9389. padding-top: 20px;
  9390. padding-bottom: 20px;
  9391. }
  9392. @media not print {
  9393. #texteditor-backdrop {
  9394. background-color: #EEE;
  9395. }
  9396. }
  9397. @media print {
  9398. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  9399. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  9400. background-color: #fff;
  9401. }
  9402. }
  9403. @media not print {
  9404. #texteditor-backdrop #texteditor-container .CodeMirror-gutter,
  9405. #texteditor-backdrop #texteditor-container .CodeMirror-gutters {
  9406. background-color: #fff;
  9407. }
  9408. }
  9409. @media not print {
  9410. #texteditor-backdrop #texteditor-container {
  9411. padding: 0px;
  9412. background-color: #fff;
  9413. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9414. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  9415. }
  9416. }
  9417. /*!
  9418. *
  9419. * IPython notebook
  9420. *
  9421. */
  9422. /* CSS font colors for translated ANSI colors. */
  9423. .ansibold {
  9424. font-weight: bold;
  9425. }
  9426. /* use dark versions for foreground, to improve visibility */
  9427. .ansiblack {
  9428. color: black;
  9429. }
  9430. .ansired {
  9431. color: darkred;
  9432. }
  9433. .ansigreen {
  9434. color: darkgreen;
  9435. }
  9436. .ansiyellow {
  9437. color: #c4a000;
  9438. }
  9439. .ansiblue {
  9440. color: darkblue;
  9441. }
  9442. .ansipurple {
  9443. color: darkviolet;
  9444. }
  9445. .ansicyan {
  9446. color: steelblue;
  9447. }
  9448. .ansigray {
  9449. color: gray;
  9450. }
  9451. /* and light for background, for the same reason */
  9452. .ansibgblack {
  9453. background-color: black;
  9454. }
  9455. .ansibgred {
  9456. background-color: red;
  9457. }
  9458. .ansibggreen {
  9459. background-color: green;
  9460. }
  9461. .ansibgyellow {
  9462. background-color: yellow;
  9463. }
  9464. .ansibgblue {
  9465. background-color: blue;
  9466. }
  9467. .ansibgpurple {
  9468. background-color: magenta;
  9469. }
  9470. .ansibgcyan {
  9471. background-color: cyan;
  9472. }
  9473. .ansibggray {
  9474. background-color: gray;
  9475. }
  9476. div.cell {
  9477. /* Old browsers */
  9478. display: -webkit-box;
  9479. -webkit-box-orient: vertical;
  9480. -webkit-box-align: stretch;
  9481. display: -moz-box;
  9482. -moz-box-orient: vertical;
  9483. -moz-box-align: stretch;
  9484. display: box;
  9485. box-orient: vertical;
  9486. box-align: stretch;
  9487. /* Modern browsers */
  9488. display: flex;
  9489. flex-direction: column;
  9490. align-items: stretch;
  9491. border-radius: 2px;
  9492. box-sizing: border-box;
  9493. -moz-box-sizing: border-box;
  9494. -webkit-box-sizing: border-box;
  9495. border-width: 1px;
  9496. border-style: solid;
  9497. border-color: transparent;
  9498. width: 100%;
  9499. padding: 5px;
  9500. /* This acts as a spacer between cells, that is outside the border */
  9501. margin: 0px;
  9502. outline: none;
  9503. border-left-width: 1px;
  9504. padding-left: 5px;
  9505. background: linear-gradient(to right, transparent -40px, transparent 1px, transparent 1px, transparent 100%);
  9506. }
  9507. div.cell.jupyter-soft-selected {
  9508. border-left-color: #90CAF9;
  9509. border-left-color: #E3F2FD;
  9510. border-left-width: 1px;
  9511. padding-left: 5px;
  9512. border-right-color: #E3F2FD;
  9513. border-right-width: 1px;
  9514. background: #E3F2FD;
  9515. }
  9516. @media print {
  9517. div.cell.jupyter-soft-selected {
  9518. border-color: transparent;
  9519. }
  9520. }
  9521. div.cell.selected {
  9522. border-color: #ababab;
  9523. border-left-width: 0px;
  9524. padding-left: 6px;
  9525. background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 5px, transparent 5px, transparent 100%);
  9526. }
  9527. @media print {
  9528. div.cell.selected {
  9529. border-color: transparent;
  9530. }
  9531. }
  9532. div.cell.selected.jupyter-soft-selected {
  9533. border-left-width: 0;
  9534. padding-left: 6px;
  9535. background: linear-gradient(to right, #42A5F5 -40px, #42A5F5 7px, #E3F2FD 7px, #E3F2FD 100%);
  9536. }
  9537. .edit_mode div.cell.selected {
  9538. border-color: #66BB6A;
  9539. border-left-width: 0px;
  9540. padding-left: 6px;
  9541. background: linear-gradient(to right, #66BB6A -40px, #66BB6A 5px, transparent 5px, transparent 100%);
  9542. }
  9543. @media print {
  9544. .edit_mode div.cell.selected {
  9545. border-color: transparent;
  9546. }
  9547. }
  9548. .prompt {
  9549. /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
  9550. min-width: 14ex;
  9551. /* This padding is tuned to match the padding on the CodeMirror editor. */
  9552. padding: 0.4em;
  9553. margin: 0px;
  9554. font-family: monospace;
  9555. text-align: right;
  9556. /* This has to match that of the the CodeMirror class line-height below */
  9557. line-height: 1.21429em;
  9558. /* Don't highlight prompt number selection */
  9559. -webkit-touch-callout: none;
  9560. -webkit-user-select: none;
  9561. -khtml-user-select: none;
  9562. -moz-user-select: none;
  9563. -ms-user-select: none;
  9564. user-select: none;
  9565. /* Use default cursor */
  9566. cursor: default;
  9567. }
  9568. @media (max-width: 540px) {
  9569. .prompt {
  9570. text-align: left;
  9571. }
  9572. }
  9573. div.inner_cell {
  9574. min-width: 0;
  9575. /* Old browsers */
  9576. display: -webkit-box;
  9577. -webkit-box-orient: vertical;
  9578. -webkit-box-align: stretch;
  9579. display: -moz-box;
  9580. -moz-box-orient: vertical;
  9581. -moz-box-align: stretch;
  9582. display: box;
  9583. box-orient: vertical;
  9584. box-align: stretch;
  9585. /* Modern browsers */
  9586. display: flex;
  9587. flex-direction: column;
  9588. align-items: stretch;
  9589. /* Old browsers */
  9590. -webkit-box-flex: 1;
  9591. -moz-box-flex: 1;
  9592. box-flex: 1;
  9593. /* Modern browsers */
  9594. flex: 1;
  9595. }
  9596. /* input_area and input_prompt must match in top border and margin for alignment */
  9597. div.input_area {
  9598. border: 1px solid #cfcfcf;
  9599. border-radius: 2px;
  9600. background: #f7f7f7;
  9601. line-height: 1.21429em;
  9602. }
  9603. /* This is needed so that empty prompt areas can collapse to zero height when there
  9604. is no content in the output_subarea and the prompt. The main purpose of this is
  9605. to make sure that empty JavaScript output_subareas have no height. */
  9606. div.prompt:empty {
  9607. padding-top: 0;
  9608. padding-bottom: 0;
  9609. }
  9610. div.unrecognized_cell {
  9611. padding: 5px 5px 5px 0px;
  9612. /* Old browsers */
  9613. display: -webkit-box;
  9614. -webkit-box-orient: horizontal;
  9615. -webkit-box-align: stretch;
  9616. display: -moz-box;
  9617. -moz-box-orient: horizontal;
  9618. -moz-box-align: stretch;
  9619. display: box;
  9620. box-orient: horizontal;
  9621. box-align: stretch;
  9622. /* Modern browsers */
  9623. display: flex;
  9624. flex-direction: row;
  9625. align-items: stretch;
  9626. }
  9627. div.unrecognized_cell .inner_cell {
  9628. border-radius: 2px;
  9629. padding: 5px;
  9630. font-weight: bold;
  9631. color: red;
  9632. border: 1px solid #cfcfcf;
  9633. background: #eaeaea;
  9634. }
  9635. div.unrecognized_cell .inner_cell a {
  9636. color: inherit;
  9637. text-decoration: none;
  9638. }
  9639. div.unrecognized_cell .inner_cell a:hover {
  9640. color: inherit;
  9641. text-decoration: none;
  9642. }
  9643. @media (max-width: 540px) {
  9644. div.unrecognized_cell > div.prompt {
  9645. display: none;
  9646. }
  9647. }
  9648. div.code_cell {
  9649. /* avoid page breaking on code cells when printing */
  9650. }
  9651. @media print {
  9652. div.code_cell {
  9653. page-break-inside: avoid;
  9654. }
  9655. }
  9656. /* any special styling for code cells that are currently running goes here */
  9657. div.input {
  9658. page-break-inside: avoid;
  9659. /* Old browsers */
  9660. display: -webkit-box;
  9661. -webkit-box-orient: horizontal;
  9662. -webkit-box-align: stretch;
  9663. display: -moz-box;
  9664. -moz-box-orient: horizontal;
  9665. -moz-box-align: stretch;
  9666. display: box;
  9667. box-orient: horizontal;
  9668. box-align: stretch;
  9669. /* Modern browsers */
  9670. display: flex;
  9671. flex-direction: row;
  9672. align-items: stretch;
  9673. }
  9674. @media (max-width: 540px) {
  9675. div.input {
  9676. /* Old browsers */
  9677. display: -webkit-box;
  9678. -webkit-box-orient: vertical;
  9679. -webkit-box-align: stretch;
  9680. display: -moz-box;
  9681. -moz-box-orient: vertical;
  9682. -moz-box-align: stretch;
  9683. display: box;
  9684. box-orient: vertical;
  9685. box-align: stretch;
  9686. /* Modern browsers */
  9687. display: flex;
  9688. flex-direction: column;
  9689. align-items: stretch;
  9690. }
  9691. }
  9692. /* input_area and input_prompt must match in top border and margin for alignment */
  9693. div.input_prompt {
  9694. color: #303F9F;
  9695. border-top: 1px solid transparent;
  9696. }
  9697. div.input_area > div.highlight {
  9698. margin: 0.4em;
  9699. border: none;
  9700. padding: 0px;
  9701. background-color: transparent;
  9702. }
  9703. div.input_area > div.highlight > pre {
  9704. margin: 0px;
  9705. border: none;
  9706. padding: 0px;
  9707. background-color: transparent;
  9708. }
  9709. /* The following gets added to the <head> if it is detected that the user has a
  9710. * monospace font with inconsistent normal/bold/italic height. See
  9711. * notebookmain.js. Such fonts will have keywords vertically offset with
  9712. * respect to the rest of the text. The user should select a better font.
  9713. * See: https://github.com/ipython/ipython/issues/1503
  9714. *
  9715. * .CodeMirror span {
  9716. * vertical-align: bottom;
  9717. * }
  9718. */
  9719. .CodeMirror {
  9720. line-height: 1.21429em;
  9721. /* Changed from 1em to our global default */
  9722. font-size: 14px;
  9723. height: auto;
  9724. /* Changed to auto to autogrow */
  9725. background: none;
  9726. /* Changed from white to allow our bg to show through */
  9727. }
  9728. .CodeMirror-scroll {
  9729. /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
  9730. /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
  9731. overflow-y: hidden;
  9732. overflow-x: auto;
  9733. }
  9734. .CodeMirror-lines {
  9735. /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
  9736. /* we have set a different line-height and want this to scale with that. */
  9737. padding: 0.4em;
  9738. }
  9739. .CodeMirror-linenumber {
  9740. padding: 0 8px 0 4px;
  9741. }
  9742. .CodeMirror-gutters {
  9743. border-bottom-left-radius: 2px;
  9744. border-top-left-radius: 2px;
  9745. }
  9746. .CodeMirror pre {
  9747. /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
  9748. /* .CodeMirror-lines */
  9749. padding: 0;
  9750. border: 0;
  9751. border-radius: 0;
  9752. }
  9753. /*
  9754. Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  9755. Adapted from GitHub theme
  9756. */
  9757. .highlight-base {
  9758. color: #000;
  9759. }
  9760. .highlight-variable {
  9761. color: #000;
  9762. }
  9763. .highlight-variable-2 {
  9764. color: #1a1a1a;
  9765. }
  9766. .highlight-variable-3 {
  9767. color: #333333;
  9768. }
  9769. .highlight-string {
  9770. color: #BA2121;
  9771. }
  9772. .highlight-comment {
  9773. color: #408080;
  9774. font-style: italic;
  9775. }
  9776. .highlight-number {
  9777. color: #080;
  9778. }
  9779. .highlight-atom {
  9780. color: #88F;
  9781. }
  9782. .highlight-keyword {
  9783. color: #008000;
  9784. font-weight: bold;
  9785. }
  9786. .highlight-builtin {
  9787. color: #008000;
  9788. }
  9789. .highlight-error {
  9790. color: #f00;
  9791. }
  9792. .highlight-operator {
  9793. color: #AA22FF;
  9794. font-weight: bold;
  9795. }
  9796. .highlight-meta {
  9797. color: #AA22FF;
  9798. }
  9799. /* previously not defined, copying from default codemirror */
  9800. .highlight-def {
  9801. color: #00f;
  9802. }
  9803. .highlight-string-2 {
  9804. color: #f50;
  9805. }
  9806. .highlight-qualifier {
  9807. color: #555;
  9808. }
  9809. .highlight-bracket {
  9810. color: #997;
  9811. }
  9812. .highlight-tag {
  9813. color: #170;
  9814. }
  9815. .highlight-attribute {
  9816. color: #00c;
  9817. }
  9818. .highlight-header {
  9819. color: blue;
  9820. }
  9821. .highlight-quote {
  9822. color: #090;
  9823. }
  9824. .highlight-link {
  9825. color: #00c;
  9826. }
  9827. /* apply the same style to codemirror */
  9828. .cm-s-ipython span.cm-keyword {
  9829. color: #008000;
  9830. font-weight: bold;
  9831. }
  9832. .cm-s-ipython span.cm-atom {
  9833. color: #88F;
  9834. }
  9835. .cm-s-ipython span.cm-number {
  9836. color: #080;
  9837. }
  9838. .cm-s-ipython span.cm-def {
  9839. color: #00f;
  9840. }
  9841. .cm-s-ipython span.cm-variable {
  9842. color: #000;
  9843. }
  9844. .cm-s-ipython span.cm-operator {
  9845. color: #AA22FF;
  9846. font-weight: bold;
  9847. }
  9848. .cm-s-ipython span.cm-variable-2 {
  9849. color: #1a1a1a;
  9850. }
  9851. .cm-s-ipython span.cm-variable-3 {
  9852. color: #333333;
  9853. }
  9854. .cm-s-ipython span.cm-comment {
  9855. color: #408080;
  9856. font-style: italic;
  9857. }
  9858. .cm-s-ipython span.cm-string {
  9859. color: #BA2121;
  9860. }
  9861. .cm-s-ipython span.cm-string-2 {
  9862. color: #f50;
  9863. }
  9864. .cm-s-ipython span.cm-meta {
  9865. color: #AA22FF;
  9866. }
  9867. .cm-s-ipython span.cm-qualifier {
  9868. color: #555;
  9869. }
  9870. .cm-s-ipython span.cm-builtin {
  9871. color: #008000;
  9872. }
  9873. .cm-s-ipython span.cm-bracket {
  9874. color: #997;
  9875. }
  9876. .cm-s-ipython span.cm-tag {
  9877. color: #170;
  9878. }
  9879. .cm-s-ipython span.cm-attribute {
  9880. color: #00c;
  9881. }
  9882. .cm-s-ipython span.cm-header {
  9883. color: blue;
  9884. }
  9885. .cm-s-ipython span.cm-quote {
  9886. color: #090;
  9887. }
  9888. .cm-s-ipython span.cm-link {
  9889. color: #00c;
  9890. }
  9891. .cm-s-ipython span.cm-error {
  9892. color: #f00;
  9893. }
  9894. .cm-s-ipython span.cm-tab {
  9895. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  9896. background-position: right;
  9897. background-repeat: no-repeat;
  9898. }
  9899. div.output_wrapper {
  9900. /* this position must be relative to enable descendents to be absolute within it */
  9901. position: relative;
  9902. /* Old browsers */
  9903. display: -webkit-box;
  9904. -webkit-box-orient: vertical;
  9905. -webkit-box-align: stretch;
  9906. display: -moz-box;
  9907. -moz-box-orient: vertical;
  9908. -moz-box-align: stretch;
  9909. display: box;
  9910. box-orient: vertical;
  9911. box-align: stretch;
  9912. /* Modern browsers */
  9913. display: flex;
  9914. flex-direction: column;
  9915. align-items: stretch;
  9916. z-index: 1;
  9917. }
  9918. /* class for the output area when it should be height-limited */
  9919. div.output_scroll {
  9920. /* ideally, this would be max-height, but FF barfs all over that */
  9921. height: 24em;
  9922. /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
  9923. width: 100%;
  9924. overflow: auto;
  9925. border-radius: 2px;
  9926. -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  9927. box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
  9928. display: block;
  9929. }
  9930. /* output div while it is collapsed */
  9931. div.output_collapsed {
  9932. margin: 0px;
  9933. padding: 0px;
  9934. /* Old browsers */
  9935. display: -webkit-box;
  9936. -webkit-box-orient: vertical;
  9937. -webkit-box-align: stretch;
  9938. display: -moz-box;
  9939. -moz-box-orient: vertical;
  9940. -moz-box-align: stretch;
  9941. display: box;
  9942. box-orient: vertical;
  9943. box-align: stretch;
  9944. /* Modern browsers */
  9945. display: flex;
  9946. flex-direction: column;
  9947. align-items: stretch;
  9948. }
  9949. div.out_prompt_overlay {
  9950. height: 100%;
  9951. padding: 0px 0.4em;
  9952. position: absolute;
  9953. border-radius: 2px;
  9954. }
  9955. div.out_prompt_overlay:hover {
  9956. /* use inner shadow to get border that is computed the same on WebKit/FF */
  9957. -webkit-box-shadow: inset 0 0 1px #000;
  9958. box-shadow: inset 0 0 1px #000;
  9959. background: rgba(240, 240, 240, 0.5);
  9960. }
  9961. div.output_prompt {
  9962. color: #D84315;
  9963. }
  9964. /* This class is the outer container of all output sections. */
  9965. div.output_area {
  9966. padding: 0px;
  9967. page-break-inside: avoid;
  9968. /* Old browsers */
  9969. display: -webkit-box;
  9970. -webkit-box-orient: horizontal;
  9971. -webkit-box-align: stretch;
  9972. display: -moz-box;
  9973. -moz-box-orient: horizontal;
  9974. -moz-box-align: stretch;
  9975. display: box;
  9976. box-orient: horizontal;
  9977. box-align: stretch;
  9978. /* Modern browsers */
  9979. display: flex;
  9980. flex-direction: row;
  9981. align-items: stretch;
  9982. }
  9983. div.output_area .MathJax_Display {
  9984. text-align: left !important;
  9985. }
  9986. div.output_area .rendered_html table {
  9987. margin-left: 0;
  9988. margin-right: 0;
  9989. }
  9990. div.output_area .rendered_html img {
  9991. margin-left: 0;
  9992. margin-right: 0;
  9993. }
  9994. div.output_area img,
  9995. div.output_area svg {
  9996. max-width: 100%;
  9997. height: auto;
  9998. }
  9999. div.output_area img.unconfined,
  10000. div.output_area svg.unconfined {
  10001. max-width: none;
  10002. }
  10003. /* This is needed to protect the pre formating from global settings such
  10004. as that of bootstrap */
  10005. .output {
  10006. /* Old browsers */
  10007. display: -webkit-box;
  10008. -webkit-box-orient: vertical;
  10009. -webkit-box-align: stretch;
  10010. display: -moz-box;
  10011. -moz-box-orient: vertical;
  10012. -moz-box-align: stretch;
  10013. display: box;
  10014. box-orient: vertical;
  10015. box-align: stretch;
  10016. /* Modern browsers */
  10017. display: flex;
  10018. flex-direction: column;
  10019. align-items: stretch;
  10020. }
  10021. @media (max-width: 540px) {
  10022. div.output_area {
  10023. /* Old browsers */
  10024. display: -webkit-box;
  10025. -webkit-box-orient: vertical;
  10026. -webkit-box-align: stretch;
  10027. display: -moz-box;
  10028. -moz-box-orient: vertical;
  10029. -moz-box-align: stretch;
  10030. display: box;
  10031. box-orient: vertical;
  10032. box-align: stretch;
  10033. /* Modern browsers */
  10034. display: flex;
  10035. flex-direction: column;
  10036. align-items: stretch;
  10037. }
  10038. }
  10039. div.output_area pre {
  10040. margin: 0;
  10041. padding: 0;
  10042. border: 0;
  10043. vertical-align: baseline;
  10044. color: black;
  10045. background-color: transparent;
  10046. border-radius: 0;
  10047. }
  10048. /* This class is for the output subarea inside the output_area and after
  10049. the prompt div. */
  10050. div.output_subarea {
  10051. overflow-x: auto;
  10052. padding: 0.4em;
  10053. /* Old browsers */
  10054. -webkit-box-flex: 1;
  10055. -moz-box-flex: 1;
  10056. box-flex: 1;
  10057. /* Modern browsers */
  10058. flex: 1;
  10059. max-width: calc(100% - 14ex);
  10060. }
  10061. div.output_scroll div.output_subarea {
  10062. overflow-x: visible;
  10063. }
  10064. /* The rest of the output_* classes are for special styling of the different
  10065. output types */
  10066. /* all text output has this class: */
  10067. div.output_text {
  10068. text-align: left;
  10069. color: #000;
  10070. /* This has to match that of the the CodeMirror class line-height below */
  10071. line-height: 1.21429em;
  10072. }
  10073. /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
  10074. div.output_stderr {
  10075. background: #fdd;
  10076. /* very light red background for stderr */
  10077. }
  10078. div.output_latex {
  10079. text-align: left;
  10080. }
  10081. /* Empty output_javascript divs should have no height */
  10082. div.output_javascript:empty {
  10083. padding: 0;
  10084. }
  10085. .js-error {
  10086. color: darkred;
  10087. }
  10088. /* raw_input styles */
  10089. div.raw_input_container {
  10090. line-height: 1.21429em;
  10091. padding-top: 5px;
  10092. }
  10093. pre.raw_input_prompt {
  10094. /* nothing needed here. */
  10095. }
  10096. input.raw_input {
  10097. font-family: monospace;
  10098. font-size: inherit;
  10099. color: inherit;
  10100. width: auto;
  10101. /* make sure input baseline aligns with prompt */
  10102. vertical-align: baseline;
  10103. /* padding + margin = 0.5em between prompt and cursor */
  10104. padding: 0em 0.25em;
  10105. margin: 0em 0.25em;
  10106. }
  10107. input.raw_input:focus {
  10108. box-shadow: none;
  10109. }
  10110. p.p-space {
  10111. margin-bottom: 10px;
  10112. }
  10113. div.output_unrecognized {
  10114. padding: 5px;
  10115. font-weight: bold;
  10116. color: red;
  10117. }
  10118. div.output_unrecognized a {
  10119. color: inherit;
  10120. text-decoration: none;
  10121. }
  10122. div.output_unrecognized a:hover {
  10123. color: inherit;
  10124. text-decoration: none;
  10125. }
  10126. .rendered_html {
  10127. color: #000;
  10128. /* any extras will just be numbers: */
  10129. }
  10130. .rendered_html em {
  10131. font-style: italic;
  10132. }
  10133. .rendered_html strong {
  10134. font-weight: bold;
  10135. }
  10136. .rendered_html u {
  10137. text-decoration: underline;
  10138. }
  10139. .rendered_html :link {
  10140. text-decoration: underline;
  10141. }
  10142. .rendered_html :visited {
  10143. text-decoration: underline;
  10144. }
  10145. .rendered_html h1 {
  10146. font-size: 185.7%;
  10147. margin: 1.08em 0 0 0;
  10148. font-weight: bold;
  10149. line-height: 1.0;
  10150. }
  10151. .rendered_html h2 {
  10152. font-size: 157.1%;
  10153. margin: 1.27em 0 0 0;
  10154. font-weight: bold;
  10155. line-height: 1.0;
  10156. }
  10157. .rendered_html h3 {
  10158. font-size: 128.6%;
  10159. margin: 1.55em 0 0 0;
  10160. font-weight: bold;
  10161. line-height: 1.0;
  10162. }
  10163. .rendered_html h4 {
  10164. font-size: 100%;
  10165. margin: 2em 0 0 0;
  10166. font-weight: bold;
  10167. line-height: 1.0;
  10168. }
  10169. .rendered_html h5 {
  10170. font-size: 100%;
  10171. margin: 2em 0 0 0;
  10172. font-weight: bold;
  10173. line-height: 1.0;
  10174. font-style: italic;
  10175. }
  10176. .rendered_html h6 {
  10177. font-size: 100%;
  10178. margin: 2em 0 0 0;
  10179. font-weight: bold;
  10180. line-height: 1.0;
  10181. font-style: italic;
  10182. }
  10183. .rendered_html h1:first-child {
  10184. margin-top: 0.538em;
  10185. }
  10186. .rendered_html h2:first-child {
  10187. margin-top: 0.636em;
  10188. }
  10189. .rendered_html h3:first-child {
  10190. margin-top: 0.777em;
  10191. }
  10192. .rendered_html h4:first-child {
  10193. margin-top: 1em;
  10194. }
  10195. .rendered_html h5:first-child {
  10196. margin-top: 1em;
  10197. }
  10198. .rendered_html h6:first-child {
  10199. margin-top: 1em;
  10200. }
  10201. .rendered_html ul {
  10202. list-style: disc;
  10203. margin: 0em 2em;
  10204. padding-left: 0px;
  10205. }
  10206. .rendered_html ul ul {
  10207. list-style: square;
  10208. margin: 0em 2em;
  10209. }
  10210. .rendered_html ul ul ul {
  10211. list-style: circle;
  10212. margin: 0em 2em;
  10213. }
  10214. .rendered_html ol {
  10215. list-style: decimal;
  10216. margin: 0em 2em;
  10217. padding-left: 0px;
  10218. }
  10219. .rendered_html ol ol {
  10220. list-style: upper-alpha;
  10221. margin: 0em 2em;
  10222. }
  10223. .rendered_html ol ol ol {
  10224. list-style: lower-alpha;
  10225. margin: 0em 2em;
  10226. }
  10227. .rendered_html ol ol ol ol {
  10228. list-style: lower-roman;
  10229. margin: 0em 2em;
  10230. }
  10231. .rendered_html ol ol ol ol ol {
  10232. list-style: decimal;
  10233. margin: 0em 2em;
  10234. }
  10235. .rendered_html * + ul {
  10236. margin-top: 1em;
  10237. }
  10238. .rendered_html * + ol {
  10239. margin-top: 1em;
  10240. }
  10241. .rendered_html hr {
  10242. color: black;
  10243. background-color: black;
  10244. }
  10245. .rendered_html pre {
  10246. margin: 1em 2em;
  10247. }
  10248. .rendered_html pre,
  10249. .rendered_html code {
  10250. border: 0;
  10251. background-color: #fff;
  10252. color: #000;
  10253. font-size: 100%;
  10254. padding: 0px;
  10255. }
  10256. .rendered_html blockquote {
  10257. margin: 1em 2em;
  10258. }
  10259. .rendered_html table {
  10260. margin-left: auto;
  10261. margin-right: auto;
  10262. border: 1px solid black;
  10263. border-collapse: collapse;
  10264. }
  10265. .rendered_html tr,
  10266. .rendered_html th,
  10267. .rendered_html td {
  10268. border: 1px solid black;
  10269. border-collapse: collapse;
  10270. margin: 1em 2em;
  10271. }
  10272. .rendered_html td,
  10273. .rendered_html th {
  10274. text-align: left;
  10275. vertical-align: middle;
  10276. padding: 4px;
  10277. }
  10278. .rendered_html th {
  10279. font-weight: bold;
  10280. }
  10281. .rendered_html * + table {
  10282. margin-top: 1em;
  10283. }
  10284. .rendered_html p {
  10285. text-align: left;
  10286. }
  10287. .rendered_html * + p {
  10288. margin-top: 1em;
  10289. }
  10290. .rendered_html img {
  10291. display: block;
  10292. margin-left: auto;
  10293. margin-right: auto;
  10294. }
  10295. .rendered_html * + img {
  10296. margin-top: 1em;
  10297. }
  10298. .rendered_html img,
  10299. .rendered_html svg {
  10300. max-width: 100%;
  10301. height: auto;
  10302. }
  10303. .rendered_html img.unconfined,
  10304. .rendered_html svg.unconfined {
  10305. max-width: none;
  10306. }
  10307. div.text_cell {
  10308. /* Old browsers */
  10309. display: -webkit-box;
  10310. -webkit-box-orient: horizontal;
  10311. -webkit-box-align: stretch;
  10312. display: -moz-box;
  10313. -moz-box-orient: horizontal;
  10314. -moz-box-align: stretch;
  10315. display: box;
  10316. box-orient: horizontal;
  10317. box-align: stretch;
  10318. /* Modern browsers */
  10319. display: flex;
  10320. flex-direction: row;
  10321. align-items: stretch;
  10322. }
  10323. @media (max-width: 540px) {
  10324. div.text_cell > div.prompt {
  10325. display: none;
  10326. }
  10327. }
  10328. div.text_cell_render {
  10329. /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
  10330. outline: none;
  10331. resize: none;
  10332. width: inherit;
  10333. border-style: none;
  10334. padding: 0.5em 0.5em 0.5em 0.4em;
  10335. color: #000;
  10336. box-sizing: border-box;
  10337. -moz-box-sizing: border-box;
  10338. -webkit-box-sizing: border-box;
  10339. }
  10340. a.anchor-link:link {
  10341. text-decoration: none;
  10342. padding: 0px 20px;
  10343. visibility: hidden;
  10344. }
  10345. h1:hover .anchor-link,
  10346. h2:hover .anchor-link,
  10347. h3:hover .anchor-link,
  10348. h4:hover .anchor-link,
  10349. h5:hover .anchor-link,
  10350. h6:hover .anchor-link {
  10351. visibility: visible;
  10352. }
  10353. .text_cell.rendered .input_area {
  10354. display: none;
  10355. }
  10356. .text_cell.rendered .rendered_html {
  10357. overflow-x: auto;
  10358. overflow-y: hidden;
  10359. }
  10360. .text_cell.unrendered .text_cell_render {
  10361. display: none;
  10362. }
  10363. .cm-header-1,
  10364. .cm-header-2,
  10365. .cm-header-3,
  10366. .cm-header-4,
  10367. .cm-header-5,
  10368. .cm-header-6 {
  10369. font-weight: bold;
  10370. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  10371. }
  10372. .cm-header-1 {
  10373. font-size: 185.7%;
  10374. }
  10375. .cm-header-2 {
  10376. font-size: 157.1%;
  10377. }
  10378. .cm-header-3 {
  10379. font-size: 128.6%;
  10380. }
  10381. .cm-header-4 {
  10382. font-size: 110%;
  10383. }
  10384. .cm-header-5 {
  10385. font-size: 100%;
  10386. font-style: italic;
  10387. }
  10388. .cm-header-6 {
  10389. font-size: 100%;
  10390. font-style: italic;
  10391. }
  10392. /*!
  10393. *
  10394. * IPython notebook webapp
  10395. *
  10396. */
  10397. @media (max-width: 767px) {
  10398. .notebook_app {
  10399. padding-left: 0px;
  10400. padding-right: 0px;
  10401. }
  10402. }
  10403. #ipython-main-app {
  10404. box-sizing: border-box;
  10405. -moz-box-sizing: border-box;
  10406. -webkit-box-sizing: border-box;
  10407. height: 100%;
  10408. }
  10409. div#notebook_panel {
  10410. margin: 0px;
  10411. padding: 0px;
  10412. box-sizing: border-box;
  10413. -moz-box-sizing: border-box;
  10414. -webkit-box-sizing: border-box;
  10415. height: 100%;
  10416. }
  10417. div#notebook {
  10418. font-size: 14px;
  10419. line-height: 20px;
  10420. overflow-y: hidden;
  10421. overflow-x: auto;
  10422. width: 100%;
  10423. /* This spaces the page away from the edge of the notebook area */
  10424. padding-top: 20px;
  10425. margin: 0px;
  10426. outline: none;
  10427. box-sizing: border-box;
  10428. -moz-box-sizing: border-box;
  10429. -webkit-box-sizing: border-box;
  10430. min-height: 100%;
  10431. }
  10432. @media not print {
  10433. #notebook-container {
  10434. padding: 15px;
  10435. background-color: #fff;
  10436. min-height: 0;
  10437. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10438. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10439. }
  10440. }
  10441. @media print {
  10442. #notebook-container {
  10443. width: 100%;
  10444. }
  10445. }
  10446. div.ui-widget-content {
  10447. border: 1px solid #ababab;
  10448. outline: none;
  10449. }
  10450. pre.dialog {
  10451. background-color: #f7f7f7;
  10452. border: 1px solid #ddd;
  10453. border-radius: 2px;
  10454. padding: 0.4em;
  10455. padding-left: 2em;
  10456. }
  10457. p.dialog {
  10458. padding: 0.2em;
  10459. }
  10460. /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
  10461. to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
  10462. */
  10463. pre,
  10464. code,
  10465. kbd,
  10466. samp {
  10467. white-space: pre-wrap;
  10468. }
  10469. #fonttest {
  10470. font-family: monospace;
  10471. }
  10472. p {
  10473. margin-bottom: 0;
  10474. }
  10475. .end_space {
  10476. min-height: 100px;
  10477. transition: height .2s ease;
  10478. }
  10479. .notebook_app > #header {
  10480. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10481. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  10482. }
  10483. @media not print {
  10484. .notebook_app {
  10485. background-color: #EEE;
  10486. }
  10487. }
  10488. kbd {
  10489. border-style: solid;
  10490. border-width: 1px;
  10491. box-shadow: none;
  10492. margin: 2px;
  10493. padding-left: 2px;
  10494. padding-right: 2px;
  10495. padding-top: 1px;
  10496. padding-bottom: 1px;
  10497. }
  10498. /* CSS for the cell toolbar */
  10499. .celltoolbar {
  10500. border: thin solid #CFCFCF;
  10501. border-bottom: none;
  10502. background: #EEE;
  10503. border-radius: 2px 2px 0px 0px;
  10504. width: 100%;
  10505. height: 29px;
  10506. padding-right: 4px;
  10507. /* Old browsers */
  10508. display: -webkit-box;
  10509. -webkit-box-orient: horizontal;
  10510. -webkit-box-align: stretch;
  10511. display: -moz-box;
  10512. -moz-box-orient: horizontal;
  10513. -moz-box-align: stretch;
  10514. display: box;
  10515. box-orient: horizontal;
  10516. box-align: stretch;
  10517. /* Modern browsers */
  10518. display: flex;
  10519. flex-direction: row;
  10520. align-items: stretch;
  10521. /* Old browsers */
  10522. -webkit-box-pack: end;
  10523. -moz-box-pack: end;
  10524. box-pack: end;
  10525. /* Modern browsers */
  10526. justify-content: flex-end;
  10527. display: -webkit-flex;
  10528. }
  10529. @media print {
  10530. .celltoolbar {
  10531. display: none;
  10532. }
  10533. }
  10534. .ctb_hideshow {
  10535. display: none;
  10536. vertical-align: bottom;
  10537. }
  10538. /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
  10539. Cell toolbars are only shown when the ctb_global_show class is also set.
  10540. */
  10541. .ctb_global_show .ctb_show.ctb_hideshow {
  10542. display: block;
  10543. }
  10544. .ctb_global_show .ctb_show + .input_area,
  10545. .ctb_global_show .ctb_show + div.text_cell_input,
  10546. .ctb_global_show .ctb_show ~ div.text_cell_render {
  10547. border-top-right-radius: 0px;
  10548. border-top-left-radius: 0px;
  10549. }
  10550. .ctb_global_show .ctb_show ~ div.text_cell_render {
  10551. border: 1px solid #cfcfcf;
  10552. }
  10553. .celltoolbar {
  10554. font-size: 87%;
  10555. padding-top: 3px;
  10556. }
  10557. .celltoolbar select {
  10558. display: block;
  10559. width: 100%;
  10560. height: 32px;
  10561. padding: 6px 12px;
  10562. font-size: 13px;
  10563. line-height: 1.42857143;
  10564. color: #555555;
  10565. background-color: #fff;
  10566. background-image: none;
  10567. border: 1px solid #ccc;
  10568. border-radius: 2px;
  10569. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  10570. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  10571. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10572. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10573. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  10574. height: 30px;
  10575. padding: 5px 10px;
  10576. font-size: 12px;
  10577. line-height: 1.5;
  10578. border-radius: 1px;
  10579. width: inherit;
  10580. font-size: inherit;
  10581. height: 22px;
  10582. padding: 0px;
  10583. display: inline-block;
  10584. }
  10585. .celltoolbar select:focus {
  10586. border-color: #66afe9;
  10587. outline: 0;
  10588. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  10589. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  10590. }
  10591. .celltoolbar select::-moz-placeholder {
  10592. color: #999;
  10593. opacity: 1;
  10594. }
  10595. .celltoolbar select:-ms-input-placeholder {
  10596. color: #999;
  10597. }
  10598. .celltoolbar select::-webkit-input-placeholder {
  10599. color: #999;
  10600. }
  10601. .celltoolbar select::-ms-expand {
  10602. border: 0;
  10603. background-color: transparent;
  10604. }
  10605. .celltoolbar select[disabled],
  10606. .celltoolbar select[readonly],
  10607. fieldset[disabled] .celltoolbar select {
  10608. background-color: #eeeeee;
  10609. opacity: 1;
  10610. }
  10611. .celltoolbar select[disabled],
  10612. fieldset[disabled] .celltoolbar select {
  10613. cursor: not-allowed;
  10614. }
  10615. textarea.celltoolbar select {
  10616. height: auto;
  10617. }
  10618. select.celltoolbar select {
  10619. height: 30px;
  10620. line-height: 30px;
  10621. }
  10622. textarea.celltoolbar select,
  10623. select[multiple].celltoolbar select {
  10624. height: auto;
  10625. }
  10626. .celltoolbar label {
  10627. margin-left: 5px;
  10628. margin-right: 5px;
  10629. }
  10630. .completions {
  10631. position: absolute;
  10632. z-index: 110;
  10633. overflow: hidden;
  10634. border: 1px solid #ababab;
  10635. border-radius: 2px;
  10636. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  10637. box-shadow: 0px 6px 10px -1px #adadad;
  10638. line-height: 1;
  10639. }
  10640. .completions select {
  10641. background: white;
  10642. outline: none;
  10643. border: none;
  10644. padding: 0px;
  10645. margin: 0px;
  10646. overflow: auto;
  10647. font-family: monospace;
  10648. font-size: 110%;
  10649. color: #000;
  10650. width: auto;
  10651. }
  10652. .completions select option.context {
  10653. color: #286090;
  10654. }
  10655. #kernel_logo_widget {
  10656. float: right !important;
  10657. float: right;
  10658. }
  10659. #kernel_logo_widget .current_kernel_logo {
  10660. display: none;
  10661. margin-top: -1px;
  10662. margin-bottom: -1px;
  10663. width: 32px;
  10664. height: 32px;
  10665. }
  10666. #menubar {
  10667. box-sizing: border-box;
  10668. -moz-box-sizing: border-box;
  10669. -webkit-box-sizing: border-box;
  10670. margin-top: 1px;
  10671. }
  10672. #menubar .navbar {
  10673. border-top: 1px;
  10674. border-radius: 0px 0px 2px 2px;
  10675. margin-bottom: 0px;
  10676. }
  10677. #menubar .navbar-toggle {
  10678. float: left;
  10679. padding-top: 7px;
  10680. padding-bottom: 7px;
  10681. border: none;
  10682. }
  10683. #menubar .navbar-collapse {
  10684. clear: left;
  10685. }
  10686. .nav-wrapper {
  10687. border-bottom: 1px solid #e7e7e7;
  10688. }
  10689. i.menu-icon {
  10690. padding-top: 4px;
  10691. }
  10692. ul#help_menu li a {
  10693. overflow: hidden;
  10694. padding-right: 2.2em;
  10695. }
  10696. ul#help_menu li a i {
  10697. margin-right: -1.2em;
  10698. }
  10699. .dropdown-submenu {
  10700. position: relative;
  10701. }
  10702. .dropdown-submenu > .dropdown-menu {
  10703. top: 0;
  10704. left: 100%;
  10705. margin-top: -6px;
  10706. margin-left: -1px;
  10707. }
  10708. .dropdown-submenu:hover > .dropdown-menu {
  10709. display: block;
  10710. }
  10711. .dropdown-submenu > a:after {
  10712. display: inline-block;
  10713. font: normal normal normal 14px/1 FontAwesome;
  10714. font-size: inherit;
  10715. text-rendering: auto;
  10716. -webkit-font-smoothing: antialiased;
  10717. -moz-osx-font-smoothing: grayscale;
  10718. display: block;
  10719. content: "\f0da";
  10720. float: right;
  10721. color: #333333;
  10722. margin-top: 2px;
  10723. margin-right: -10px;
  10724. }
  10725. .dropdown-submenu > a:after.pull-left {
  10726. margin-right: .3em;
  10727. }
  10728. .dropdown-submenu > a:after.pull-right {
  10729. margin-left: .3em;
  10730. }
  10731. .dropdown-submenu:hover > a:after {
  10732. color: #262626;
  10733. }
  10734. .dropdown-submenu.pull-left {
  10735. float: none;
  10736. }
  10737. .dropdown-submenu.pull-left > .dropdown-menu {
  10738. left: -100%;
  10739. margin-left: 10px;
  10740. }
  10741. #notification_area {
  10742. float: right !important;
  10743. float: right;
  10744. z-index: 10;
  10745. }
  10746. .indicator_area {
  10747. float: right !important;
  10748. float: right;
  10749. color: #777;
  10750. margin-left: 5px;
  10751. margin-right: 5px;
  10752. width: 11px;
  10753. z-index: 10;
  10754. text-align: center;
  10755. width: auto;
  10756. }
  10757. #kernel_indicator {
  10758. float: right !important;
  10759. float: right;
  10760. color: #777;
  10761. margin-left: 5px;
  10762. margin-right: 5px;
  10763. width: 11px;
  10764. z-index: 10;
  10765. text-align: center;
  10766. width: auto;
  10767. border-left: 1px solid;
  10768. }
  10769. #kernel_indicator .kernel_indicator_name {
  10770. padding-left: 5px;
  10771. padding-right: 5px;
  10772. }
  10773. #modal_indicator {
  10774. float: right !important;
  10775. float: right;
  10776. color: #777;
  10777. margin-left: 5px;
  10778. margin-right: 5px;
  10779. width: 11px;
  10780. z-index: 10;
  10781. text-align: center;
  10782. width: auto;
  10783. }
  10784. #readonly-indicator {
  10785. float: right !important;
  10786. float: right;
  10787. color: #777;
  10788. margin-left: 5px;
  10789. margin-right: 5px;
  10790. width: 11px;
  10791. z-index: 10;
  10792. text-align: center;
  10793. width: auto;
  10794. margin-top: 2px;
  10795. margin-bottom: 0px;
  10796. margin-left: 0px;
  10797. margin-right: 0px;
  10798. display: none;
  10799. }
  10800. .modal_indicator:before {
  10801. width: 1.28571429em;
  10802. text-align: center;
  10803. }
  10804. .edit_mode .modal_indicator:before {
  10805. display: inline-block;
  10806. font: normal normal normal 14px/1 FontAwesome;
  10807. font-size: inherit;
  10808. text-rendering: auto;
  10809. -webkit-font-smoothing: antialiased;
  10810. -moz-osx-font-smoothing: grayscale;
  10811. content: "\f040";
  10812. }
  10813. .edit_mode .modal_indicator:before.pull-left {
  10814. margin-right: .3em;
  10815. }
  10816. .edit_mode .modal_indicator:before.pull-right {
  10817. margin-left: .3em;
  10818. }
  10819. .command_mode .modal_indicator:before {
  10820. display: inline-block;
  10821. font: normal normal normal 14px/1 FontAwesome;
  10822. font-size: inherit;
  10823. text-rendering: auto;
  10824. -webkit-font-smoothing: antialiased;
  10825. -moz-osx-font-smoothing: grayscale;
  10826. content: ' ';
  10827. }
  10828. .command_mode .modal_indicator:before.pull-left {
  10829. margin-right: .3em;
  10830. }
  10831. .command_mode .modal_indicator:before.pull-right {
  10832. margin-left: .3em;
  10833. }
  10834. .kernel_idle_icon:before {
  10835. display: inline-block;
  10836. font: normal normal normal 14px/1 FontAwesome;
  10837. font-size: inherit;
  10838. text-rendering: auto;
  10839. -webkit-font-smoothing: antialiased;
  10840. -moz-osx-font-smoothing: grayscale;
  10841. content: "\f10c";
  10842. }
  10843. .kernel_idle_icon:before.pull-left {
  10844. margin-right: .3em;
  10845. }
  10846. .kernel_idle_icon:before.pull-right {
  10847. margin-left: .3em;
  10848. }
  10849. .kernel_busy_icon: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: "\f111";
  10857. }
  10858. .kernel_busy_icon:before.pull-left {
  10859. margin-right: .3em;
  10860. }
  10861. .kernel_busy_icon:before.pull-right {
  10862. margin-left: .3em;
  10863. }
  10864. .kernel_dead_icon: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: "\f1e2";
  10872. }
  10873. .kernel_dead_icon:before.pull-left {
  10874. margin-right: .3em;
  10875. }
  10876. .kernel_dead_icon:before.pull-right {
  10877. margin-left: .3em;
  10878. }
  10879. .kernel_disconnected_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: "\f127";
  10887. }
  10888. .kernel_disconnected_icon:before.pull-left {
  10889. margin-right: .3em;
  10890. }
  10891. .kernel_disconnected_icon:before.pull-right {
  10892. margin-left: .3em;
  10893. }
  10894. .notification_widget {
  10895. color: #777;
  10896. z-index: 10;
  10897. background: rgba(240, 240, 240, 0.5);
  10898. margin-right: 4px;
  10899. color: #333;
  10900. background-color: #fff;
  10901. border-color: #ccc;
  10902. }
  10903. .notification_widget:focus,
  10904. .notification_widget.focus {
  10905. color: #333;
  10906. background-color: #e6e6e6;
  10907. border-color: #8c8c8c;
  10908. }
  10909. .notification_widget:hover {
  10910. color: #333;
  10911. background-color: #e6e6e6;
  10912. border-color: #adadad;
  10913. }
  10914. .notification_widget:active,
  10915. .notification_widget.active,
  10916. .open > .dropdown-toggle.notification_widget {
  10917. color: #333;
  10918. background-color: #e6e6e6;
  10919. border-color: #adadad;
  10920. }
  10921. .notification_widget:active:hover,
  10922. .notification_widget.active:hover,
  10923. .open > .dropdown-toggle.notification_widget:hover,
  10924. .notification_widget:active:focus,
  10925. .notification_widget.active:focus,
  10926. .open > .dropdown-toggle.notification_widget:focus,
  10927. .notification_widget:active.focus,
  10928. .notification_widget.active.focus,
  10929. .open > .dropdown-toggle.notification_widget.focus {
  10930. color: #333;
  10931. background-color: #d4d4d4;
  10932. border-color: #8c8c8c;
  10933. }
  10934. .notification_widget:active,
  10935. .notification_widget.active,
  10936. .open > .dropdown-toggle.notification_widget {
  10937. background-image: none;
  10938. }
  10939. .notification_widget.disabled:hover,
  10940. .notification_widget[disabled]:hover,
  10941. fieldset[disabled] .notification_widget:hover,
  10942. .notification_widget.disabled:focus,
  10943. .notification_widget[disabled]:focus,
  10944. fieldset[disabled] .notification_widget:focus,
  10945. .notification_widget.disabled.focus,
  10946. .notification_widget[disabled].focus,
  10947. fieldset[disabled] .notification_widget.focus {
  10948. background-color: #fff;
  10949. border-color: #ccc;
  10950. }
  10951. .notification_widget .badge {
  10952. color: #fff;
  10953. background-color: #333;
  10954. }
  10955. .notification_widget.warning {
  10956. color: #fff;
  10957. background-color: #f0ad4e;
  10958. border-color: #eea236;
  10959. }
  10960. .notification_widget.warning:focus,
  10961. .notification_widget.warning.focus {
  10962. color: #fff;
  10963. background-color: #ec971f;
  10964. border-color: #985f0d;
  10965. }
  10966. .notification_widget.warning:hover {
  10967. color: #fff;
  10968. background-color: #ec971f;
  10969. border-color: #d58512;
  10970. }
  10971. .notification_widget.warning:active,
  10972. .notification_widget.warning.active,
  10973. .open > .dropdown-toggle.notification_widget.warning {
  10974. color: #fff;
  10975. background-color: #ec971f;
  10976. border-color: #d58512;
  10977. }
  10978. .notification_widget.warning:active:hover,
  10979. .notification_widget.warning.active:hover,
  10980. .open > .dropdown-toggle.notification_widget.warning:hover,
  10981. .notification_widget.warning:active:focus,
  10982. .notification_widget.warning.active:focus,
  10983. .open > .dropdown-toggle.notification_widget.warning:focus,
  10984. .notification_widget.warning:active.focus,
  10985. .notification_widget.warning.active.focus,
  10986. .open > .dropdown-toggle.notification_widget.warning.focus {
  10987. color: #fff;
  10988. background-color: #d58512;
  10989. border-color: #985f0d;
  10990. }
  10991. .notification_widget.warning:active,
  10992. .notification_widget.warning.active,
  10993. .open > .dropdown-toggle.notification_widget.warning {
  10994. background-image: none;
  10995. }
  10996. .notification_widget.warning.disabled:hover,
  10997. .notification_widget.warning[disabled]:hover,
  10998. fieldset[disabled] .notification_widget.warning:hover,
  10999. .notification_widget.warning.disabled:focus,
  11000. .notification_widget.warning[disabled]:focus,
  11001. fieldset[disabled] .notification_widget.warning:focus,
  11002. .notification_widget.warning.disabled.focus,
  11003. .notification_widget.warning[disabled].focus,
  11004. fieldset[disabled] .notification_widget.warning.focus {
  11005. background-color: #f0ad4e;
  11006. border-color: #eea236;
  11007. }
  11008. .notification_widget.warning .badge {
  11009. color: #f0ad4e;
  11010. background-color: #fff;
  11011. }
  11012. .notification_widget.success {
  11013. color: #fff;
  11014. background-color: #5cb85c;
  11015. border-color: #4cae4c;
  11016. }
  11017. .notification_widget.success:focus,
  11018. .notification_widget.success.focus {
  11019. color: #fff;
  11020. background-color: #449d44;
  11021. border-color: #255625;
  11022. }
  11023. .notification_widget.success:hover {
  11024. color: #fff;
  11025. background-color: #449d44;
  11026. border-color: #398439;
  11027. }
  11028. .notification_widget.success:active,
  11029. .notification_widget.success.active,
  11030. .open > .dropdown-toggle.notification_widget.success {
  11031. color: #fff;
  11032. background-color: #449d44;
  11033. border-color: #398439;
  11034. }
  11035. .notification_widget.success:active:hover,
  11036. .notification_widget.success.active:hover,
  11037. .open > .dropdown-toggle.notification_widget.success:hover,
  11038. .notification_widget.success:active:focus,
  11039. .notification_widget.success.active:focus,
  11040. .open > .dropdown-toggle.notification_widget.success:focus,
  11041. .notification_widget.success:active.focus,
  11042. .notification_widget.success.active.focus,
  11043. .open > .dropdown-toggle.notification_widget.success.focus {
  11044. color: #fff;
  11045. background-color: #398439;
  11046. border-color: #255625;
  11047. }
  11048. .notification_widget.success:active,
  11049. .notification_widget.success.active,
  11050. .open > .dropdown-toggle.notification_widget.success {
  11051. background-image: none;
  11052. }
  11053. .notification_widget.success.disabled:hover,
  11054. .notification_widget.success[disabled]:hover,
  11055. fieldset[disabled] .notification_widget.success:hover,
  11056. .notification_widget.success.disabled:focus,
  11057. .notification_widget.success[disabled]:focus,
  11058. fieldset[disabled] .notification_widget.success:focus,
  11059. .notification_widget.success.disabled.focus,
  11060. .notification_widget.success[disabled].focus,
  11061. fieldset[disabled] .notification_widget.success.focus {
  11062. background-color: #5cb85c;
  11063. border-color: #4cae4c;
  11064. }
  11065. .notification_widget.success .badge {
  11066. color: #5cb85c;
  11067. background-color: #fff;
  11068. }
  11069. .notification_widget.info {
  11070. color: #fff;
  11071. background-color: #5bc0de;
  11072. border-color: #46b8da;
  11073. }
  11074. .notification_widget.info:focus,
  11075. .notification_widget.info.focus {
  11076. color: #fff;
  11077. background-color: #31b0d5;
  11078. border-color: #1b6d85;
  11079. }
  11080. .notification_widget.info:hover {
  11081. color: #fff;
  11082. background-color: #31b0d5;
  11083. border-color: #269abc;
  11084. }
  11085. .notification_widget.info:active,
  11086. .notification_widget.info.active,
  11087. .open > .dropdown-toggle.notification_widget.info {
  11088. color: #fff;
  11089. background-color: #31b0d5;
  11090. border-color: #269abc;
  11091. }
  11092. .notification_widget.info:active:hover,
  11093. .notification_widget.info.active:hover,
  11094. .open > .dropdown-toggle.notification_widget.info:hover,
  11095. .notification_widget.info:active:focus,
  11096. .notification_widget.info.active:focus,
  11097. .open > .dropdown-toggle.notification_widget.info:focus,
  11098. .notification_widget.info:active.focus,
  11099. .notification_widget.info.active.focus,
  11100. .open > .dropdown-toggle.notification_widget.info.focus {
  11101. color: #fff;
  11102. background-color: #269abc;
  11103. border-color: #1b6d85;
  11104. }
  11105. .notification_widget.info:active,
  11106. .notification_widget.info.active,
  11107. .open > .dropdown-toggle.notification_widget.info {
  11108. background-image: none;
  11109. }
  11110. .notification_widget.info.disabled:hover,
  11111. .notification_widget.info[disabled]:hover,
  11112. fieldset[disabled] .notification_widget.info:hover,
  11113. .notification_widget.info.disabled:focus,
  11114. .notification_widget.info[disabled]:focus,
  11115. fieldset[disabled] .notification_widget.info:focus,
  11116. .notification_widget.info.disabled.focus,
  11117. .notification_widget.info[disabled].focus,
  11118. fieldset[disabled] .notification_widget.info.focus {
  11119. background-color: #5bc0de;
  11120. border-color: #46b8da;
  11121. }
  11122. .notification_widget.info .badge {
  11123. color: #5bc0de;
  11124. background-color: #fff;
  11125. }
  11126. .notification_widget.danger {
  11127. color: #fff;
  11128. background-color: #d9534f;
  11129. border-color: #d43f3a;
  11130. }
  11131. .notification_widget.danger:focus,
  11132. .notification_widget.danger.focus {
  11133. color: #fff;
  11134. background-color: #c9302c;
  11135. border-color: #761c19;
  11136. }
  11137. .notification_widget.danger:hover {
  11138. color: #fff;
  11139. background-color: #c9302c;
  11140. border-color: #ac2925;
  11141. }
  11142. .notification_widget.danger:active,
  11143. .notification_widget.danger.active,
  11144. .open > .dropdown-toggle.notification_widget.danger {
  11145. color: #fff;
  11146. background-color: #c9302c;
  11147. border-color: #ac2925;
  11148. }
  11149. .notification_widget.danger:active:hover,
  11150. .notification_widget.danger.active:hover,
  11151. .open > .dropdown-toggle.notification_widget.danger:hover,
  11152. .notification_widget.danger:active:focus,
  11153. .notification_widget.danger.active:focus,
  11154. .open > .dropdown-toggle.notification_widget.danger:focus,
  11155. .notification_widget.danger:active.focus,
  11156. .notification_widget.danger.active.focus,
  11157. .open > .dropdown-toggle.notification_widget.danger.focus {
  11158. color: #fff;
  11159. background-color: #ac2925;
  11160. border-color: #761c19;
  11161. }
  11162. .notification_widget.danger:active,
  11163. .notification_widget.danger.active,
  11164. .open > .dropdown-toggle.notification_widget.danger {
  11165. background-image: none;
  11166. }
  11167. .notification_widget.danger.disabled:hover,
  11168. .notification_widget.danger[disabled]:hover,
  11169. fieldset[disabled] .notification_widget.danger:hover,
  11170. .notification_widget.danger.disabled:focus,
  11171. .notification_widget.danger[disabled]:focus,
  11172. fieldset[disabled] .notification_widget.danger:focus,
  11173. .notification_widget.danger.disabled.focus,
  11174. .notification_widget.danger[disabled].focus,
  11175. fieldset[disabled] .notification_widget.danger.focus {
  11176. background-color: #d9534f;
  11177. border-color: #d43f3a;
  11178. }
  11179. .notification_widget.danger .badge {
  11180. color: #d9534f;
  11181. background-color: #fff;
  11182. }
  11183. div#pager {
  11184. background-color: #fff;
  11185. font-size: 14px;
  11186. line-height: 20px;
  11187. overflow: hidden;
  11188. display: none;
  11189. position: fixed;
  11190. bottom: 0px;
  11191. width: 100%;
  11192. max-height: 50%;
  11193. padding-top: 8px;
  11194. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11195. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11196. /* Display over codemirror */
  11197. z-index: 100;
  11198. /* Hack which prevents jquery ui resizable from changing top. */
  11199. top: auto !important;
  11200. }
  11201. div#pager pre {
  11202. line-height: 1.21429em;
  11203. color: #000;
  11204. background-color: #f7f7f7;
  11205. padding: 0.4em;
  11206. }
  11207. div#pager #pager-button-area {
  11208. position: absolute;
  11209. top: 8px;
  11210. right: 20px;
  11211. }
  11212. div#pager #pager-contents {
  11213. position: relative;
  11214. overflow: auto;
  11215. width: 100%;
  11216. height: 100%;
  11217. }
  11218. div#pager #pager-contents #pager-container {
  11219. position: relative;
  11220. padding: 15px 0px;
  11221. box-sizing: border-box;
  11222. -moz-box-sizing: border-box;
  11223. -webkit-box-sizing: border-box;
  11224. }
  11225. div#pager .ui-resizable-handle {
  11226. top: 0px;
  11227. height: 8px;
  11228. background: #f7f7f7;
  11229. border-top: 1px solid #cfcfcf;
  11230. border-bottom: 1px solid #cfcfcf;
  11231. /* This injects handle bars (a short, wide = symbol) for
  11232. the resize handle. */
  11233. }
  11234. div#pager .ui-resizable-handle::after {
  11235. content: '';
  11236. top: 2px;
  11237. left: 50%;
  11238. height: 3px;
  11239. width: 30px;
  11240. margin-left: -15px;
  11241. position: absolute;
  11242. border-top: 1px solid #cfcfcf;
  11243. }
  11244. .quickhelp {
  11245. /* Old browsers */
  11246. display: -webkit-box;
  11247. -webkit-box-orient: horizontal;
  11248. -webkit-box-align: stretch;
  11249. display: -moz-box;
  11250. -moz-box-orient: horizontal;
  11251. -moz-box-align: stretch;
  11252. display: box;
  11253. box-orient: horizontal;
  11254. box-align: stretch;
  11255. /* Modern browsers */
  11256. display: flex;
  11257. flex-direction: row;
  11258. align-items: stretch;
  11259. line-height: 1.8em;
  11260. }
  11261. .shortcut_key {
  11262. display: inline-block;
  11263. width: 21ex;
  11264. text-align: right;
  11265. font-family: monospace;
  11266. }
  11267. .shortcut_descr {
  11268. display: inline-block;
  11269. /* Old browsers */
  11270. -webkit-box-flex: 1;
  11271. -moz-box-flex: 1;
  11272. box-flex: 1;
  11273. /* Modern browsers */
  11274. flex: 1;
  11275. }
  11276. span.save_widget {
  11277. margin-top: 6px;
  11278. }
  11279. span.save_widget span.filename {
  11280. height: 1em;
  11281. line-height: 1em;
  11282. padding: 3px;
  11283. margin-left: 16px;
  11284. border: none;
  11285. font-size: 146.5%;
  11286. border-radius: 2px;
  11287. }
  11288. span.save_widget span.filename:hover {
  11289. background-color: #e6e6e6;
  11290. }
  11291. span.checkpoint_status,
  11292. span.autosave_status {
  11293. font-size: small;
  11294. }
  11295. @media (max-width: 767px) {
  11296. span.save_widget {
  11297. font-size: small;
  11298. }
  11299. span.checkpoint_status,
  11300. span.autosave_status {
  11301. display: none;
  11302. }
  11303. }
  11304. @media (min-width: 768px) and (max-width: 991px) {
  11305. span.checkpoint_status {
  11306. display: none;
  11307. }
  11308. span.autosave_status {
  11309. font-size: x-small;
  11310. }
  11311. }
  11312. .toolbar {
  11313. padding: 0px;
  11314. margin-left: -5px;
  11315. margin-top: 2px;
  11316. margin-bottom: 5px;
  11317. box-sizing: border-box;
  11318. -moz-box-sizing: border-box;
  11319. -webkit-box-sizing: border-box;
  11320. }
  11321. .toolbar select,
  11322. .toolbar label {
  11323. width: auto;
  11324. vertical-align: middle;
  11325. margin-right: 2px;
  11326. margin-bottom: 0px;
  11327. display: inline;
  11328. font-size: 92%;
  11329. margin-left: 0.3em;
  11330. margin-right: 0.3em;
  11331. padding: 0px;
  11332. padding-top: 3px;
  11333. }
  11334. .toolbar .btn {
  11335. padding: 2px 8px;
  11336. }
  11337. .toolbar .btn-group {
  11338. margin-top: 0px;
  11339. margin-left: 5px;
  11340. }
  11341. #maintoolbar {
  11342. margin-bottom: -3px;
  11343. margin-top: -8px;
  11344. border: 0px;
  11345. min-height: 27px;
  11346. margin-left: 0px;
  11347. padding-top: 11px;
  11348. padding-bottom: 3px;
  11349. }
  11350. #maintoolbar .navbar-text {
  11351. float: none;
  11352. vertical-align: middle;
  11353. text-align: right;
  11354. margin-left: 5px;
  11355. margin-right: 0px;
  11356. margin-top: 0px;
  11357. }
  11358. .select-xs {
  11359. height: 24px;
  11360. }
  11361. .pulse,
  11362. .dropdown-menu > li > a.pulse,
  11363. li.pulse > a.dropdown-toggle,
  11364. li.pulse.open > a.dropdown-toggle {
  11365. background-color: #F37626;
  11366. color: white;
  11367. }
  11368. /**
  11369. * Primary styles
  11370. *
  11371. * Author: Jupyter Development Team
  11372. */
  11373. /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
  11374. * of chance of beeing generated from the ../less/[samename].less file, you can
  11375. * try to get back the less file by reverting somme commit in history
  11376. **/
  11377. /*
  11378. * We'll try to get something pretty, so we
  11379. * have some strange css to have the scroll bar on
  11380. * the left with fix button on the top right of the tooltip
  11381. */
  11382. @-moz-keyframes fadeOut {
  11383. from {
  11384. opacity: 1;
  11385. }
  11386. to {
  11387. opacity: 0;
  11388. }
  11389. }
  11390. @-webkit-keyframes fadeOut {
  11391. from {
  11392. opacity: 1;
  11393. }
  11394. to {
  11395. opacity: 0;
  11396. }
  11397. }
  11398. @-moz-keyframes fadeIn {
  11399. from {
  11400. opacity: 0;
  11401. }
  11402. to {
  11403. opacity: 1;
  11404. }
  11405. }
  11406. @-webkit-keyframes fadeIn {
  11407. from {
  11408. opacity: 0;
  11409. }
  11410. to {
  11411. opacity: 1;
  11412. }
  11413. }
  11414. /*properties of tooltip after "expand"*/
  11415. .bigtooltip {
  11416. overflow: auto;
  11417. height: 200px;
  11418. -webkit-transition-property: height;
  11419. -webkit-transition-duration: 500ms;
  11420. -moz-transition-property: height;
  11421. -moz-transition-duration: 500ms;
  11422. transition-property: height;
  11423. transition-duration: 500ms;
  11424. }
  11425. /*properties of tooltip before "expand"*/
  11426. .smalltooltip {
  11427. -webkit-transition-property: height;
  11428. -webkit-transition-duration: 500ms;
  11429. -moz-transition-property: height;
  11430. -moz-transition-duration: 500ms;
  11431. transition-property: height;
  11432. transition-duration: 500ms;
  11433. text-overflow: ellipsis;
  11434. overflow: hidden;
  11435. height: 80px;
  11436. }
  11437. .tooltipbuttons {
  11438. position: absolute;
  11439. padding-right: 15px;
  11440. top: 0px;
  11441. right: 0px;
  11442. }
  11443. .tooltiptext {
  11444. /*avoid the button to overlap on some docstring*/
  11445. padding-right: 30px;
  11446. }
  11447. .ipython_tooltip {
  11448. max-width: 700px;
  11449. /*fade-in animation when inserted*/
  11450. -webkit-animation: fadeOut 400ms;
  11451. -moz-animation: fadeOut 400ms;
  11452. animation: fadeOut 400ms;
  11453. -webkit-animation: fadeIn 400ms;
  11454. -moz-animation: fadeIn 400ms;
  11455. animation: fadeIn 400ms;
  11456. vertical-align: middle;
  11457. background-color: #f7f7f7;
  11458. overflow: visible;
  11459. border: #ababab 1px solid;
  11460. outline: none;
  11461. padding: 3px;
  11462. margin: 0px;
  11463. padding-left: 7px;
  11464. font-family: monospace;
  11465. min-height: 50px;
  11466. -moz-box-shadow: 0px 6px 10px -1px #adadad;
  11467. -webkit-box-shadow: 0px 6px 10px -1px #adadad;
  11468. box-shadow: 0px 6px 10px -1px #adadad;
  11469. border-radius: 2px;
  11470. position: absolute;
  11471. z-index: 1000;
  11472. }
  11473. .ipython_tooltip a {
  11474. float: right;
  11475. }
  11476. .ipython_tooltip .tooltiptext pre {
  11477. border: 0;
  11478. border-radius: 0;
  11479. font-size: 100%;
  11480. background-color: #f7f7f7;
  11481. }
  11482. .pretooltiparrow {
  11483. left: 0px;
  11484. margin: 0px;
  11485. top: -16px;
  11486. width: 40px;
  11487. height: 16px;
  11488. overflow: hidden;
  11489. position: absolute;
  11490. }
  11491. .pretooltiparrow:before {
  11492. background-color: #f7f7f7;
  11493. border: 1px #ababab solid;
  11494. z-index: 11;
  11495. content: "";
  11496. position: absolute;
  11497. left: 15px;
  11498. top: 10px;
  11499. width: 25px;
  11500. height: 25px;
  11501. -webkit-transform: rotate(45deg);
  11502. -moz-transform: rotate(45deg);
  11503. -ms-transform: rotate(45deg);
  11504. -o-transform: rotate(45deg);
  11505. }
  11506. ul.typeahead-list i {
  11507. margin-left: -10px;
  11508. width: 18px;
  11509. }
  11510. ul.typeahead-list {
  11511. max-height: 80vh;
  11512. overflow: auto;
  11513. }
  11514. ul.typeahead-list > li > a {
  11515. /** Firefox bug **/
  11516. /* see https://github.com/jupyter/notebook/issues/559 */
  11517. white-space: normal;
  11518. }
  11519. .cmd-palette .modal-body {
  11520. padding: 7px;
  11521. }
  11522. .cmd-palette form {
  11523. background: white;
  11524. }
  11525. .cmd-palette input {
  11526. outline: none;
  11527. }
  11528. .no-shortcut {
  11529. display: none;
  11530. }
  11531. .command-shortcut:before {
  11532. content: "(command)";
  11533. padding-right: 3px;
  11534. color: #777777;
  11535. }
  11536. .edit-shortcut:before {
  11537. content: "(edit)";
  11538. padding-right: 3px;
  11539. color: #777777;
  11540. }
  11541. #find-and-replace #replace-preview .match,
  11542. #find-and-replace #replace-preview .insert {
  11543. background-color: #BBDEFB;
  11544. border-color: #90CAF9;
  11545. border-style: solid;
  11546. border-width: 1px;
  11547. border-radius: 0px;
  11548. }
  11549. #find-and-replace #replace-preview .replace .match {
  11550. background-color: #FFCDD2;
  11551. border-color: #EF9A9A;
  11552. border-radius: 0px;
  11553. }
  11554. #find-and-replace #replace-preview .replace .insert {
  11555. background-color: #C8E6C9;
  11556. border-color: #A5D6A7;
  11557. border-radius: 0px;
  11558. }
  11559. #find-and-replace #replace-preview {
  11560. max-height: 60vh;
  11561. overflow: auto;
  11562. }
  11563. #find-and-replace #replace-preview pre {
  11564. padding: 5px 10px;
  11565. }
  11566. .terminal-app {
  11567. background: #EEE;
  11568. }
  11569. .terminal-app #header {
  11570. background: #fff;
  11571. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11572. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
  11573. }
  11574. .terminal-app .terminal {
  11575. width: 100%;
  11576. float: left;
  11577. font-family: monospace;
  11578. color: white;
  11579. background: black;
  11580. padding: 0.4em;
  11581. border-radius: 2px;
  11582. -webkit-box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  11583. box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.4);
  11584. }
  11585. .terminal-app .terminal,
  11586. .terminal-app .terminal dummy-screen {
  11587. line-height: 1em;
  11588. font-size: 14px;
  11589. }
  11590. .terminal-app .terminal .xterm-rows {
  11591. padding: 10px;
  11592. }
  11593. .terminal-app .terminal-cursor {
  11594. color: black;
  11595. background: white;
  11596. }
  11597. .terminal-app #terminado-container {
  11598. margin-top: 20px;
  11599. }
  11600. /*# sourceMappingURL=style.min.css.map */
  11601. </style>
  11602. <style type="text/css">
  11603. .highlight .hll { background-color: #ffffcc }
  11604. .highlight { background: #f8f8f8; }
  11605. .highlight .c { color: #408080; font-style: italic } /* Comment */
  11606. .highlight .err { border: 1px solid #FF0000 } /* Error */
  11607. .highlight .k { color: #008000; font-weight: bold } /* Keyword */
  11608. .highlight .o { color: #666666 } /* Operator */
  11609. .highlight .ch { color: #408080; font-style: italic } /* Comment.Hashbang */
  11610. .highlight .cm { color: #408080; font-style: italic } /* Comment.Multiline */
  11611. .highlight .cp { color: #BC7A00 } /* Comment.Preproc */
  11612. .highlight .cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
  11613. .highlight .c1 { color: #408080; font-style: italic } /* Comment.Single */
  11614. .highlight .cs { color: #408080; font-style: italic } /* Comment.Special */
  11615. .highlight .gd { color: #A00000 } /* Generic.Deleted */
  11616. .highlight .ge { font-style: italic } /* Generic.Emph */
  11617. .highlight .gr { color: #FF0000 } /* Generic.Error */
  11618. .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
  11619. .highlight .gi { color: #00A000 } /* Generic.Inserted */
  11620. .highlight .go { color: #888888 } /* Generic.Output */
  11621. .highlight .gp { color: #000080; font-weight: bold } /* Generic.Prompt */
  11622. .highlight .gs { font-weight: bold } /* Generic.Strong */
  11623. .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
  11624. .highlight .gt { color: #0044DD } /* Generic.Traceback */
  11625. .highlight .kc { color: #008000; font-weight: bold } /* Keyword.Constant */
  11626. .highlight .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
  11627. .highlight .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
  11628. .highlight .kp { color: #008000 } /* Keyword.Pseudo */
  11629. .highlight .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
  11630. .highlight .kt { color: #B00040 } /* Keyword.Type */
  11631. .highlight .m { color: #666666 } /* Literal.Number */
  11632. .highlight .s { color: #BA2121 } /* Literal.String */
  11633. .highlight .na { color: #7D9029 } /* Name.Attribute */
  11634. .highlight .nb { color: #008000 } /* Name.Builtin */
  11635. .highlight .nc { color: #0000FF; font-weight: bold } /* Name.Class */
  11636. .highlight .no { color: #880000 } /* Name.Constant */
  11637. .highlight .nd { color: #AA22FF } /* Name.Decorator */
  11638. .highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
  11639. .highlight .ne { color: #D2413A; font-weight: bold } /* Name.Exception */
  11640. .highlight .nf { color: #0000FF } /* Name.Function */
  11641. .highlight .nl { color: #A0A000 } /* Name.Label */
  11642. .highlight .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
  11643. .highlight .nt { color: #008000; font-weight: bold } /* Name.Tag */
  11644. .highlight .nv { color: #19177C } /* Name.Variable */
  11645. .highlight .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
  11646. .highlight .w { color: #bbbbbb } /* Text.Whitespace */
  11647. .highlight .mb { color: #666666 } /* Literal.Number.Bin */
  11648. .highlight .mf { color: #666666 } /* Literal.Number.Float */
  11649. .highlight .mh { color: #666666 } /* Literal.Number.Hex */
  11650. .highlight .mi { color: #666666 } /* Literal.Number.Integer */
  11651. .highlight .mo { color: #666666 } /* Literal.Number.Oct */
  11652. .highlight .sa { color: #BA2121 } /* Literal.String.Affix */
  11653. .highlight .sb { color: #BA2121 } /* Literal.String.Backtick */
  11654. .highlight .sc { color: #BA2121 } /* Literal.String.Char */
  11655. .highlight .dl { color: #BA2121 } /* Literal.String.Delimiter */
  11656. .highlight .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
  11657. .highlight .s2 { color: #BA2121 } /* Literal.String.Double */
  11658. .highlight .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
  11659. .highlight .sh { color: #BA2121 } /* Literal.String.Heredoc */
  11660. .highlight .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
  11661. .highlight .sx { color: #008000 } /* Literal.String.Other */
  11662. .highlight .sr { color: #BB6688 } /* Literal.String.Regex */
  11663. .highlight .s1 { color: #BA2121 } /* Literal.String.Single */
  11664. .highlight .ss { color: #19177C } /* Literal.String.Symbol */
  11665. .highlight .bp { color: #008000 } /* Name.Builtin.Pseudo */
  11666. .highlight .fm { color: #0000FF } /* Name.Function.Magic */
  11667. .highlight .vc { color: #19177C } /* Name.Variable.Class */
  11668. .highlight .vg { color: #19177C } /* Name.Variable.Global */
  11669. .highlight .vi { color: #19177C } /* Name.Variable.Instance */
  11670. .highlight .vm { color: #19177C } /* Name.Variable.Magic */
  11671. .highlight .il { color: #666666 } /* Literal.Number.Integer.Long */
  11672. </style>
  11673. <style type="text/css">
  11674. /* Temporary definitions which will become obsolete with Notebook release 5.0 */
  11675. .ansi-black-fg { color: #3E424D; }
  11676. .ansi-black-bg { background-color: #3E424D; }
  11677. .ansi-black-intense-fg { color: #282C36; }
  11678. .ansi-black-intense-bg { background-color: #282C36; }
  11679. .ansi-red-fg { color: #E75C58; }
  11680. .ansi-red-bg { background-color: #E75C58; }
  11681. .ansi-red-intense-fg { color: #B22B31; }
  11682. .ansi-red-intense-bg { background-color: #B22B31; }
  11683. .ansi-green-fg { color: #00A250; }
  11684. .ansi-green-bg { background-color: #00A250; }
  11685. .ansi-green-intense-fg { color: #007427; }
  11686. .ansi-green-intense-bg { background-color: #007427; }
  11687. .ansi-yellow-fg { color: #DDB62B; }
  11688. .ansi-yellow-bg { background-color: #DDB62B; }
  11689. .ansi-yellow-intense-fg { color: #B27D12; }
  11690. .ansi-yellow-intense-bg { background-color: #B27D12; }
  11691. .ansi-blue-fg { color: #208FFB; }
  11692. .ansi-blue-bg { background-color: #208FFB; }
  11693. .ansi-blue-intense-fg { color: #0065CA; }
  11694. .ansi-blue-intense-bg { background-color: #0065CA; }
  11695. .ansi-magenta-fg { color: #D160C4; }
  11696. .ansi-magenta-bg { background-color: #D160C4; }
  11697. .ansi-magenta-intense-fg { color: #A03196; }
  11698. .ansi-magenta-intense-bg { background-color: #A03196; }
  11699. .ansi-cyan-fg { color: #60C6C8; }
  11700. .ansi-cyan-bg { background-color: #60C6C8; }
  11701. .ansi-cyan-intense-fg { color: #258F8F; }
  11702. .ansi-cyan-intense-bg { background-color: #258F8F; }
  11703. .ansi-white-fg { color: #C5C1B4; }
  11704. .ansi-white-bg { background-color: #C5C1B4; }
  11705. .ansi-white-intense-fg { color: #A1A6B2; }
  11706. .ansi-white-intense-bg { background-color: #A1A6B2; }
  11707. .ansi-bold { font-weight: bold; }
  11708. </style>
  11709. <style type="text/css">
  11710. /* Overrides of notebook CSS for static HTML export */
  11711. body {
  11712. overflow: visible;
  11713. padding: 8px;
  11714. }
  11715. div#notebook {
  11716. overflow: visible;
  11717. border-top: none;
  11718. }@media print {
  11719. div.cell {
  11720. display: block;
  11721. page-break-inside: avoid;
  11722. }
  11723. div.output_wrapper {
  11724. display: block;
  11725. page-break-inside: avoid;
  11726. }
  11727. div.output {
  11728. display: block;
  11729. page-break-inside: avoid;
  11730. }
  11731. }
  11732. </style>
  11733. <!-- Custom stylesheet, it must be in the same directory as the html file -->
  11734. <link rel="stylesheet" href="custom.css">
  11735. <!-- Loading mathjax macro -->
  11736. <!-- Load mathjax -->
  11737. <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS_HTML"></script>
  11738. <!-- MathJax configuration -->
  11739. <script type="text/x-mathjax-config">
  11740. MathJax.Hub.Config({
  11741. tex2jax: {
  11742. inlineMath: [ ['$','$'], ["\\(","\\)"] ],
  11743. displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
  11744. processEscapes: true,
  11745. processEnvironments: true
  11746. },
  11747. // Center justify equations in code and markdown cells. Elsewhere
  11748. // we use CSS to left justify single line equations in code cells.
  11749. displayAlign: 'center',
  11750. "HTML-CSS": {
  11751. styles: {'.MathJax_Display': {"margin": 0}},
  11752. linebreaks: { automatic: true }
  11753. }
  11754. });
  11755. </script>
  11756. <!-- End of mathjax configuration --></head>
  11757. <body>
  11758. <div tabindex="-1" id="notebook" class="border-box-sizing">
  11759. <div class="container" id="notebook-container">
  11760. <div class="cell border-box-sizing code_cell rendered">
  11761. <div class="input">
  11762. <div class="prompt input_prompt">In&nbsp;[6]:</div>
  11763. <div class="inner_cell">
  11764. <div class="input_area">
  11765. <div class=" highlight hl-ipython2"><pre><span></span><span class="kn">import</span> <span class="nn">sys</span>
  11766. <span class="n">sys</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s2">&quot;../src&quot;</span><span class="p">)</span>
  11767. <span class="kn">from</span> <span class="nn">eeg_reader</span> <span class="kn">import</span> <span class="n">read_eeg</span><span class="p">,</span> <span class="n">get_channel_number</span><span class="p">,</span> <span class="n">get_stim_filenames</span>
  11768. <span class="kn">import</span> <span class="nn">matplotlib.pyplot</span> <span class="kn">as</span> <span class="nn">plt</span>
  11769. <span class="o">%</span><span class="k">matplotlib</span> nbagg
  11770. </pre></div>
  11771. </div>
  11772. </div>
  11773. </div>
  11774. </div>
  11775. <div class="cell border-box-sizing code_cell rendered">
  11776. <div class="input">
  11777. <div class="prompt input_prompt">In&nbsp;[&nbsp;]:</div>
  11778. <div class="inner_cell">
  11779. <div class="input_area">
  11780. <div class=" highlight hl-ipython2"><pre><span></span><span class="n">input_path</span> <span class="o">=</span> <span class="s2">&quot;../data/&quot;</span>
  11781. </pre></div>
  11782. </div>
  11783. </div>
  11784. </div>
  11785. </div>
  11786. <div class="cell border-box-sizing code_cell rendered">
  11787. <div class="input">
  11788. <div class="prompt input_prompt">In&nbsp;[14]:</div>
  11789. <div class="inner_cell">
  11790. <div class="input_area">
  11791. <div class=" highlight hl-ipython2"><pre><span></span><span class="n">fnames</span> <span class="o">=</span> <span class="n">get_stim_filenames</span><span class="p">(</span><span class="n">input_path</span><span class="p">)</span>
  11792. <span class="k">print</span><span class="p">(</span><span class="s2">&quot;Files with stimuli: </span><span class="se">\n</span><span class="s2">&quot;</span><span class="p">,</span> <span class="n">fnames</span><span class="p">)</span>
  11793. </pre></div>
  11794. </div>
  11795. </div>
  11796. </div>
  11797. <div class="output_wrapper">
  11798. <div class="output">
  11799. <div class="output_area">
  11800. <div class="prompt"></div>
  11801. <div class="output_subarea output_stream output_stdout output_text">
  11802. <pre>(&#39;Files with stimuli: \n&#39;, [&#39;V0009889&#39;, &#39;V0009888&#39;, &#39;V0009885&#39;, &#39;V0009884&#39;, &#39;V0009887&#39;, &#39;V0009886&#39;, &#39;V0009881&#39;, &#39;V0009880&#39;, &#39;V0009883&#39;, &#39;V0009882&#39;, &#39;V0009500&#39;, &#39;V0008967&#39;, &#39;V0009870&#39;, &#39;V0009871&#39;, &#39;V0009872&#39;, &#39;V0009873&#39;, &#39;V0009874&#39;, &#39;V0009875&#39;, &#39;V0009876&#39;, &#39;V0009877&#39;, &#39;V0009878&#39;, &#39;V0009879&#39;, &#39;V0009479&#39;, &#39;V0009908&#39;, &#39;V0009909&#39;, &#39;V0009904&#39;, &#39;V0009905&#39;, &#39;V0009906&#39;, &#39;V0009907&#39;, &#39;V0009900&#39;, &#39;V0009901&#39;, &#39;V0009902&#39;, &#39;V0009903&#39;, &#39;V0009860&#39;, &#39;V0009867&#39;, &#39;V0009869&#39;, &#39;V0009868&#39;, &#39;V0009919&#39;, &#39;V0009918&#39;, &#39;V0009917&#39;, &#39;V0009916&#39;, &#39;V0009915&#39;, &#39;V0009914&#39;, &#39;V0009913&#39;, &#39;V0009912&#39;, &#39;V0009911&#39;, &#39;V0009910&#39;, &#39;V0009457&#39;, &#39;V0009922&#39;, &#39;V0009923&#39;, &#39;V0009920&#39;, &#39;V0009921&#39;, &#39;V0009926&#39;, &#39;V0009927&#39;, &#39;V0009924&#39;, &#39;V0009925&#39;, &#39;V0009928&#39;, &#39;V0009893&#39;, &#39;V0009935&#39;, &#39;V0009934&#39;, &#39;V0009937&#39;, &#39;V0009936&#39;, &#39;V0009931&#39;, &#39;V0009930&#39;, &#39;V0009933&#39;, &#39;V0009932&#39;, &#39;V0009939&#39;, &#39;V0009938&#39;, &#39;V0009534&#39;, &#39;V0009940&#39;, &#39;V0009941&#39;, &#39;V0009942&#39;, &#39;V0009943&#39;, &#39;V0009944&#39;, &#39;V0009546&#39;, &#39;V0009813&#39;, &#39;V0009898&#39;, &#39;V0009899&#39;, &#39;V0009892&#39;, &#39;V0009488&#39;, &#39;V0009890&#39;, &#39;V0009891&#39;, &#39;V0009896&#39;, &#39;V0009897&#39;, &#39;V0009894&#39;, &#39;V0009895&#39;, &#39;V0009552&#39;])
  11803. </pre>
  11804. </div>
  11805. </div>
  11806. </div>
  11807. </div>
  11808. </div>
  11809. <div class="cell border-box-sizing code_cell rendered">
  11810. <div class="input">
  11811. <div class="prompt input_prompt">In&nbsp;[15]:</div>
  11812. <div class="inner_cell">
  11813. <div class="input_area">
  11814. <div class=" highlight hl-ipython2"><pre><span></span><span class="n">fname</span> <span class="o">=</span> <span class="n">fnames</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
  11815. <span class="n">n_channels</span> <span class="o">=</span> <span class="n">get_channel_number</span><span class="p">(</span><span class="n">fname</span><span class="p">,</span> <span class="n">input_path</span><span class="p">)</span>
  11816. <span class="n">eeg</span> <span class="o">=</span> <span class="n">read_eeg</span><span class="p">(</span><span class="n">input_path</span><span class="o">+</span><span class="n">fname</span><span class="p">,</span> <span class="n">n_channels</span><span class="o">=</span><span class="n">n_channels</span><span class="p">)</span>
  11817. <span class="k">print</span><span class="p">(</span><span class="s2">&quot;Shape of eeg data: &quot;</span><span class="p">,</span> <span class="n">eeg</span><span class="o">.</span><span class="n">shape</span><span class="p">)</span>
  11818. </pre></div>
  11819. </div>
  11820. </div>
  11821. </div>
  11822. <div class="output_wrapper">
  11823. <div class="output">
  11824. <div class="output_area">
  11825. <div class="prompt"></div>
  11826. <div class="output_subarea output_stream output_stdout output_text">
  11827. <pre>(&#39;Shape of eeg data: &#39;, (1202030, 27))
  11828. </pre>
  11829. </div>
  11830. </div>
  11831. </div>
  11832. </div>
  11833. </div>
  11834. <div class="cell border-box-sizing code_cell rendered">
  11835. <div class="input">
  11836. <div class="prompt input_prompt">In&nbsp;[16]:</div>
  11837. <div class="inner_cell">
  11838. <div class="input_area">
  11839. <div class=" highlight hl-ipython2"><pre><span></span><span class="n">plt</span><span class="o">.</span><span class="n">figure</span><span class="p">()</span>
  11840. <span class="n">_</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">eeg</span><span class="p">[:</span><span class="mi">10000</span><span class="p">,</span> <span class="mi">0</span><span class="p">])</span>
  11841. </pre></div>
  11842. </div>
  11843. </div>
  11844. </div>
  11845. <div class="output_wrapper">
  11846. <div class="output">
  11847. <div class="output_area">
  11848. <div class="prompt"></div>
  11849. <div id="98265558-debf-444c-aec6-3ba9fd558163"></div>
  11850. <div class="output_subarea output_javascript ">
  11851. <script type="text/javascript">
  11852. var element = $('#98265558-debf-444c-aec6-3ba9fd558163');
  11853. /* Put everything inside the global mpl namespace */
  11854. window.mpl = {};
  11855. mpl.get_websocket_type = function() {
  11856. if (typeof(WebSocket) !== 'undefined') {
  11857. return WebSocket;
  11858. } else if (typeof(MozWebSocket) !== 'undefined') {
  11859. return MozWebSocket;
  11860. } else {
  11861. alert('Your browser does not have WebSocket support.' +
  11862. 'Please try Chrome, Safari or Firefox ≥ 6. ' +
  11863. 'Firefox 4 and 5 are also supported but you ' +
  11864. 'have to enable WebSockets in about:config.');
  11865. };
  11866. }
  11867. mpl.figure = function(figure_id, websocket, ondownload, parent_element) {
  11868. this.id = figure_id;
  11869. this.ws = websocket;
  11870. this.supports_binary = (this.ws.binaryType != undefined);
  11871. if (!this.supports_binary) {
  11872. var warnings = document.getElementById("mpl-warnings");
  11873. if (warnings) {
  11874. warnings.style.display = 'block';
  11875. warnings.textContent = (
  11876. "This browser does not support binary websocket messages. " +
  11877. "Performance may be slow.");
  11878. }
  11879. }
  11880. this.imageObj = new Image();
  11881. this.context = undefined;
  11882. this.message = undefined;
  11883. this.canvas = undefined;
  11884. this.rubberband_canvas = undefined;
  11885. this.rubberband_context = undefined;
  11886. this.format_dropdown = undefined;
  11887. this.image_mode = 'full';
  11888. this.root = $('<div/>');
  11889. this._root_extra_style(this.root)
  11890. this.root.attr('style', 'display: inline-block');
  11891. $(parent_element).append(this.root);
  11892. this._init_header(this);
  11893. this._init_canvas(this);
  11894. this._init_toolbar(this);
  11895. var fig = this;
  11896. this.waiting = false;
  11897. this.ws.onopen = function () {
  11898. fig.send_message("supports_binary", {value: fig.supports_binary});
  11899. fig.send_message("send_image_mode", {});
  11900. if (mpl.ratio != 1) {
  11901. fig.send_message("set_dpi_ratio", {'dpi_ratio': mpl.ratio});
  11902. }
  11903. fig.send_message("refresh", {});
  11904. }
  11905. this.imageObj.onload = function() {
  11906. if (fig.image_mode == 'full') {
  11907. // Full images could contain transparency (where diff images
  11908. // almost always do), so we need to clear the canvas so that
  11909. // there is no ghosting.
  11910. fig.context.clearRect(0, 0, fig.canvas.width, fig.canvas.height);
  11911. }
  11912. fig.context.drawImage(fig.imageObj, 0, 0);
  11913. };
  11914. this.imageObj.onunload = function() {
  11915. fig.ws.close();
  11916. }
  11917. this.ws.onmessage = this._make_on_message_function(this);
  11918. this.ondownload = ondownload;
  11919. }
  11920. mpl.figure.prototype._init_header = function() {
  11921. var titlebar = $(
  11922. '<div class="ui-dialog-titlebar ui-widget-header ui-corner-all ' +
  11923. 'ui-helper-clearfix"/>');
  11924. var titletext = $(
  11925. '<div class="ui-dialog-title" style="width: 100%; ' +
  11926. 'text-align: center; padding: 3px;"/>');
  11927. titlebar.append(titletext)
  11928. this.root.append(titlebar);
  11929. this.header = titletext[0];
  11930. }
  11931. mpl.figure.prototype._canvas_extra_style = function(canvas_div) {
  11932. }
  11933. mpl.figure.prototype._root_extra_style = function(canvas_div) {
  11934. }
  11935. mpl.figure.prototype._init_canvas = function() {
  11936. var fig = this;
  11937. var canvas_div = $('<div/>');
  11938. canvas_div.attr('style', 'position: relative; clear: both; outline: 0');
  11939. function canvas_keyboard_event(event) {
  11940. return fig.key_event(event, event['data']);
  11941. }
  11942. canvas_div.keydown('key_press', canvas_keyboard_event);
  11943. canvas_div.keyup('key_release', canvas_keyboard_event);
  11944. this.canvas_div = canvas_div
  11945. this._canvas_extra_style(canvas_div)
  11946. this.root.append(canvas_div);
  11947. var canvas = $('<canvas/>');
  11948. canvas.addClass('mpl-canvas');
  11949. canvas.attr('style', "left: 0; top: 0; z-index: 0; outline: 0")
  11950. this.canvas = canvas[0];
  11951. this.context = canvas[0].getContext("2d");
  11952. var backingStore = this.context.backingStorePixelRatio ||
  11953. this.context.webkitBackingStorePixelRatio ||
  11954. this.context.mozBackingStorePixelRatio ||
  11955. this.context.msBackingStorePixelRatio ||
  11956. this.context.oBackingStorePixelRatio ||
  11957. this.context.backingStorePixelRatio || 1;
  11958. mpl.ratio = (window.devicePixelRatio || 1) / backingStore;
  11959. var rubberband = $('<canvas/>');
  11960. rubberband.attr('style', "position: absolute; left: 0; top: 0; z-index: 1;")
  11961. var pass_mouse_events = true;
  11962. canvas_div.resizable({
  11963. start: function(event, ui) {
  11964. pass_mouse_events = false;
  11965. },
  11966. resize: function(event, ui) {
  11967. fig.request_resize(ui.size.width, ui.size.height);
  11968. },
  11969. stop: function(event, ui) {
  11970. pass_mouse_events = true;
  11971. fig.request_resize(ui.size.width, ui.size.height);
  11972. },
  11973. });
  11974. function mouse_event_fn(event) {
  11975. if (pass_mouse_events)
  11976. return fig.mouse_event(event, event['data']);
  11977. }
  11978. rubberband.mousedown('button_press', mouse_event_fn);
  11979. rubberband.mouseup('button_release', mouse_event_fn);
  11980. // Throttle sequential mouse events to 1 every 20ms.
  11981. rubberband.mousemove('motion_notify', mouse_event_fn);
  11982. rubberband.mouseenter('figure_enter', mouse_event_fn);
  11983. rubberband.mouseleave('figure_leave', mouse_event_fn);
  11984. canvas_div.on("wheel", function (event) {
  11985. event = event.originalEvent;
  11986. event['data'] = 'scroll'
  11987. if (event.deltaY < 0) {
  11988. event.step = 1;
  11989. } else {
  11990. event.step = -1;
  11991. }
  11992. mouse_event_fn(event);
  11993. });
  11994. canvas_div.append(canvas);
  11995. canvas_div.append(rubberband);
  11996. this.rubberband = rubberband;
  11997. this.rubberband_canvas = rubberband[0];
  11998. this.rubberband_context = rubberband[0].getContext("2d");
  11999. this.rubberband_context.strokeStyle = "#000000";
  12000. this._resize_canvas = function(width, height) {
  12001. // Keep the size of the canvas, canvas container, and rubber band
  12002. // canvas in synch.
  12003. canvas_div.css('width', width)
  12004. canvas_div.css('height', height)
  12005. canvas.attr('width', width * mpl.ratio);
  12006. canvas.attr('height', height * mpl.ratio);
  12007. canvas.attr('style', 'width: ' + width + 'px; height: ' + height + 'px;');
  12008. rubberband.attr('width', width);
  12009. rubberband.attr('height', height);
  12010. }
  12011. // Set the figure to an initial 600x600px, this will subsequently be updated
  12012. // upon first draw.
  12013. this._resize_canvas(600, 600);
  12014. // Disable right mouse context menu.
  12015. $(this.rubberband_canvas).bind("contextmenu",function(e){
  12016. return false;
  12017. });
  12018. function set_focus () {
  12019. canvas.focus();
  12020. canvas_div.focus();
  12021. }
  12022. window.setTimeout(set_focus, 100);
  12023. }
  12024. mpl.figure.prototype._init_toolbar = function() {
  12025. var fig = this;
  12026. var nav_element = $('<div/>')
  12027. nav_element.attr('style', 'width: 100%');
  12028. this.root.append(nav_element);
  12029. // Define a callback function for later on.
  12030. function toolbar_event(event) {
  12031. return fig.toolbar_button_onclick(event['data']);
  12032. }
  12033. function toolbar_mouse_event(event) {
  12034. return fig.toolbar_button_onmouseover(event['data']);
  12035. }
  12036. for(var toolbar_ind in mpl.toolbar_items) {
  12037. var name = mpl.toolbar_items[toolbar_ind][0];
  12038. var tooltip = mpl.toolbar_items[toolbar_ind][1];
  12039. var image = mpl.toolbar_items[toolbar_ind][2];
  12040. var method_name = mpl.toolbar_items[toolbar_ind][3];
  12041. if (!name) {
  12042. // put a spacer in here.
  12043. continue;
  12044. }
  12045. var button = $('<button/>');
  12046. button.addClass('ui-button ui-widget ui-state-default ui-corner-all ' +
  12047. 'ui-button-icon-only');
  12048. button.attr('role', 'button');
  12049. button.attr('aria-disabled', 'false');
  12050. button.click(method_name, toolbar_event);
  12051. button.mouseover(tooltip, toolbar_mouse_event);
  12052. var icon_img = $('<span/>');
  12053. icon_img.addClass('ui-button-icon-primary ui-icon');
  12054. icon_img.addClass(image);
  12055. icon_img.addClass('ui-corner-all');
  12056. var tooltip_span = $('<span/>');
  12057. tooltip_span.addClass('ui-button-text');
  12058. tooltip_span.html(tooltip);
  12059. button.append(icon_img);
  12060. button.append(tooltip_span);
  12061. nav_element.append(button);
  12062. }
  12063. var fmt_picker_span = $('<span/>');
  12064. var fmt_picker = $('<select/>');
  12065. fmt_picker.addClass('mpl-toolbar-option ui-widget ui-widget-content');
  12066. fmt_picker_span.append(fmt_picker);
  12067. nav_element.append(fmt_picker_span);
  12068. this.format_dropdown = fmt_picker[0];
  12069. for (var ind in mpl.extensions) {
  12070. var fmt = mpl.extensions[ind];
  12071. var option = $(
  12072. '<option/>', {selected: fmt === mpl.default_extension}).html(fmt);
  12073. fmt_picker.append(option)
  12074. }
  12075. // Add hover states to the ui-buttons
  12076. $( ".ui-button" ).hover(
  12077. function() { $(this).addClass("ui-state-hover");},
  12078. function() { $(this).removeClass("ui-state-hover");}
  12079. );
  12080. var status_bar = $('<span class="mpl-message"/>');
  12081. nav_element.append(status_bar);
  12082. this.message = status_bar[0];
  12083. }
  12084. mpl.figure.prototype.request_resize = function(x_pixels, y_pixels) {
  12085. // Request matplotlib to resize the figure. Matplotlib will then trigger a resize in the client,
  12086. // which will in turn request a refresh of the image.
  12087. this.send_message('resize', {'width': x_pixels, 'height': y_pixels});
  12088. }
  12089. mpl.figure.prototype.send_message = function(type, properties) {
  12090. properties['type'] = type;
  12091. properties['figure_id'] = this.id;
  12092. this.ws.send(JSON.stringify(properties));
  12093. }
  12094. mpl.figure.prototype.send_draw_message = function() {
  12095. if (!this.waiting) {
  12096. this.waiting = true;
  12097. this.ws.send(JSON.stringify({type: "draw", figure_id: this.id}));
  12098. }
  12099. }
  12100. mpl.figure.prototype.handle_save = function(fig, msg) {
  12101. var format_dropdown = fig.format_dropdown;
  12102. var format = format_dropdown.options[format_dropdown.selectedIndex].value;
  12103. fig.ondownload(fig, format);
  12104. }
  12105. mpl.figure.prototype.handle_resize = function(fig, msg) {
  12106. var size = msg['size'];
  12107. if (size[0] != fig.canvas.width || size[1] != fig.canvas.height) {
  12108. fig._resize_canvas(size[0], size[1]);
  12109. fig.send_message("refresh", {});
  12110. };
  12111. }
  12112. mpl.figure.prototype.handle_rubberband = function(fig, msg) {
  12113. var x0 = msg['x0'] / mpl.ratio;
  12114. var y0 = (fig.canvas.height - msg['y0']) / mpl.ratio;
  12115. var x1 = msg['x1'] / mpl.ratio;
  12116. var y1 = (fig.canvas.height - msg['y1']) / mpl.ratio;
  12117. x0 = Math.floor(x0) + 0.5;
  12118. y0 = Math.floor(y0) + 0.5;
  12119. x1 = Math.floor(x1) + 0.5;
  12120. y1 = Math.floor(y1) + 0.5;
  12121. var min_x = Math.min(x0, x1);
  12122. var min_y = Math.min(y0, y1);
  12123. var width = Math.abs(x1 - x0);
  12124. var height = Math.abs(y1 - y0);
  12125. fig.rubberband_context.clearRect(
  12126. 0, 0, fig.canvas.width, fig.canvas.height);
  12127. fig.rubberband_context.strokeRect(min_x, min_y, width, height);
  12128. }
  12129. mpl.figure.prototype.handle_figure_label = function(fig, msg) {
  12130. // Updates the figure title.
  12131. fig.header.textContent = msg['label'];
  12132. }
  12133. mpl.figure.prototype.handle_cursor = function(fig, msg) {
  12134. var cursor = msg['cursor'];
  12135. switch(cursor)
  12136. {
  12137. case 0:
  12138. cursor = 'pointer';
  12139. break;
  12140. case 1:
  12141. cursor = 'default';
  12142. break;
  12143. case 2:
  12144. cursor = 'crosshair';
  12145. break;
  12146. case 3:
  12147. cursor = 'move';
  12148. break;
  12149. }
  12150. fig.rubberband_canvas.style.cursor = cursor;
  12151. }
  12152. mpl.figure.prototype.handle_message = function(fig, msg) {
  12153. fig.message.textContent = msg['message'];
  12154. }
  12155. mpl.figure.prototype.handle_draw = function(fig, msg) {
  12156. // Request the server to send over a new figure.
  12157. fig.send_draw_message();
  12158. }
  12159. mpl.figure.prototype.handle_image_mode = function(fig, msg) {
  12160. fig.image_mode = msg['mode'];
  12161. }
  12162. mpl.figure.prototype.updated_canvas_event = function() {
  12163. // Called whenever the canvas gets updated.
  12164. this.send_message("ack", {});
  12165. }
  12166. // A function to construct a web socket function for onmessage handling.
  12167. // Called in the figure constructor.
  12168. mpl.figure.prototype._make_on_message_function = function(fig) {
  12169. return function socket_on_message(evt) {
  12170. if (evt.data instanceof Blob) {
  12171. /* FIXME: We get "Resource interpreted as Image but
  12172. * transferred with MIME type text/plain:" errors on
  12173. * Chrome. But how to set the MIME type? It doesn't seem
  12174. * to be part of the websocket stream */
  12175. evt.data.type = "image/png";
  12176. /* Free the memory for the previous frames */
  12177. if (fig.imageObj.src) {
  12178. (window.URL || window.webkitURL).revokeObjectURL(
  12179. fig.imageObj.src);
  12180. }
  12181. fig.imageObj.src = (window.URL || window.webkitURL).createObjectURL(
  12182. evt.data);
  12183. fig.updated_canvas_event();
  12184. fig.waiting = false;
  12185. return;
  12186. }
  12187. else if (typeof evt.data === 'string' && evt.data.slice(0, 21) == "data:image/png;base64") {
  12188. fig.imageObj.src = evt.data;
  12189. fig.updated_canvas_event();
  12190. fig.waiting = false;
  12191. return;
  12192. }
  12193. var msg = JSON.parse(evt.data);
  12194. var msg_type = msg['type'];
  12195. // Call the "handle_{type}" callback, which takes
  12196. // the figure and JSON message as its only arguments.
  12197. try {
  12198. var callback = fig["handle_" + msg_type];
  12199. } catch (e) {
  12200. console.log("No handler for the '" + msg_type + "' message type: ", msg);
  12201. return;
  12202. }
  12203. if (callback) {
  12204. try {
  12205. // console.log("Handling '" + msg_type + "' message: ", msg);
  12206. callback(fig, msg);
  12207. } catch (e) {
  12208. console.log("Exception inside the 'handler_" + msg_type + "' callback:", e, e.stack, msg);
  12209. }
  12210. }
  12211. };
  12212. }
  12213. // from http://stackoverflow.com/questions/1114465/getting-mouse-location-in-canvas
  12214. mpl.findpos = function(e) {
  12215. //this section is from http://www.quirksmode.org/js/events_properties.html
  12216. var targ;
  12217. if (!e)
  12218. e = window.event;
  12219. if (e.target)
  12220. targ = e.target;
  12221. else if (e.srcElement)
  12222. targ = e.srcElement;
  12223. if (targ.nodeType == 3) // defeat Safari bug
  12224. targ = targ.parentNode;
  12225. // jQuery normalizes the pageX and pageY
  12226. // pageX,Y are the mouse positions relative to the document
  12227. // offset() returns the position of the element relative to the document
  12228. var x = e.pageX - $(targ).offset().left;
  12229. var y = e.pageY - $(targ).offset().top;
  12230. return {"x": x, "y": y};
  12231. };
  12232. /*
  12233. * return a copy of an object with only non-object keys
  12234. * we need this to avoid circular references
  12235. * http://stackoverflow.com/a/24161582/3208463
  12236. */
  12237. function simpleKeys (original) {
  12238. return Object.keys(original).reduce(function (obj, key) {
  12239. if (typeof original[key] !== 'object')
  12240. obj[key] = original[key]
  12241. return obj;
  12242. }, {});
  12243. }
  12244. mpl.figure.prototype.mouse_event = function(event, name) {
  12245. var canvas_pos = mpl.findpos(event)
  12246. if (name === 'button_press')
  12247. {
  12248. this.canvas.focus();
  12249. this.canvas_div.focus();
  12250. }
  12251. var x = canvas_pos.x * mpl.ratio;
  12252. var y = canvas_pos.y * mpl.ratio;
  12253. this.send_message(name, {x: x, y: y, button: event.button,
  12254. step: event.step,
  12255. guiEvent: simpleKeys(event)});
  12256. /* This prevents the web browser from automatically changing to
  12257. * the text insertion cursor when the button is pressed. We want
  12258. * to control all of the cursor setting manually through the
  12259. * 'cursor' event from matplotlib */
  12260. event.preventDefault();
  12261. return false;
  12262. }
  12263. mpl.figure.prototype._key_event_extra = function(event, name) {
  12264. // Handle any extra behaviour associated with a key event
  12265. }
  12266. mpl.figure.prototype.key_event = function(event, name) {
  12267. // Prevent repeat events
  12268. if (name == 'key_press')
  12269. {
  12270. if (event.which === this._key)
  12271. return;
  12272. else
  12273. this._key = event.which;
  12274. }
  12275. if (name == 'key_release')
  12276. this._key = null;
  12277. var value = '';
  12278. if (event.ctrlKey && event.which != 17)
  12279. value += "ctrl+";
  12280. if (event.altKey && event.which != 18)
  12281. value += "alt+";
  12282. if (event.shiftKey && event.which != 16)
  12283. value += "shift+";
  12284. value += 'k';
  12285. value += event.which.toString();
  12286. this._key_event_extra(event, name);
  12287. this.send_message(name, {key: value,
  12288. guiEvent: simpleKeys(event)});
  12289. return false;
  12290. }
  12291. mpl.figure.prototype.toolbar_button_onclick = function(name) {
  12292. if (name == 'download') {
  12293. this.handle_save(this, null);
  12294. } else {
  12295. this.send_message("toolbar_button", {name: name});
  12296. }
  12297. };
  12298. mpl.figure.prototype.toolbar_button_onmouseover = function(tooltip) {
  12299. this.message.textContent = tooltip;
  12300. };
  12301. mpl.toolbar_items = [["Home", "Reset original view", "fa fa-home icon-home", "home"], ["Back", "Back to previous view", "fa fa-arrow-left icon-arrow-left", "back"], ["Forward", "Forward to next view", "fa fa-arrow-right icon-arrow-right", "forward"], ["", "", "", ""], ["Pan", "Pan axes with left mouse, zoom with right", "fa fa-arrows icon-move", "pan"], ["Zoom", "Zoom to rectangle", "fa fa-square-o icon-check-empty", "zoom"], ["", "", "", ""], ["Download", "Download plot", "fa fa-floppy-o icon-save", "download"]];
  12302. mpl.extensions = ["eps", "jpeg", "pdf", "png", "ps", "raw", "svg", "tif"];
  12303. mpl.default_extension = "png";var comm_websocket_adapter = function(comm) {
  12304. // Create a "websocket"-like object which calls the given IPython comm
  12305. // object with the appropriate methods. Currently this is a non binary
  12306. // socket, so there is still some room for performance tuning.
  12307. var ws = {};
  12308. ws.close = function() {
  12309. comm.close()
  12310. };
  12311. ws.send = function(m) {
  12312. //console.log('sending', m);
  12313. comm.send(m);
  12314. };
  12315. // Register the callback with on_msg.
  12316. comm.on_msg(function(msg) {
  12317. //console.log('receiving', msg['content']['data'], msg);
  12318. // Pass the mpl event to the overriden (by mpl) onmessage function.
  12319. ws.onmessage(msg['content']['data'])
  12320. });
  12321. return ws;
  12322. }
  12323. mpl.mpl_figure_comm = function(comm, msg) {
  12324. // This is the function which gets called when the mpl process
  12325. // starts-up an IPython Comm through the "matplotlib" channel.
  12326. var id = msg.content.data.id;
  12327. // Get hold of the div created by the display call when the Comm
  12328. // socket was opened in Python.
  12329. var element = $("#" + id);
  12330. var ws_proxy = comm_websocket_adapter(comm)
  12331. function ondownload(figure, format) {
  12332. window.open(figure.imageObj.src);
  12333. }
  12334. var fig = new mpl.figure(id, ws_proxy,
  12335. ondownload,
  12336. element.get(0));
  12337. // Call onopen now - mpl needs it, as it is assuming we've passed it a real
  12338. // web socket which is closed, not our websocket->open comm proxy.
  12339. ws_proxy.onopen();
  12340. fig.parent_element = element.get(0);
  12341. fig.cell_info = mpl.find_output_cell("<div id='" + id + "'></div>");
  12342. if (!fig.cell_info) {
  12343. console.error("Failed to find cell for figure", id, fig);
  12344. return;
  12345. }
  12346. var output_index = fig.cell_info[2]
  12347. var cell = fig.cell_info[0];
  12348. };
  12349. mpl.figure.prototype.handle_close = function(fig, msg) {
  12350. var width = fig.canvas.width/mpl.ratio
  12351. fig.root.unbind('remove')
  12352. // Update the output cell to use the data from the current canvas.
  12353. fig.push_to_output();
  12354. var dataURL = fig.canvas.toDataURL();
  12355. // Re-enable the keyboard manager in IPython - without this line, in FF,
  12356. // the notebook keyboard shortcuts fail.
  12357. IPython.keyboard_manager.enable()
  12358. $(fig.parent_element).html('<img src="' + dataURL + '" width="' + width + '">');
  12359. fig.close_ws(fig, msg);
  12360. }
  12361. mpl.figure.prototype.close_ws = function(fig, msg){
  12362. fig.send_message('closing', msg);
  12363. // fig.ws.close()
  12364. }
  12365. mpl.figure.prototype.push_to_output = function(remove_interactive) {
  12366. // Turn the data on the canvas into data in the output cell.
  12367. var width = this.canvas.width/mpl.ratio
  12368. var dataURL = this.canvas.toDataURL();
  12369. this.cell_info[1]['text/html'] = '<img src="' + dataURL + '" width="' + width + '">';
  12370. }
  12371. mpl.figure.prototype.updated_canvas_event = function() {
  12372. // Tell IPython that the notebook contents must change.
  12373. IPython.notebook.set_dirty(true);
  12374. this.send_message("ack", {});
  12375. var fig = this;
  12376. // Wait a second, then push the new image to the DOM so
  12377. // that it is saved nicely (might be nice to debounce this).
  12378. setTimeout(function () { fig.push_to_output() }, 1000);
  12379. }
  12380. mpl.figure.prototype._init_toolbar = function() {
  12381. var fig = this;
  12382. var nav_element = $('<div/>')
  12383. nav_element.attr('style', 'width: 100%');
  12384. this.root.append(nav_element);
  12385. // Define a callback function for later on.
  12386. function toolbar_event(event) {
  12387. return fig.toolbar_button_onclick(event['data']);
  12388. }
  12389. function toolbar_mouse_event(event) {
  12390. return fig.toolbar_button_onmouseover(event['data']);
  12391. }
  12392. for(var toolbar_ind in mpl.toolbar_items){
  12393. var name = mpl.toolbar_items[toolbar_ind][0];
  12394. var tooltip = mpl.toolbar_items[toolbar_ind][1];
  12395. var image = mpl.toolbar_items[toolbar_ind][2];
  12396. var method_name = mpl.toolbar_items[toolbar_ind][3];
  12397. if (!name) { continue; };
  12398. var button = $('<button class="btn btn-default" href="#" title="' + name + '"><i class="fa ' + image + ' fa-lg"></i></button>');
  12399. button.click(method_name, toolbar_event);
  12400. button.mouseover(tooltip, toolbar_mouse_event);
  12401. nav_element.append(button);
  12402. }
  12403. // Add the status bar.
  12404. var status_bar = $('<span class="mpl-message" style="text-align:right; float: right;"/>');
  12405. nav_element.append(status_bar);
  12406. this.message = status_bar[0];
  12407. // Add the close button to the window.
  12408. var buttongrp = $('<div class="btn-group inline pull-right"></div>');
  12409. var button = $('<button class="btn btn-mini btn-primary" href="#" title="Stop Interaction"><i class="fa fa-power-off icon-remove icon-large"></i></button>');
  12410. button.click(function (evt) { fig.handle_close(fig, {}); } );
  12411. button.mouseover('Stop Interaction', toolbar_mouse_event);
  12412. buttongrp.append(button);
  12413. var titlebar = this.root.find($('.ui-dialog-titlebar'));
  12414. titlebar.prepend(buttongrp);
  12415. }
  12416. mpl.figure.prototype._root_extra_style = function(el){
  12417. var fig = this
  12418. el.on("remove", function(){
  12419. fig.close_ws(fig, {});
  12420. });
  12421. }
  12422. mpl.figure.prototype._canvas_extra_style = function(el){
  12423. // this is important to make the div 'focusable
  12424. el.attr('tabindex', 0)
  12425. // reach out to IPython and tell the keyboard manager to turn it's self
  12426. // off when our div gets focus
  12427. // location in version 3
  12428. if (IPython.notebook.keyboard_manager) {
  12429. IPython.notebook.keyboard_manager.register_events(el);
  12430. }
  12431. else {
  12432. // location in version 2
  12433. IPython.keyboard_manager.register_events(el);
  12434. }
  12435. }
  12436. mpl.figure.prototype._key_event_extra = function(event, name) {
  12437. var manager = IPython.notebook.keyboard_manager;
  12438. if (!manager)
  12439. manager = IPython.keyboard_manager;
  12440. // Check for shift+enter
  12441. if (event.shiftKey && event.which == 13) {
  12442. this.canvas_div.blur();
  12443. event.shiftKey = false;
  12444. // Send a "J" for go to next cell
  12445. event.which = 74;
  12446. event.keyCode = 74;
  12447. manager.command_mode();
  12448. manager.handle_keydown(event);
  12449. }
  12450. }
  12451. mpl.figure.prototype.handle_save = function(fig, msg) {
  12452. fig.ondownload(fig, null);
  12453. }
  12454. mpl.find_output_cell = function(html_output) {
  12455. // Return the cell and output element which can be found *uniquely* in the notebook.
  12456. // Note - this is a bit hacky, but it is done because the "notebook_saving.Notebook"
  12457. // IPython event is triggered only after the cells have been serialised, which for
  12458. // our purposes (turning an active figure into a static one), is too late.
  12459. var cells = IPython.notebook.get_cells();
  12460. var ncells = cells.length;
  12461. for (var i=0; i<ncells; i++) {
  12462. var cell = cells[i];
  12463. if (cell.cell_type === 'code'){
  12464. for (var j=0; j<cell.output_area.outputs.length; j++) {
  12465. var data = cell.output_area.outputs[j];
  12466. if (data.data) {
  12467. // IPython >= 3 moved mimebundle to data attribute of output
  12468. data = data.data;
  12469. }
  12470. if (data['text/html'] == html_output) {
  12471. return [cell, data, j];
  12472. }
  12473. }
  12474. }
  12475. }
  12476. }
  12477. // Register the function which deals with the matplotlib target/channel.
  12478. // The kernel may be null if the page has been refreshed.
  12479. if (IPython.notebook.kernel != null) {
  12480. IPython.notebook.kernel.comm_manager.register_target('matplotlib', mpl.mpl_figure_comm);
  12481. }
  12482. </script>
  12483. </div>
  12484. </div>
  12485. <div class="output_area">
  12486. <div class="prompt"></div>
  12487. <div class="output_html rendered_html output_subarea ">
  12488. <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAroAAAILCAYAAAAHaz/JAAAgAElEQVR4nOy9abQcxZXvG31v3+7X70P3e3f1+9Ddt1fZ2Bhs4xFjGzwhYzxgI4xtMG63Rwy2sbGNbVwSCElISCCQBAiBJGYJIdCEptI8z/M8H82zjsajeT7xPlTtqp27IiIjs4asU+f/WyuWzVFlVlRWVuYvI3bsrRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgBbJ/1JKXa+U+k+l1H+goaGhoaGhoVWo/afKOsf/UgBUieuVUhoNDQ0NDQ0NrUrtegVAlfhPpZReunSp3rt3LxoaGhoaGhpaRdrSpUtJdP8zYfcBrYj/UErpvXv3agAAAACASrF3714S3f9I2H1AKwKiCwAAAICKA9EFSQDRBQAAAEDFgeiCJIDoAgAAAKDiQHRBEkB0AQAAAFBxILogCSC6AAAAAKg4EF2QBBBdAAAAAFQciC5IAoguAAAAACoORBckAUQXAAAAABUHoguSAKILAAAAgIoD0QVJANEFAAAAQMWB6IIkgOgCAAAAoOJAdEESQHQBAAAAUHEguiAJILoAAAAAqDgQXZAEEF0AAAAAVByILkgCiC5oEczefEj3m7VVX77SnHRXAAAAxACiC5IAogtaBKl0RqfSGT1k8a6kuwIAACAGEF2QBBBd0CIg0f3rsFVJdwUAAEAMILogCSC6oEVAovsXiC4AALRIILogCSC6oEUA0QUAgJYNRBckAUQXtAhIdP88FKILAAAtEYguSAKILmgRQHQBAKBlA9EFSQDRBS0CEt2Hhq5MuisAAABiANEFSQDRBS2CvOi+C9EFoLVx4dIVvXL3cX0FebRbNBBdkAQQXdAigOgC0Hq5b+BSnUpndI+JG5PuCigBiC5IAoguaBGQ6P4JogtAq4N+/6l0JumugBKA6IIkgOiCmqe5uTl/k/vjOyuS7g4AoMpAdOsDiC5IAoguqHmuXIHoAtCagejWBxBdkAQQXVDzXGai+weILgCtDohufQDRBUkA0QU1z6XLV/I3uQeHQHQBaG1w0W1uRuaFlgpEFyQBRBfUPBeZ6P4eogtAq4OL7oyNjUl3B8QEoguSAKKrsyI1dOluvaXxZNJdAQYuXCqI7u/eXp50d8oCRqUA8IeLbsfRa5PuDogJRBckAURXa/3SzK2I/6phzl+6XFeiu25fk/7ME1N13xlbku4KAC0CLrqdx65LujsgJhBdkAQQXa31t/vMgejWMOcuFkT3gToQ3TY9Z+J8AyACXHQfH7s+6e6AmEB0QRJAdLXWt78wF+JRwwREd3DLF90bnpiK8w2ACHDR7TIOottSgeiCJIDoaq3b9p0H8ahhzl6oL9G9sfs0nG8ARACiWx9AdEESQHS11ndAdGuaMxcu5b+f3w5elnR3SuamJ6fjfAMgAlx0u0J0WywQXZAEEF2t9XdfhOjWMqfPF0T3N29BdAFobUB06wOILkgCiK7W+k6Ibk1zCqILQKuGi+4TGYhuSwWiC5IAoqshurUOF91fD4LoAtDa4KLbbfyGpLsDYgLRrX9+oJRaoJQ6qpQ6r5TarJR6TCn1j+J19yqlGnKvWa2U+o5hX/+ilHpNKXVMKXVKKTVCKfVvMfoE0dUQ3Vrn5LmL+e/n/kFLk+5OyUB0AYgGRLc+gOjWP79WSj2hlLpTKdVGKZVWSp1TSvVnr7lHKdWslOqae01/pdQlpdTnxb4mKaX2KKXuVkq1VUqtVUqtUkr9fcQ+QXS11t97aT7Eo4Y5AdEFoFUD0a0PILqtk24qOyL7P3L/vVkp9bZ4zQKl1AT23zeq7IlyK/vbNSoryHdHfH+Irobo1jpNZwuie99AiC4ArQ0uut0hui0WiG7r5M8qG6LwP5VSV6nsCdBWvOYPSqkLqhDi0EVlwx/+TrxuhVLqzYjvD9HVWn8folvTNJ2B6ALQmgmI7gSIbksFott6+J9KqX9SSn1BKbVTKdU79/fbVPYE+KB4/a25v1+b++9hSql5hv2+rZRaFLEvEF0N0a11jp+5kP9+fgXRBaDVAdGtDyC6rYfzKvtFa6XUQFUIW/hx7m//Kl7/mdzfb8r991SlVMaw374qu4jNxT+r7AlG7XoF0YXo1jjHThdE994360t0m5ubk+4OADUPRLc+gOi2Hj6tlPqiUupBpdQhpdTrub9XQ3Q7q4Jk51trF90f9IPo1jJH61h0Ry7fk3R3AKh5uOg+OWFj0t0BMYHotk7aquyXfr2qTugCRnQNQHRrmyOnzue/n1+8sSTp7pQMF91vPDs76e4AUPNw0X1qIkS3pQLRbZ38H5X90u9RhcVot4vXPKiyi9H+IfffXZRSRwz7Wq6wGC0Wd/VbANGtYQ4z0f3Wc3OS7k7JcNH9em+ILgBhQHTrA4hu6+SHKvulfy7335uVUm+J18xT5vRit7C/fUghvVhsILq1zaGTBdFt03Nm0t0pGS66X+s1K+nuAFDzcNHtAdFtsUB0659JSqm/KqW+pbLhCI8qpZqUUpPZa36kssL6uFLqZqVUP5UtGHGjYV+7lVJ3qewI8BqFghGxuas/RLeWaTx5Lv/93PzMzKS7UzJfeAqhCwBEAaJbH0B065+uKlvB7LRS6oTKiulflVL/l3jdvUqpLSobrrBGuUsAH1fZghMjlVL/HqNPEF0dFN1UOqMvX8FK+Fqi8URBdL/89Iyku1MyXHS/WQehGABUGn59fnoSRLelAtEFSQDR1cWiO3NTY9JdAoyDTHS/2GN60t0pGS66tz0P0QUgDH59fmbSpqS7A2IC0QVJANHVWt8tRHf8mv1JdwkwDjQVRPemJ1u+6PJz7YYnpibdHQBqHohufQDRBUkA0dUQ3Vpnf9PZ/HdzY/dpSXenZPi5hrhwAMKB6NYHEF2QBBBdrfXtL8wNXEgnQHRrin3HC6L7uW4QXQBaG/z30nMyRLelAtEFSQDR1Vrf2ntW4EI6cS1Et5bYy0S3Hqb6IboARIP/XnpBdMvK3uNnda/Jm/Tuo2cq/14QXZAAEF1dLB4T1x5IukuAsefYmfx3c31XiC4ArQ2IbuWgxbHVCAuD6IIkgOjqYvGYtA6iW0vsPspFd0rS3SkZfq69rx1EF4AwAqI7ZXPS3akrqvnQDdEFSQDR1cWiOxmiW1PUs+he1X580t0BoIimsxf1uYuXk+5GHohu5YDognoHoquLRXfK+oNJdwkwdh0piO6nu7Rs0b14+UrgXLv6kQlJdwmAAEdPX9CpdEZ/5omp+tLlK4n25d0lu3T38RsCv5neEN2yAtEF9Q5EVxeL7lSIbk2x88jp/HfzyccnJ92dkmg4eDJwrn2046SkuwRAgIELduTPz2osULJx/tLlomszRnTLD0QX1DsQXV0sutM2QHRriR2H60d0eaq0VDqjHxu9NukuARBgUI2I7pkLl4yii/Ri5QWiC+odiK4uFt3pGyG6tcR2JrqfqDPRRfJ7UGsMWrizJkT37AXziO7TkzYm1qd6BKIL6h2Iri4W3RkbG5PuEmBsO3SqbkR3rxBd3LRBrcFFd9eR2hvR7TERv5lywo/t6j3H9ZkLlyr2XhBdkAQQXW0Q3U0Q3VpiKxPdj3du2aLLM0jgpg1qES66O4+cTqwfp86bRffJCfjNlBN5fNu+MLdi7wXRBUkA0dXFP/SZEUV3S+Mpfc+AhSg0USG2NBZE92OdWvbiLSm6T0F0QY3xFhPdHYeTE90T5y4aRbf7+A2J9akeMR3jSgHRBUnQ6kV35e7jJYvul5+eUbUYp9bIlsaTdSO6PIMERqdALVIrott0xiy63SC6ZQWiC+qdVi+6V7UfX/Qjn7X5UKR9VDOYvzXCU3Jd18JFly+sS6UzuvsE3LRBbTF4UUF0tycousdy+Xxl6zpufWJ9qhUuX2nW0zce1I0nzpW8L4guqHdaveiafuSzIbo1xWYuui087yxfWIdpWFCLvL1oV/783HboVGL9OHLqvPH63CUh0b14+Yr+71cX6b8MW5XI+3PenF9IAVfq4jGILqh3ILqGH/mcBohuLbHpQP2ILo83xjQsqEVqRXQPnTSLbuex6xLpz6gVe/N92Hv8bCJ9IG5+Zma+Lw+8vbykfUF0Qb0D0cWIbs2z8cCJ/PFt6ZXEeLxxKp3RT2QwDQtqiyGLC6K7NUHRbTx5znh97jQmGdHlhTSSTLumdXBdSKn3HYguqHcguoYfOWJ0a4sN++tHdDeLEsCINwS1xjtMdLc0Jie6B0+YRbdjQtUEebhAkoU0tNb6KxBdALyB6Bp+5FGzLkB0K8v6fQXR/chjE5PuTknwMIwk4w0BsMFFt+HgycT6sb/prPH6nFTZ7FoSXYzoAuAPRNfwI49aGQ2iW1nW7WvKH98PPzZRX77SrJubm5PuVizajVwdOF++9dycpLsEQIB3lxREd3OCoiurCFLrMCoZ0X1j3vZ8H/Ycg+jGAaILkgCia/iRT994MPY+QPlZu7cpcIw/332a/vnri5PuViyqeVMBIA58RHfTgeREVxZXofbIe2sS6c9rcwuim/RiNIguAP5AdA0/8mkbILq1hBRdaucuXk66a5ExfY4rV1rm6DSoT7jobjxwIrF+7DpiFt32EN0i0e09ZXPsnMcQXVDvQHQNP/Kp6yG6tcSaPfUtuhcuXUm6W6BGaG5u1qfPl5YXtVS46G7Yn5zo7hDFVai1G5mM6L7KRHdfwqL7pR4zio7LBx8ZH2tfEF1Q70B0DT/yKRDdmmL1nuIyzal0Rp+9UB+iW2rCd1A/dBqzTn+g/Xi9cNuRxPrA04ut35ec6MriKtTSI1Yn0p9X5myradGNe/+B6IJ6B6Jr+JFPXncg9j5A+Vm12yy6SY98xcH0OU6eu5h0t0CNQOfExxIsdc1Fd92+psT6sdUiun8bnrzoJr0Y7Ys9pkN0AfAEomv4kb88e1vsfVxGvGXZWWkR3ZYoiKbP0XSm5X0OUBnonLimw4TE+tB3xpZ8P9buTU50ZXEVag8PT6YE78uzC6KbdHoxiC4A/kB0DT/yKD/05ubmwHa/eGNJBXvbOlmx61jdCKLpcxw5dT7pboEagc6Jazskky9axsUmKbqyuAq1vwxLRnQHzN4K0S0RiC5IAohuiaLbc/Kmql0kWivLLaJ7/MyFpLsWGdPnaDxxLuluxWL0yr36b8NXt8gQkloladHtMGpt4Nxcsyc50eWlv3n789BkRLf/rILo7jwSL8NBufjCUxBdAHyB6JYoutW8SLRWlu00i+7R0/UhukkvbIkL9b/7hA1Jd6VuqDXRXb3neCL90DpYEZG3h4auTKQ/XHR3xEzlVS4gugD4A9GF6NY8y3YeNR7nwy1wyt/0OZKeBo0L9R/hOuWDjumHEyp1/eioNYFzc9Xu5ETXlj/7T+8mI7r9mOhuO3SqpH1dunxFr9nTFHtNB0QXAH9avej+9LXFEN0aZ+kOs+geOlkfohs30XvSUP9/CdEtG3RMP1IjorsyQdG15c/+4zsrEunPizMLi/S2lii6fxm2SqfSGd1pzLpY20N0AfCn1Yvuz1+H6NY6Syyi2xJjW02fY0tjcmVWSwGiW36SFt1H3guK7opdxxLph9b2tIJ39V+QyCI5LrpbGksT3VLvFzc9CdEFwJdWL7q/eWtZ2UX30uX6rXR18MQ5vWjbEd3cXL00aou3m0X3QFN9iG6SZVZLgfp/75sQ3XKRpOheudJcdG4uT1B0bWkFqVU7rIKnXWs4WNrDKUQXoguqR6sX3d8PWaFT6Yy+6cnp+u7+C3QqndG/eWuZ9/ami0Q9p4uizzgpYlGNUrCJ7v6mlreIy/Q5kkzhVAoF0V2adFdaPOv3ndB39J2XP6Yf7Vj9ghHTNx4sOjeX7UxOdG3ZVqh1Gbe+qv15YXpD/r0317Hotn1hbqz9+ADRrX/uUkqNUUrtVUqdUUqtUkr9XCn1d+J19yqlGpRS55VSq5VS3zHs61+UUq8ppY4ppU4ppUYopf4tRp9avej+7u3lOpXO5mZsN3J1WUS3JU6p+7DpQCGv5T0DFlbtfRdtO2I8zntbYLYC0+dIMoVTXHj+6F8NhOiWyqe6TAmcE9clILojl+8xiO7RqveDsC1CpdZ5bLz41rhw0S1lFubU+Us1LbqzNx+KtR8fILr1z0Kl1DtKqR8qpb6qlHpSKXVFKfUoe809SqlmpVRXpVQbpVR/pdQlpdTnxb4mKaX2KKXuVkq1VUqtVVlx/vuIfYLo5kT3r8NW6XYjs/Fp9w/yv3GbLjYtcUrdh1fnbs9/xq/1mlW1911oEd2WmK3A9DmSTOEUl8tsmvs+iG7JyHMiCdEdvqxYdJfuSE50bbH51DqOXlvV/vSZVhDdDfvji+5TEzfWjOjKgkepdEbP33o4Vp98gOjWP/9q+NvLKjsqS2xWSr0tXrNAKTWB/feNKnui3Mr+do3KCvLdEfvU6kX3gZzoPjx8VX4hRpQRqnoZafThNSa6X+05s2rvu2BrfYtukimc4nLx8pXYonspt+1NT06vaqx3LVOu0blSGLp0d1EfliQouraZHGodRlVHdJ+ZtEl/rdeswEK99fvii+5D764s+Xu+sfu0spwzprhsiC4oN79V2S/9n5RSV+X+f1vxmj8opS4opf4x999dlFJHVXHIwwql1JsR3x+iOzgrun8bvjqfLD1KzKHpYjNzU2MFe5wcr88riG6bKoru/K2Hjcc56epEcTB9jiRTOMXl/KXLsUWXFyVoiWEblcB0Xpy5UN2Kc0OXFIvu4u3Jia7tAZda+/fWVKUfpvcuJa7+oaG1I7qXIbqgCrytlNqZ+/+3qewJ8EHxmltzf78299/DlFLzLPtaFPH9W73o/nZwNutCesRq/djo7A3YN12Sadonlc7oTz4+ucK9ToY35+9IRnS3mEW3JeafNX2OJFe2x+Xcxfiie+eL88r+2SeuPaDnNlTuBl1pTOdFtUOg3lm8q6gPi7YdqWofOLbfPbV2I1dXpR/lFl3KoVsLostnZiC6oBJ8UWVjdB/M/fePVfYEkCEOn8n9/abcf09VSmUM++ursovYXPyzyp5g1K5XrVx0Kb1YesRq3WnMOp1K+1V6Wrz9qP7k45OtF+F6ZOACJrrPzKza+86z3PDiTvmv29ek35i3XV9MIA2c6XMkubI9LmcuFBbU3Ddwqb4SocITj/UudfW61sFSsS2xLLTWtSG6QwyiuzBB0Z3b4Bbdh4evqko/TO9dykzEw8NrR3QvXCoW3QVbK/edQ3RbF/9HKbVPKTVNKfU/cn+rhuh2zu0r0CC62dGBzmOzovuz1xeHbnf1IxOcF+F6ZNDCnfnPd3MVRXdOwyHjMf7z0Hg3Otr++WkNZe5pOF/tOdMguslND8dFrhz/VJcp3qEk/IGpHDmEh7HY0k0HWnbxjSRFd/CinUV9qKT0hGH73VN7aGh1SgGX8yFba63TI1aXfK/4fJlEl8/MVOPhBqLbevh/VDZLwhqVTRNGVCN0ASO6gl8PItFdox8fu16n0hn9k9fCRdd1AW4NovuVp2dU7X1nbTbf8HpM3Bh5X01nLgb28fy0Bn24inmP2xhEN8mV7XE5ce5i0ef4qcfvRmutBzHRLWVRD8FjS8sxQpwEtSC6by0sFt1KTmOHYfvdU/vTu8mJbilx9ZTGslZFt5Jx2RDd1sE/qayk7lbFXzQtRrtd/P1BlV2M9g+5/+6ilDpi2PdyhcVokbl/0FKdSmcXNnQdlxXd/351Ueh2rVF0+UhcNT/jjE2NxmM8Y2P0RX87j5wu2s9d/RZUoNdm2jxTLLpJLviJi3xgiHIcueiWo1jGu0sKU+6lVqxKiloQ3UHi951KJ1sMxPa7p/bgkBVV6YfpvUuJLW8vyizHoVyiy0OQqG07VFp5YxcQ3frn75VS41Q2Y8JHLK/ZrJR6S/xtnjKnF7uF/e1DCunFYnHfwKzoPvLeGt1t/AadSmf0j1+B6Jp4g2VdqKrobjTf8KauPxh5X7uPnjHu6+S5ixXoeTE350SX58FMcsFPXI6dvlB0DL//0nyvbfnMQDlEly+i2tJYP6J7sMqFZ+SDbNLXsrtylSpt7Y/vJCe6pcTVPzqqdNH9XLfyiO7p88WiW0kguvXPyyr7Bf9ZZQtA8Eapw36kssL6uFLqZqVUP5UtGHGj2NcklR0VvktlR4DXKBSMiMWvmOh2z4nuj14Or/rVGkX39YREd9qG4tKkqXS8MsSNJ88Z9/X+dhn9RKbyJUVJcF+Zsy3/3j4xcRv2n9CPj11fM2WPj5w6H/u851Pk5SiWMSQgupUbjaokpmNZ7RFd+SCb9LUs7Bpbrb6ZRTf+LAxl96kF0T0pQpA+3rmyGYMguvXPTmVYCJZr72Ovu1cptUVlwxXWKHcJ4OMqWwJ4pFLq32P0qdWL7vdemq9T6Yx+dNQa/eSEjfmRqbDV27VwAa42vGBENT+jqTRpKp3RE9bsj7yvxhNm0a3WZ6L3oXjwVNpvwQ/v4/wtyafROnQyvujyRU/lyCH89qKC6FZy2rWSmI5ltR9q5IMstaQKs9Sy6JZSSIOy+5TyGT7bbWpZjoeMtYfognqkVYvuyt3H8z/wDqPW6h6iNKNrGrQWLsDVJokR3eNniqfIqY1bvS/y/g40JSe6trzLPgt+au38sj0w+MDFtBx5dPkIcUvMrax1bVRYlA+y1NqNrE5hBkkti24pcfWU3acWRFfG2n+iwjngIbogCVq16N7NYsAeG71WPz0pKLq/HbzMum0tXICrTRKL0UzVmqiNWRVddPc3nU3sezPlrEylM3qexwhtLZ1fB5rO6R+/sqioT1e1H++1PRfdcqRW46K7o45Et9ojqa9aRPcvw6qTr1ZSy6JbSgquLuPWl/wZbniiPKIrBxIqXewIoguSoFWLLl/s0HH0Wt1z8qbAj/5XjopPtXABrjZ8FfTPPXINl4OhS+2iO2pF9PN27/HkRNc23e9T0auWzq8fDjAvEvqAp+jymNpypFbji9taYllorc3Xk11HakN0/1ClRV+Sconu9sOn9e+HrIgdbmB639fmbo+1L621fiJTO6J79DREF9Q/EF0mur2mbA786F0y19pF9/5B1Uk7NMwhuiOW7Ym8P1vWhWp8b32mNRjfc07DodBta+n8uqr9eOPn+OAjfqLLsySUI7Uan2moJ9Gt9mexia5rZquSlEt0b2Yp/crZj8YYWTEuXb5SNBtSzj5FRS4qheiCeqR1i26/guh2GrNO9xai68qn2ypFl6X5co12l5MRy8wL0VLpjB66dHfk/SUpuvx9eC7N2ZvrQ3SvfmSC1/Y87205qjC9Ob8guvUUulDteGOb6Fbrty4pl+hWSip9SsVL5EK0pEVXzjJ9qsuUWP3xBaILkqBVi+4P+s0PiO5zU4MjbvcMsKcZC7sAn71wuYqfpDpM31hI83Xvm9Ev8nGwZVxIpTP6ncW7Iu/PVDAiCdHddaQg3LNamOjajt3Vj/qJLo+77jOtQV+50lxSf3harHpajLbVM4PElSvN+q/DVpWcHo+nvKuF881HdH3OnUpJZZz9levYlqs/Mt0iRBfUI61adL//UkF0O49dVzS1/IN+5gT4ttXzvIWlJ2uJ8Hy2cUYz4vDeCrvoDl60M/L+dhyuDdE90HROv69d9v/P2BRe4a0WxMPWF2ofiiG6qXRG95+1taT+8GwgvnJYa5iOp2/xCx5SVMqIdksUXZ8UgxBdOwdF9pRPQ3RBHdKqRfd7THQfH7tevzA9KLrffXGecbsrV8JF9/Cp81X+NJVn6vqC6P6sSovRXKI7aMGOyPvbduhUTYguH0mZ4lHhrRbEw9YXatd2mOi1vVxg6LuIzQZPi1VPBSM2e5YzHr1yb36bNXviV5priaLr87BbSdH9/ZAVkWYkak10ZbpFiC6oR1q16N754rz8D7zLuPW674wtgR/97S/MNW536bI5TVS9i+7kdQfyn+8nr1VHdEet2Gs9xm/Mi77yeUtjbYjuYbYI5I6+5gcq27a1KroffsxPdOUCw1JFlwtaPZUA3njghNe241bvy29TyuK+l2e3PNEdEhK+JH/vUfGZvZvpMSPj+kxxKNf3tE9koYHognoEostE96WZWwM/+m8+N8e4nS0fKm+HTtaf6P560LL853Mt1CsnfLRKtldjpPjZ0niyJkT3mEjrE2XbVDqjz128rLuOW6+neowGlxvbsfuIp+iWe0SXi26D5yhoOZi+8aD+xrOzvSrbhWE6nhv2+4nu2FUF0bXNQvnQEkX33SVu0V2zp6mkz+EzexelcE2tia5Mt3h9V4guqD9ateh+l4lu13Hrdb9ZQdH9Wq9Zxu3OXbwcevFrPFndOvXVgH++H7+SvOi+PHtb5P1tPlgbott09mKk95X9vH/Q0sK5FiPNUSnYjt1HO07y2l7G6JYqulzQfKf7ywH/DKVWMTMdz3X7/MIQuOiWcj4MmL3V+t0mgY/oDgvJvLJ6z/GSPofP7F1LFl2ZhQaiC+qRVgbv6aEAACAASURBVC26d/QtiO4TmfVFF/qbn5lp3O7MhUuhF7+DVZaPasA/349etmekKCcu0Y2ziGnjgRM1Ibonz5UmurwtKkOKrijY+nGdp+jy9GKptH/+XRv8d+s73V8O+Gf4ZYmLM03Hc+3eeKIbV1ZaouiG5dJetbs00b3oIbpjI1RohOhCdEH1adWie/sLc/M/8C7j1hdN3X2xx3TjdqfOh4vugab6Ft0fDlhQ0r6am/0WcIwRN3HeXpy5JfL7zt96uCZEVz4sRdlWtuW7jlW03759ua6Tn+jyghGpdOkjuv3ZTIzvdH854J/hzhJCBuS+qK3ec9xrWym6cc9jOaPFWxLpEn1E970VbtFdsetYScfFJ0ytlkQ3aoy2TLd4fdepsfrjC0QXJEGrFl3+A/9679lFq44/332acbsTYjTO1PaVOJVZi/DPd1f/eKLb3Nysf/nGEn1Lr1leN0+X6L4wvSHy+1/XcVJNiK4Mf4myrWy+I3/lwtaPj3f2q6o0pMyiy2Pr1+9LRnS/95I5FWGcfVFbubu6omsrGJFKV75ilgkf0R290n3vWi5EN2pYh0+Y2pgaEt2o+5PpFiG6oB6B6ObaF56aHkhT5PrRN50JF909x6pbp74a8M9nyzEcBi85+eb8HaGvN93EqT03Nbrohn1vlYS/jxwpKqXf1Zyud/XlE54y9Pai8oYucNGtpvTzz/D9Coiu70i96WEwDiS6H3p0QtV/GyZ8RDdsNHXZzmOxjilR76Ir0y1+5gmILqg/ILq59sUe0wOJ51Np+yjGUbFi3tR2H61v0Y07gsWP3Uszw2NsXaLba8rmyO9fK6J7WazmLqXf1Uyp5VqF7jvqN3jRzrKK7oszC2kBkxLduA9+pn1RW7bTbxq6XKJLM1q39p7VYkR3fEjBiGU7jwZe7ztKTpy9EC66YaPKrs8UdzbD1R/fsDCttd4K0QWtAIhurn3hqen6zfk7An+zxRzyHKi2tuuIn+g2NzfrcxdbRrlg/vnipjHiabX6zgiPseU5QqlRRbFnJm2K/P61IroyP2cp/a6m6DY4slb4lg99a2H5RPf8pcuBioalFEyISrlEV1ZkpLZ0h5/omhZsxoEWo33j2dlF+/vGs7Nj7bMUKiG6qyKK7mmP9RiliG7cEDBXfy5dvuK9H5luEaIL6hGIbq7d9OR0PWhBUHRtlZ5kfXBT8y3F+cd3VugPPzaxRSS655+vrUeRAxM8dMFHdDOr9wfet9+srfru/gt0Kp3RT03cGPn9kxLdEcv2FL0P/++wUBdXn6uZO9aVtcI32fygMonuqfOX9A1PTA3sy3cBVzkICEu/rLBcudKsT5+/FHs/vPkuLCqX6NJitG8+N6dof1/vXT7Rnb35kH5+WoO+6BAyn0INqbRP6MLRks4Pn4XHJYluv/KLbpSBE/ngegNEF9QhEF0uuuIGbBNdWR/c1LYd8itFSq+vVl7aUuCfz1Y1Lgz+kBBVdH81cKnWWusfvbxQp9IZ3X38hkjvLafpqim6pvfh/23L8GHbnrdOY9ZVrN8Sl+j6piaSD5RxRdckeFGnpkshICy5kbmfvrZYX9thot55xO9BV+6Ht4WeaePKJboUAnLb88Wie2tvc07xONA+X5ljz4MtQ3viSqaM0Y0a2uKz8LgU0Y07E1Au0d10AKIL6h+Ibq59vvu0othBm+jubzobevHbGlF0q5WXthT45/tOn3iiyx8SfER3/JqC6N6XE93/fnWRTqWzRT6i8Is3lpQsus3NzfpIjPLOYaIb9t5h/Y4iVqWwYb9ddH2nPWWIUFzRHS5GyVPpjF5RxVRr/H3vzoku/fcj762JtR/e5m897LV9uUSXSqB/p89c3X3ChsD+brEUz4kD7fP+QUutr/HJX5tKZ/TI5e70YjLrgm8RDkIWdim36MZZxLhg6xFnf6KkgpMPrhBdUI9AdJnoyrRHNtHdc+xM6MXPNxSBXn/PgHiie6DpXKTFB6XAP99tz5vLI4fBa6v75MHlovvrQcu01tlRs1Q6ozuPjTaSWQ7R7TBqrU6lM3riWndsoMT0Pn98Z0XZRHeJZzxnqazfZxdd35vkG2LR59WPTIjVF5PoVjOnMH/fO1+cF5hubzdydaz98DZvS3VFl2KF274wtyjbQJueMyPtq/HEOX35ivm6RPu89017kY3zl8IXgaXS4ZXRpOhGTT/nk2GnFNGNs6j3xu7TnP2JEjojf8+f7QbRBfUHRDfXbuw+rag0qU10ZTUZU/MtRVqK6FLi/Y6j10beNg78833zuXiiy4+dj+hOYKL7m7eyovvz17OiG3XK/me57UoR3bgyYXqfPw9dVTbRjZooPi7r9jVZ++B7k+wybn1guzgjus3NzbrXlM1FffDNVFAO5Hvz6fZyiO6chkNe249aUR7RfW5qVnTvyMXf87ChNpYqkSbmbckWZfnpa4uN/077dFWT80nrlUpn9LtLdjn7IkMXNh2IFs9+/Ex4hp3fvb3ce39y2ziFRsL6cyqC6Mrf8+e6mXPHlwuILkgCiG6ufb77tKKCETbRldVkTM03tym9Pk6lsVJubIdPnY80Bb9SlNKMuwqbH7uoovvbwVnRvffN7Mhsh1HRBN/nxhllH6W8t9ZaPzy8fKJbrTLAa/faRdf3Jim3iyO6JslNpf0zFZQD+d48N3Jc0eXlkWdvrq7o9s4dU5IvPpvyladneO+nTc+Zzn7Qv/3CIbo+ab1S6Yx+e1GY6AYXo0XNOX3MI5VklOMtt4uTvSasLyfPXfTel/w924oklQuILkiCVi26X+9dSKPztV6z8iMaYaK7XVSTMTXfUqRJiC6PO/O9KP5STPvHXZzCFyI95jESPXFtsejeN3CpTqUzun2EOEita090241cXTbR9V24VCou0fW9Scrt4oQu2PpQrRAOUx9OsoVL7UbGi9EdsWxPPn3ezE2NXtu/t6I4hCMOvSZv0ql0IW6Ui+6XeviL7s3PlC66Pmm9UumMHrRgh7MvS3cERfeP76zw/hxa++VML0V074iRvaZt33nOvjSd9RfdNXswogvqn1Ytuu1Grsn/wL/TZ25RvJJNdLc0hq/e943hpNfHCV2Ic6EdMHur/uTjk/Pb+S54kaIbd3EKjyf0yYM7ce2B/OsfGJydIvzNW8t0Kp3R6RH+o2Za157oPvLeGu/9hfV7wdbkRffGGhDdao1sm/rAR/+iPITxfby3Yo++qv14nUpn9IyN1RXdZyZlRZdSXvHZlLCsIJzPsxjSA03FJXfp337+ujm0QWsdeGhwtTfmbXf2ZYkQ3VQ6o5vO+ItgpUU3TppGOfNYyudbJWbqMKIL6pFWLbrpEYURtduen1O0AtUmuq6k+bzZcqM2NzfrVbuPB1LX+EoCh7/XFcvCD84lw0pmXzGQoht1cQqxgi0OGbRwZ+jrJ60rFt0H3l6uU+mM/uuwVZHeuxw3LP7apTuOeqfyMb1Px9Frvd87rN/zPRculYpLdG96MitDzc3NevmuY9ZFMXK7coputUa2TX04dLKQIzqu6I5euVd/8JGs6E5df9Br+3KJbo+JG3UqXcggwUX3C0/5iy7vhym0gP7tZw7R9cl2kEpn9Ktz3aK7eHux6Jrk28YRj+JAUY633K5tjDSNr4pS9bIdP3PBe18yJA2iC+qRVi26PEbyW8/N0ZuFwNpEV+YetDWbyNGo5ufF6tlDJ6OlreLb+pTTNa1k9p3qlaJ7c4TFKRy+OCSu6D44JJut4KGhK73fV45cxL1hydf/fojfVCjf5uOds6VyO49d5/3eNMpna74r9EvFJbokQwNz4SnfsixYlNuVU3SrNbJt6sOBpkLqvLjpxcau2qevfnSCTqUzekqVRffJCVnRpTAqLrqptH/FLb5NXNH1WQSWSmf0y7PtuXi11nrhtuJUXGHFWTg+VTCjHG+5XZx85GEjukdP+4vu3IbDgW0huqAeadWi+5dhBdH9xrOzi8ohXtPBfAN25RLlbaAlfozHBvM2ad2BSP2PerE1rWRettMvHZMU3S9HWJzC4TFzPqI7mYtubnXzn95dqVNp/3g7WgVejhtW3Jscfz197q4i+4CL6zpOcvZ7bkN1RHf1HvsDwxd7TC+qJGVCbldO0a3WyLapDzzt4KOj4oluZvV+fU2HrOhOXOt3PSiX6HYfn82dSzm9eXx8Kp3RT2T88lbzbQYvKv6N07+5RNc3ZKDPtAZnX0w5Z6OILh+lL+W6IT87tTj5yEl0b+09y9iXKIuM7xmwMLAtRBfUI61adB8aujL/A/9679lFlbNsoutKscTb65b4MVMt+Sg3NiLqxdYkurYUQBIpulFi9jh8KjFsIYnWQdGlND6Ulst3NFXmqw27YS3fdcyaHi7OTU5WV6KbP4mFz37CRNc3FVWpyKlOeU5QnKfrM5UiCq59pNLVG9k29WEHW6RKxU2i7mfi2v36I49N1Kl0Rk9Y4xfnP3J5seg2nvSfnie65c5HqtIoRdf3e+KvNz3M+lx7fEdSw/o0f2vxQ+7uo/6i61PuPcr5K7f7dp/oaRoHzM6WarYNmByOILqPjgquE4DognqkVYsujQym0tmnY5lNwSa6cqWqrUUX3fAb28lzF/XEtfuNq5LDOHPBvJLZp+CEFN0oMXscPpUYV3Qp5IRCGcLgDzRhjac/M2WkiHOTk+fLO4uz07lP5WIiffZzXSe36PqmoioVmZeUty/1mJGvWuf6TD9+ZVHkYyix9aFaI9umPshFqnH2M2ndgfxDTWZ1fNH9yGPmsCsXNMPw369mRVeGLvh+Jv5602+c/s0lur6C6erTxctXdKcx64peH0l0Pcq9x/2uU+l4hXf6z8qKru0+EuUhZ+jSYO54iC6oR1q16P6BjfTd0mtWUX7cazpM0Iu3Hy2a3rfFe8pRN5vofvO54lryqbTfCM5/vZKdarr3zaWRL7ZyWpna+UvhC6qk6KbSGd1rcnjWBAkfYYkrupSWiyqlhcFDVMIalwZTudA4NzkZ1zp0SbaaU8/J4aOfxMdCRHfaBr94zlIxrWKn9pWnZ+jru04J/Uw820lUUSBsfajWyLapDzJ2P85+pq4/mP+ux6za57X9CEOFuDjH9PGxWdElAR1fDtEVI7q8etxPHKJ70FMwXX3qbcm1vOuIv+ia+nH1IxNiHRdeUISaLY7dRb+c6NruI40n/EWX521OpSG6oD5p1aL7+yEF0b35mZnOimd8odiKXeZRLZ62K5W2i+63LBeo8R6iG+eCT8gpdGrHPBYvUJGGUm+mPF7WR3QnGUS3fS4tl+/08F8jiC6PdyyX6MpQFypbKm/ELj7eebKz3/cP8p8qL4VFhsU91L7ac2bRuW2CZzuJex7Z+jCrSiPbpj7I7znOfqZvPJi/jviWlh0mRuXiHlMa/aS0X+UQ3VQ6my+XZo2uMNmjkWMTe1mp8LDm2w9qOw6f9j4mfIEhNVMYkQ+mMIo4FSZfnLlFp9LZ0WDT5zsYQXTfXgTRBfVPqxZdSlOVSmdHSPliEtl4xSXT9O1V7cfrz3ULZlF4zZL6xia6PlOVcS74hK1u+97jZ0O3LYfoyoUdPqLL4wQpJrfDqLW578yecJ4jK5C5WiVEVy5eHLFsj9Za6+enNXjv5xOPu0U3jtjEwXSzptbmmZm6j8dn+tvwyoluKp3Rfx4aLe1cXOT7yoV6Qxbv8krez7eZualRf7rLlPy56IMsXR73mFK6OyrNy0sAR9mnqS+rdh/XWgdTHLpEVxbvke1TuWPk+q5t2249dMr7mOxvKhZu02/RB1MGiDgVJvvOyIrut/uY7yP7m8Kv58RbC3cGtoXognqkVYvubwcvy//AD544p/c5RhG46MpqO6l0dqXrjd39RNc25TTWY6qyFNGRMaHUGiwLrziliu6CrUf0TU9OD2xry0rB4TdbEl058hRG0qIr8zOTwLwwPXgzd8VKy9kC2eJkLoiDTEfE25efnpG/CVO7bMjvbPo+ohL2PfqmwioF+Z7LDTM9Pos9+etnbz6kr+86VafSGT18mZ/ovrN4l/EYRKXwAJmdHSin6C7bmb1+XvQU3a/1MmcUoPalHjN0Kp3Rf3Hk0rZtu6Ux/HpHmO4J9CBCzTfO1rSQsxTR/U6fucbPt89j4ILglSpTaYguqE9atej+elBWdCm5u+npnRoXXdP0rda6SORsomtbROATk+e6+MfddmVutMVFKaJrWwRnC+3gjF21L/96El2+4MkH0wiirVUiRlfGbtKUtI8UEp8SN1fZnp600etYlMrszYesffhij+lFn2n1nuJzyxQzHZWw79En7nzSugP6671nR1qc5OqDqThB1N/l3IbD+rPdsqI7NBfiEoacfo57TB8RIUHjVu+LtU9TX2idA8/l7RLdNj1nGvdDrU2uzHCcEd1NB/xF1xRC8Zknpgb+2zf8wBTy9vXe0UWXZk3avmAWXZ8ZOuLN+UHRjZtNxxeILkiCiovugq1H9MAFO7wqd1Wb+wZmF3RRzkvXAgguuqbcjFpr/YWnShNdn5g818U/7rY02uLCtBjN98ZnW7kcVtVI62DJYBLdqO8fRXSHLyu/6MpCJPRA89LMrYG/u8qZhonus1M3ex2LUpmxqdHah5uenF40Sm0aPaP0cFG/R07Y92irykbwRVFx3t/UB1tYR5T9zN96OF9IhrJzhCGnn+N+JlokSIs8+UMmtZdmbg3N02rqy/JdWdHlKQ5donvzM27RpRyyD71rLxpj23bD/hPex8QkujJEzXdU1jQTeGvv6KXUKeSpbd95xs8X5cHt9XnBKmtxFsdFAaILkqDioks/IN94s2pCmQseG71Wa+1OacNFd74oQECptr789IzA320iV2uiu3h7uOj+ogTRtSVdf2WOu6qR1sHUSSbRvegxRR1FdPnCnrV7g6Ibd8ROhi6Q6FI+TJ99hcXo9ppSHdGdtuGgtQ83dp9WJLqm0bOH3i1O9xaVsO8xLDZWlsOOg3xPW1hHlP0s3FYI8TFVFTMhp5/jfiZaJPjbwVnRHWMQ3VQ6o+/KlQj2+TzUVhhEl/L1mggTXbqG/imG6FJffDCt25Azd1/r5SerpplA3205FL/83RdLF11ZTti3UmZcILr1zweVUgOUUmuUUleUUrMsr7tXKdWglDqvlFqtlPqO4TX/opR6TSl1TCl1Sik1Qin1bzH6VDXRTY9YXbH3iAuNUnYas05r7U5SzkWX39AeHr5Kb8+t4v2qmG6zia4t0bfPw4Dr4u/CtjI7lfYrm/rT1xbHvpna6sUPmB1etpiPsD5oEF0fWTat8re1oQ7RfWOeucZ8GHI1PomuqZSnDTmKJNszk6KneovDlPV20f1ct2lFi9FMo2d/qoLohpVBlcVT4iDf0zRS7bNvKRpf7JEVqbc8KgdqXTz9TO3MBfeotiSfnzqX3cQmumGfyfR6Co/iYUz/9cpC6z7CRJcWYrmqI7q2962OZsrEQ98PtTae5dDlAEkqnU1rGRXK1nKnRXRnbGz03hddg9r0nKkPNEUvMhIViG79c4dSardSaphSarMyi+49SqlmpVRXpVQbpVR/pdQlpdTnxesmKaX2KKXuVkq1VUqtVUqtUkr9fcQ+VVR0eSqZh4dXZyV0FH7+elbeSHRtQpZKB0WXxylyZEiDLXTBJrojPBafuC7ecbfzSckkCwFQ8yk2ccxSzrPfrHDR5SvKSXT5KIRP5oUoosvzSkrRjTtyJvPokujK0RTXvihu09Z6TKxOjO7EtQesfbjhialFoiuPodbB/NXUtkVYCa91uOiG5RKVBVfi4HtORdnPsp2FWQPXiCdHTj9To3zNvlDsNM2cmEoLx73WUNYFftyjii4fSKD41D/EFF3f8uEm0f2KmLnzjbOd01Ac3/7ZblO9rqGcXjnR/d5L842fLUoxH5pVirMoLg4Q3frnf7D/P1qZRXezUupt8bcFSqkJ7L9vVNkT5Vb2t2tUVpDvjtinioruhUuF6UHXRS0paJTy8bHZGu6u+upcdClO8f3tii/4fBvbYitbjXKfVdZxb6hhN+Owi61NdH1Wt9uOa98ZW0K3HcJWlJPo8ty6PpkXoogufz8paXFjIWWBEQpRMQmKjRuecItu9wkbQvtRDkzVsqhd37VYdE2L0R4cUiy6H45YySvsewxbed509qLXcS+lD7775q+VC5Z8eM3wwJRK+4c+EFRBkOTRVmAmzrWGzoNTMUT3Q49O0Nd3naKfnlTIGkOjma4y4K7vhMIzwth1pFh05UI53/CDmY749rMXwhdPEr1yhWa+bxHdz3Xzz5xA6wQqHZtLQHRbFybRvUplT4C24u9/UEpdUEr9Y+6/uyiljiql/k68boVS6s2I/aio6J69UPr0YCUhees6Liu6x8/4ie70jdnp2w+0H1+0T76NbXGRLXXOMI9V1nFvqGE347DFglSRTTaf1e2ukfIwBi8qyCXdgGdsLNwwXAtaiCiiy1ewS9GNu7pdyguN6JqmnG3Ild6ydRtfHdE1rcSn9ukuU4pyA5viIX9vEN2o14ew7zGsFLB8+IqD7zkVZT/yocgHUwhMKu2Xp5pDISU87vWZSZsifybT69fsyf6WeNGaH73sJ7pbD53S5y5eDmT0uKvfAp1KF4rI+PaD2gOO7TiyWmYqnSm6frfpOdNrX6749icy6732oXXhO6FjINsNT0z13hfPyVsNILqtC5Po3qayJ8AHxd9vzf392tx/D1NKzTPs822l1KKI/aio6J48V/qoSSX58SuLApJgK6iQSgczE0zNxSmacpfybd6cv8P4vjbR9ZlqjHtDDbsZu1Jbaa31DweYL6rnLoaLriv2OaxKEQ8XoJhFXl3NdbMkqGSwT+NiLUVXlsv0Pa/5dHQqXRBdUyiEDVlaV7Yu4/xvlKXAs2DI9snHJxeJrimjBy/UEvf64PNdupALT+Pge05F2Y8Mc9E6W+K3y7j11tmTl2eXR3QppOShoQXRpSpcpV5r1u5t0j0nbwqM+PuKLl0j+ELHewZkH7xdwur6TlwjwVpnf5tPT9qodxw+XbStXEz8ladnOPdF8HLmskURTRrZvru/+Zp8fVd/0aVjevsLc723KQWIbuvCJLo/VtkT4F/F3z+T+/tNuf+eqpTKGPbZV2UXsbn4Z5U9wahdryoounKEtNb40cvZiyVN+9pK5MobNl2wPvSoW3RtBRFusYiuTzqhuDfUsJtxWPaCuywX1bA0Tlrbsy6k0uEZH/ioJ8k4z35w54vzQt8/iugOWmgX3bgVqJaItEJUGMQUCmFDJqmXrfPYdaH9KAejVthF9+OdJxdVtDJ9vw8MTl50Zc7sOPieU1H2wxcuts3JBz83TfSfVZy9w/V6G/S98Ny05RJdmV85lc7Kqo3fvFUo5nP8THZhIZdkGqR4YHA80XXF9vI1BabRclnZ0jf3rCvsJ0qMLBX+sQ0+XN91ive+eKqyagDRbV0kJbqdc/sKtEqJrhQc35Wu1YIuFE/lFvLIEWjeuOhSWVpTXKHPjcYmukMSFN2wEATbNNnJc+ElTl1p28LS2VD84VfZ9CAvwfydPuEjEVFEdyAbZS2X6MrSnyS6fPQ4bF9heXQ75lLkVZoRy+wLlK7rNKlIdBduK87owSUmynHk+HyXLuQiozj4nlNR9rNh/4l8fm8qZEP/RotmJTIfc9j1x6cfhO0B13c/1Ey/wR8OsKcp4/JO8NkCWl/hirV1fSeuxWg8pdhjubLIrnbTk36iy8N+5GhslMIRT07Iiu49AxYaryGf6uIvus9OLWRwqAYQ3dZFUqELVR3RPdAUFByfxUfVhC7iVFVKrsTmjYvu+NyT+Uc7TiraJ9/Glh5IpiGj5rN4xHXBdcXZhl2sw0IQbAsfms54iK6jEMfykJyWNKLCE6vzUqs+iygoEb5P4yPIUnTjllqVhQTGrc6Krmlk07YoMCyPbodR1RHdoY40dR95bGL+xklt/pbiWFmqSBj1OHJ8vksX28WUdBx8z6ko+9l88GT+QSA9YnWgsIXtYYZGS2V4SxTRlXH0BJXajfKZTK+PKrok77zqGD+3KDUkFbfw7Qc1V+gCF12ZM9fUfMvmUtjPJx6fHHigTqWj5dPtPn6DTqULi/nkgrlPPj7Ze1+UweH7L8333qYUILqtC9ditNvF3x9U2cVo/5D77y5KqSOGfS5XNbYYTSbbfm5qQ0XeJy4/6JeVt56TszlIbaVqU+mg6NKT+XWd4omurbzl4EXhNybXBffCJXv4QdjFOmzVry1n47GQfKVaFz/w8LZ+n7tKkSn9DV/c5TPlF0V0eSYEmTHAthArDFlIgETXNPVoi5X+eGe36D6SG/2rNLY45VQ6o6/tUCy6cxqKU9fdP2hprOPI8fkuXWxpPBn7vaP0wWff/LVbGk/mY5gfHr4qkKLRJroUZylT0Pnm4dU6OOtxB5vGlqm0fD6TKeezaUGoS3QpZOK25wuiS/ljU+lMftT7/kFLrftwfSeu2F5TNTRX8138RcVvru86xRifH7ZOguiWE11KPyf7+4kIottzcmFhWzWA6LYuXOnF3hJ/m6fM6cVuYX/7kKrB9GJyxWq1ypT6QnkIqaqUTCLPGxddSqT+8c7FFxS+jW2Eto0lGfpd/ReEXuxcF1xXgviwi3VYrO0dlnKTh0PKgWpdHA/J28YDbtE1pb9ZyVam+4yEtH/PX3R5blvK/UlQto2oIjNrczB/Zmb1fq21OWWb7WHlY50mOfvdbmR4QZbm5mY9eNFOfUffeUYB9cGWeSKVzsascxlJpc1x6r8a6Bbd0+cv6cXbjzp/Cz7fpQtZrS4OvudUlP1sO3Qqn5Xiz0NXBSq4PWYRXZrSl6OPUUSX1iuk0sGZN9tDuQtTzmfTw+bdjgprNErNQ5N6sXOLRr3vGxhTdB2xvVFF1zcmlmZDbnhiamAtALWnPHNhdx23XqfShYwz+0R/P2YYgLHRY+LG0O+inEB065//Wyn1g1xbLv4zswAAIABJREFUopRaz/77/8u95kcqK6yPK6VuVkr1U9mCETeKfU1S2eITd6nsCPAaVYMFI7YeOhX4AdbaiC6VUCQB9xVdmoIyTRHxbWwjtK6qP70muytcuS64pxyyGnaxdm2rtT1Gt/FkeDUdeSHmLazuvOmGx1Mw+aT2kaLryknLF5+sFKI71VIVLIwZIn8mia6p2pwthOS6jm7R/dvwcNGV8XxxsOUSTqWzWUik6Jreh0pv215H0uUqKOIjIC5M2Q2i4tMHn33z1+44fFr/MZf94E/vrtQXmeg+Oso8ak+j6LIEeRTR5WE0vJy0bT2BC9PsAxV44M0lV7TwrC3LBkD5Y1PpbFqxVDqjfxVTdH/zlj3kwXW9SqUz+upHJwT+2zdUgEKfbuw+LXZObq0LM1SUtULOmJlmGm3weN9qANGtf96nDAvBcu1m9rp7lVJbVDZcYY1ylwA+rrIlgEcqpf49Rp8qKrqbDwanB2tNdNvmRimfn5bt1/lLfqLLp6AkfBtbjFxYeUsXru2aztrjZcNuxidCFpXRdJlsPmUjXSMkYaELfQyrglfvKYjulz1S+0jRpYu7qfFUTTJ+2JYeKKzYhsyfOX5NVnRNU/i2B46PhojuX4aFVx6UU8pxsJW5TaWzeaV9RJfiK22v8+lj2Pkc9vni5KuN0wefffPX7j56JlC4gRfdsYkujXTK0dcoosvLMvNy0rYqji4+JETQ1u5yiC4tauRhFD2Z6NLDgKsyouu9XYvRXDNQqXRGvzRzq779hbn5BwvfEVR60PzCU9ONi8h8z0P5etnf6wxrR0zw2N5qFXSC6IIkqKjo8lQ5qXRBKGuF23OjDC9Mz/aLj57IxkV3eG7l+WcMsVl8G1seS1vcm8/FzrUdpeGJul0qHb6ozCa6e0MqUGldHKvN27p9xSViOTRa9V22KnjNnsJ5FVbuctOBk0XvSdN1pkYxwdnvPCi6lG1DtrBwkynrzaJryj4wce0B4z4+8tjE0O8wTLjl1HYcXO///naZwPSy7X1+UQOiyzN3VOJYRNk3f+2eY2fypXh/9/bywCyTTXRJAKWURhHdP7KyzD3ZrJLMGRv2mfjiubDmigs1/e558Qp64PrlG/FE13UvChPdobnCPpnV9kXJJmgB2leenhG7+Iz8XFoXZxDx7Q+fpfMpvFMOILogCSoqunzkLZXO6D41Jrrf7pPNh0gxaZccosvTYFGs1We7uUXXlke3UqJ71LEwLOym45JkrbV+IrPeuN3uo+6UcQeazulPOjIGyMwGEl7ukuDTzmErnr/Yo3jVNB8Zkq0fS2u0VKQ+G2/JgxmWmm3i2uBI8ISc6Jpifn/6mrmk8bUdwkXXlOGA84Wnphf14xvPzi4SehdhffAR3Z+9XhyywV/n81sI60fY74jnYvYVjDh98Nk3f+2+42f134ZnF279dvAyL9GlAgIyv2tc0e1Vgui6wr9kc4kunUffY7/7p9gDKi1u+0VM0e09xb5eJEx0qYKlK82kCVro2qbnzECp8ajnoXy9zCDi258buxdmeH5iue6UG4guSIKKiu5yUfq01kSXbgwvzczGAvIVzrLxxPe08twkWXwbWwlgGUsX5WLn2u7QSfvCsLCbjkuStda6yziz6O484q5sRtOwthYmurzcJcFFN2zFs+k9TTJGjSfIlzl+bVkXwjJWyETxJLrNzc1Fo8S2alHXdAifDn5trvl8I1znnS9hfTA9REhMscn8dWH98h01dDGfVdd7f7vaEd2DJ87lYzB/PWhZIBOMLYUcCaCMg/XJ4kJw0eUSKOU57DO5yqjL5hJdOo9+0K8gujx+vtOYdTqVzuifv24XtLDz1EZYjO6IZXu01lpPchQOMkH9/1qvWbFTFcrPpXVxaNi1HfxElz/4/sxxHMsJRBckQUVFV1aEqjXRpdGK/rlFL64bKE98T0/jpkThfJvXqyy6jSfs8bJhN52w7Amdx2ZvLFSRiNr2kBK+975pnqamtmaPW3RpipIvSuGi61rxbLvpyjK1vPEKTrKqF2XbkC2saIYU5Ilr9+f/7ejpYB9tKZd84x5d2LJ9+N5gtQ4/j+QDkamgx09KFF3XzIvvZ+KZMD74yHjvzx/lWPj0Q15zGk+e04/kYsp/NXBpILe3TXS7T8iGFckUgHFFl6+l+E6f4kVkrs900JEzWzYusRIapeZxvOcuXtb3D1qqX5jekL8eueJjXe/dw5HhICzrwr5cuBYtTvU9f6gIxjeenR27nLj8XKa/XdPBT7x5KJNrZLycQHRBElRUdBdsDVaE+ly3ac5Rx1I4fOq8fmvhTq+8rgTFtL08e1v+b7aLG5/OoxWzptKPfJtXLSNstiTsPhc713auhWFhN52w74WPoPDttjSecm5nKw5ATeaqdfWb4KLrWvEsJZILgK0/XHRlVS/KtiFbWHyzFGQuuk1ngtX4bKJ79SOli+7XLCvofW+wWoefRx1GBStJUXltjimtmu2mbYIv0Ip7LPgoe5KiK9cFHDl1Pl+N65dvLAlUa7SlF6MCApQXnJ/nvvDFaDx+9XZDtgTXZwobDeXNJbq8zK2JtizdoS1Tieu9n5xgF10Z88qvVfzBfsbGbDYV3xkBurbc9vyc2FUW5ecy/e1qzxFmvs3nuvkVvSgViC5IgoqKrkyUn0pHK3UYBRp5iFLhhW78r8wJF11+UaFk36YV//z1fL8cU9yo78XOtZ1rYVjYTcc1Gqy11h3ZzZdv13DwpHM7W7lXajJXravfBBddVyqdYxbRXSlW3PPWh432LtgaFN33VpjL3x4JGQ0ftSIoyDwkQsY02m7sH3xkvJc8uLDFW/reYLUOP49kvtRu44Oi65o1ke/xgfZmAfWNA3Vxa++C9F9leZ9Sj4VPP85eCH6WY6cv5B8qU+lMoBKdTXQpfl7OtsQVXT7z1taSP9uGa+GpbK5rdVjaK74fW9iV673lecmxia4cDOCzAmELQbUOpkyzVRj0wfWbSaWzaf6i7se3ulupQHRBElRUdG1CUQni7J9K8fLYRp8bFpWJvfmZmc5+xBHd94WMDrj651oYFnbTCUsTRiN1MgdqWMGH3w52i+6KkBLApuPPsy64vm9b6MIKETvOG6U1SqUzev7W4OKuEcvMohuWS5jS0dENlt8UpfjZRPcD7UsXXVu8ZZTfDJ/ipjaWjVjTQipqXcetD2xvy1xBfZDHw1TIxFXB0Pcz8dclGaMrY9ibzl7Mhy7IZhNdCheRsc9xRZcXjPiupSKiDZskmtr3HKIry9xK+H5sC2ld791FnJccWVKXmgzv4gM5PlXNeCaJYRUU3T84UqfZ9uOTprEcQHRBElRUdLXW+So/cW6qUYizf4pZ5IvGfG5YfPWsqx8DZpsT3svV77yFjS65+rfrSHzR3d/kThNGN9/7RFWrsDy4tnKv1GSuWlu/uYz4iq4MC+DvaesPL4U6T2QxsN2cwo4dbWdKR8c/YyodzGHKucpTdF03XFu8ZZTfzB8MosvzZcs8u1QUgCq+PT7WvKgxlc7oK1eaixaEmsJ/Tp0vXXS5FMqHy8YT53TfGVv0nmPujCI+fQjrh3ztyXMXix4WqNlEl+JVZViRLY+3CZvoUvVI389kk0RTc4kujVLb0l7x/cQZ0e00Zp31vXeILAbU5MzN/K0F0b142V5+neAL7IZbHpqveAiz6Xvgf/MtAcy3MQ3aVAKILkiCuhTd3lM2h2YD0LqQ5ounAfO5YVGZ2FsM5Wf56/tbKju5RDds2snVP9fCsLCbTlg+XCq6IMV17d4ma4yc1vYV9tRcCd+11vr7uRstF0ApurYFbSbR/d5L84tyqNra3Iag6Nri6vaFHDvazhYHx/f14swtxte8r52fPNhyN8v3ifubpIpUd/dfoB8evkqv3H1cb2ksVEA0jfgu3HZEX9Nhgu41eZM1H3MqnR1VkvG33Q1TzE1nzQ8wUT5TL5Edgp/Dtz2fHfk2pQ/0PZ6+/ZCvPXfxsn50VLQRXQp1kPmJXeeChIsuZaHRWuuF245E+kw2STQ1V+gCjVLb0l7x/djWF7je23YstS5O10VNCjU/Nq5rIMHL7dpmh3xGhk3fg+k3F2U/iNEF9UzFRffBBEQ3lfarDkMhBHzkw+eGRdWzTPHG/PW2EqYu0Q1bMevq39ZD9oVhYTedsHy4NNIpY267jFuvP9B+vDWV2j0DFpYkAiS6fDGgzM/83oo9xm1NMbpZ0T0a2qdUOqNnbz4U2J8tJVDYQ8IQVvrTBN8XH02zvcbVHnh7ubUfcb8DDpWK5SWHudzwUrLUeLGL7g7RTaUzxocQiW8KKxfytdd2mKg3HThZ9G9R9lGOfly6fCW/GE22jhY5o9fLDCdxR3T5dcsWD23DJomm5hJdGqW2pb3i+7ENarje+5H3zDmJtS4uXU9NLnTmWYXOXHCXUNc6GI7Bw5nk9x8GZdfgpZrlfmxhc5y414BSgOiCJKhb0fV5H0qv8vaiXc79yP3xNDGuflDFNdv7mlpYsm9X/7Y02heGhd10XGEPWuv8dKpJZFzH+67+C0Lf24Xpoi5Fd+Rys+iasi7c+eK8orR3tjZLiK6tmlHYFDcv/WmC78uUgi9KtanfVVh0KYtGu5EF0eVxmaZQFb6QLkx0+XSwrW9HTp33OhY2bPJGeV19j4vvd+K7j093maKbm5sDi9F4s4kujQD/SoQVxRVdPhNlK4tuwyaJpuYSXT5KbYLv50/vrjS+5rPdplrfm5+/Ej5DwZuMBeYPZWEpBrXWuuu4QjiGbWGrTwjEHbkFgs9OtYuubTaRE/caUAoQXZAEFRddU0xfJYhz86bKMO8sjia6JG+muCZ5kzLhEt2wkehPdZli3XazIwNC2E0nLNTj4eHZ2MsH3o4mujLlUdTviRbD8Iu6FF1K4C4xCdF3X5xXVBXL1mZuagzsj9LKyRY2Gu7K0qF18LsxlSZ1FTKR7fdD7AtR4n4HHIrR5iNiPO+oKaaTp0YLE905DYdC+3boZGmia4vdpnRXvsfF9zux0XgymHOWHjZpNFM2W1ypLawoSmU0Lro83eJly7lnwyaJpuYSXZ7lxQTfj61ozPVd7aL78PBV1vduOFhcNjyVLk4jyBdbh6UY1DqYolFmYqEWVmVR60ImDH6tmLwuWH3RNjPEiXsNKAWILkiCiouuKWavnExce8A6AsLlyAQ98Q9dsjv/N58bVthnCft3l+h+vLN7IUGbnvak/xv22xeGhd10tjnCHrTW+i/DsqJrirl2fVZKExRHBLQuXNR5EvtVIpvHcIvoHjaI7h195+lFlrhD2WZsDIouCatsYaLrytKhdfC7MZ2zNtkwtUqP6NL0OC9ecKDJv0hAmOjO3hwuur5FCWycOGcW3agjuqWmfJMZCijziW3BXsfRa/W5i5d157HrArmYbWFFtgdAE1x05bS3aVbGhk0STc21GI1neTHB92MrGvNpx6DAn4faRXez5TPIDCB8rUBYikGtgyEmtpzcPrG+lNtYzhjy9IFh9z6tIbqg9VBx0eUX0Er8oOLeZLTW+jNPZEWXi5LPvsL2z//dtIrWJbqf6mKv9KW1u7rVun32KmNhx8kV36t1IQ2SaYTedSx6TCxRdHMXdT6lL0WXas9L5IhZKp3RbfvOK1pgIzMFUJu+8WBgfySssoWFfbyWW7z4VUOWDq2LF1JKfCuBhR3PuN8BhxY88dFF03G2tTDRnbmpMbRv+5v8ihLYsC1m+3afOUXHqd3INXryugPG/XyYxR67WruRq3XT2eIRP/mAQLmsu1rKbXccvTafoop/Ph5WtOlAQdLGr9lf9J42+ICEFF06f32OLX//Ur4jnuXFBN/Hpy3XzE8+Ptn6vrZwB9dnkBLKR3T5KLgNPvJeiuh+u092saQcteWzKabriCTuNaAUILogCSouug/VsOhe3zX7xM9jPG374fG4Yfvn/25aXEAhE7bmWnn7FUf54LV744tuWIUz+h5NDy7UTLGqVJ407ndEKbH4Rd1bdA0jf21fmFsUB2o7PtM2BEWX0srJFhb2wWvcm+D74ovuCFMlsE84buI24n4HHMqi0XlsQXR9Y2ZT6XDRpWpTrr75FiWwYVvM1iY34u67r2s7+IluKp3RfxlWPIIoq4hRnlZbZopOY9YF0vsRf83NttBo/nUdJ+lUOqPHrd4X/oXm4GspZEq3NwznvY2NB054HxPXfqjwyK8HLTP+u9yPaT3ExzvbfyOuXLMb9ps/g7wu83zcD1nE+djpC/msEOkR2QeS3w5eZi0nfvZCuOhSPmyeHUPrwsLdVNpPdKkyaNRrQClAdEEStGrRpSf+USsKn9+2H564PGz//N9NMVefDxHdh4baRxu+7BBdV5WxsOMUVuGMRnxM3ydvMq8u5cN0NVdVIUr15BLdoRbRNU1xt+07T8/f4ie6U9YHRdeW9smV1k1rrQfMti9elO9tyqNrWhCUlOhS+V6ecN83C0IqnQl98Jm+8WBo33xztdqwlYamkt6++7qmg19Z5lTanHN7rxBdSl9lexjoNGZdYDEoQTMSD+bis6/rlBXdsav8RZfH3r8uMqgMNITs2Fi/r1yiW5BCE6Z9yfArOg6m5grxsX0GCRdd0wgxr3p39PSF/APJ74esCBRZ4c1UIEVCIQpywRlfD+Ejuj96eaHz81UCiC5IglYtuvSaMeyGYNsPJb6Xrwnrk+kJPUx0Xf12VVVzVRkLez9KrWSDRnxs0/zU5CIP28Ia3lyLZkyjF0Wiu8QsuqbY0bZ95+l5BtGlmxBvfMraFdcbFt/cL5el45vPzTH+O9/X05M2Fv27KUtAUqJLZWZ5CVXfvLapdLjoTl0fLrq+KaxsmGK3U+lCGVTffX3oUX/R/VKP4oWIMkaXVvXb4to7jVkXEFKCrrF/zI1SfiwneGMiiC6P75WpAgcZFmHa4OW5S/mOeDiGCdO+lu0MXv8+2tEuujaBdn0GCRdd0wgxv06NWbUv8D2NW20W3VMeoksjsTJcgouuT4yuTP1YDSC6IAkqL7pDa1N0+XTrEI+sC3yFcNj++b+b8iuWIrquHLyuaj9h7+dayKZ1oVCASQh5k6PRHUVO0EnrDuRjo6m5SrDS6AXP7SmzENhEV04Np9JZ0eWlO+lYm6pRTVxbEN1fimT8vIXFN/edsUWn0oUYUEnYd89HhqglJbr0+vYs64JvpbJUOlx0p3iILl/Zv3j70XyeYtls0mAKaUmlC4uafI/P1WUW3RO5FFVPWeLabaJL4UQ0fU5T9r08RvUIHhIhRZfS4/mcL+USXRmOITHta+mOo4HXuGKo7x9kjv11fQYJj9F90JDthGeHGbNqX359w0NDV+rManMpbJ80Zbf0mqVTafeiwb8aQmUkd4tFhtUAoguSoOKiaxoBLCdxL6T8hsoF0bUvynEYtn/+7ysN4QSf6xZfdF0L2Vzbhb2fayGb1oWpTVt5Ump/FCMbcrr/2OkLxiwCNkh0ZTllHitsE105NZxKZ7MuyBRWWhdiAnnjK9tlMn7ewuKb+0xr0Kl0Rt/+wlzjv8v9ySwOZy4Ui2SbnjOt34WNOOeNax+EScRtLUx0ZZokU9/4qngqv2zaVzdDVTWt7VkiKOOJ7/HhadN8mlyYuvPI6cC/k5jbFnDaRJcEijIJ8AIdYWE1BD+/35y/I/BvpgcJGzL1X1izIcMxJKZ9LRGi6wotsWVz0Lq48qKtr7zwjLzuyWMxeuXe/Hf38PBVevwas+juO35WL9p2xLlOgzLvyBATKa5ho8Mym0Y1gOiCJEgk64JPmUNf4l5IZ7DV3TxVkmtfNMUetn/+79d1Ks6LW4roVmo710I2rbX+7eDs1CYtqLA1ecGXAtl05qIxL6yNW3tnRy/kNB0/r95dssu4rWnR0h195+lZm4tFl1Z58zZhja/ousM+npvakH9vE2HfxWnDiOnszYeMAhz3HPDFtI2tqICp8YVWPB0StYlrw0WXLxaiTAWm97ItZDKN9KfS0UMXfNOLUZMleWW5XApzembSJuP2UnQptp1S/tEoHt9GLiyzwWdq5OxOlMVoMqworNmQ4RgS076k6LpG3G2FKFyfQcJDYExZF7gwj165Nx8e0m7kaj3BIro0kOGqbHZzLvOOfCD54YCguIZd0+/qB9EFrYNECkZEWQ0cRtwLKZcdXvfctS+Kewrbf1gfXBV7XPv1EYq4x2nNHvdFsVARy7wgi5qMVZOjjk1nLxorfdn4mmWajosuL/jBkVPDqXS2aIOcutZaG8uuZlZnRTes2lPYQr5eU7Ipoe580U905Xdx0pD3leT63jeLK5HZiHPeuPZBREl/dh2Lm6SHGN6kAFBuWw6fWqZMBab3sk1P27I2fKD9+KKbv+v4fKB9NNH9XLdgCeht4ryi1FK9JptFt/PYoOhSRhc+2yKPha00t4TOf1PBGpPo2tJg8bhVn2ZDhmNIKGMOb1J0Xd/PT18zlxbWOhiSENZXea3g8POUpxP7wzsr9MS1ZtGldvWj9lLwtCBZPjhFFV1ZzKcaQHRBElRcdE0FBgYv8q/YE0bcCymfvu5YRdG1lR/16bdtEY3P5w3bzpWxQWudr7pkGvnkTYquDF2hOETffn81N033mhiZ8hFd2+p8+f5aa6N00QOZaeSRN5lpQtIzJy5UeUsi97d6T/C7MBU4oLhgk+g+9O5K/fPXFxfNnMQ5b2x95Z8lSoli3r5qKH4iYxfv6l8sunxK+FguU4Fp/7YcrKYHoDi/q6tKFF1ZRYxCo+jBSDYpuhcuZV9Psy1U1pZvM1DIkA1eRlhiyrpgGynmZXHjHletdSCe1YSpjLcU3fe3s7/vf7+6yPreJrG39ZUyO5gGb7joykpoppkL32ND6zTkIl6ZRSFMdL//EkQXtA4qLro8HQ61KKUpw4h7seALknxF97mpDUU3dZ8+3dJrVn4avH2IKLr2aytdatvutbnb9dd7z/Zape7K2KC11r/KLVaxpdiiJkVXhq6ctIiuadGe1oUCGTIejSe4t4mujIFMpQuyIY+Z6bNQeqawfKm2OEKCYi5N0mZ6b/nQYcpqQLGXvxpYLLr8ZkqEPWD5Utj3fuPfozRT8ROZdsl0zPioIRViMO3fFodpOi/i/B5dImVqn+0WLFW7pTFYmIAeTHhRCN6k6NKoKs220AJBvs0gz2stL2YgMYmuKd+z1sG41bjHVevCAIkp/7DW5hRxUnRd7/ujlxca9+vazsTHHKnceJqykcv3BPY1yRCLLpspL7nWhXUaQ8R1779eiSa6slx3NYDogiSouOjKVE6ptH06Kg5xL6Q8l6rvYrTnpjYUxZdG6ZNPf6kdNpSUjCq69Dcqo+tqy0NEl2JUTVP8vEnRfVCM6NMCibDtCFs8GhddecEnZAxkKp3RX3l6RtH7276X0Sv3en9nLihd1D0DzDdXuS8puqY8tTtyonufQ3R5CVhbmewoN7mLLERBFtPwPa95o1KmvMmRL5PoLthaSPVGsmfa/71vmuMwfdOThR2f95UourLULMXcPp9bvChb57Hr8tlPUulCTC+dA48YRPftRebfhoSXEZaYRJeX5OaYRlrjnHd84ZaJYyGiGzbL8MMB5odOraOJLmW4oGsFhxfPGLZ0d2BfPqI7yVKRj7L2yLUJlPqPWpjofvfFeaGfr9xAdEESVFx0bRecHYdP66FLdnuVPHQR90LKq2P5iu7z0xqK4hGj9Mmnv9RuMVTRMl3cXZ+X/hZWiS2VzuhlO48WvR/Bp3rDhEmObvIRqFS6kBDd97uyxaNx0bXdzE1CYyoKYOvP6JV7Swo1IWgBFi86wpH7kpk6TN87lR2mkBJT8y1t7XuT46VgZ2xqdH4Gn9ZhVPFD04hlwZEvk+hSmeD3sbR0pv3bRnRlbGzc75f+bfya/V4jmTc8ERRdWWqW6OMpuvRbovAVWlTLt+knigrYoFh6U35Zk+g+P80suq5801HOO7741YTp4Y+Lrimzi2y2QjVR+kpFh0yi28AeZIYuiS66fEaGc0MuPaMslCNFNyyTzh19IbqgdVBx0dW6kPTf1J6aWJwgPwpxL6QL2QWZL3Ry7ev5aQ2BUa2wG6CpL6XcBHxKrZr64ZO3V077cX7BcsiGFYCQossT0afShRAF3++KCmTIcBcf0TUtIrvpSX/RHbVir3fqLFeKsa7jstXhbHGBcl9SdE3TtJSCjKatTY2XRo77O+HwWOXZmw8F/k0+TPlkJHhs9NqicrdDxciXaTHatA0H8+/h+ny2Ed2wxYW+x4f+bVbuWITt4zNCdGWpWYLyLsv2+Nj1AdGlMCDK8UwhWHG+24eHZ2PpHzDkrY0yorswguhK8ecUMhSsMf67KZyHX8PkddrUTAvItI4mup/qkl0Ux6trEjw0RaZo84nRleFBxPVds6LLH2S1LlQtpBa2dkDO9FUDiC5IgqqI7rf72EXXdbHzIc4NSuvgFBtP0u3a1/PTGooyH0Tpk09/XfuOuhiN/uaTzmzRtiPWY8VjuR4f6y7p+3shujKG1DXVbILi0aTM/sFDdOVin1S6EIPo872MXL7HmsIryrlGDwe2ld5yPzJe2vS97z2ezR8rHyR4K7fo2vattdYvz94W+PePOJL1U+swam1RiWgpBKYFfDQadk2Hwsp00/5toitjY+N8t3ymaran6Mpr3bp9Tcb3eHGmn+hSfPLPX1+sU+nCzJTcTubvNfEXVp5WYozRtRSj4DNlYU2KP4cvfjVhWqDJRdcnQ41ttDjKb+TTOdEduXxP0b/xEV1ZdCMs60IqHUxvaHrP91YE3/Mnry0ObB9WBKgtCx2y5fguNxBdkARVEd3v9CmOxfO52IVhq3AUdnHSOjjFxsMnXPvqM60hMJV92/N+la54X0x/t1W5Kvq8J6N9Xvqbj+gu2OonujQ6aWuykpGsKBZVdGmkUMbhctG1ZfEwCc2hk8XpqGz9GbFsjzG1V9RzjcI9bLk7Z2xsDOwT2CAuAAAgAElEQVRHpiE7dLJYdPflRJemeE1taJlFl6cvkqL7ypyg6NIiHVd7dNSaItGV5WZNi4YoBdlHHpvo/Hw20W04WLro8pHnOQ3xRFdW4CKoZLRsXcYFRZcyTvw0JziPj11v7McNT0zNn/c2qIKlKVbeJLrXdJiQz/rAmW9Yk2Fr13e1X/v54lcTpt8lF12fkKP2BomWxWTCfiM0ujpiWbHo8tCUQeIY+oiubcTZFi7xUyG6Gw/YRVeuNbEtfCs3EF2QBFUR3baGRSeFi92U2PulBRRRblAEH3ngF2zXvvpMawhMZdtGQV19Mf29jSHNkqnvByOKPf3ts92mho6wzd962HqseBoaOdUsmxTdn70evPievxRNdG0LL/giN1sWDyk03+lTGLXg4Ry2/gxbuts4RRr1XKNYVFc1Jte+TA84R3KLFZ2iyyrGhWUI8IGmt1Pp4vhAHr+bSmfyU7qu9tjotUUPTm/ODwqBKd0VZWb4GCvGYtq/TXTlIrA43y3/t7kNh6194E2KrqzARfT3FF06B2jKuus4s+im0nZhJCg7yp8MC4VNoptKZ3RPQ+YFWV7b1eja39zcnL8uEHzxqwnTiO7i7QXRNRVZkY0XCiKi/kaonLkMI5i+8WAg57g8r20FI2QzjcbTQ+QYkekhiuhyCb+1d/F6kEoB0QVJUBXRlUHvvH26S3zRpVGIqBcnrYPZIHi+Ude++kxrCExly9rqYfuw/Zspn6ip77bSpbZt+A02rHTwvC1+ots9RHRljJ+MG6MLt+93RcU1pFj5iK5c7MNFd/vh07rdyNX5ODZTf4Yu3W1c9JJKZ4xxnjYo97Atr6vp/U+wcBo5c3HTk9Pzx9GUvi/ffya6YTlffeDFP2RKN5l7lATA1ToaRPdVIcwmWaXqfB/t6BbdVNq8yJKvhvdtru+Lfjv8b3Kkmn6HHFkul5BhINS6jFsfyEtOo7S0CIlKHpu2taXpIvJ5ayOIrqm4xOzN9hFR2ejaf9/ApfpjnSblZym0LqwL4AuFOaYH0IVs4MFnJqajQaKj/kZMC8NM8cHyQdBXdPeyY0JQ0RWZu/fnr/uHLvD48K/2nGl9XbmB6IIkqIroyjQmvH2qBNGVxQh8L05aB6eo+Opb175emN6gT7GRAlumAldfTH+X0762vttKl9q2ob9d33VqaOYFmn41wUWXUmXZmhRdmcTcdYxM2EZMuOjacoVKoeGiKzH1Z+iS3dZMF6ZUbzZcqZts70+lbbUOPuAs2XE0MPols1rwxkfBwxaH+cBFV4aLSBnyWQDZcfRa3UWIrqzWZAr38D2fbJ9NLgLzaZIv9ZiR/7f5OdHlMzO2B0KOrMBF2K4HUnTpHKHfWPcJdtH9a4jo0u/pz0OLX2cTXdNxkeW1XY2u/fTfXMZJ2jqPtYiu4fc3dX0h5Z3PTEwbg+C5Zj5MUFgYf6g0xfUPmB0cpR/vKbqURpBDs3MyhvcXIkzMlXWBXxshuqDeqYroysTUvH3y8cmx91uK6PILMse1rxemNwSmzGy5Z119Mf3dtuBJYitdatuG/nZ91ymhcbqzNttFl7+Oih/YmhRdOZLoOkYmqNSnjIHjN3yZeoyQQuMS3W8aMoO8s3iXMeNBKp0x3khtkCA+MLh4RbvtePCRnP1NhQeczaLc8O8costHXa9+dEKs3wmHj1LKUBcZW0vVm1zNJLqy/ez14gV8vueT7bPxRP6+TUJp7/ix2HPsjO4ybr1uOHhSd58QLrrLRblcQo5qU+sybn1ghuRAU1Z07xmQFV3KYGPa1paPlqDzyCTEUUR3xqZG62tlo2s//TevgkbT8F1y4RgSW9rKo7m4ZdtMTFj/r37E/jsxYfp30/VcLjD0FV1TNhcqYCPTj8n1EK48uny2C6IL6p2qiK4sNcjbJ0oQXVopHOVCRkxZn01R9P52/qLbd8aWgODINFBh+7D9m9bBxVW2vvuULjX141NdpuSn2GxN5kW1fZ5nJm1y7keKrq1/vt+VbYWxj+hKoXGJrikP6pDFu6wp3UwxgjZcK9ptx4OnVeIj+Vsag6JrKrHN+09c06F00X1heoP19XJV+VeYCNpapzHrQrN4mFKy+Z5Ptr7KRWA+TcI/n2khp23mgyPL5RKvW0rQykZT/Xf3zy4SfHqSXXT/NtycYYCgEBjT62R8qeu4TN940PuYukRXxh2bMO2zTy6/r+0BNaz/tiqIb8wzlzw27cskuvy303/W1qJS17a26cDJovekh9bJoqAExTVTW7PHT3RNOdsrBUQXJEHiossXlBxoOqfTI1ZbY18lfy1BdG2vce2rz7SGwEiBrGAVtg/bv2kdnBa29X3XkXDRbW5u1nuOnQmMeHzSktWBtxkb/US35+QQ0R1cXtG1rTDmI5k20ZVC4xJdUyqytxftsqZ0M8UA2nCtaLcdj6/3np3/Nz6SL0d4ZOU52X/iwyGLEX2gil1t+84r+rd3RFowW9w5bz6i++NX/ETXtUhSEkd05aKgm1n54oWGRalPWWY+OEtFFTHCJZa80Ur5u/otyP825fGhZkulRRTy1ha/TsZfu44t5Tj2aZ9wiK6MOzZh2icVsvBJxWjqv23Rrk8fCNNCuOemFkR3wdYjetzqfV79M43KUhgSD9XQulA4hJrt/qR1cKEuRBfUO4mLLr9A8BAHH6otur2nbA7EbNqemF19sf2dFti4+m4qaStbrymbA//r22RJV9vnCduvS3S5ePl+V1RiU64w5qI7sAyia6qW9dbCncbUXql0JhCrHXau/dGx0Md2PL7Wa5bee/ysfmjoykC1sK2HgqIrBdN2vMPK1frQO/fdf/fFYtGVlZ94cQlb8xHdH728UF+50qy3Hz6dj6U39fvCJXuBAInMduDT5ENKmxDRfXpSuOjKcrmEK1SAN6qOR9dXym1req1JYDmUt9ZUoME1wiyhmTKf9vHOdtGVcccmTPukQhYyU8mnu0wpmnUw9d/2QOjTB8J0beDXzYXb/EXXNGtI4WBycELmLLfNOGodFF1kXQD1TuIxuvwC4XNh4VRbdHtO3hSYyrbFQLn6Yvu7KVWaxFTStlxtyno/0X12qlt0ZQlRmuJ9be526z5d39V1uVQ6Yx2ia5tWlELjEl3TQ8SghTutuYtNozY2XAt9bMejTc+ZxvzT28XiFJkPkze+YCzs+5cPEiZ65Ubzv/dScRGHYaKi2W3P24vEUOs0Zl1opb0fDliQT9P00sytRZ/FdQxt38sqsQjMt3H4wjNTaj7bzAdHlsslZLyzrdFCpTtzi32fneoSXXd6sfsG2gs0yIwBvP3p3ZWBWNHJHqVtqdFsHv03F10Zd2zCtE86BjwV40PvrtSHc6nYHh21JvB6STlE1zTbw0O+Fm8/6h26sHTHUb354MlAZiB6aJ0pws3uE6JrW0OidTDFHp89qjQQXZAEEF3xGlelqacnbQxMidlWtbr6Yvu7j+jGKV3q2yatM9dVl30OKxghRZdK+MrMCL7fFaXSkcnTebYBKdGETN/kEl1TWMjABTusRUlMcXg2qK+uBUFyX3xqnDfTKmzbd8HTrvmcA2HQzdpUlpePOqfSGWfubGqdx4aL7l39FxT10dZn388lsx34Ng4XXcqjy+nlIbqyXC7xlqfobsuN7lP6Rpq2N73WVByBQ9PeptyytsVxpr77lLaldl2nSYEQKy66Mu7YhGmfvXOj2nwBZwNbwEk5rW3nRjlE1xS/z0NZluw46p1ejGKV6diYKvIRNCpPbdlOP9H9xrMQXVC7XKuUmqqUOqOUOqiUelop9Q8R99GiRbeUxWi215w4d1EPWrgzn5Set6FLdwdG+Gy1xF19sf2dJxe39T1O6VLfZqurLvvsShWXShen0LKV8PX9rmypdHj+2FfmbDNuK4XGJbqmhX5vzt9hLdLBC4dQ42nqOFTUwRUnKffF01fxtvNIseje2nuW8bWDyiy6lHHj7v7FovveiqDo3hlynqTSWdGlqnG2JsOe5GdxHUPb51ohsh34Ng6PQZbCoXUwT7dtH7JcLmGaYjc1itemh4oXpttF11ZKl6AV+6bcsrZ0Z6a++wpcKp3Nw3v5ill0Ke74mUnFRSnyrxEPQal0RvfKxSnb4topp7Xt3CiH6JpSn/F0c0t3HPWqjGbqAz9e8gHr14OCgzSutS4NEF3QAvh/lVL7lVKzlVLfUEr9UinVpJTqG3E/VRHdsJse4XNh4URNL7b3+Fm98cCJouleE6ZV+EOX7A6M8Nkqz7j6Yvt7+/fCRTdO6VLfZqurLvsc9l1K0aW0ZrKyme/NxJZKh1cEGzB7q3FbKTTf7mMu2ax19tyQ/Xlj3nZrkQ5TidHLhipGWhdGWlyjanJftgIfu48Wl+q0yThfpOdzDoRBmQTuGVBclnf0yr2BfZGouFqvKZtDRVeeb/KzuI6h7XPJbAe+jXNLr8LDhSljialogNyHlGFiiCPumjcaqaQQl74ztliPQ1hlNMpbayrQEEV0fdNmpdLZgh/8OHHRzccdG6qvEQu2HinaJ8Up8wdXHu4jBxQk5RBdUxgUnwlbtvNYbNHlx0uGzMjZSF4pTsLvJd98zn5dLDcQXRCF9kqpU0qp/83+dr9S6rJS6t8j7KfViC6/QKzbZy69yTHdDN9ZvCsgPqbUL/JzyPex/V2ONJj6JSt9lbPZ6qrLPoeN6P56UFZ0z1y4pOc2HM5nTRgmKpv53kw+lEulI0Mr+EW93yyz6Mo8pa7zik91Untt7nbj31PpbClj+TdeSppD08Iu2ZD7shX4MImuaftUOrhIz+ccCIMyG/zXK8WiO0bMgFCMpaudOHfx/2fvvaPsqo783/Lz2PPem9+y57feW2/NjNesOzbBmOAwjD02nrEJ42zASTgTjLExDhgb+woJJJFElEwQSEIICRGFEAq0cs45toRQDq2MQiuHDvv9ce/urlunau99zg3ndt/6rLUX4vbJ8Xv2rvqWV+jSqoquj9TQ/eI+YuMen/9BQnfaumh8e1OA0MXlcs+5a1zb768vDhO69vlj46GfmSEL3a/9bZbZd/SUkbjBIXSlSm3cftkkq/M9vs224dE+LHTtO8OGInBwISh2+m0Hjrf9hkdBaIgYRbIXk+Cm4cLf8HW+bPshMxHFMtOPRNcxxs8dmgRJy4FLJeqNKQxd+OaTKnSV6mQ2ALxFfvtHAGgFgBtjLKdDC92QEsDWggfHTVGPSw5OJL2ycHuBp+mGvaUTujRJgtuuJBWdQtvYlbvazN5pGAOejlY6o80KXVr6lxZ8CH2ZWAN3miyHh+nsC57CfaxIcL2iz8/ZIlaj47L8T55pZpftGhaWjoctfSxdz775M9lc6IXr76HHxmJ7pThvW5pFTs8/bdZv2Sd0aawv7Sn1HQNuv6itV2jD4HARLpGzmUkSpCVzcblcXP6WOlhIzZZ4tcVO7AefND31DMfYAg1cJTLaMeA6NvaDxyaRxmlY6NoPauuiwMGFoFihixN38cchtXGklELocomY94xujw1eseNwQdJeHKGLQ6Zojy0tB875O1uw0HWFdJUaFbpKHPYDwAPM77sA4OEYy0m9BDB+QODfVjXI1iiWP77uF7pWjGKhS8uMcnC9BS8t2FYwxM1VraH7Qdcj/U6TJLjtSlLRKbTRh620Pz4BY4Uu/X3U8sJrDJdgdp0H6xlJ7c9w4oUdsqVwgkaCc1d4auoGNqRhweYD7ND0OCH8w9Vbxh3jTLaurfQxbVgQuebPZAvdKEKuAR/WCuz6wdFqZXTI2u6z1GzxjB6jo9c9btQWjYaM+I4Bt1+LthQvdL/at90+jUvk5Cp3Ues9qTrjxEDnAuv6Yq3cbAhPknP887zQvXcsX6Bh4eYDzhEli32OfCrAu5s2LHSvyffk2wIQHNyHrBW62FoQfxzSBGaMy8FEgpvmG0yVRTxit3LHYTMF2bCFCt0jp84WuL3QGFwqdDk3EAsWulc/rUJXqU6aAOBO5vc1APCcY74PQe4Cs+1SqAKhu6fxVCSJAQ/lSdzOVBOjzQpdLkHA9RCjGfuZbC65B8d+UU9Ti2s90u/3MC98ShKj+9AWKnRDe3Tp79S+Cg8tus6D5BmJewKfFF6G1KfU9cKSDOap0N13pH34l06LK5Fhfu4pZ8otS2q7G3mha90tcHuhxELXHvMbmbK8NOaQmtfT9vtAoUsbdbsIOYZdBswvCBuhtl6hDYOFrhTfTuenVQPtCArtaW1uaWWt5WizPt62d9kmZSY5xyGVyFzLtoxannuOhBSpoQ0L3aufLow75uA+ZK3QxSWa8cchtX3DuCy/Qo6HhRO6OGRidUNjQWGNUKHbpf/8Ausyah9Gy4HP3RgmdK9RoatUKUmFbi/IXWQFrdxCl8bZ0RY3AcDClc2lzQrdQ46SkBycqfyL87eKSQ4Y13qk37kXfsg2FdtwiV1p3fj365hMZ9x+NWwJu580BphzOeCQPCNxKWbrnUnheu4kpJKhOHs7k60zB4+fEc8zrd5mCanyxH3ocG1PIx9nyYVYYNu1kGX7sNv4iyGLI3+j/qk0A5y22/MFGLiRDFejZvwY37wnzjQZY6K2XqENg0MXpJ58Oj8dIrblcj/GfNRzIwm02cpXNjHu+fz5TnKO7TX6QF1xQtc+R/79vsmm/8xNsY4vFrr2t0ccPrrch2xfpmgG7tGl/tcYG2IU57hx03ydEbp/GdHek1y/s7HgGsQhLL6Gn0e0IAQtBz57Q9QNxIJ7569lKh2WCxW6ShyShi6k0qN7jUfoxn24WOiNzbX1eaHrqn3OwfWe9p+5qaAnkvM0NSaamIPXI/3OxSpScC+zPaa+Ag6hjQoTDP7dV+VOEro07pcTZhz2bzMZC6fvkYpQFE7QSODSzrhRQY7jcLnpX2N6dUOqPElZ+rThHmUMV43p+RILXetpfHHPiZG/TSEVsW4jvUu0/TFfJY5LwnQ1/IHjuk659j99ZprTTc0RW6/QhsHJaKFCly7D9uqd2y0qdKXYcNyW53v0rNWZ7cFPco5/Mih3jbo+xlzLtlg/5UvvnxJ0TnDjhK5rZI/7kOWE7qmzhbHz0vGglcVCjhuexpaJ5oQuTpyu39loWltbzZ1vrDQ9x6wRvbq5ht15aHgfLQfO2d5Z1u1pD4PjKh2WCxW6ShxmA8BI8tuHoUqT0ULM4+M8XCy+l2km256Z7Kp9zsEVEMhk6wqsY2wJTgrXW2nXI/0eInRx3PC+o6fMsu2H2KQXV8OxlK6ysBj8u693/pYXeaFL4xg52y4KjnPkeidsrLXktcl5mUpQAWUbPZctyEIs9HqyveCu3inX8nCTMuc5X99SC13XtLZ30jbfaIsth8wVSnE1OjIT9/j9YshiM0/wuI1zfLCPblKha8vlntdtfGReydYON1sQwJYjtsmHSc5x28dYkULXVsj7jwdKI3Rd28yFoHBC17UPqxoOm5HLGryJviHHo6k557rCCV2cT0L91yV7QK7hOFxamZPec11HrhIT0vD+fleFrlKl3AUARyHntGD5JVSpvVi5hC61U+GafajsPxpP6BrDP6Q3o+pkktWTVKqXW2aXvPk+VyHq+OmmguXiLOMjp846t1NqWJDY+FffMcG/+xw0fvniElZ8TyGZ6TT564rHZ0SOI14OF2/mE5AzmSFBCa5sZyZbF/ngkY6Lax0h5veu5eG2/+hpdl7O1xcX0ijF/eaa1sab2naHJ1HUlkOmWfC+Rj9Y4x6/TLZOLM/ra/gjBz97cDiLb3swNtzj/O5RoRsifmwyki2zbX2Tk5xjawfnGnVwLdsyPC90P/dgcqFLE/kkOB9drgxy6D4kOW54GttzbJMDccOjj9YtwyJZGHLNJXSlnJXGk2cNBSc2cyW9y4UKXSUOtmDETAD4KgDcBACHoUoLRoQkVsR5uFh8cYD4YeAaHpLgpsVleCWrJ+nBxS3TxsTZjHbcBhB/WJxlfAyJ4DjHdPq6fW2JQval5Dsm+PeQ3jDuBUSTyQ4QwXLFYzMix9Fljm5M+8v5ofG80KW9jBfeM4Gdzpho7J5tNGlOOi6u68kXYuFbHm4HjvFClwt9wEKXqyIV935zTUs/KnxC1zoQxLXMw/fxj59bIG6fq/nCb6T2+d5TzW/zCWV2KJqrEufaHowtl/vxu6NCl3MBoc3aS9kqerbkc5Jz/MOB8533ku8YW6wH8H8+ODXWOclk24Uu9SCW4EJQ0hS6F9w9wfxtynpW6GJvXeq/HhKPbRv+wKJCV3Ih4mwwcWje91XoKlXMJwBgKgCcBIB9APAYVGkJ4CQPFtfDxUJre3PNBuy7rLnibDd+Me8UrJ6MiZY9/reubqF739tRoUurAuEsY5tYYwzvECG1Ge/uM03NLW3xxSHHhP7uWwcXo0xjbGnM9OWM0MXm6NwQnI0rlIZbqU2TS+hyQ/+ZbF2kypF0XFzXk3UdkZLmpOVxoSVS7yHXi/7crHahaz8KpXLBmWzO6zN0+yjULu5qzyjOz5FFWUg8qm2ugi00IU5qSXMG8L5bIW+T6kLOZyZbKE6s08wnmOvSFWpF74kvPlxYZtu37Rx2dOThhOE1FlvV7Qu94wtd28tPPaoluNCkNIWubdiRwzYc/7ueCE8p1I1rWDBb1w2L9HHJFTbC7wzXx1qpUaGrpEGHFrqu5AHblm8/ZJ6YsqFkDzHcJKsnY/jktyPM8LhL6D46sfClg7OMaXGC8wIrEVHBGXJM7G/d8iVsZ7y7z2kfxNnl0Bhbeny+9Oj0yDHEw/FclR+fJRL1duUEBbcu3GgYStxjZ0x76I7LE5RbHhdackgQupxvKx4RsB+F1EM6zj136f05b1/OXoyKDp+YpEUnQq7dTLaO+FhHX+AhVbyShlLhY2SHiW1SXcj5zGRz7iYWe31e1COa3EdHPLg2Lx/OY8tF20TIJOe3S5Fx5JZXFuaE7mUPTfNuC222Rxffi1/72yxxW2i4TCZbHUIXJyradiPylabXrStRmjY8ikl7dKUCSpzQxWFwXKXDcqFCV0mDDi10fV6dmWxdUF37pNu9V8iAN4bPgudiqP78Rq4X435G6NKXDk6+oJnEoSU3qeAMOSa2Stfwxe1lfO2wK9dwoo5t80iMLU0q+u9HokIX97Iu3hqt2369x+Se9iwn6dHFMdn0uIReTzZ0x+UJyi3vHEboHj7BC11u/mdntAtd+1FYjNB1ZebTYWRfeEBSoYt7vzYzPtYDAiytbG+zKxnTd4xs4g9OoPKdj0y20ILOVpOjFdOMcdsh2jZnQ+6e+ny+XLS9P13ztLa2RtZlTHscOf24DtknfN28tGCbyWTrzBcfji90bY8uvhc5txUL93FarUIXF9rhCg2FbsctqHMn0qMbQ+ji8tNcpcNyoUJXSYMOLXRdvoe2hdS1T7rdktWTMfxD2FVe8oG6qNClw4g49vVMU0vB30KFrn05+vYRY6t0jUBlfCcTOylfo3XZOTuvvpPXm2aU8IPjZpduiwpd3EtCezeMMRFv4EsYWywL1yOayRbGZNPjEno9WQN5LDw56HJs+WPccBKib34srO1HYTFC15WZT63cfH7LSYUuDiXZdiBq7/fsDL/QtR8eHy1C6NrkIivOQs5HJpurGGYZm/8Q467LkF4+ax9lP0TfWOIXujihDuNzMPGdJ8uwvNC1H65xjqs9lr773rU9cV0X4pxzDs4t5ypG6Np8gkyWLzTEFZngGu7coUIXW5jhxgld/By4ifHFLhcqdJU06NBC90ZPmdFMto41FQ9dj28+KQPemGjM5Dl3jWOFro3dfXDcO5G/0cQQ3Gt2trlQ6H787jChS3tWQ47JpffnikqMXNYudGmiV8h5wLS2trLD27i6GHZCsFZKGPqhQ3mDJNu5et+M4SsjbdwnC11r6+S7nmxyCk0upNDlcGVUcWy2b35cMc4eK5/QlXr8jHFn5tP7zFdBL6nQ3eRxPQm5Lq3Q5XrMQ5ox7VWo7nwjntDF14cN8flkr0mReUO8VW0RFfsh+mb+Q9Q1T7MgdG0P/OOTihO6L87fajLZOvPlR5MLXVf1L9/2lEPodukvx7ByRXy4ES2cDMoVGvrWU2FCFz/zQoXuuj1HIuvDf/9l3hKyEqjQVdKg6oXuqbPNpueYNZGCA8a0D127Wkhd+6Tb/Z6QAc/N/8lek1gxevPQ3Nd0b0boUkGB4yDpCytY6G6KL3Q/k6+eNmp5+3Uyg4mPczVOqDa3tJoX5m4pmA6XasXetsuZFx4NXaG+xq/lE2My2Vxin6s31Bg+HGPjvqPicVm5g08CpNASrRJ0ObanDjcasuKaHye/3ZR/QfpCCu4eJSekuRKW6MhJuYQuPh+7mGRQqWceNysqzu2WTOi2tra22Tz9ZUTxQvfT90aFrmR3h5t1MqEfori8LG30A9lSrDOIZUj+frbJpXGOqw3jwvf9SlL9y7c95QhdcHVocIWFrmCELr7vuEJDoc5E2J2HjihKQpfamdFj8JuXlzqPcSlRoaukQdUL3aenbSj4f8zPA4RuSLnPpNstZcBz81/ScyK7DPuQ6T2eEbpkiBhnttOet1ChS90LQo6J7VnE8YU0y97XOKFqjDF9iKdpgdA94X7hUdeNriNXF/ydDqP64ITuhr2y0JXcAii0RKsEXRcndF3QabFrxw350Y8Qay0JV8LSsu2FsfDlErq4dKlUDtm3jNAwH6m1tLS2Zb9n31wlHi8bOysdX1wul+MWT7Lt1Hdy3tTch6iUnEpDnizWGaRvkULXfrhaX+w4x9UKXRyHTXstfdtTDqHrgrPHu5wZ6fkO8h/nCg2FJkjicCyKJHS5sC4cFnVb3jKvEqjQVdKg6oUuNtqmdB/lLx8aIsiSbreUAW+hJRm5dutLOaH70Ph1kb/RpB9cE51SaqGLhbQV6WNX7mr7LW4ZVVqu0mKHXW3DQhcn5HAvPGy1k8m2lx+22N4lzqOXgwrdC++ZYNY7hK5UvYpiQxyGzH0o0qUAACAASURBVHULXWMKz8dnybGxQ9Uh82ayhYlFdvSjKKHrSFhaQXq3fUIX24tx2y41bBMoVYmLc10mac0trW3Z7/TjCiPlB1jay+XyQnfksgbndkzKVxvkPkRt4iBtp5v4EYFr+yWzwKP79Pyc3D13ZRFCF//GiTTX9lRa6OIPL9s4oYvt9riQG1/FSdtoiWWMVE6be/ZiJ6I/O8JvSo0KXSUNql7o/t4hdAfN9lsJTV/nH2JPut2NJ9xD4ca0Z1ZL7dfDckL34Ql+oWvDBWxcL0ZKdKMtVOji0IiLe+SEbt2q9vARrvymq0kvLNrrhYUutlji5sdVgjLZqNC118f/9JkpnZ4CqNC9achip9CVTP0ptnLVi/nKVS7wcqjQddWup/NmsoUx3jbruxiha+N7uThO6uVcLqGLh4ql4hlxrsskram5pa239a63ZKFLe7np8R2RFy22XC6FJlPSNqE+J3S5D1Gc5Y+bFPpi4+WfmBLPAo/uE73n4hzXOxmhS8vl+rYnROhKgjDu/WBMdBQmk61ru99x++aT7TG4XKEhX8VJ22iJZYxU/ZMbTRuWj6XOZN3uQaVGha6SBh1a6IZ4Zrri1XwPMt98XGlFyoT6aIITblacPcIIXeuxa7Gi/WN3jYusJ1Tohsbo4li+C+/JLXv86nahGxL7jBsXJ2aMMV8gQrcbEg74wb1mV1To/o70mN9Ckiqs1ZTLixNDhe6NLyyK9NhgJFN/yn89kvM5tZWrXODl0N5uag3nmjeTLQx9scKHFjKJcz+0xXEyQpfGKpZL6OK4aMlqLc51maSdbW5ps2vDH2aU5R6haysTflYQuqOWR/2ocbP3I/chKoV1Uf9tix06fzKm1zPdJ/tM/krf0ghdLpHKtT0hQjeuY4wLmqyayda1VarDDVdL4woNhVbroyWWQ84Plx9hkwZDw7pKhQpdJQ06tNAdOMtvJTR+tVtouh5kvvmOepKbjIlW56LNirNHJ0aFLi2EYDPKz+0WFbqfuCdQ6Aa6LuAhTiuibQ+SMYVV2kIaZ3FjTFToWv9NY0yBlRQnlP9AfIlt77il3/SNJpPNJR+FQIXuDS8sMuv2FMbgYSSvU4o19LeVq1zg5dgkI9uoNZxr3kw2Z2dnsUPZxQhd2+vEJSyt2RVP6CaN0cXiUUoujHNdutqf3+BjHs80tZibh+aS+1zJe16huzgnWmy5XApXeAU3K2wvygtd/CEq9ehKrh1XBxY1cVkkGtNu7/b1J2bHPhec0KVVxCh0GSFCN6TzI+R+MMZECspksnVtH7a4YW9drtCQDQvyNVti+fO9+WuGm4fzIB86r9Ado1Ko0FXSoEML3f4B5vB0+DfOg8w33/HTstWTxVeW1Fq7PDbx3cjf7iNCd0q+J+K8buMj6ym10MWi1ibv2JhAY+T4Q6lxVayM4RN2LNgAnRPKtLY7zR5+cmouDu3afnOl01MA7X2/fvCiSLIJBifLua4nu4+vL44ndKm92NyN8YQu3hYrPKXYzZD7wZWwRI9TOYTux+4aV3DdHRPuvzjXpdQu6TnRNDW3sH873dTcZvPUw1E22Sd0XyPlcilcKW3cbKiCvffxPcsVp8lk5WeWzfp/eppb6OKeSW6fnsrfc1c/PSf2ubAOFiHPDQsdWQoRunGtEV1sO3A8Mr39sJUal0TJ9QJzjZZYpnDzUA9zY6LuGJVCha6SBh1a6IaYwxfzIHtpwTbzP31mij07Lk9TyxTPMNnNQ3NC9/FJfqFrRfP53aNCN9QTlIolaTrc+2gzdKes3dv2G604x5WrxY3zjjSG78m2YM/XDUzPDs0y/i3JHraODt9/dp50egqgQvfngxcVJD/R2GjJAopCDf1dYO9fOyRtG/1Iobi25YcDcz1GD41fZ255cYm54YVFwfZolmsdcZw0xMNXnvungwqFbkiVsnO7jSsQNtIwfCmeCTe8sMi0tPBWZafONrd5ePccs0Y8Xj6hS8vlUsZ6hK5NPrOJqPhDdN+RU2wRAunjwFqu+ar3+YRun8nrTSZbZ777zNzY54ITulxxBQqePsRHNyRvI+R+MKbQISK0cTGxofP6rhluHq6S4eA5he4YlUKFrpIGHVroPjNjY9EvtJA631LSm8vT1OIbJrM+utRmK5ONlra1YRB4SDruMQ6tjIbjSa2Itr6dxkQTbSQ7I9s4Sx1j+Bg3C45b43p2/jKiUOjSymM27vm6AbLhO4aLp8Zi5RwSG33iTLTMM3edXnp/oaG/CxwSQnvpaSIhxbUt1zHWYDTcQNp+iyuOk/oNv7m0welzTe+7IcRPmWvndR9fUB1QchAo9pmQyebis6VlnTrb3LZvvcbKQteXjPbywsJyuRSugAlu1k7M3nv4Q9RChakU7mGTpYoVuvae65K/5+Icc07o+hIw6fTWEcR1PU+P6QHuouFQfKHLuYWEzktLLIcuh0LdMSqFCl0lDapa6E59Z29bBaJMNuoda2Mwi2lSDwfGPhS4F54PX+/BL4bIQpf2Flkh9ol7kgtdmtAkTYcz622pVGxvRXurfPZmXAKGMYVxuPShjONJuZ6d7JurCubDlduMMabX2DUmk40mPklwQhdvA7XV4so8cy8VzudUAosjWgKYG4LEcNti3TNsDCAu8cp5gHLbb3HFcdJSyba3UboefvxcodANER8X3D2hoGhKk1D8oNhnQibbXhaV+9vIZQ1tyV501AVDRz3o8bU+z//1CC9axnnyC95c2lDQ6zxtnV/oSgm0tvf3mRnJhK59NtsKj/ZDJs4x/+uIVZF5JK9kDJ7eFtlxXc9xi924kLy0XY0rQBE6r88bPHQfbOfNVYGONKVCha6SBlUtdGmjddpLscwQaPUu2yTzdYzvoTo53wtjh/xwo0LXvvgu6jEx8TEOFbr22OBKU7h3hfqmXuiJEeYSMIzhh/4s2GSdC324i9gEjSA9pvbv1I1BwueQQSvhnWniYzgpnM+phBROkMnWmYUJhO7gfJEKzhqMWqf57gkbx8n1+tGknOn5jyJpX340sFDoStZIuF3UY6KzaIrrOMRtv3AI3Uy2ri3ZiyaMYnwx3Nbi6UtCQlCP0fXObXxjyY42X1V8zDFf7UuErmCJ+PW80KWjIhRJ6FpvWPtxef1guUdcapzQdZWktuDp7YeH63rGxyykudjLlGqmhWxo42zx6DR9mfdBJlsXKbHsW460D/aDRLr2yoUKXSUNOpTQxd6uzUL8XNwWwovIcxA3qZwmZuZ6vmBF15GrzdJtB9se5NyDjQpdO5R5cc/kQpcOBUovLntscI8RDnvAPY8vL9wWiSeljSvXaowxO5keEcs1yER924Go0KUFQ4aTGFjb42uLcvjwCV1aIERKVqJcnPc5fXvVrsjfKFxJUdsWbYlmT2O4eewQJ1filQsbcd0TruFtmpRjP0qlffnhwGg4idTDbNvFPScWOBHEOQ5xm0/o/nRQTuhy8Y++bbH4Mt99I1bDF+9o245Mts7MZIb5qdCVLNnsc6D/zGRC1wrbu0flxLkNyYpzzDmhGwK2mbTJgdb5gEva4jzLXc0F56X9m5eXOpfHVdSk00i5Hb4kstB9iHuMS4UKXSUNOpTQxUOV0rBx3BaCfSHR1tzi722QKrNRiyauR5dmdNvklEuKELr0ZegTuljM4WQonIj13rHTYolj2yShy/WIWHA1IS7Gl/Z4UVeDO/NJhKElLn1Cl4oE3Nvtuqas/dM4ZP8kgZPfaFvC2ARh/v2+yZF57BDndxnHBM4ayXVPuIa3cc88ttyS9kWKm3Ydf7p/EqV4LviEmnWVoGW6KVw2veUFT+U+HI/MtdcWbS8QupzP8lf6ziyYRypbbp8DA2e5hS4VzrZZOzH7cWmt/uIcc1tOOeQcY3CFwkGzNxtj2mPSH2bKVXMJsK7mgvPSphUbfc8R7jhJoTy0xDLFuoH49iHuMS4VKnSVNOhQQhf3oB47zScCxW0h3PbKMnZeGkrBgWMKcaMWTVyMLjWjt71Zn7p3UuJjTMvIcpnZ+Njg4XmaDLXz8Mm2IUuf0JVesNyQtcUOlWeyfNnMnmPWFMz36qJCoWvtyX7/6nJ23RSf5zI37BtyTXE+xBJcSVHblm5zC13r7oCbHZrkHBO2H+ATaTCtra1tow6u4W2clBMidLskELr/+eBUcTtDlxHarO2f9PcfDcwJXVx9joOrkmUZ7EkI8lUf7Dd9Y4FdHGc/R4WuVE3OTvfcrM3O/ZGEri3KYp1QrANKnGOeVOjieWwSbZcBcrlqzuHG1VwcZLy0bXnoYp4jUgeJL4ksNJwqyTEuBSp0lTToUEIXx8QeEayd4rYQbhGskkLix+YJQpdaNHE+ul1H8kL3M/dNTnyMaRyftRWSjg3uOXfFiH6y1yTneiW4F4X9oMHbxgnd+95eWzDfywsLK49ZL9HbXyuR0GUSebARvLSvnA+xBHUvwI2rcIShldQy2Xaha8NAsGOClDFuaWpuMd9+ao65tt9c09zS2tbrN4AZ3sZJOVjoSmE/XfrHF7rUiF+iFM+FWzxCl3Ox4Pj9q1E/W4svISikKAsWurTqoTFRoUvjzC32OrY9ohJ0ebbZSmi2iMsfX18R+1wUI3TttTEsL3RtTDpOvrRwo2eu5oKLw/bF6HLPETqN9N4ISSIL2Yckx7gUqNBV0qBDCV1sJ9R4snJCl/tCp56qEtLwI7Vo4obT7IPf8tbyXBLFvxcjdNcVCl3ca4qbjQ8+eaZd6HIVdiy+Hl0J7kVhh09xbzMndG1ChW3DSIldKzLuGL5CXD/GJ3Q5ayZuZIFybrecPdvUd6JZ8ZTN+/m42Uy2zixjatZjrI0Zblboco4Juxv5jHFjjDnb3FKQSLl468G23jxueBsPH+ORiNbWVrZ4wQ/6897GruN/xeMzgq6pUtgO+oSudbHgegwxh46fKSh8grfbihYrEimSawNuuDAHZz9HhSmX8W+MMVcVKXTtft32cm70i6ty5mvFCF0bIjJs/lZjTLs1IVeuupRCl+tw8QldrqImnUbqzbfVQL/aVy5rHrIPSY5xKVChq6RBxYWurZyTpGE7LymjOW4LgYu5+mig0JUeWLQC0SNMgoR9WVhstvCl90frnIfuLxW61zzNC92h87YaY4w5joSca+j84oRClyu6YBOVcPwwF6Pbe3yh0H0x/5Kz2JATehwlfEJXKvns29ePMT7EElylJdtW7DjsnJeWDM5k22N0OceEfUx8dCZb1zbcjq9JHAvKDW/jZXV7q3AkghPUUhEP1/Gn8eQSra2tsROOaPvVMLfQ5VwsXOB57UiQT7RQZxOu2UIgmSw/4kJDDfYxxQqMMebK/EfE83mXDgmf0LXX4J+Gxxe6XUcmF7pfyl+z9hnAxaRbJEcDrv3Z8+zgPnR9QpeztKTTSJUnbTVQGxPNIZ0baZpKokJXSYOKC91ieluw0D18IjrknaSFwGXR0uIBErREpW00c/2h8dEXs31ZWEbkhe5nH0gudKnXphS68PycLebU2eYCIbrc0aPoc12Q4IoudBkw3xw73VTwUuWELv04GDK38CVtP1Boz7iET+iGlpyV/s5lxVNcQnelR+h+hklGsx6tnGOCJHR9jev1w0k5VOgaY8zri7cXLON7CYQuvVZd2ApSSds7u484t+d7jh5D337Z2P4BedFi41spqxtkBw7bbAhFJsuPuFChy1XlMsa09ZYPLkLoUtFnjInVsVFMj679OLMf6DYm3ZYExvxtil/oPjl1g9ndeNKbh8E9v3xCl6uoSaeRPnKsE8c3n1ShqyihVFzoFlO2F5f85GI7k7QQ7HAcbud2CxO6UpwdFbq0dzKTbY9zswzPl4f93IPJhS4tcmGTarj2qXsnFRR0cAmtixIKXck9g5Y05nx4aVwz7Y2ysdV3McKLoxxCFzszcFnxFJfQXdXgFrqfvjcaJ22F7jeYRLIk5Uu542xM4f3ICV1ql2RLxFJsj5WtAIUbHX1wMYyZ39c+cc8E81+PTCuIY6XhErRxPYYceB7rHmOfhd8QeudcVnO2dUFClxtxoUJXKsBwxWO5/XxhbnKhS68/S4hHcibbbi9mRw8eqJM9iimX57fffuxyMemWJ6b4xXdIMSBj+OfXDS/IFQEzWb509WUPFcafS+f+6Wm5bb/66TniNnHzuaapJCp0lTSouNC1vRhJGv4SPsDYumSyuZg1XznauDc557pwXvfxQfNKQ1A0c733uKjQ/R1xC7C9Yp9nvCGT7i+O8ePaA3XtCV+rGxrF/UwqdCUvWtq4nhUaa0d7Gm8emrPawclRLnxC93gCoSvZs0lwleJCjr8xfDy4FbqcT2pLS2tbMYs4jev1wyMs3IfFtHWFQvc7gtC1yzImelyvjiF0Q0oKZ7J1bQLj3++bbI6fbooUgZGKathGk0ol8Dw22dLXO+fzFc5k22OFM1k+hpsKXcnmjwpFCS75MuSeD5nelgC2CXY+j2IMFequKn4hQjeU0OcXbpyI/uLDhUJXshm0235NP/n+CdmfJPtaClToKmlQcaFr49KSNCw0OP/CTDaXbBFqPXYhU0qX43dM5vT5gUJXqndPe3SxoLSN+r++tigndC97KFoyNMnLxxh3j6592dh/1++UhZavMpqE5EWLm1Tukg5B0iSpG/M9K7TwhoRP6HJDjsa4ha7Lno1D8rb1HX9pW2zBCMknFSeRhTau1w8nh3JCl/qCXut4UUv7QhMnXUhZ67TtOHjCPDR+HVuQxBi5qIZtXI+hb1+smLZC99tP8b1zLqs522yscCbLx3BToSuV4qZD/xLlFLo2HtYKXZ9HMYaGXriq+IWUjg8l5PlFG06qtlBHEekjx8YXSyMixqjQVRRKRYTu1Hf2mvO6jzcDZ21qyzRO0vDQMVeRJpNtr14VsrytTFlZDs4i6IK7w0SyFGtFSy/e/3ZU6NKkMxt3WEqhi5NZuIbL7K7ddUTcz6RCN2TbJc9IGv9HqzpdPzgndHuNDRO64zxClxty5LYfg4c2fZXNjMll6UvrX7PLL3TpdWSvFcknNUkIENfrh2O5OaFLKwS6eqQsdL02zjj0BZ3kfqBscrhgZLLRpNKQbbFCx16/0jC0y2rONusukMnyoS1U6DYcisa6GxNN5pIIFbp0FCVknu8+M9f8ZcTKtlGGOEKXJtPZa4UrbuK6x0Kvi7j7hhtXOp4WFpE+cqwHsJTMKW2Pa5pKokJXSYOKCF1jTNvNXYzQxVnvUiKNtYD6HnoBFPsw+wNjj/SJwN7glY7Macy9Y6NCl05j4xbtcDQm5PjZBBsMjvHztXV7ZKH7iTIKXckzkvbM0Jfaz57Pxfrd/3ZYrJ9P6Epxe659xckqvoIP0vJsc31oSPNboSv5pCZJ6hzGiCHszsEJ3TkbCntYkwhdWtzEB2drFvcZ4LJ7y2T5HkPfvtjr6Mmp7mFon8i+fvCiguccF9pCnSqwTd+ri7abe0bXm6bmlog9l8RVgUKXVgGMe41lsnWm9/hwoUvt0VzFTULKx8dhllDmXWpNTOn4L5HCIruY0uiZbF2bDaVUcMUYFbqKQqmY0LXYakBJGvYx5UrH4psWD+kV+zDjXpgX9YiW4eVwZU5jaJUvbhqbYEN7g41J3nv1/YAPAtvW7z0q7mc5ha7kM0oTG6noCC3TaimV0MWFRHBPp88H1yKVZQ4JXaDbY4WuZB+VxI/6JeJXbEyh3zItdGJMNJTgGkcyDbcfmWzOUunzvae2/dtHKYSuK5Qkk+V7DH37Yq8jG3ojxSv7RPaVj88oiFvmhC7t0Z2yNue6gofcX1qwLVJwQSJU6NIqgHGvsUzWX3UOQz/kXMVNQsIN4hJnv7jS8biC3g0vLBJDiqw7j7VgDN0W1zSVRIWukgYVF7qhSSJcwxVlXGb3xoT1VIZyx+srIvNe3DNM6LoypzEhQtdWmfpyAqErxXTF6WHfuE8Wul/oPdU5rwvfeiX7JRrvTRNPXPXuOXxCl4ut47Yfv8iwkPTZg1kkoRuSzGZMoRuFFbo2hpHG13I+xr72ysLtkXXiEA1O6NJEOVfWuIW7DlyxlxRuJCbuM8CVHJjJ8j2Gvn2xITB9PPGWPqFLW4jQtfvcgno17x27ti0pj1YXpFh/Wl+jVQBp2ElIC71vjYmG5riKmxjjf+bERerVnVC/J/IbV1HTJgNmsnXmpiGLxdA8m7T8k0ELxG0J2Z9i9rUYVOgqaVBxoTt0Hl8SNKThGuHS0I7FF3sa5wYftXxn4vnX7AoTuj1G13unsR8JVzw2I7Ke6ev2OfdVsrY6GyNreNP+Y+J+1u9sNJ/vPZV1j/AdK996pd47KtKpZ6arDCiHT+hysXXc9p9FQ5M4HtDnmmCRhO6cDWFCdy7qPbVCV8qqPx6YuInba4uiQhcn3VnjfwwtnCIlYGHoer/ad1Zb+EJIT2ophK7L7i2T5XsMfftik2r7eOItyyl0sVtAzzFr2oQu9xGD8SXn2UarAL537LS3eiJtvvLK3H5aYWuFr1TprdjrgiLF/U5aExW6HFcgofuLIYvFZGsbg/+z5xeK2xKyP8XsazGo0FXSoOJCd9j85ELX2g4ZY8xOj9D12WbFucElF4cQXBZBmBCh+0Je6ErJWa59dYmk0OO/JSB5T3pAu/CtV7JfomEw1ry/tbXVrNhxuE3c9Qn0OvUJ3bNMbB23/bjnF9vghSSTGcOLk0y2zswN7NGdvaGwd6m1tbVtaJQmG+GQg9A2fMmOyDpx3CNXoGMx8ZN2Gd5b6Hq/0ncma5MmwSWRxr2Htx9wew1zVeJ8+2KTam3Pu1QOOa7QDUlGs/uMP0x6jK5vG5F5lfmIoYxewX/448ZVAaS+177mK6+MoaEKvpLGxV4XFCnWfTLxj5aWjf2abx66WBTONpfj+sGLxG3BVQyldRazr8WgQldJg4oL3RBrF6lZRwVjjGk4xL+ALNzNnvRhxlW/CZ3fZRGECUlGez4v7KTkLNe+ukRS6PHnqpNRpCx+F771fuspXhTRMBj7YqS921x1JA6f0OWSSLjtx7G8eAiSSwbkkIRuaDIbdThYuPmAmGwkFexwtRFLGyLrxHGPXOjC0m2FNntJenSv6jOz7diECMxSCF1fUQ1JSLn2xSbV+hKLfPHBtHFClxsdMKbwvPcYXd8W+8z11lPGrNzl3RauCiD1vfa1JELXfgBd6an0Vux1QZFK0k99J0zoXkmErrQ8G+J24wuy0A3pRS5mX4tBha6SBh1K6B5EQld6AVlsxn0pHmaSGAhBMpzv0r/w5cb56NJ12KF6KTnLta+u+M7Q448ztiWkng0XvvVK8Zx0dMAmr9hCEbZxpvEcdavcQpdLIuG2H/vt4qRJVzIfRhK6XGwfB/WsnVC/py3ZiCaS4Z690DZyWVTo4uPAuS4sJ37SSWJ0r3x8hugewVEJoctVifPti02qfThfwvq6FIQu7snvOWaN+c8Hc0L39cV+ofv2Kr/Q5UaQ+sYUuqEhR8ZEXRau8BTAKPa6oEhJnbRQirRsnOT3iyGLzREhdv6e/MjfzUMXi9sS0otczL4WgwpdJQ0qLnSLKQHcZcD8tgpZ0pCixXqoluJhdropudCVvDCHLy4c/uV8dOk6npuVE7pSctaVjnKl8zYVL3Qls3mM9MB34VuvZL/08sLCMq+2ZOivhy0t+D3UAsondKW693Q67PeMY8ldyXwYSeiGQnu061btFpONklR2GrWcf17Yv3cfFRW61Gbv1peWeveDrveKx2dECgO44Aq9xD2m0siRbSHbQffFJtXast8/GsgnFkkjSVKLI3RxbHaP0fXmcw9OYZ9LHL77JJPlP6xDKpLh9vikcKFLY7d9BTCKvS4oUlIn/eiUlk39iaXciW55X/NfvrhE3BZabptbZzH7WgwqdJU06FBCN5NtT6rikkSmv9seF3ajp954nBtc6vUKQUreoL2jIULXlk+WhO7hE2fEHnNXVa7QY7+70S90pQe+C996JfulV/OV4my7d2xO6P7m5UKhGxLPaYz/BS71qNLpsN8z7hHc7Ejmw9hEmqTXKx0uxUKXJhu1BHiK0jZ6hVvocoUxqM3eviOnvPtB13v5YzOCS9UaUxqhK+UC2MZVifPti02qDcmg37D3qFmx47BZspUvJY4b5+rxZeLPavcZ36c9Rtebzz6QF7pM/DXFV0Ewk40moxkTLfDia31iCF3s6jBw1qY2X1rJF7jY64Ii5XHMSCh0jTGRkteZbJ35Y94B6NfD5A/FkHCJYva1GFToKmlQNUJ3zMpd5ocD55tVDXKBhUy2zkyozxmR02E9yi+GLHYuJ84NLvV6hcAllHBJSSFC1x67bzg8RKXktwWbixe6exr94kTK4nfhW+/3hKz04Yt3FExnS/1SoStZDFHGemIPQ7cf2+DhkYfQSnzFCl06dDlu9W4xBjNJCdO3V+1i17vr8EnRK5ja7IVA1/vlR6d7BQzmt68sc+7HTwfJmet4n1zLCNkOui82qdaGK4VsR0iVNE7oStcRHnnpMbre/Ede6L4RIHQn1PuFLrecuGFroUmkxhjzracK7ct8vsC+dcdFeu7ReHlp2fSeN4YPvbktf03/5mVZ6HLhEvQjvZh9LQYVukoaVI3QxbgeQONW7zZHT51tM86Wbtabhy5h57/xhUXmp4MWmsVbwxJ7jJF7vULgfDg57gsQus/MyL0opOQsY+Tkt4UlELo4RlpCyuJ34VuvZL/0xpJCoWuHzG99qVDohiYM+bLJQ7cfu4PgD7KQGGdjihe61Pli/OrdbTGY3NB06PnH92Bc1u5q/wD74+srguah6/3So9PFWGMOn9Dlkuookl+3bT7fWW5f7H0UYhVlCYnXjSN0cSx9j9H15tL7pwQfE1/SZiZbZ95aHl2OfX6Ftr4xhK4V6rZ98WG3L7CdTvL3jYsUZkIdUKRl03AlY/gRCfte++0ry8Rt4awmaedKMftaDCp0Oz8/BIC3AGAPU2XHogAAIABJREFU5E70jcJ0HwaAwQBwCACOAcCbAPDPzHSXAcACADgFANsBIAsA74u5TVUpdGndb9zeXrXL3PJiVMRSbhBCF24eKsc2SUi9XiFwIRYcLqH7zu4jZvjiHW0xbq6M9Q1C8hs3nGwJffGEkCRxz7demrhnGbmsoWA6m+1PhW7o8LKvlGfo9uMPAlzGteFQZYSuMcac131823wT6ne3DU1zPW2h5x8vLy5Y6HIiiIMmlP7XI9OC/V6NMW29X1KTkuowUoUq20KSt4wpPMYHjp02xrQ7rfzcYRVl8dmcZbLxhC52R+k5Zo259P7JJpOtM28GCN2QZDTu2L61vME7H25xhC6d114nkl2ane4aJjwg7r1mjPyBT0tfS8umsdTG8ELXnqffv7pc3BYuXGIJ6dgpZl+LQYVu52cEACyDnIh1Cd2JANAAANcBwDUAUA8AKwHg79A050JOBL8FAFcBwB0AcAYA7oy5TR1O6HLWNlcwvrLS/FyiTAhJH4Zc1jaHS+jSh5yrfOomwXvTJXRtL5mrSZnhlCSJe0nXTQt5/HVEzr+VCl0pIYXS2tpq7h5VL44GhG7/e3khY0zhh0dIjLMx0Xi9JC8kLJYn1O929tj5jj9tE0nVqxBw4ZRQoUs/mr748LS2EIwQgekTulJSHUYqNW5biO+sMYXH2F4fvcauMZlsruSrDxwr/PG7x7PbwvlcS9cR7vXvOWaN+ff7cs+WEPEfYi+2/+jpyHxxitNksuG2gNx++uzS7HTX9OMrvcVF+sCfu7G0Qtc216gIFy5BrQmL2ddiUKHb+fk/8v/9R5CF7hfyf/sK+u3jANAKOeFrGQgAWwHgg+i33gBwGAD+PsY2VaXQ/cQ9E8QbnHvIrgjsychkeeujEJI+DLmsbQ6Xjy797VrBhcAYeYjTFbrQ1NzSJoSkJmWGU6SXmQvfC09aN70W/jR8pTEmGqMrxelJSHHOodu/72h7LDMOJdkbkIBlTGmELn5xTqjf0/aRxAkZ3/GnbcraaKKRDyz4Q3tB6bZd9tC0dneAgFjS2152C90xK/lYY8w+j9C9aYhs8yTthxWBtsdaGrHA4J7l87vzQte3Xjwd9nfuOWaN+Uxe6IaIf6lSpG3//Ui0RLkx8ePBn5gSZgtojJyTIblI4Gcpncd+MMdB6tGdtylM6Fp7tEy2zvzhtVxvrSv05o7hstDlRqZU6CqVxiV07wOAgxANQVgOAEPR/+8AgL5kmk/ml3t5jG2pSqHreznR37gkKWl+rjxpCKEvFgqXtc0RR+hKLgTGyCVLXT26xhjz1xGrnMfdlRmOaU4Qz8wNteH24+f4dVOXBNvLQYVuyDA3RopzlqDTYUGLh+y5Xi6Oq0osdCeu2eMUMq5jz7Vp6+ILXdyDiN1RfOD1fqH31LZYzJBYUp/QlZLqMFgQci0kkYzuh/0QinNu8XacxwhdyYmFE0vGFPZU9xhdbz517ySTycqOGhgaMkSbVACD7rOvPRnof21M9J63Tfogsn+nQnfz/mOijaALKY9j/qYDkd84voGErvUDdwndO99YKW4LFxesQlepNC6h+wYAzGV+fwUAFub//Q/5+X9Jpvkg5Hp+b42xLR1O6HIJQ5xVkTR/kq91aXkhcMksHHGEruRCYIxscO9LvvMJ3ZCEGWOSxzP/4TV5mE4SE9TmyMat0ZdeSLUnjBTnLEGnwyEK2G3gwLEwoXuF4IccB/ziHLtyl1PIuM471+IIVczQeVvNwxPWBRe+MMaYS3pOLFh3nCF2SfzYFpJUt/8oX9LattCRDu55Fefc4lLS53ULF7pc5r4xhc+lnmPWmE/2Che6by51C90fDiyN0A0t9GKM/FEjfRDZv9vwkST3GMUmwOG2cHOY0MVJcQ9PyAldV+iN6z3GxQWr0FUqjUvoTgGAOub3fgCwIf/vj+Tn/wEz3XEA6OZY94fy89t2KXQGoXs0XOj+ZYT8JezCt80SXIwfB33g2sZZ8vygvyx0Jd9PmoxA8QldV211SpJj5XqoSyJ7Iil1edvLuUxkGqMbMsyNkbyPJWat31+QOIULa2C7POzG4KIUQlfKJueG613nnWtceddyQWPO7bB9iCDzCd0J9f5YY5/QtUVKfOB59iYQuodQ8ti53cZFtuOrfeMJXRxS1XPMmrYPipBwjhEeoesS/3GuszhCV+r9lJLrpr+7z/Qauybif1sMXHGORVui/scc+MP0kQChy5XZtnBxwUu3Fdr+lWqf46JCt+PxYQC4IKC9n8yXptDtlZ+3oHV0ocsNCeO/Y+uZbhWO0eVi/Dh65Es7hjTX0KBkh1Ss0HXVVqckOVYDZ8mFRCSRTf1irYk6FbohmeQYKaHPBfZLxjZiK1BFsCOokIQLW740yfVm+fZTfDY5N1wfet3ZNquCQtcYY76QTyzKZOvMOXflRF6IIPNZcoUk1VGrNto27gsrAoLnsT3+cc4t9r21xwA3qUeXGykxpnDkp9fYNebivNAdG3Bcqa0fbVKoEd1nX3t6WrjQlco9hyQ+Jr3HKFis2raYKfThm/fRiXmh6wi9cb3H5jFCV10XlKTcCIxoZNo/kfnSDF3o8D263LDZe8yQMP77Z+6bbH4yaIG5qMfEoKIHHEmFB9cjxOF7eeDmckCQhC4duqL4hO4vApNujEl2rKTqc5msLLKpMboti0mFbmiWv0USSC6wX/L2A+1Cd+m2Q22/49LALrhqVnFfSJJtUt2q6HB9HPGRyeYyySuJtYrCLSS+1hj3vtlYSBcHPEKXczrwbceuw/GFLq5k9rEYQvd2QejiWP5eY9eYi3tMDD6uvmeVK55/8tq95k/DVwZdZ6Glu6X9zGTDev6T3mMUWrTCPndD7mOcjPbYxFxFONeIxP1vyyMJXFwwLRhUqn2Oiwrd2sGXjHaA+X0ZRJPR+pBpLoEOmIx2brdxkTgq18OPVsPKZPlCBnSalpZWc/JMc+LtTio8uB4hjuaWVvPMjI2s2TdtrqFBWejyFassfxnhfvm4aqtTkh6rnwxawM4rZbbTOvJ2OvqCCHnZYbgiH759kCqg4dKtodffl0ohdAXbpPFMXGqI6MBt3qbKCl0u9jG0aIVrP0J6prHfLNe2HQgTusOROHx80rvmkQnugjcU/CHInVtJ6NqSsXRd+GOu19g15qK80OU+hFz7wjVfPL+UR0BbHKF7B7Ofofd+0nuMwn1c4g9d1zrwvI/nSx/TD3bcbK8vxwImLnge+Tgt1T7HRYVu7RBiL3YV+u184O3FtgDAB9BvD0DOXgxbjvlIVehe9tA0c7op+vJ3PfxeWbg98tuhAKFbLEmFB/eiTLIu3Fw9JlIpymKF7q+GlV/o/nTQQnbem4fyQpfa6NgQByp0Q3v/LJJzhQv88t68v304GyejnDobJnQlX+M4fOcZXuhycakhogM3VznpcsAdj5D4WmPc+7Z21xHv/Ic8Qje02p0U9x3n3E5bt9cMmbuFjduPI3TfXNpQEJ5z05DF5sK8pWPIBwTX2YBbqYTuMzPCha7USxwSipH0HqNwVmXLtocJXRzLbwtluISuqzwylwBHP+pKtc9xUaHb+bkQcnG110PuRPfL//83yHQTIddj2wUArgaA1cAXjDgOuappVwLA7dABC0bcM7qencb18Bu2YFvkNy7JpxiRELpNIeBSm6Hz+V4APksjrld42fbihO6tL8m11UO2PwRaCcs2qTeZJl3YFywVulwvposkQhcnAeK4TTyMeLa5JWj9XA9m3Gv4u4LQ5eJSQ0QHbj6rulLDFZCZFFi0wrUf6/b4hS53/+IWKnSluO8k55YrpSsJXamnc+O+QmcR610ecq+8vjja2YCbr9Ib5y3OtWdnbAo+Jn9+g39+hXzkJj0PlO89Oy+yfhyj71oHDk2x/sG/HiYLXZf1GpcAR51SSrXPcVGh2/npBXwM7zYynS0BfBhy1c9GAsC/MMu7DHJxu6chV0mtK3SwEsBSfJvr4Td03tbIb40no0k+xbxIQrcphMYTZ2PP53sBhFh97Wk8VSB2ihW61tEghKTH6vrBfNlmqTeZmrHbkA7aExLa+2dJInRxyMiGvUfbfse+z82B/pxcTOolPSfG2gfupZvJ1pnJTLGHENGBmy+xsdRw1nuhRStc+/HunqPe+bn7FzfssOFicwmFbv+Z/jwHiyR01wsWeiHlnbFlHtd8Di2SMwxtcYSu9PwK6aFOeh4oP+gfvedWEqErPUePIKFr3Sa4Uve2ucI6uAS4qe8U3i+l2ue4qNBV0iBVoSv1hrgefoPnbIn8xmWzF/MiCd2mEPADLHQ+3wsg1OoLF1RYXqTQ/Z2jtnrI9odwwwvxhC4dorNuFFTocuLORRKhi23ksIDCPrCh/rGc0A2pnoXhXrrcC8+Y+ELXl9hYajiRGFq0wrUf6/cGCN2TbqEbWtZZivtO8nySHEo47hjOC911e/jqf6Efha6EMp9Dy65Aodt/ZrjQzb7JJ9OG9FAnPQ+ULv3nR9a/uqHwo0AKx8DviUGzNxtjTJsTBtcGOI7NEkbo0pGcUu1zXFToKmmQqtBtOMQLXSmDNpOtM8/N2hz57WgVC13q0xgyn+8FcEOg1Rd2Jajf2eic1id0b3+t/EL3JqGM50e78vPTnovv5wtp0NCFuJW8kiSj4cpV7+xuHxJPcg1+Htlp2eaybOLgXrrSsQgRHbj5RgdKDTfUHVq0wrUfG/f5hS73oYpbaFln6eMpk41X6tYYwz4DpetLEqS4Yh9uIZZrxhgz9Z294v74yiJLCbO0ucQcpevI1Yn3J8k9ynHdgOg9R3u/XeL9d68uN19/YnZb0moXZnm2WTHMwSXAUcFvf39h7pai9jkuKnSVNEhV6O4Shv24BAr8oKC/cbZNcURKCHGFj4VLDkuyrjgvEsvZ5hbzg/7zzPWDF3nLWvqErqu2um/77x7Fx2JTpHr10jGjD/Rr++VKI1OhOyNmJa8k9mLYXWPNrvaPiiTX4H8+GBW6vrhHiiR0OYEYIjpwW7HjcKxtKRZOGIV6+br2I8QD96hH6HJVGTmwKwdtLy/cFrQMy6DZ4UJXil2Vwg9CRz9c7jA+K8I9je6yyrYNnBUudLu9xQvdkP1Jco9y/Ghg1DWGHuc4+/Tj53gXmky2zgxxCFRO6FKLxTgln0uJCl0lDVIVutKwn0voPj1tQ+S3E2eiQpd6kRYLXecfXw8TfifPNAe9kFzrok1yISiGO4UXom2u2uqu7R+zclew28DNQ+WYNI7lJKP56qfnGGOiQjdugYMkQhe7a+De8yTX4OcenBJZdxwfY2NkoctVNQsRHbitaqis0MW95bbN2RBmcebaj037/UKXG5HBjStWw+FyGng1ZolqLnxLur6k+5oOqdsWGvtMrf3iPJ981eZse26W3GtJ6T6KF7pcqA4lyT3K8X0mLp72nMfZpx8OlHt0hy2QP444797/fHBqwTRxSj6XEhW6ShqkKnSl4g1Y6PaZvL7ghn180ruRm5jzJ6XVYYqFrrP7qLAKa6fOlkPohlt9heIzcc++KddWd21/HFzJFxw00eMbT8w2xkRjdOMWOEgidHF2PhaCSY7FZx+ICt24zhHSsGcphK4vDKbUcBZ91BdUwrUfmwOErmTXZ9sBplgNh0vovr44ntAdMjdc6EojNfTesS1EGBpjzExi7Yebz3Pb52Rhm2t4nnKPUFly+jr/aE7S55VrOba9s/tI4n3iQiFse2WhfM1wMbp03y6JUQmvlKjQVdIgVaErDfthoUvtWR4c907kBuZ6DOnwTbHQdYaWEj7dVHqhG6d4QyhSdrZtrtrqru2Pw6+GFSd07XTUlmf+pni+ryfO8OLGBU5aWrHjsBmzclekJGgol97fLnQbDp0wszfsD05ks0hC95EJUaP5ENGBGw7NqASc80Gol69rP0KKPUjXgm1csRoOl6XW8CU7gpZh4ZxnpOtLErp0NMS20Hj22RtkoXuL5/nk6yW3LY4o7DlmDbuMStqLceunSX+D54THxLpidP/sGGHjXBfwvuFRxrge48WiQldJg3SF7lG/0KVDbNwDjSs6QSuSFQtdZ6jQPdscLW0bd120/XpYuKdtKA+TSk20hfZg0+2Pg8sgnSNU6CbxfeUy/V3gWE7OJD7Osbj0/slFX7fSS7IH41391b6zgoSHbSGFFkoJJ4xCz6lrP3CpZgksCrhwEM7Dm8NlqUUrQ/oYNj9c6Eqlvbnh7Uw2rAfUGGPmbHhP3B9fcRlulItrcYRur7HR90ImW2dGLvMf26TPK9dybKM2bq7YWooUfpTJul1wOB9dvG/YiSOkEl4pUaGrpEGqQleKb8NCd82uQqHLJR2caeKN+Ev1AKPLstsRQlMCoesaws9k68xvXi690D12usmZDMYJJImkx/22l5eJ6+fA1YTwdFToJvV9jXPe8BA3JyIuvX9y8Ho/c1/xQlca9uSu28YTZ9lqW1ILKbRQSrg499Bz6tqPkGIPWJR1e2t15EOb8/DmcDkNhIgxDFc0R7pWJNstqdcv1M2Chobh5vsQb25pDbrOno/R+8l5LWeyYR8RpXpPcOvfQITui/O3Bi9PsgjMZN05IlxlNOy9jn8PLaVdKlToKmmQqtB9T4hvw0KXxjhxNjJSxalSPcDosjLZ8MzzFuah7uMPDnu1TLbO3PZKePGGuPxbV36dvcauCV5G0uN+2yvFC939R09HQiCS2mHFOW9YjHEi4uv5+OEQsPduUiShO28TH9sq9fBxLcR/tpScaYp+LPpKWltc+xFS7AEL3XtG15uRyxoKlsF5eHO4nAZGLY/3/JV6aTm6juSn5cRQJhvuUEKLteAW8iEecp3FGea//21e6IbEP5fqPfE/fWZG1k9LPw+LIXRx0ReaoOoKXcDn1ror4B5gvJy4sf/FokJXSYNUha6UyIGFLh364R7yUsWpUj3A6LJC/Dctra3xha4vXjZO8Ya4SOu8/+21iZYRh9+9Kgt8Dk7ofrXvrEiP+MqEdlhxzhsWRJyI+OaT4UL3wnw51mKuWyljW/q45CyJpBbn+i8FXA9g6Iemaz+kkSAMjrHvOWaNGYsq3WWyvLUhBy4oQlvczHcucfS8buPZaSV/WVyaGjcuWZFjgSCUM9mwKooh11kcj1fJXSLEuq1U7wnO+YGWfo4jdKUy3pmsOzkYnxsbBoXPCV5O3KqRxaJCV0mDqhe69IuY84WUPGJL9QArdllxBJMxsvelbX+IUbyh2G21rfe4dxItIw6unmwOTuhmsnWRUsKrG5IlT8U5b7jXkRMR33oqXOie33180detJHSlmFIprphrIbZcpYT7WAy1OJP2IbSkMj6v945daybU7y5YDmdtyLHPIXTjZr5zH/uSpZfkuTtDsAcLteKT4kAz2bARp5DrLE48q7SMkFCBUr0n7h4VdX6gsf4uWzDKdxxC9y5H6Bx+/lhPbhs3TQuXhBYIKRUqdJU0qLjQxbGAh4SMZSx0qdXTz55fGLnppYx0+/dz7hpX9HYX8zCMI5iMkYcmbQv18E2CtM6HmWz9kGXEQaqIJ1VGkyySaEvqEhDnvOFYbC5+8dtPzQle7+gVO00m689ed8GZ12ey8lC7lIXPtS3v+d0KSg3dhlCLM2kfvvzo9KD5cTLpg+PeiVQE46wNOVxCN26cJNdLKxWROdPUwk4v2XHN3hAmdKUY30y2zvy2ioRuSPhDMc92DHdMaZXFOEL32n6y0HUV4cFhJbacuLWkPOeucQXLmaRCV6kBKi50x6ChP6mQABa6ropCvoeT/fu53TqW0JWGG22LU6Ws2G217bGJ7yZaRhykkA3p/IWKs6TJU3HOG47F5jLSbTGLUHYcPCGG5IQgVVWS7jlq4+dqW6tA6IZ+vHydWLzZdvljM4Lmxz26j0xYZ2YR/9jQYiiu0IUJ9fGELjdEfqOnLDidXjouoYU4XDHdvw8IrQq5zobO2xq0La7lhQi5Yp7tmB6M0KU9qC/FELrXPD1H3C9XzgT+0P7vR3KFk2zBGbqc0Ep4pUKFrpIGFRe6LS2tpvf4d8zwxbJ3JBa6Lv9J38PJ/j20ZK6LYh6GNiEgdH4pgcQ2VyJCsUjr7DN5faJlxAHb3uB2fnc+/jDkIyiTzWU+JyH0OjOmcHh90po9kXmviSl0i0USuk1C4mZo73gmG2bLVWroNoRanO08fNJ0Hbk6IuRDhW5ra6u54vEZJpPNVXKkSVghcb7GuJPR4g4fcz2HN8QUul/7G28pF1pcxRXqEhJaFXKdxXEokJYR4j9dzLMdw1lf0mdUHKF7tUPoPlAn50zMRUL38sdy1679EKLLCa2EVypU6CppUHGhGwIWursc/pO+h9PSbQdNzzFrxAScONhYtzi9DBYaZ+xDsgSyLU453rhI63xiyoZEy4iDFJt84T0TxHmGztvqtWPbuC9ZTGnodUan53piruk3N9E2JIW6lfhe/HGEbogtV6mhyU/v7I7fS4/nDxW6xuQS0hpP5EI+aNUpyfGF4rIXi9urxvUcYvsojnGrC2OLJe/k0NAF12jK7SUSunESt+K+GzAfyw/nX/H4jOD1cXBCl1bEiyN0v/2ULHRdxU7wiNKV+Y+06wcvMhv3HY0sJ7RASKlQoaukQVUKXTyE7RrySyKmiiHUHJ4jzvb6YnT/OiK8HG9cpEpKT00tv9CV1u1LHPKJtKQxpXGvM9c2XFthocttj8utQ0rs41qILVepoTGhSYQuHlm5IobQxdBrLTS8xPXBHlp218IJKp/QNca0JSZlsnXivRaajOa650JyCEKuszjxrMW8GzbuO2ruf3tt0dc15+VbjNCllRVxO+5w+8BV6+wHzc+eX8hWswstEFIqVOgqaVCdQhcNYe8/elq82ZOIqbSIs73SS8i2riPLJ3T3HeU/LJIIXcnySEIS+J++d5Jzvvqdjc7jlXSoPe51Zqe7j/H0/O4z6QtdV2w3rUDoarsbKy90aYXBJNXZcFxpUqG7dldhT3loaWZXZbS4YoOrAhYidL/86PSCZwi7LYE+uq4Pozs6mNAtFdx9T0MXQuzOLFJ4SSbrjg3HceRWLP9k0ALW+zjO9pQCFbpKGlSl0MU+kQePn/E+EDsCcbZX8oQMESyl3lbbnp4WLnT/NmW9Ob/7eDMvMN7PIr18fVXFpGF62xoOVUbo2ljO52ZFLZ2+9+y8RNtQDHQb/jRcDnnxfSzgtvcIX7q73BQrdPEykgpdWukqFFeuQWiRBgsnqEKE7peQ0L2KKW6QyYYPZTuFbsDzKeQ6i9P7WQ3vBq5Htxih+4ijLDtX9t4yEwldG/7wo4ELWH/vftM3lmLXg1Ghq6RBVQpdHKvZeOJszQldzhC+kvvMrS/uAzE0SQdzF1PeOUTovrsnGnuG266EQ5Jxj7lrG75fBULXlcQYR+juO9oJhG7CeExqFxXK0VPycyw0XMDyQF1UUP10UDyhK7XQ5CRX6ILrg8oScp3FEYXV8G74Qu+pkfVTofvKQn+lNsups81mwMxNZuWOw+aXJA/BFRuOPZKtRdl1A+az3scqdJVaoCqFLh66P+J4QXRWoSu5D3QkoZuEbgmFLu1loy1pD2Qphe4P+qcvdF1JjGt2tQtdyXrKtv1Hi0/uTALehiQxungZSYUujbmMg/U0pS3U6cDy4Lh3IssI8Yv9coDQDXWAcCWjhbjChAjdOKKwGt4N3PqLEbqYVxdtL1iOKzYcW5rZxO4f9J/Hems/O2NT0t1NhApdJQ2qUujiWE1XT0inFbqeEsCdVehylYVKIXSTCrNSCt0u/ecn2oZioNvgSmLEsae/d5RizmTlioblBm9Dsd7IaQjd215exh7PuAUjehOh22/6RtE2DhMidEM9fV0lo0NcYUKE7quLOr7QpT66pRK6vtjwSWv2mMlr95o+k9ebTDYXOsVtX/+ZKnSVzk9VCl1sr3XsdFPNCd0/1qjQlao1+YTu4RPuOO6DQgU+HyUVugPSF7rZN2Whi+OcfUJXqmhYbvA2vLunOG/kKxMKXRprm2TdtD06MbzqoDHGPDS+PXYzTux3iNAdHyi6XQUj/jKiNEL3tU4gdGmoS6mEbih/m5ITulI54QEqdJUaoCqFbu/x7T0Wx2tQ6EqlcDu70OVsk0KErjHGXHr/FPFYJbWFK6XQva4KhK4rjnPdnnChaz1lKw3ehk37i/NGvqrPzETzl0PoxhXtD6MkpTghMaUMXZjLlLm2LcT+sFaFbpxeasxrCYXuk1M3mEyW9/bOZLVHV6kNqlLoNp48a7755GzTc8wac+JM7Qnd215pH+K8842V5uIeE1MXus/MKL/Q5WyTQoXu/Uwmum1HTiUTZqUUuj8auCDRNhRDnHsFJ/T9wfOhlfR4FgvehlBbL2kZSYUujblMsm7a4trfPTqxXejGGSkIEbqhxUBcBTBcIweWEKH7+uKOL3S3pCx0n56WE7pS8QlNRlNqgaoUupiTZ5prTuhOqN9TMC1X0aZS22pbJZIWOHueUKHLZaLb5jJXd1FKofvj56pb6K5Hcc6ffUDuHc9kc+FEaTBg5ibzradmJ3bRMKZ4oUtHmJKsO6m4tDw+6d22eeN8QIUI3Tgs2nLQLN9+yKxqONyW3Z/Jhvl8hwhdV5l4Co5//smgBearfWfFLq1cLNKzB/9/nF5qzCsLkwndZ2ZsNJlsnfnmk3yCaZzqc6VAha6SBlUvdE+drT2h29raamau39/2Aty0v7CEcLk9WdMSulKvbLFC9+QZ2XPSBXW/8OG6Rn8yqLqFri+hj768Oyp2H64fvKjoZcR99nzmvsns8Yzr89wHCd0419Xlj80o27MUh1N0HbnaO32Q0F0SLnSXIReIJ2MUtyklv2NCfowp3NekQpe+A0LpP3OTyWRlJxWXH285UKGrpIEK3QphX07feGJ27Hk3k4dcucs2cse4ErFcnG1SqNB1hS4kfZjTa8+H6xoN8TktNXHuFW7UoNQfDtVs5qJ1AAAgAElEQVTASwu2mS7955ekVzjus2fY/K3s8YxbetZm0se9rkrdo4t5bGK7+L7rLb/Q/WhX/3X2Rgyhiyv7pSV0p76zt2xCly4nlIGzckLXlgJO+92pQldJg6oXuqebOofQbWpuMfM2vmeOJohvpHFecX0345KW0KW2SXGELlctyrYQ6yUJ7H3qw3WNhlSuKjV0G87vLpdk3rjvmHP7cXOVH60Fkj57Xl+8nT2ecUsq4xjdm4YsDp6vnEIXi+9uAUL3nLvGebdlxNKG4PXjgidpCd3pqFBDtQjdQbOjVRpV6Cq1RtUL3TNNLd4HYmeHZu7O21R5oVsJGxpsmxRX6EqJbJlsnWlxmKv7+K9HOq7Q3XvkVME2XP30HHFaKnQnrtkj7kulhzurjaTPnuGLd7DHM25BE+yQcetLS4PnK2fogrWxymTrzN2j6r3Tn9dtfEmFLi548sSU6hW6cRLsKEnO0+A5W6rq3alCV0mDqhe6Z5tV6FLT8QWbD5R1fdwxHjir/EJXqu0eInQla7Jirw9cNtWH6xr9eRExocWAt+GbT8phMzR0gc6LWzE95J2BpNfWG0t4obsvQeU+O+9tLy8LnqecQvepvI1VJltn7hkdIHS7+4XumzGELvaBTkvormqIlkU2Jl2hO2SuCl1FqXqh26RCN2JptHjrwbKuLy2hi4dk4wrdHkKxiVteXFLUNn25REL3hhfSF7pfd8SHr98bLnSTWnt1FpI+e0YsbWCPZ5LKfW1C95XqELr9pm9sW0aPAKH78bv9QnfksnChi+3x0hK6xkTzDIxJV+i+KMSFZ7JhpZpLjQpdJQ2qXug2t7TWvNClZUeXbqu80H1u1uayrtOYQtsk3G4e6o9DlKqq3f7a8qK26QokDny4rtEbq0DoukqzYqFg9xVnstfS/eYj6bF4UxC67yUoqWzn/W2VCN1nZ2xqW0bPMWu803/ingnebXlrebjQxR9qaQpdY9rjlftMetcYUzqhe8uLS0wmGy/O96UF28TjO3P9/sTbkhQVukoaVL3QbVGhGxG6y7YfKuv6uGM8aHb5hW4fInS/+eRs8+c3Vgb1eHUftZrd7jteX1HUNl35eGmEbpykoVKCt8FVIQ7HfeJ95ar01TpJj4UUupCkRHW1CV2b3R8qdC9iiuDQNmp5+HsJh96kLXRbW1vN5v3H2kY+8D7F8QamNLe0mq3vHY81D/XfxW2WCl2lRqh6odvaygvdOLGTHR1adnTFjsNlXV9aQrcvytyOe167vcUL3T8NL254LvvmqpII3V+kJHSXbjtk/jpilddOC8c44n2VvEFrGesZO2TulljzSXHkSUpU23l/92r4iMWXyui6gLP7e431C92Le/qF7ugVcYRuezJl2kKXUiqhmwRaUQ232RtU6Cq1QdULXWN4ATF+9W7Tc8waM/3d8nrKVgO7DheW21zV0DmF7hNTNhSsMw5dR/JCt9g4tCOnzpqeY9YE9X64Xtoh4RdpsnZXu9B9fk67gLt56JKC/fj2U7JzQ63Q2tqaKIFMqvzXeCK+5WCS+xJb5ZVa6OLs/nvHrvVOf0mJhS72Gk/LXkyiQOjG8AYuBZLTRyZbZ+ZsKK97D4cKXSUNOqzQTeMmTQtaV75+Z2NZ15eW0H1yanKhi3tecXPFpZaalxfK8XA3Dy0uKa7cYHsmnAT04+cWtP1+6PiZmndcKAapqMmRBN7a41fvNo9OXGeaY1jnLd56sGxCd+i89qSnEHsx33bEFbrYa1yFbjtSAmQmW2fmldmPnUOFbufmQwDQCwAWA0AjAOwDgLEAcBEz7YcBYDAAHAKAYwDwJgD8MzPdZQCwAABOAcB2AMgCwPtibleHFbrlLppQTexpLPRDXbOrcwrdp6clF7p/GbGS3e6/jlhVpq2NghNyaPtlke4P5QZXlsKxkdf2m1u0CFJySGWqj1WwpHK5hO4wkvTk4yt9Z3q3ZczKXcHrxxaM1Sx041R7KwUjlzmEbpn92DlU6HZuLgaAPQDwAAB8FQCuAYDZAHAcAD5Opp0IAA0AcF1+unoAWAkAf4emORdyIvgtALgKAO4AgDMAcGfM7eqwQjeNmzQtqPH/2l1Hyro+7njj4exygS2K4r5073yDF7rZNysndKVe5Y4gdHF4DL6+fjhwvgrdEiFV/jveCYTun4avjLUcqSQtbmNjCF1swahCt51Ry3eKx3f+pvL6sXOo0O3c/AMA/N/kt/8FAAcB4G/oty9A7iL4Cvrt4wDQCjnhaxkIAFsB4IPot94AcBgA/j7GdnVYoVvuognVxD4idN/ZXXmhW4nj/cyM5EKXvmht6zrSX460VEi9ypls8X6+lWD0ip2RalRrdx0xF/WYaLqPqtxx7Kw8LBREOXmmcpXmyiV0fzRwQazlfO1vfqH79qpwoYudaVTotjN6hSx0F6bwDlWhW5ssAoDh6P/vg5z4pSEIywFgKPr/HQDQl0zzSchdQJfHWH+HFbqLtpTXS7aa2He0UOi+u+doWdeH1zVt3d6KZQr3n9k+9P+5B6fEmveO4SvY6+Sutyon0O4exXv5ZrJ15lfDql/oSpzVuNySIFX+O3W2OoRu3HsO85NB8YTuN5+cXVKhi51pqlnoxilrXAreXrVLPL5pvENV6NYe/wgAJyAXu2t5AwDmMtO+AgAL8//+B8hdKL8k03wQcj2/t8bYhg4rdMtdHaya2H/0dMG+r99bOaFbSbAX59PT4r2s/vg6L3Qr2RNJiy7g9uthSyu2HUp1Ignd003VIXSLsZv62fMLYz03vv3UHK/QrVu1O3j9OPSm2oTu+NW727at3PkVlHFo3dXwDlWhW3s8B7k4239Bv00BgDpm2n4AsCH/749A7kL5ATPdcQDo5ljnh/Lz23YpdFChW+7qYNXEe8cKhe6GTip0n5vV7sX5zIyNseblChtksmEZ4KWCumPgdutLKnRrHSl0oZI95i5hWYxt4fWDF8V6blz9tF/ojlsdLnTxvVdtQtcYY2at328m1IfvT6mYUC8L3TTeoSp0Ox4fBoALAtr7mXlvgtzJvoH8Xm6h2ys/b0HriEK33NXBqokDROhu3HesrOtLS+j+dUR7MlefyetjzfsHQejeM7pyQpcmDeL2m5dV6NY6D43nhW4lLdtcwnJ1Q/LexhtfiCd0sR2Z1MbHELr43qtGoZsWk9bscQjdyr9DVeh2PG4ERjQy7Z/IfN8AgCbIxeNSyh260Gl6dMtdHayaOHT8TMG+b9pfXqE7esVO8+VHp1c8husT90xILLK5Cl6ZbFg50lJBY6lV6CqY3uN514WWGF64xeISlsX4cw8n5Y19nG1uMa8vlqt2ZbJ1sXpA8b2nQredKWv3isc3jc4iFbq1wechF5f7vPD3+wDgAPP7Mogmo/Uh01wCNZSMtrKGhO7hE4VCd3OZhW5aXNRjYqyXJea3ryxLXejSnnfcbnt5WcW2Q6lOJHux1tbKCd3uo/gKgsUK3bPNLbHv3VNnmz1Cd0/w+nEegwrddqatk4XuchW6Shm4EHKOCm9DoScuxtqLXYV+Ox94e7EtAPAB9NsDkLMXw5ZjPjqs0C1mmK2j0XjibMG+b33veNqbVBYuuLu9R7ff9Hgxure9zAvdXmMrJ3Rpz3uB0H1FhW6tIwndSvI8KtVLW7GJUnY5F9w9IWj6Ugpd/JGpQred6e/uE49vGp1FKnQ7N/8f5IpA7ASAKyHXs2vbhWTaiZDrse0CAFcDwGrgC0Ych1zVtCsB4HboxAUjnpiyIXKTlrsMbjXReLJQ6G470DmF7jl3jWvbxzjlP40x5taXlrIP8/vfXlumrY1CP0hwU9cFpdqFbrGFaOxyzu8+Pmj6001uoTtxTbjQPYg+MlXotjNr/X7x+BaTfJgUFbqdm8tBjuGdSaa1JYAPQ86VYSQUOjNYLoNc3O5pyInortBJSwAbY8yn751U0odyR+LoqUIBtf3AibQ3qSx8+dHpiYXur4YtYR/mD9RVTugeOSUL3UoLGqX6qAahO9ghdIstRGOXc1630gjdSTGELg7vUqHbzpwN74nHN41RURW6Shp0WKFb7upg1cSx000F+77jYOcUujieLK7QveVFXuj2HvdOmbY2Cj1PKnQVjCQyK8kLc2Whu25PaYTuOXeNC5r+TFOL836ZvHZv8LrxaIoK3XbmbZSFbhqjoip0lTTosEK33NXBqonjREA1HOqcQrd+Z2NioXvzUF7ovjh/a3k2loGeJxW6CkbqwawkQxxCt9hnql3Ox0okdKetiyF0T6rQ5Zi/6YB4fCtdvMIYFbpKOnRYoVvuognVxMkzhS/InYdPpr1JZWF1QzFCdzH7MK+kGf+JMyp0FTdpXxcuoVtsxcUfP5crAzws8OOSOjXQNnN9eKU2XFTn2RmbEu5B52PRloPi8U0j/E+FrpIGHVbolrtoQjVBs5N3dVKhu2z7obZ9jFP+0xhjbhoSFbpxnRuKhX6QqNBVKGlfFy6hW2znwZmmFrNuz5Fgu7Qmj9Cdu/G94HU3NbeY87qP79QjXklYslUWummE/6nQVdKgwwjdTxGhW+6iCdUEFbp7Gk+lvUll4eSZZnNut5zzQuOJs7HmpZWZMtn4ZYSLxWeXpChpXxeuimQb91V2lMwndBdsPhBreY0nz3baZ2NSlm47JB7fNML/VOgqadBhhW4t+ejSWLa9Rzrvw7zx5Flz6PiZ2PNdPzgqdCs9hOnLIlcUrlR1JXEL3cp2HjS3tDrvlyVbK1uZsTOyfLssdIsNVUmCCl0lDTqM0KWhC7UkdOkLYV8nFrpJ+TkjdAfMrKzQ9SXXKEpzS6vZ03jK/FvXdK6LF+fLQrfSo2Q+oZtGidrOxqqGw+LxTSPPRYWukgYdRujSHt1aewhe+fiMtn3ff/R02ptTdfzs+YWRB/lzszZXdBt8yTWKYklL6A5zCN1KlxZv8QjdNAoadDawk03aPfjGqNBV0qHDCt3OWh1M4ulp7dXh3jumQpfy00FRoTtodmWFri/mUFEsH60SofvoxHVt/95S4dLira1uoZuG/VVnwyV008hzUaGrpEGHEbo0dKHWwEL3gArdCNbaCLfBc7ZUdBt8Q7GKYklN6C7YVnBN9p28vu3fW6tM6NaSV3q5WLFDDl2odA++MSp0lXToMEKX9ujWGv2mb2zb9yTJWp2d6wbMjzzIh8ytrND1vbgVxfKxu8alcl28RITuE1PaP6DTGCVz3S+1ZCFZLlz2YpX+sDFGha6SDip0OwgqdN106R8VukPnba34dqjQVUKoFqH75NR2obv9QOX9Z133S6VDKTojrspoaXzYqNBV0qDDCN1aD13AQvegCt0I33t2XuRBHlqhqZSo0FVCSEvo0tAFHBK142B1Cd00tqezMXvDfvH4pvFho0JXSQMVuh2EZ2dsatt3jdGN8p1n5kYe5C8t2Fbx7VChq4RwTkpCl9qL4Q/oahO6nbUCZCXZcfBEVX1IqNBV0kCFbgeh/8x2oauuC1Gu6RcVuq8s3F7x7cDrH71iZ01fs4pMWkKXFozAH9BplM51CV31Cy8N0vFN43yr0FXSQIVuBwELXfXRjfLtp+ZEHuSvLUpX6OLktBtfWFTxbVGql7SELrWbGjAzXaFbv7PRjFzWwAoxHbkqDfiYXtVnZtu/d6bQY65CV0kDFbodhNUN7S+oU2eb096cquPGF6KV0YYv3lHx7aDX6KHjZ8xbyxvM0VNnK74tSvVybrd0hK4xhdfoc7M2pyp8jJFLZ+sHfWnAxxTHZKcRGqJCV0kDFbodiLkb3zNrdx1JezOqkp2HT0ZelG8sSV/oKgpHtQjdQbPTF7pS6Wz9oC8N+Jg+hVw29jRWPjREha6SBip0lU7DvI3vFVwjI5Y2VHwb9BpVQlCh2w5XOls/6EuHJHT3phADrUJXSYMOI3Qv7jlRRYTihHpGPl/hymjGqNBVwqgWoTt4zpZUY3SNiZbOXrTlYCrb0VmRhG4ayX4qdJU06DBCl37xKwplweZCoTto9uaKb4Neo0oI1SJ0X5ibvtClpbMXb1WhW0rwscUFQtKIgVahq6SBCl2l07BoS2G5y+dmqdBVqpNqEbrYbiytAg0tROguUaFbUiShm4ZNpQpdJQ1U6CqdBlrXfeCsTRXfBr1GlRDO6za+KoTukCro0cU2fJlsnVm6TYVuKZGEbhr2bSp0lTRQoat0GpZuO6RCV+kQVIvQxcloaWThc9u0dNuh1LajMyIJ3TRKyavQVdJAha7SaVi+vVDoDpipQlepTs7rXh1Cd/zq3W3/bjyZntcz3qZl21XolhJ8bJ+Y0i50D59QoavUBip0lU7Dyh2HC66RZ2eo0FWqkwvunlAVQrelpdXc9/Za88LcyjuUSNu0XIVuSWluaTUz3t1nmltaC4Ru44nKf9io0FXSQIWu0mnA1eMy2TrzzIyNFd8Gu+5vPDG74utWOg4X95hYFUK3WsDbtGLH4bQ3p9Pytynr247zkRSqNarQVdJAha7SaajfWSh0+01PT+he029uxdetdBxmvLvPZLJ1Jvvmqoqvuxqfo3ibVqrQLRtY6KZRllyFrpIGKnSVTsPaXUeqRuheq0JX8XDo+BnT2tpa8fVW43MUb9Pqhsa0N6fT0ndyu9A9drqp4utXoaukQYcUupc9NC3tzVGqkHV7VOgqio8044Ml8H1bv1OFbrnog4TucRW6So3QIYVuWn6PSnXz7p6jBdfJ09M2VHwb7Lq/9+y8iq9bUUK48B4VurUKFronzqjQVWqDDil0FYVjw96jVdOj22XA/IqvW1FCuCjFRDgJfN+u2aVCt1z0mfSuCl2l5lChq3QaNu47VjWuC2kUq1CUEC7uWd1Cd+2uI2lvTqfl6Wnt9mInzzRXfP0qdJU0UKGrdBo27y8Uugs3H6j4NqxuaDTD5m81Z5tbKr5uRQnhk70mVd2zFN+37+xWoVsujpw6a/77kenmV8OWpLJ+FbpKGnQYoTtr/X7zHw9MMSOWNqS9KUqVsvW94/pBpCgePnVvdQvddXtU6JaTNJw+LCp0lTToMELXmHRvUKX62X7ghApdRfFQ7UL33T1H094cpUyo0FXSoEMJXUVxseOgCl1F8VHtQnfpNi0B3FlRodv5GQAA7wLAcQA4DACzAeCrzHQfBoDBAHAIAI4BwJsA8M/MdJcBwAIAOAUA2wEgCwDvi7lNKnSVTsPOwydV6CqKh2oXumnE1iuVQYVu5+dFAPgdAHwFAL4FAG8BQDMAfJFMNxEAGgDgOgC4BgDqAWAlAPwdmuZcyIngtwDgKgC4AwDOAMCdMbdJha7SadjdqEJXUXxUu9BdoEK306JCt/Z4PwDsAIBn0W9fgNxF8BX028cBoBVywtcyEAC2AsAH0W+9IddT/PcxtkGFrtJp2NN4SoWuonhQoaukhQrd2mQ1ADyP/v8+ADgI0RCE5QAwFP3/DgDoS6b5JOQuoMtjrF+FrtJp2HdEha6i+FChq6SFCt3a4H2QC0H4fyAXbnAKAD6H/v4GAMxl5nsFABbm//0PkLtQfkmm+SDken5vjbE9KnSVTsP+o6dV6CqKh09XudCdv0mFbmdFhW5t8CPInWQDuaS0a8jfpwBAHTNfPwDYkP/3R/Lz/4CZ7jgAdHOs/0P5+W27FFToKp2EA8dU6CqKDxW6Slqo0O14fBgALgho70fz/G8A+A8A+BoAPAe5Hl3svFBuodsL2oV2W1Ohq3QGGk+cVaGrKB6qXejO2/he2pujlAkVuh2PG4ERjUz7J8cy3oKcq4Kl3KEL2qOrdFpOnW1ue1neO3Zt2pujKFVJtcfort2lldE6Kyp0a5O7AeA0+v/7AOAAM90yiCaj9SHTXAKajKbUOEPmbjH3jK43zS1aRU9ROC7uObGqha7SeVGhW5uMB4B16P+tvdhV6LfzgbcX2wIAH0C/PQA5ezFsOeZDha6iKEoN8csXl1SdqFShWxuo0O3c/DcAjAKAGyDX4/odABgOuRP+UzLtRMj12HYBgKshZ0HGFYw4DrmqaVcCwO2gBSMURVEUD+8dO226j1pdVTZeKnRrAxW6nZt/g5wobYCcIN0NAJMA4ApmWlsC+DDkqp+NBIB/Yaa7DHJxu6fzy+0KWgJYURRF6WCo0K0NVOgqaaBCV1EURUkVFbq1gQpdJQ1U6CqKoiipokK3NlChq6SBCl1FURQlVVTo1gYqdJU0UKGrKIqipIoK3dpAha6SBip0FUVRlFRRoVsbqNBV0kCFrqIoipIqKnRrAxW6Shqo0FUURVFSRYVubaBCV0kDFbqKoihKqqjQrQ1U6CppoEJXURRFSRUVurWBCl0lDVToKoqiKKmiQrc2UKGrpIEKXUVRFCVVVOjWBip0lTRQoasoiqKkigrd2kCFrpIGKnQVRVGUVFGhWxuo0FXSQIWuoiiKkioqdGsDFbpKGqjQVRRFUVJFhW5toEJXSQMVuoqiKEqqqNCtDVToKmmgQldRFEVJFRW6tYEKXSUNVOgqiqIoqaJCtzZQoaukgQpdRVEUJVVU6NYGKnSVNFChqyiKoqSKCt3aQIWukgYqdBVFUZRUUaFbG6jQVdJAha6iKIqSKip0awMVukoaqNBVFEVRUkWFbm2gQldJAxW6iqIoSqqo0K0NVOgqaaBCV1EURUkVFbq1gQpdJQ1U6CqKoiipokK3NlChq6SBCl1FURQlVVTo1gYqdJU0UKGrKIqipIoK3dpAha6SBip0FUVRlFRRoVsbqNBV0kCFrqIoipIqKnRrAxW6Shqo0FUURVFSRYVubaBCV0kDFbqKoihKqqjQrQ1U6CppoEJXURRFSRUVurWBCl0lDVToKoqiKKmiQrc2UKGrpIEKXUVRFCVVVOjWBip0lTRQoasoiqKkigrd2kCFrpIGKnQVRVGUVFGhWxuo0K0tvgO5k72S+duHAWAwABwCgGMA8CYA/DMz3WUAsAAATgHAdgDIAsD7Ym6HCl1FURQlVVTo1gYqdGuH/wsAtgLAXuCF7kQAaACA6wDgGgCoz0/3d2iacyEngt8CgKsA4A4AOAMAd8bcFhW6iqIoSqq8sWSHyWTrTPbNVWlvilJGVOjWDvcBwCwAGApRofsFyF0EX0G/fRwAWiEnfC0DISeWP4h+6w0AhwHg72NsiwpdRVEUJXX2NJ4yra2taW+GUkZU6NYG5wDACQD4FPBC9z4AOAjREITl+ektOwCgL5nmk5C7gC6PsT0qdBVFURRFKTsqdGuDOgDon//3UIgK3TcAYC4z3ysAsDD/73+A3IXySzLNByHX83trjO1RoasoiqIoStlRodv5uRpyCWb/b/7/h0JU6E6BnBim9AOADfl/fwRyF8oPmOmOA0A3xzZ8KD+/bZeCCl1FURRFUcqMCt2Ox4cB4IKA9n4A+D8BYDMA/B7NPxQqL3R75ectaCp0FUVRFEUpJyp0Ox43AiMamfZPANAVADZCrjf3H/PtVcg5KvwjtCeVlTt0QXt0FUVRFEWpOCp0OzdDwS2Gb8xPdx8AHGDmXwbRZLQ+ZJpLQJPRFEVRFEWpQlTodm4ugJwAxW0iAGzK//uf8tNZe7Gr0LznA28vtgUAPoB+ewBy9mLYcsyHCl1FURRFUcqOCt3aYyjIBSN2AEAXyCWwrQa+YMRxyFVNuxIAbgctGKEoiqIoSpWiQrf2GAruEsCHIVf9bCQA/Asz3WWQi9s9DblKal1BSwAriqIoilKFqNBV0kCFrqIoiqIoZUeFrpIGKnQVRVEURSk7KnSVNFChqyiKoihK2VGhq6SBCl1FURRFUcqOCl0lDVToKoqiKIpSdlToKmmgQldRFEVRlLKjQldJg38FALNkyRKzc+dObdq0adOmTZu2srQlS5ZYofuvKWsfpYa4FNylibVp06ZNmzZt2krZLgVFqRAfgNwF96+QG0ooR7Ni+tIyrkObnoeO1PRcVEfT81AdTc9D9bRyn4t/zS/7A6AonYiPQO7G+UjaG1Lj6HmoHvRcVAd6HqoDPQ/Vg54LRUmA3jjVgZ6H6kHPRXWg56E60PNQPei5UJQE6I1THeh5qB70XFQHeh6qAz0P1YOeC0VJwIcAoFf+v0p66HmoHvRcVAd6HqoDPQ/Vg54LRVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVEURVGUUnIBAEwBgBMAsBcAHgWAD6a6RR2XLgAwBgB2Qu54rgSAGwHgfWS6mwFgAwCcBoBVAPBtZlkfBoDBAHAIAI4BwJsA8M/MdJcBwAIAOAUA2wEgy6yv1vlfkDsnBgA+Tf6m56L8vB8A/gIA6wHgDADsAoABZJr3AUBXANgBueO3AAA+zyzrXwBgJOTOwyEAeB74zPOrIXc+T0Pu/N5U7E50Aq4BgEWQO3Z7AGA4AHyUmU7vidJxLgAMBIDVANACADOF6Sp9zEPvN0Xp8PxvANgNALMA4GsA8AsAaASAfmluVAdmAQC8BgA/BIArAeAhyD3cuqNpfgQArQBwPwBcAbkXfhNEHzITAaABAK77/9u7t1CpqjgA45+RphZ2ii4QgmKWJdhDSOAlGksjBO2hY9eXMruCmeGDFkEXi6IMJLASouhGRUXQhcoexLTMLpB2wYoyIyIptJDKiuzhvzezzp59bDyemcE93w8GZi+XM3vWOmvvtdeVuEFtISrOhyZxxhMXvJeAc4DFREViySD+piq4l3iIK1Z0zYv2eJy4zlwHnAVcCtxfiLOUSK/FRPq9BPwGjEviDCXSfgtRkb2IyJdXC581HfiHyM8ZRP7+C/QO0u85GNWIa9FjwEwi7bZmr+FJPMvE4DqfqEw+T6T12pI4nUjzZsqbVAnLiEJxdBJ2NXGTOKEjZ3RwO6YkbDXxBJ7bCjxdiPMu8HpyPIWolM1KwiYQF8MLk7BHgG/p2wJ/N7ATOGx/TrzCTgF2A9fQWNE1L1rvXOKmPXEfcYYDvwJ3JWHDgG3AqiTsEiLdJxQ+f18AgegAAAU+SURBVC9wRhL2JrCh8B3PAJ/vx3lXzcPAN/Rt2ZtBpN2UJMwyMbgOSd6/THlFt91p3mx5kyphHfEkl+ohCs/lbT+barqOuECNIJ6W9xJP46kbiKfr/EJ0B/ALjd1NHxOtY7ntwAOFOKdl31E7sNOujDVE62GNvhVd86I9niMqnvtyNpFOpxXCHyBuvrkniHRPDSHy57bs+DDgLyIfU3Oz7xj7/6dcSY8SXeKp04k0mZodWyZaq6yi24k0b7a8SZWwA1heEv4DcE+bz6WqnqZ+8ZhNXGDGF+LMysJPyY6fB9b381kbs/eHZ/9nQSHOMOJB5doDOemK6CWGLIyisaJrXrTHd8CDwEqiFekPYqhBOjb0eiKdinMDrsrCR2THm4CnSr5jA/Bs9n4ikRczC3FOysLPG8iPqIAziZb164mxnuOIrvAPqLc6WiZaq6yi24k0b7a8SZXwN+XjpT4lutx1YKYT4+IWZseXERei4hCHyfRtWVlD47hDiLHTX2bv873Oy8Yd7gZuHvBZV8NIonVjfnZco29F17xojz3E8Kj3iJv6POBrYhhBPrbwFiKdinqJdM2HUX1F+fyBV4G3svfTsv8zuRDnmCz80oH8iIqYQ+TF3uz1MXBc8u+WidYqq+h2Is2bLW9SJVjRbZ3RRMv429RbTLyRtM/dRGtV3tVXw4puJ/xFrECSpnPeZX5BdmxFt/WmEeM0VxBjc3uJoQybqHePWyZay4qu1AEOXWiNHmJG7GaimzBn12B7jCFaEmcTedFDLNezl+jCPQLzol1+op5OqV3Ardl7hy603ofE33JqNJG+ea+HZaK1HLogdcA6Yk3K1JE4Ge1AjCAuSNuJJ+xUPvFgTiF8IVExyy88dwA/l3z2RzROPFhRiDOJ7p3skatR754te63FvGiXtfRf0c2X3csnx0wqxFlB42S0jwpxhhD5c1t2nE9GW1iIN4funoz2O+WtqDuoz763TLTWviajtTPNmy1vUiUsI9bO60nCFuDyYgN1KPAKMTu2v+WUtgJPFsLWU76UzDlJ2MmULyXzDbG+aG450UXZzZt+9BAX9fR1I/XWjnz4gnnRekuIStaxSVjeLZsvip8vd3RnEmcosUxS2fJiJyVhMylfXuydwnk8RXcvL/YFjY0aY4j0vCoJs0y0zr6WF2tnmjdb3qRKyDeMWEusR3kFUSDcMGJgVhMXo5uIxb7TVz4OLr9Z305UwB4ixkpPKXzWG8TT+TziaX8z5YuD7yZ2yDkbWET3LcjerBqN6+iaF603ilh54X1iCaWLiRvxJvoulbSU2BVqEZF+L9D/hhGbiUryhUS+9LdhxCoiX28n8nneoP2qg88i4u9/JfUNI7YQ1/+jkniWicE1khj72kv8zX+WHOcPf51I82bKm1QZpxITpn4nxtPdR3c+bQ+GbfTfXT42iXclMbFmD/WbdlG+3eNOYqb0i5S3sk8luob/JHbNWUp3bbHZrBr9bwFsXrTWicBrxA14F7F5w/GFOEOIHqbvifTbSOONHmI4UL4F8E4iX8q2AJ5L5OceIn/nl8TpJkOIMZqfEPnwI7GG+oSSuJaJwTOW/u8JtSReu9O82fImSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkSZIkqTv9B7j/qYyUahxwAAAAAElFTkSuQmCC" width="639.8333333333334">
  12489. </div>
  12490. </div>
  12491. </div>
  12492. </div>
  12493. </div>
  12494. </div>
  12495. </div>
  12496. </body>
  12497. </html>