main.css 89 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320
  1. /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
  2. article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  3. display: block
  4. }
  5. audio, canvas, video {
  6. display: inline-block
  7. }
  8. audio:not([controls]) {
  9. display: none;
  10. height: 0
  11. }
  12. [hidden] {
  13. display: none
  14. }
  15. html {
  16. font-family: sans-serif;
  17. -webkit-text-size-adjust: 100%;
  18. -ms-text-size-adjust: 100%
  19. }
  20. body {
  21. margin: 0
  22. }
  23. a:focus {
  24. outline: thin dotted
  25. }
  26. a:active,
  27. a:hover {
  28. outline: 0
  29. }
  30. h1 {
  31. font-size: 2em;
  32. margin: 0.67em 0
  33. }
  34. abbr[title] {
  35. border-bottom: 1px dotted
  36. }
  37. b,
  38. strong {
  39. font-weight: bold
  40. }
  41. dfn {
  42. font-style: italic
  43. }
  44. hr {
  45. -moz-box-sizing: content-box;
  46. box-sizing: content-box;
  47. height: 0
  48. }
  49. mark {
  50. background: #ff0;
  51. color: #000
  52. }
  53. code,
  54. kbd,
  55. pre,
  56. samp {
  57. font-family: monospace,
  58. serif;
  59. font-size: 1em
  60. }
  61. pre {
  62. white-space: pre
  63. }
  64. q {
  65. quotes: "\201C" "\201D" "\2018" "\2019"
  66. }
  67. small {
  68. font-size: 80%
  69. }
  70. sub,
  71. sup {
  72. font-size: 75%;
  73. line-height: 0;
  74. position: relative;
  75. vertical-align: baseline
  76. }
  77. sup {
  78. top: -0.5em
  79. }
  80. sub {
  81. bottom: -0.25em
  82. }
  83. img {
  84. border: 0
  85. }
  86. svg:not(:root) {
  87. overflow: hidden
  88. }
  89. figure {
  90. margin: 0
  91. }
  92. fieldset {
  93. border: 1px solid #c0c0c0;
  94. margin: 0 2px;
  95. padding: 0.35em 0.625em 0.75em
  96. }
  97. legend {
  98. border: 0;
  99. padding: 0
  100. }
  101. button,
  102. input,
  103. select,
  104. textarea {
  105. font-family: inherit;
  106. font-size: 100%;
  107. margin: 0
  108. }
  109. button,
  110. input {
  111. line-height: normal
  112. }
  113. button,
  114. select {
  115. text-transform: none
  116. }
  117. button,
  118. html input[type="button"],
  119. input[type="reset"],
  120. input[type="submit"] {
  121. -webkit-appearance: button;
  122. cursor: pointer
  123. }
  124. button[disabled],
  125. html input[disabled] {
  126. cursor: default
  127. }
  128. input[type="checkbox"],
  129. input[type="radio"] {
  130. box-sizing: border-box;
  131. padding: 0
  132. }
  133. input[type="search"] {
  134. -webkit-appearance: textfield;
  135. -moz-box-sizing: content-box;
  136. -webkit-box-sizing: content-box;
  137. box-sizing: content-box
  138. }
  139. input[type="search"]::-webkit-search-cancel-button,
  140. input[type="search"]::-webkit-search-decoration {
  141. -webkit-appearance: none
  142. }
  143. button::-moz-focus-inner,
  144. input::-moz-focus-inner {
  145. border: 0;
  146. padding: 0
  147. }
  148. textarea {
  149. overflow: auto;
  150. vertical-align: top
  151. }
  152. table {
  153. border-collapse: collapse;
  154. border-spacing: 0;
  155. margin-bottom: 1.5em;
  156. width: 100%
  157. }
  158. ::-moz-selection {
  159. background-color: #dadada;
  160. color: #343434;
  161. text-shadow: none
  162. }
  163. ::selection {
  164. background-color: #dadada;
  165. color: #343434;
  166. text-shadow: none
  167. }
  168. .all-caps {
  169. text-transform: uppercase
  170. }
  171. .pull-left {
  172. float: left
  173. }
  174. .pull-right {
  175. float: right
  176. }
  177. .image-pull-right {
  178. float: right;
  179. margin-top: 0
  180. }
  181. .clearfix {
  182. *zoom: 1
  183. }
  184. .clearfix:before,
  185. .clearfix:after {
  186. display: table;
  187. content: ""
  188. }
  189. .clearfix:after {
  190. clear: both
  191. }
  192. .unstyled-list {
  193. list-style: none;
  194. margin-left: 0;
  195. padding-left: 0
  196. }
  197. .unstyled-list li {
  198. list-style-type: none
  199. }
  200. b,
  201. i,
  202. strong,
  203. em,
  204. blockquote,
  205. p,
  206. q,
  207. span,
  208. figure,
  209. img,
  210. h1,
  211. h2,
  212. header,
  213. input,
  214. a {
  215. -webkit-transition: all 0.2s ease;
  216. -moz-transition: all 0.2s ease;
  217. -ms-transition: all 0.2s ease;
  218. -o-transition: all 0.2s ease;
  219. transition: all 0.2s ease
  220. }
  221. h1,
  222. h2,
  223. h3,
  224. h4,
  225. h5,
  226. h6 {
  227. font-family: "Alegreya",
  228. serif
  229. }
  230. h1 {
  231. font-size: 32px;
  232. font-size: 2rem;
  233. line-height: 0.8125;
  234. margin-bottom: 26px;
  235. margin-bottom: 1.625rem;
  236. line-height: 1
  237. }
  238. h2 {
  239. font-size: 28px;
  240. font-size: 1.75rem;
  241. line-height: 0.9286;
  242. margin-bottom: 26px;
  243. margin-bottom: 1.625rem;
  244. line-height: 1
  245. }
  246. h3 {
  247. font-size: 24px;
  248. font-size: 1.5rem;
  249. line-height: 1.0833;
  250. margin-bottom: 26px;
  251. margin-bottom: 1.625rem
  252. }
  253. h4 {
  254. font-size: 18px;
  255. font-size: 1.125rem;
  256. line-height: 1.4444;
  257. margin-bottom: 26px;
  258. margin-bottom: 1.625rem
  259. }
  260. h5 {
  261. font-size: 16px;
  262. font-size: 1rem;
  263. line-height: 1.625;
  264. margin-bottom: 26px;
  265. margin-bottom: 1.625rem
  266. }
  267. h6 {
  268. font-size: 14px;
  269. font-size: 0.875rem;
  270. line-height: 1.8571;
  271. margin-bottom: 26px;
  272. margin-bottom: 1.625rem
  273. }
  274. a {
  275. text-decoration: none;
  276. color: #343434
  277. }
  278. a:visited {
  279. color: #4e4e4e
  280. }
  281. a:hover {
  282. color: #1a1a1a
  283. }
  284. a:focus {
  285. outline: thin dotted;
  286. color: #343434
  287. }
  288. a:hover,
  289. a:active {
  290. outline: 0
  291. }
  292. figcaption {
  293. padding-top: 10px;
  294. font-size: 14px;
  295. font-size: 0.875rem;
  296. line-height: 1.8571;
  297. line-height: 1.3;
  298. color: #4d4d4b
  299. }
  300. .image-credit {
  301. display: inline;
  302. float: left;
  303. width: 83.33333%;
  304. margin-left: 8.33333%;
  305. margin-right: 8.33333%;
  306. display: block;
  307. text-align: right;
  308. font-size: 12px;
  309. font-size: 0.75rem;
  310. line-height: 2.1667;
  311. line-height: 1.3;
  312. font-style: italic;
  313. color: #80807e
  314. }
  315. @media only screen and (min-width: 37.5em) {
  316. .image-credit {
  317. display: inline;
  318. float: left;
  319. width: 75%;
  320. margin-left: 0%;
  321. margin-right: 0%
  322. }
  323. }
  324. @media only screen and (min-width: 86.375em) {
  325. .image-credit {
  326. display: inline;
  327. float: left;
  328. width: 70.83333%
  329. }
  330. }
  331. .image-credit a {
  332. color: #80807e
  333. }
  334. .notice {
  335. margin-top: 1.5em;
  336. padding: .5em 1em;
  337. text-indent: 0;
  338. font-size: 14px;
  339. font-size: 0.875rem;
  340. background-color: #fff;
  341. border: 1px solid #ccc;
  342. border-radius: 3px
  343. }
  344. blockquote {
  345. margin-left: -28px;
  346. padding-left: 20px;
  347. border-left: 8px solid #333332;
  348. font-family: "Alegreya",
  349. serif;
  350. font-style: italic
  351. }
  352. .footnotes ol,
  353. .footnotes li,
  354. .footnotes p {
  355. margin-bottom: 0;
  356. font-size: 14px;
  357. font-size: 0.875rem
  358. }
  359. p {
  360. font-size: 1.1rem;
  361. margin: 0 0 1.625rem;
  362. -webkit-hyphens: auto;
  363. -ms-hyphens: auto;
  364. -o-hyphens: auto;
  365. -moz-hyphens: auto;
  366. hyphens: auto
  367. }
  368. p+p {
  369. margin-top: 0
  370. }
  371. .post article ul,
  372. .page article ul {
  373. list-style-type: none
  374. }
  375. .post article ul li: before,
  376. .page article ul li: before {
  377. content: "–";
  378. float: left;
  379. display: inline;
  380. width: 1em;
  381. margin-left: -1em
  382. }
  383. tt,
  384. code,
  385. kbd,
  386. samp,
  387. pre {
  388. font-family: Monaco,
  389. "Courier New",
  390. "DejaVu Sans Mono",
  391. "Bitstream Vera Sans Mono",
  392. monospace
  393. }
  394. p code,
  395. li code {
  396. font-size: 12px;
  397. font-size: 0.75rem;
  398. line-height: 1.5;
  399. white-space: nowrap;
  400. margin: 0 2px;
  401. padding: 0 5px;
  402. border: 1px solid #f7f7f7;
  403. background-color: #efefef;
  404. border-radius: 3px
  405. }
  406. pre {
  407. font-size: 12px;
  408. font-size: 0.75rem;
  409. line-height: 1.5;
  410. overflow-x: auto
  411. }
  412. .highlight {
  413. background-color: #efefef;
  414. font-family: Monaco,
  415. "Courier New",
  416. "DejaVu Sans Mono",
  417. "Bitstream Vera Sans Mono",
  418. monospace;
  419. font-size: 12px;
  420. font-size: 0.75rem;
  421. line-height: 2.1667;
  422. color: #333332;
  423. margin-bottom: 1.5em;
  424. border-radius: 4px
  425. }
  426. .highlight pre {
  427. position: relative;
  428. margin: 0;
  429. padding: 1em
  430. }
  431. .highlight .lineno {
  432. padding-right: 24px;
  433. color: #b3b3b1
  434. }
  435. .highlight .hll {
  436. background-color: #ffc
  437. }
  438. .highlight .c {
  439. color: #999988;
  440. font-style: italic
  441. }
  442. .highlight .err {
  443. color: #a61717;
  444. background-color: #e3d2d2
  445. }
  446. .highlight .k {
  447. color: #000000;
  448. font-weight: bold
  449. }
  450. .highlight .o {
  451. color: #000000;
  452. font-weight: bold
  453. }
  454. .highlight .cm {
  455. color: #999988;
  456. font-style: italic
  457. }
  458. .highlight .cp {
  459. color: #999999;
  460. font-weight: bold;
  461. font-style: italic
  462. }
  463. .highlight .c1 {
  464. color: #999988;
  465. font-style: italic
  466. }
  467. .highlight .cs {
  468. color: #999999;
  469. font-weight: bold;
  470. font-style: italic
  471. }
  472. .highlight .gd {
  473. color: #000000;
  474. background-color: #fdd
  475. }
  476. .highlight .ge {
  477. color: #000000;
  478. font-style: italic
  479. }
  480. .highlight .gr {
  481. color: #a00
  482. }
  483. .highlight .gh {
  484. color: #999
  485. }
  486. .highlight .gi {
  487. color: #000000;
  488. background-color: #dfd
  489. }
  490. .highlight .go {
  491. color: #888
  492. }
  493. .highlight .gp {
  494. color: #555
  495. }
  496. .highlight .gs {
  497. font-weight: bold
  498. }
  499. .highlight .gu {
  500. color: #aaa
  501. }
  502. .highlight .gt {
  503. color: #a00
  504. }
  505. .highlight .kc {
  506. color: #000000;
  507. font-weight: bold
  508. }
  509. .highlight .kd {
  510. color: #000000;
  511. font-weight: bold
  512. }
  513. .highlight .kn {
  514. color: #000000;
  515. font-weight: bold
  516. }
  517. .highlight .kp {
  518. color: #000000;
  519. font-weight: bold
  520. }
  521. .highlight .kr {
  522. color: #000000;
  523. font-weight: bold
  524. }
  525. .highlight .kt {
  526. color: #445588;
  527. font-weight: bold
  528. }
  529. .highlight .m {
  530. color: #099
  531. }
  532. .highlight .s {
  533. color: #d01040
  534. }
  535. .highlight .na {
  536. color: teal
  537. }
  538. .highlight .nb {
  539. color: #0086B3
  540. }
  541. .highlight .nc {
  542. color: #445588;
  543. font-weight: bold
  544. }
  545. .highlight .no {
  546. color: teal
  547. }
  548. .highlight .nd {
  549. color: #3c5d5d;
  550. font-weight: bold
  551. }
  552. .highlight .ni {
  553. color: purple
  554. }
  555. .highlight .ne {
  556. color: #990000;
  557. font-weight: bold
  558. }
  559. .highlight .nf {
  560. color: #990000;
  561. font-weight: bold
  562. }
  563. .highlight .nl {
  564. color: #990000;
  565. font-weight: bold
  566. }
  567. .highlight .nn {
  568. color: #555
  569. }
  570. .highlight .nt {
  571. color: navy
  572. }
  573. .highlight .nv {
  574. color: teal
  575. }
  576. .highlight .ow {
  577. color: #000000;
  578. font-weight: bold
  579. }
  580. .highlight .w {
  581. color: #bbb
  582. }
  583. .highlight .mf {
  584. color: #099
  585. }
  586. .highlight .mh {
  587. color: #099
  588. }
  589. .highlight .mi {
  590. color: #099
  591. }
  592. .highlight .mo {
  593. color: #099
  594. }
  595. .highlight .sb {
  596. color: #d01040
  597. }
  598. .highlight .sc {
  599. color: #d01040
  600. }
  601. .highlight .sd {
  602. color: #d01040
  603. }
  604. .highlight .s2 {
  605. color: #d01040
  606. }
  607. .highlight .se {
  608. color: #d01040
  609. }
  610. .highlight .sh {
  611. color: #d01040
  612. }
  613. .highlight .si {
  614. color: #d01040
  615. }
  616. .highlight .sx {
  617. color: #d01040
  618. }
  619. .highlight .sr {
  620. color: #009926
  621. }
  622. .highlight .s1 {
  623. color: #d01040
  624. }
  625. .highlight .ss {
  626. color: #990073
  627. }
  628. .highlight .bp {
  629. color: #999
  630. }
  631. .highlight .vc {
  632. color: teal
  633. }
  634. .highlight .vg {
  635. color: teal
  636. }
  637. .highlight .vi {
  638. color: teal
  639. }
  640. .highlight .il {
  641. color: #099
  642. }
  643. .CodeRay {
  644. background-color: #efefef;
  645. font-family: Monaco,
  646. "Courier New",
  647. "DejaVu Sans Mono",
  648. "Bitstream Vera Sans Mono",
  649. monospace;
  650. font-size: 12px;
  651. font-size: 0.75rem;
  652. line-height: 2.1667;
  653. color: #333332;
  654. margin-bottom: 1.5em;
  655. border-radius: 4px
  656. }
  657. .CodeRay pre {
  658. margin: 0px;
  659. padding: 1em
  660. }
  661. span.CodeRay {
  662. white-space: pre;
  663. border: 0px;
  664. padding: 2px
  665. }
  666. table.CodeRay {
  667. border-collapse: collapse;
  668. width: 100%;
  669. padding: 2px
  670. }
  671. table.CodeRay td {
  672. padding: 1em 0.5em;
  673. vertical-align: top
  674. }
  675. .CodeRay .line-numbers,
  676. .CodeRay .no {
  677. background-color: #ECECEC;
  678. color: #AAA;
  679. text-align: right
  680. }
  681. .CodeRay .line-numbers a {
  682. color: #AAA
  683. }
  684. .CodeRay .line-numbers tt {
  685. font-weight: bold
  686. }
  687. .CodeRay .line-numbers .highlighted {
  688. color: red
  689. }
  690. .CodeRay .line {
  691. display: block;
  692. float: left;
  693. width: 100%
  694. }
  695. .CodeRay span.line-numbers {
  696. padding: 0 24px 0 4px
  697. }
  698. .CodeRay .code {
  699. width: 100%
  700. }
  701. ol.CodeRay {
  702. font-size: 10pt
  703. }
  704. ol.CodeRay li {
  705. white-space: pre
  706. }
  707. .CodeRay .code pre {
  708. overflow: auto
  709. }
  710. .CodeRay .debug {
  711. color: #fff !important;
  712. background: blue !important
  713. }
  714. .CodeRay .annotation {
  715. color: #007
  716. }
  717. .CodeRay .attribute-name {
  718. color: #f08
  719. }
  720. .CodeRay .attribute-value {
  721. color: #700
  722. }
  723. .CodeRay .binary {
  724. color: #509;
  725. font-weight: bold
  726. }
  727. .CodeRay .comment {
  728. color: #998;
  729. font-style: italic
  730. }
  731. .CodeRay .char {
  732. color: #04D
  733. }
  734. .CodeRay .char .content {
  735. color: #04D
  736. }
  737. .CodeRay .char .delimiter {
  738. color: #039
  739. }
  740. .CodeRay .class {
  741. color: #458;
  742. font-weight: bold
  743. }
  744. .CodeRay .complex {
  745. color: #A08;
  746. font-weight: bold
  747. }
  748. .CodeRay .constant {
  749. color: teal
  750. }
  751. .CodeRay .color {
  752. color: #0A0
  753. }
  754. .CodeRay .class-variable {
  755. color: #369
  756. }
  757. .CodeRay .decorator {
  758. color: #B0B
  759. }
  760. .CodeRay .definition {
  761. color: #099;
  762. font-weight: bold
  763. }
  764. .CodeRay .directive {
  765. color: #088;
  766. font-weight: bold
  767. }
  768. .CodeRay .delimiter {
  769. color: #000
  770. }
  771. .CodeRay .doc {
  772. color: #970
  773. }
  774. .CodeRay .doctype {
  775. color: #34b
  776. }
  777. .CodeRay .doc-string {
  778. color: #D42;
  779. font-weight: bold
  780. }
  781. .CodeRay .escape {
  782. color: #666;
  783. font-weight: bold
  784. }
  785. .CodeRay .entity {
  786. color: #800;
  787. font-weight: bold
  788. }
  789. .CodeRay .error {
  790. color: #F00;
  791. background-color: #FAA
  792. }
  793. .CodeRay .exception {
  794. color: #C00;
  795. font-weight: bold
  796. }
  797. .CodeRay .filename {
  798. color: #099
  799. }
  800. .CodeRay .function {
  801. color: #900;
  802. font-weight: bold
  803. }
  804. .CodeRay .global-variable {
  805. color: teal;
  806. font-weight: bold
  807. }
  808. .CodeRay .hex {
  809. color: #058;
  810. font-weight: bold
  811. }
  812. .CodeRay .integer {
  813. color: #099
  814. }
  815. .CodeRay .include {
  816. color: #B44;
  817. font-weight: bold
  818. }
  819. .CodeRay .inline {
  820. color: #000
  821. }
  822. .CodeRay .inline .inline {
  823. background: #ccc
  824. }
  825. .CodeRay .inline .inline .inline {
  826. background: #bbb
  827. }
  828. .CodeRay .inline .inline-delimiter {
  829. color: #D14
  830. }
  831. .CodeRay .inline-delimiter {
  832. color: #D14
  833. }
  834. .CodeRay .important {
  835. color: #f00
  836. }
  837. .CodeRay .interpreted {
  838. color: #B2B;
  839. font-weight: bold
  840. }
  841. .CodeRay .instance-variable {
  842. color: teal
  843. }
  844. .CodeRay .label {
  845. color: #970;
  846. font-weight: bold
  847. }
  848. .CodeRay .local-variable {
  849. color: #963
  850. }
  851. .CodeRay .octal {
  852. color: #40E;
  853. font-weight: bold
  854. }
  855. .CodeRay .predefined-constant {
  856. font-weight: bold
  857. }
  858. .CodeRay .predefined {
  859. color: #369;
  860. font-weight: bold
  861. }
  862. .CodeRay .preprocessor {
  863. color: #579
  864. }
  865. .CodeRay .pseudo-class {
  866. color: #00C;
  867. font-weight: bold
  868. }
  869. .CodeRay .predefined-type {
  870. color: #074;
  871. font-weight: bold
  872. }
  873. .CodeRay .reserved,
  874. .keyword {
  875. color: #000;
  876. font-weight: bold
  877. }
  878. .CodeRay .key {
  879. color: #808
  880. }
  881. .CodeRay .key .delimiter {
  882. color: #606
  883. }
  884. .CodeRay .key .char {
  885. color: #80f
  886. }
  887. .CodeRay .value {
  888. color: #088
  889. }
  890. .CodeRay .regexp {
  891. background-color: #fff0ff
  892. }
  893. .CodeRay .regexp .content {
  894. color: #808
  895. }
  896. .CodeRay .regexp .delimiter {
  897. color: #404
  898. }
  899. .CodeRay .regexp .modifier {
  900. color: #C2C
  901. }
  902. .CodeRay .regexp .function {
  903. color: #404;
  904. font-weight: bold
  905. }
  906. .CodeRay .string {
  907. color: #D20
  908. }
  909. .CodeRay .string .string .string {
  910. background-color: #ffd0d0
  911. }
  912. .CodeRay .string .content {
  913. color: #D14
  914. }
  915. .CodeRay .string .char {
  916. color: #D14
  917. }
  918. .CodeRay .string .delimiter {
  919. color: #D14
  920. }
  921. .CodeRay .shell {
  922. color: #D14
  923. }
  924. .CodeRay .shell .delimiter {
  925. color: #D14
  926. }
  927. .CodeRay .symbol {
  928. color: #990073
  929. }
  930. .CodeRay .symbol .content {
  931. color: #A60
  932. }
  933. .CodeRay .symbol .delimiter {
  934. color: #630
  935. }
  936. .CodeRay .tag {
  937. color: #070
  938. }
  939. .CodeRay .tag-special {
  940. color: #D70;
  941. font-weight: bold
  942. }
  943. .CodeRay .type {
  944. color: #339;
  945. font-weight: bold
  946. }
  947. .CodeRay .variable {
  948. color: #036
  949. }
  950. .CodeRay .insert {
  951. background: #afa
  952. }
  953. .CodeRay .delete {
  954. background: #faa
  955. }
  956. .CodeRay .change {
  957. color: #aaf;
  958. background: #007
  959. }
  960. .CodeRay .head {
  961. color: #f8f;
  962. background: #505
  963. }
  964. .CodeRay .insert .insert {
  965. color: #080;
  966. font-weight: bold
  967. }
  968. .CodeRay .delete .delete {
  969. color: #800;
  970. font-weight: bold
  971. }
  972. .CodeRay .change .change {
  973. color: #66f
  974. }
  975. .CodeRay .head .head {
  976. color: #f4f
  977. }
  978. hr {
  979. display: block;
  980. margin: 1em 0;
  981. padding: 0;
  982. height: 1px;
  983. border: 0;
  984. border-top: 1px solid #ccc;
  985. border-bottom: 1px solid #fff
  986. }
  987. figure {
  988. margin-bottom: 1.625rem
  989. }
  990. article img {
  991. max-width: 100%;
  992. height: auto;
  993. border-width: 0;
  994. vertical-align: middle;
  995. -ms-interpolation-mode: bicubic
  996. }
  997. svg:not(:root) {
  998. overflow: hidden
  999. }
  1000. .half {
  1001. margin: 0 auto;
  1002. width: 100%;
  1003. *zoom: 1;
  1004. }
  1005. .half:before,
  1006. .half:after {
  1007. display: table;
  1008. content: "";
  1009. line-height: 0
  1010. }
  1011. .half:after {
  1012. clear: both
  1013. }
  1014. @media only screen and (min-width: 30em) {
  1015. .half img {
  1016. display: inline;
  1017. float: left;
  1018. width: 50%
  1019. }
  1020. .half figcaption {
  1021. display: inline;
  1022. float: left;
  1023. width: 100%
  1024. }
  1025. }
  1026. .third {
  1027. margin: 0 auto;
  1028. width: 100%;
  1029. *zoom: 1
  1030. }
  1031. .third:before,
  1032. .third:after {
  1033. display: table;
  1034. content: "";
  1035. line-height: 0
  1036. }
  1037. .third:after {
  1038. clear: both
  1039. }
  1040. @media only screen and (min-width: 30em) {
  1041. .third img {
  1042. display: inline;
  1043. float: left;
  1044. width: 33.33333%
  1045. }
  1046. .third figcaption {
  1047. display: inline;
  1048. float: left;
  1049. width: 100%
  1050. }
  1051. }
  1052. .btn,
  1053. #goog-wm-sb {
  1054. display: inline-block;
  1055. margin-bottom: 20px;
  1056. padding: 8px 20px;
  1057. font-size: 14px;
  1058. font-size: 0.875rem;
  1059. font-family: "Alegreya",
  1060. serif;
  1061. font-weight: 700;
  1062. background-color: #111;
  1063. color: #fff;
  1064. border-width: 2px !important;
  1065. border-style: solid !important;
  1066. border-color: #111;
  1067. text-decoration: none !important;
  1068. border-radius: 3px
  1069. }
  1070. .btn:visited,
  1071. #goog-wm-sb:visited {
  1072. color: #fff
  1073. }
  1074. .btn:hover,
  1075. #goog-wm-sb:hover {
  1076. background-color: #fff;
  1077. color: #111
  1078. }
  1079. .btn-success {
  1080. background-color: #5cb85c;
  1081. color: #fff;
  1082. border-color: #5cb85c
  1083. }
  1084. .btn-success:visited {
  1085. color: #fff
  1086. }
  1087. .btn-success:hover {
  1088. background-color: #fff;
  1089. color: #5cb85c
  1090. }
  1091. .btn-warning {
  1092. background-color: #dd8338;
  1093. color: #fff;
  1094. border-color: #dd8338
  1095. }
  1096. .btn-warning:visited {
  1097. color: #fff
  1098. }
  1099. .btn-warning:hover {
  1100. background-color: #fff;
  1101. color: #dd8338
  1102. }
  1103. .btn-danger {
  1104. background-color: #C64537;
  1105. color: #fff;
  1106. border-color: #C64537
  1107. }
  1108. .btn-danger:visited {
  1109. color: #fff
  1110. }
  1111. .btn-danger:hover {
  1112. background-color: #fff;
  1113. color: #C64537
  1114. }
  1115. .btn-info {
  1116. background-color: #308cbc;
  1117. color: #fff;
  1118. border-color: #308cbc
  1119. }
  1120. .btn-info:visited {
  1121. color: #fff
  1122. }
  1123. .btn-info:hover {
  1124. background-color: #fff;
  1125. color: #308cbc
  1126. }
  1127. .well {
  1128. min-height: 20px;
  1129. padding: 19px;
  1130. margin-bottom: 20px;
  1131. background-color: #f5f5f5;
  1132. border: 1px solid #e3e3e3;
  1133. border-radius: 4px;
  1134. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1135. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  1136. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
  1137. }
  1138. btnform {
  1139. margin: 0 0 5px 0
  1140. }
  1141. btnform fieldset {
  1142. margin-bottom: 5px;
  1143. padding: 0;
  1144. border-width: 0
  1145. }
  1146. btnform legend {
  1147. display: block;
  1148. width: 100%;
  1149. margin-bottom: 10px;
  1150. *margin-left: -7px;
  1151. padding: 0;
  1152. color: #333332;
  1153. border: 0;
  1154. border-bottom: 1px solid #ddd;
  1155. white-space: normal
  1156. }
  1157. btnform p {
  1158. margin-bottom: 5px / 2
  1159. }
  1160. btnform ul {
  1161. list-style-type: none;
  1162. margin: 0 0 5px 0;
  1163. padding: 0
  1164. }
  1165. btnform br {
  1166. display: none
  1167. }
  1168. label,
  1169. input,
  1170. button,
  1171. select,
  1172. textarea {
  1173. vertical-align: baseline;
  1174. *vertical-align: middle
  1175. }
  1176. input,
  1177. button,
  1178. select,
  1179. textarea {
  1180. font-family: "Alegreya",
  1181. serif;
  1182. -webkit-box-sizing: border-box;
  1183. -moz-box-sizing: border-box;
  1184. -ms-box-sizing: border-box;
  1185. box-sizing: border-box
  1186. }
  1187. label {
  1188. display: block;
  1189. margin-bottom: 10px / 8;
  1190. font-weight: bold;
  1191. color: #333332;
  1192. cursor: pointer
  1193. }
  1194. label input,
  1195. label textarea,
  1196. label select {
  1197. display: block
  1198. }
  1199. input,
  1200. textarea,
  1201. select {
  1202. display: inline-block;
  1203. width: 100%;
  1204. padding: 4px;
  1205. margin-bottom: 5px / 4;
  1206. background-color: #fff;
  1207. border: 1px solid #ddd;
  1208. color: #333332
  1209. }
  1210. input:hover,
  1211. textarea:hover,
  1212. select:hover {
  1213. border-color: #919191
  1214. }
  1215. .input-mini {
  1216. width: 60px
  1217. }
  1218. .input-small {
  1219. width: 90px
  1220. }
  1221. input[type="image"],
  1222. input[type="checkbox"],
  1223. input[type="radio"] {
  1224. width: auto;
  1225. height: auto;
  1226. padding: 0;
  1227. margin: 3px 0;
  1228. *margin-top: 0;
  1229. line-height: normal;
  1230. cursor: pointer;
  1231. border-radius: 0;
  1232. border: 0 \9
  1233. }
  1234. input[type="checkbox"],
  1235. input[type="radio"] {
  1236. -webkit-box-sizing: border-box;
  1237. -moz-box-sizing: border-box;
  1238. -ms-box-sizing: border-box;
  1239. box-sizing: border-box;
  1240. padding: 0;
  1241. *width: 13px;
  1242. *height: 13px
  1243. }
  1244. input[type="image"] {
  1245. border: 0;
  1246. -webkit-box-shadow: none;
  1247. -moz-box-shadow: none;
  1248. box-shadow: none
  1249. }
  1250. input[type="file"] {
  1251. width: auto;
  1252. padding: initial;
  1253. line-height: initial;
  1254. border: initial;
  1255. background-color: transparent;
  1256. background-color: initial;
  1257. -webkit-box-shadow: none;
  1258. -moz-box-shadow: none;
  1259. box-shadow: none
  1260. }
  1261. input[type="button"],
  1262. input[type="reset"],
  1263. input[type="submit"] {
  1264. width: auto;
  1265. height: auto;
  1266. cursor: pointer;
  1267. *overflow: visible
  1268. }
  1269. select,
  1270. input[type="file"] {
  1271. *margin-top: 4px
  1272. }
  1273. select {
  1274. width: auto;
  1275. background-color: #fff
  1276. }
  1277. select[multiple],
  1278. select[size] {
  1279. height: auto
  1280. }
  1281. textarea {
  1282. resize: vertical;
  1283. overflow: auto;
  1284. height: auto;
  1285. overflow: auto;
  1286. vertical-align: top
  1287. }
  1288. input[type="hidden"] {
  1289. display: none
  1290. }
  1291. .radio,
  1292. .checkbox {
  1293. padding-left: 18px;
  1294. font-weight: normal
  1295. }
  1296. .radio input[type="radio"],
  1297. .checkbox input[type="checkbox"] {
  1298. float: left;
  1299. margin-left: -18px
  1300. }
  1301. .radio.inline,
  1302. .checkbox.inline {
  1303. display: inline-block;
  1304. padding-top: 5px;
  1305. margin-bottom: 0;
  1306. vertical-align: middle
  1307. }
  1308. .radio.inline+.radio.inline,
  1309. .checkbox.inline+.checkbox.inline {
  1310. margin-left: 10px
  1311. }
  1312. input[disabled],
  1313. select[disabled],
  1314. textarea[disabled],
  1315. input[readonly],
  1316. select[readonly],
  1317. textarea[readonly] {
  1318. opacity: 0.5;
  1319. cursor: not-allowed
  1320. }
  1321. input:focus,
  1322. textarea:focus {
  1323. border-color: #111;
  1324. outline: 0;
  1325. outline: thin dotted \9
  1326. }
  1327. input[type="file"]:focus,
  1328. input[type="radio"]:focus,
  1329. input[type="checkbox"]:focus,
  1330. select:focus {
  1331. -webkit-box-shadow: none;
  1332. -moz-box-shadow: none;
  1333. box-shadow: none
  1334. }
  1335. .help-block,
  1336. .help-inline {
  1337. color: #919191
  1338. }
  1339. .help-block {
  1340. display: block;
  1341. margin-bottom: 1em;
  1342. line-height: 1em
  1343. }
  1344. .help-inline {
  1345. display: inline-block;
  1346. vertical-align: middle;
  1347. padding-left: 5px
  1348. }
  1349. .form-inline input,
  1350. .form-inline textarea,
  1351. .form-inline select {
  1352. display: inline-block;
  1353. margin-bottom: 0
  1354. }
  1355. .form-inline label {
  1356. display: inline-block
  1357. }
  1358. .form-inline .radio,
  1359. .form-inline .checkbox,
  1360. .form-inline .radio {
  1361. padding-left: 0;
  1362. margin-bottom: 0;
  1363. vertical-align: middle
  1364. }
  1365. .form-inline .radio input[type="radio"],
  1366. .form-inline .checkbox input[type="checkbox"] {
  1367. float: left;
  1368. margin-left: 0;
  1369. margin-right: 3px
  1370. }
  1371. .form-search input,
  1372. .form-search textarea,
  1373. .form-search select {
  1374. display: inline-block;
  1375. margin-bottom: 0
  1376. }
  1377. .form-search .search-query {
  1378. padding-left: 14px;
  1379. padding-right: 14px;
  1380. margin-bottom: 0;
  1381. border-radius: 14px
  1382. }
  1383. .form-search label {
  1384. display: inline-block
  1385. }
  1386. .form-search .radio,
  1387. .form-search .checkbox,
  1388. .form-inline .radio {
  1389. padding-left: 0;
  1390. margin-bottom: 0;
  1391. vertical-align: middle
  1392. }
  1393. .form-search .radio input[type="radio"],
  1394. .form-search .checkbox input[type="checkbox"] {
  1395. float: left;
  1396. margin-left: 0;
  1397. margin-right: 3px
  1398. }
  1399. body {
  1400. background-color: #fff;
  1401. font-family: "Alegreya",
  1402. serif;
  1403. color: #333332
  1404. }
  1405. .navigation-wrapper {
  1406. margin: 0 auto;
  1407. width: 100%;
  1408. padding: 2em 0 1em;
  1409. font-family: "Alegreya",
  1410. serif;
  1411. font-weight: 500;
  1412. background-color: #DDD;
  1413. *zoom: 1
  1414. }
  1415. .navigation-wrapper:before,
  1416. .navigation-wrapper:after {
  1417. display: table;
  1418. content: "";
  1419. line-height: 0
  1420. }
  1421. .navigation-wrapper:after {
  1422. clear: both
  1423. }
  1424. .home .navigation-wrapper {
  1425. background-color: inherit
  1426. }
  1427. .site-name {
  1428. display: inline;
  1429. float: left;
  1430. width: 83.33333%;
  1431. margin-left: 8.33333%;
  1432. margin-right: 8.33333%;
  1433. margin-bottom: 1em;
  1434. float: none;
  1435. display: block;
  1436. text-transform: uppercase;
  1437. font-size: 24px;
  1438. font-size: 1.5rem
  1439. }
  1440. @media only screen and (min-width: 37.5em) {
  1441. .site-name {
  1442. display: inline;
  1443. float: left;
  1444. width: 16.66667%;
  1445. margin-left: 4.16667%;
  1446. margin-right: 4.16667%;
  1447. font-size: 16px;
  1448. font-size: 1rem
  1449. }
  1450. }
  1451. @media only screen and (min-width: 86.375em) {
  1452. .site-name {
  1453. display: inline;
  1454. float: left;
  1455. width: 12.5%;
  1456. margin-left: 16.66667%
  1457. }
  1458. }
  1459. .top-navigation,
  1460. .right-navigation {
  1461. display: inline;
  1462. float: left;
  1463. width: 83.33333%;
  1464. margin-left: 8.33333%;
  1465. margin-right: 8.33333%;
  1466. margin-bottom: 1em;
  1467. float: none;
  1468. display: block
  1469. }
  1470. @media only screen and (min-width: 37.5em) {
  1471. .top-navigation,
  1472. .right-navigation {
  1473. display: inline;
  1474. float: left;
  1475. width: 75%;
  1476. margin-left: 0%;
  1477. margin-right: 0%
  1478. }
  1479. }
  1480. @media only screen and (min-width: 86.375em) {
  1481. .top-navigation,
  1482. .right-navigation {
  1483. display: inline;
  1484. float: left;
  1485. width: 66.66667%
  1486. }
  1487. }
  1488. .top-navigation ul,
  1489. .right-navigation ul {
  1490. margin: 0;
  1491. padding: 0;
  1492. clear: both;
  1493. list-style-type: none
  1494. }
  1495. .top-navigation li,
  1496. .right-navigation li {
  1497. display: block;
  1498. list-style-type: none;
  1499. border-bottom: 1px solid #ddd;
  1500. border-bottom: 1px solid fade(#111, 10);
  1501. font-size: 16px;
  1502. font-size: 1rem
  1503. }
  1504. .top-navigation li: last-child,
  1505. .right-navigation li: last-child {
  1506. border-bottom: 0 solid transparent
  1507. }
  1508. @media only screen and (min-width: 37.5em) {
  1509. .top-navigation li,
  1510. .right-navigation li {
  1511. display: inline;
  1512. margin-right: 25px;
  1513. white-space: nowrap;
  1514. border-bottom: 0 solid transparent
  1515. }
  1516. }
  1517. .top-navigation li a,
  1518. .right-navigation li a {
  1519. display: block;
  1520. padding: 10px 0;
  1521. decoration: none;
  1522. border-bottom: 0 solid transparent;
  1523. -webkit-transition: all 0.2s;
  1524. -moz-transition: all 0.2s;
  1525. -ms-transition: all 0.2s;
  1526. -o-transition: all 0.2s;
  1527. transition: all 0.2s
  1528. }
  1529. @media only screen and (min-width: 37.5em) {
  1530. .top-navigation li a,
  1531. .right-navigation li a {
  1532. display: inline;
  1533. padding: 0
  1534. }
  1535. }
  1536. .navicon-lines-button {
  1537. padding: 0.375rem 0.75rem;
  1538. transition: .3s;
  1539. cursor: pointer;
  1540. user-select: none;
  1541. border-radius: 0.21429rem
  1542. }
  1543. .navicon-lines-button:hover {
  1544. opacity: 1
  1545. }
  1546. .navicon-lines-button:active {
  1547. transition: 0
  1548. }
  1549. .navicon-lines {
  1550. margin-right: 10px;
  1551. margin-bottom: 0.3rem;
  1552. display: inline-block;
  1553. width: 1.5rem;
  1554. height: 0.21429rem;
  1555. background: #fff;
  1556. border-radius: 0.10714rem;
  1557. transition: .3s;
  1558. position: relative
  1559. }
  1560. .navicon-lines:before,
  1561. .navicon-lines:after {
  1562. display: inline-block;
  1563. width: 1.5rem;
  1564. height: 0.21429rem;
  1565. background: #fff;
  1566. border-radius: 0.10714rem;
  1567. transition: .3s;
  1568. position: absolute;
  1569. left: 0;
  1570. content: '';
  1571. -webkit-transform-origin: 0.10714rem center;
  1572. transform-origin: 0.10714rem center
  1573. }
  1574. .navicon-lines:before {
  1575. top: 0.375rem
  1576. }
  1577. .navicon-lines:after {
  1578. top: -0.375rem
  1579. }
  1580. .navicon-lines-button:hover {
  1581. opacity: 1
  1582. }
  1583. .navicon-lines-button:hover .navicon-lines:before {
  1584. top: 0.42857rem
  1585. }
  1586. .navicon-lines-button:hover .navicon-lines:after {
  1587. top: -0.42857rem
  1588. }
  1589. .navicon-lines-button.x.active .navicon-lines {
  1590. background: transparent
  1591. }
  1592. .navicon-lines-button.x.active .navicon-lines: before,
  1593. .navicon-lines-button.x.active .navicon-lines: after {
  1594. -webkit-transform-origin: 50% 50%;
  1595. transform-origin: 50% 50%;
  1596. top: 0;
  1597. width: 1.5rem
  1598. }
  1599. .navicon-lines-button.x.active .navicon-lines: before {
  1600. -webkit-transform: rotate3d(0, 0, 1, 45deg); transform: rotate3d(0, 0, 1, 45deg)
  1601. }
  1602. .navicon-lines-button.x.active .navicon-lines: after {
  1603. -webkit-transform: rotate3d(0, 0, 1, -45deg); transform: rotate3d(0, 0, 1, -45deg)
  1604. }
  1605. .nav .navtoggle {
  1606. font-size: 18px;
  1607. font-size: 1.125rem;
  1608. font-weight: normal;
  1609. background-color: #111;
  1610. color: #fff;
  1611. border: none;
  1612. cursor: pointer
  1613. }
  1614. @media only screen and (min-width: 37.5em) {
  1615. .nav .navtoggle {
  1616. display: none
  1617. }
  1618. }
  1619. .nav button {
  1620. border: none;
  1621. background: none
  1622. }
  1623. .navtoggle i {
  1624. z-index: -1
  1625. }
  1626. .icon-menu {
  1627. position: relative;
  1628. top: 3px;
  1629. line-height: 0
  1630. }
  1631. .no-js .nav .navtoggle {
  1632. display: none
  1633. }
  1634. .no-js .nav ul {
  1635. max-height: 30em;
  1636. overflow: hidden
  1637. }
  1638. .js .nav ul {
  1639. max-height: 0;
  1640. overflow: hidden
  1641. }
  1642. @media only screen and (min-width: 37.5em) {
  1643. .js .nav ul {
  1644. max-height: 30em
  1645. }
  1646. }
  1647. .js .nav .active+ul {
  1648. max-height: 30em;
  1649. overflow: hidden;
  1650. -webkit-transition: max-height .4s;
  1651. -moz-transition: max-height .4s;
  1652. -o-transition: max-height .4s;
  1653. -ms-transition: max-height .4s;
  1654. transition: max-height .4s
  1655. }
  1656. #main {
  1657. counter-reset: captions;
  1658. margin: 0 auto;
  1659. width: 100%;
  1660. *zoom: 1;
  1661. clear: both;
  1662. margin-top: 2em
  1663. }
  1664. #main:before,
  1665. #main:after {
  1666. display: table;
  1667. content: "";
  1668. line-height: 0
  1669. }
  1670. #main:after {
  1671. clear: both
  1672. }
  1673. #main h1 {
  1674. margin-top: 0
  1675. }
  1676. #main .post,
  1677. #main .page {
  1678. margin: 0 auto;
  1679. width: 100%;
  1680. display: inline;
  1681. float: left;
  1682. width: 83.33333%;
  1683. margin-left: 8.33333%;
  1684. margin-right: 8.33333%;
  1685. margin-bottom: 2em
  1686. }
  1687. @media only screen and (min-width: 37.5em) {
  1688. #main .post,
  1689. #main .page {
  1690. display: inline;
  1691. float: left;
  1692. width: 50%;
  1693. margin-left: 0%;
  1694. margin-right: 0%
  1695. }
  1696. }
  1697. @media only screen and (min-width: 86.375em) {
  1698. #main .post,
  1699. #main .page {
  1700. display: inline;
  1701. float: left;
  1702. width: 37.5%
  1703. }
  1704. }
  1705. #index {
  1706. margin: 0 auto;
  1707. width: 100%;
  1708. display: inline;
  1709. float: left;
  1710. width: 83.33333%;
  1711. margin-left: 8.33333%;
  1712. margin-right: 8.33333%;
  1713. margin-bottom: 2em
  1714. }
  1715. @media only screen and (min-width: 37.5em) {
  1716. #index {
  1717. display: inline;
  1718. float: left;
  1719. width: 50%;
  1720. margin-left: 0%;
  1721. margin-right: 0%
  1722. }
  1723. }
  1724. @media only screen and (min-width: 86.375em) {
  1725. #index {
  1726. display: inline;
  1727. float: left;
  1728. width: 37.5%
  1729. }
  1730. }
  1731. #index h3 {
  1732. margin: 0;
  1733. padding-bottom: .5em;
  1734. font-size: 28px;
  1735. font-size: 1.75rem;
  1736. border-bottom: 1px solid #c4c4c4
  1737. }
  1738. #index article h2 {
  1739. margin-bottom: 4px;
  1740. font-size: 20px;
  1741. font-size: 1.25rem
  1742. }
  1743. #index article h2.link-post {
  1744. margin-bottom: 26px;
  1745. margin-bottom: 1.625rem
  1746. }
  1747. #index article p {
  1748. font-size: 14px;
  1749. font-size: 0.875rem
  1750. }
  1751. #index article p+p {
  1752. text-indent: 0
  1753. }
  1754. .image-wrap {
  1755. position: relative;
  1756. margin-bottom: 2em;
  1757. background-color: #DDD;
  1758. *zoom: 1
  1759. }
  1760. .image-wrap:before,
  1761. .image-wrap:after {
  1762. display: table;
  1763. content: "";
  1764. line-height: 0
  1765. }
  1766. .image-wrap:after {
  1767. clear: both
  1768. }
  1769. @media only screen and (min-width: 37.5em) {
  1770. .image-wrap {
  1771. padding: 1em 0
  1772. }
  1773. }
  1774. .image-wrap img {
  1775. max-width: 70%;
  1776. height: auto;
  1777. display: block;
  1778. margin-left: auto;
  1779. margin-right: auto;
  1780. -ms-interpolation-mode: bicubic
  1781. }
  1782. .image-wrap .headline-wrap {
  1783. position: absolute;
  1784. bottom: 25px;
  1785. margin-left: 8.33333%
  1786. }
  1787. @media only screen and (min-width: 37.5em) {
  1788. .image-wrap .headline-wrap {
  1789. left: 25%;
  1790. margin-left: 0
  1791. }
  1792. }
  1793. @media only screen and (min-width: 86.375em) {
  1794. .image-wrap .headline-wrap {
  1795. margin-left: 8.33333%
  1796. }
  1797. }
  1798. .image-wrap .headline-wrap h1,
  1799. .image-wrap .headline-wrap h2 {
  1800. color: #fff;
  1801. text-shadow: 0 1px 2px rgba(0,
  1802. 0,
  1803. 0,
  1804. 0.25)
  1805. }
  1806. .home .image-wrap img {
  1807. max-width: 90%
  1808. }
  1809. @media only screen and (min-width: 62em) {
  1810. .home .image-wrap img {
  1811. max-width: 50%;
  1812. margin-top: 1.5em;
  1813. margin-bottom: 1.5em
  1814. }
  1815. }
  1816. .byline {
  1817. clear: both;
  1818. font-size: 80%
  1819. }
  1820. .article-author-side h3,
  1821. .article-author-bottom h3 {
  1822. margin-bottom: 0
  1823. }
  1824. .article-author-side p,
  1825. .article-author-bottom p {
  1826. font-size: 80%;
  1827. font-style: italic
  1828. }
  1829. .article-author-side a,
  1830. .article-author-side a: hover,
  1831. .article-author-bottom a,
  1832. .article-author-bottom a: hover {
  1833. border-bottom: 0 solid transparent
  1834. }
  1835. .author-social {
  1836. display: block;
  1837. margin-bottom: 5px;
  1838. font-size: 14px;
  1839. font-size: 0.875rem;
  1840. color: #111
  1841. }
  1842. .author-social:visited {
  1843. color: #111
  1844. }
  1845. .author-social:hover {
  1846. -webkit-transform: scale(1.1);
  1847. -moz-transform: scale(1.1);
  1848. -ms-transform: scale(1.1);
  1849. -o-transform: scale(1.1);
  1850. transform: scale(1.1)
  1851. }
  1852. .author-social:active {
  1853. -webkit-transform: translate(0, 2px);
  1854. -moz-transform: translate(0, 2px);
  1855. -ms-transform: translate(0, 2px);
  1856. -o-transform: translate(0, 2px);
  1857. transform: translate(0, 2px)
  1858. }
  1859. .author-social .fa {
  1860. margin-right: 5px
  1861. }
  1862. .article-author-side {
  1863. display: none
  1864. }
  1865. .article-author-side .bio-photo {
  1866. max-width: 110px;
  1867. border-radius: 150px
  1868. }
  1869. @media only screen and (min-width: 37.5em) {
  1870. .article-author-side {
  1871. display: block;
  1872. display: inline;
  1873. float: left;
  1874. width: 16.66667%;
  1875. margin-left: 4.16667%;
  1876. margin-right: 4.16667%
  1877. }
  1878. .article-author-side h3,
  1879. .article-author-side p,
  1880. .article-author-side .author-social {
  1881. display: block;
  1882. max-width: 125px
  1883. }
  1884. .article-author-side h3 {
  1885. margin-top: 10px;
  1886. margin-bottom: 10px;
  1887. text-align: center
  1888. }
  1889. .article-author-side p {
  1890. margin-bottom: 20px
  1891. }
  1892. .article-author-side .author-social {
  1893. margin-bottom: 5px
  1894. }
  1895. }
  1896. @media only screen and (min-width: 62em) {
  1897. .article-author-side h3,
  1898. .article-author-side .bio-photo,
  1899. .article-author-side p,
  1900. .article-author-side .author-social {
  1901. max-width: 150px
  1902. }
  1903. }
  1904. @media only screen and (min-width: 86.375em) {
  1905. .article-author-side {
  1906. display: inline;
  1907. float: left;
  1908. width: 12.5%;
  1909. margin-left: 16.66667%
  1910. }
  1911. }
  1912. .article-author-bottom {
  1913. margin-bottom: 1em
  1914. }
  1915. @media only screen and (min-width: 37.5em) {
  1916. .article-author-bottom {
  1917. display: none
  1918. }
  1919. }
  1920. .article-author-bottom .bio-photo {
  1921. float: left;
  1922. margin-right: 25px;
  1923. max-width: 100px;
  1924. border-radius: 150px
  1925. }
  1926. .article-author-bottom .author-social {
  1927. display: inline-block;
  1928. margin-right: 10px
  1929. }
  1930. @media only screen and (min-width: 62em) {
  1931. .article-author-bottom h3,
  1932. .article-author-bottom .bio-photo,
  1933. .article-author-bottom p,
  1934. .article-author-bottom .author-social {
  1935. max-width: 150px
  1936. }
  1937. }
  1938. .article-wrap p>a,
  1939. .article-wrap p>em>a,
  1940. .article-wrap p>strong>a,
  1941. .article-wrap li>a {
  1942. text-decoration: none;
  1943. color: #00E
  1944. }
  1945. .article-wrap p>a: visited,
  1946. .article-wrap p>em>a: visited,
  1947. .article-wrap p>strong>a: visited,
  1948. .article-wrap li>a: visited {
  1949. color: #22f
  1950. }
  1951. .article-wrap p>a: hover,
  1952. .article-wrap p>em>a: hover,
  1953. .article-wrap p>strong>a: hover,
  1954. .article-wrap li>a: hover {
  1955. color: #00b
  1956. }
  1957. .article-wrap p>a: focus,
  1958. .article-wrap p>em>a: focus,
  1959. .article-wrap p>strong>a: focus,
  1960. .article-wrap li>a: focus {
  1961. outline: thin dotted;
  1962. color: #00e
  1963. }
  1964. .toc {
  1965. font-size: 95%
  1966. }
  1967. @media only screen and (min-width: 62em) {
  1968. .toc {
  1969. display: block;
  1970. display: inline;
  1971. float: left;
  1972. width: 16.66667%;
  1973. margin-left: 4.16667%;
  1974. margin-right: 4.16667%;
  1975. position: absolute;
  1976. top: 5.5em;
  1977. right: 0;
  1978. background-color: #fff
  1979. }
  1980. }
  1981. .toc header {
  1982. background: #2b2b2b
  1983. }
  1984. .toc h3 {
  1985. margin: 0;
  1986. padding: 5px 10px;
  1987. color: #fff;
  1988. font-size: 16px;
  1989. font-size: 1rem;
  1990. text-transform: uppercase
  1991. }
  1992. .toc h3: hover {
  1993. cursor: pointer
  1994. }
  1995. .toc ul {
  1996. margin: 2px 0 0;
  1997. padding: 0;
  1998. line-height: 1
  1999. }
  2000. .toc li {
  2001. display: block;
  2002. margin: 0 0 1px 0;
  2003. padding: 0;
  2004. font-family: "Alegreya",
  2005. serif;
  2006. list-style-type: none
  2007. }
  2008. .toc li: last-child {
  2009. border-bottom-width: 0
  2010. }
  2011. .toc li a {
  2012. padding: 10px;
  2013. display: block;
  2014. color: #fff;
  2015. text-decoration: none;
  2016. background: #5e5e5e;
  2017. opacity: 0.7;
  2018. -webkit-transition: opacity 0.2s ease-in-out;
  2019. -moz-transition: opacity 0.2s ease-in-out;
  2020. -ms-transition: opacity 0.2s ease-in-out;
  2021. -o-transition: opacity 0.2s ease-in-out;
  2022. transition: opacity 0.2s ease-in-out
  2023. }
  2024. .toc li a: hover {
  2025. opacity: 1;
  2026. color: #fff
  2027. }
  2028. .toc li a: visited {
  2029. color: #ccc
  2030. }
  2031. .toc li ul {
  2032. margin: 1px 0 0
  2033. }
  2034. .toc li ul li a {
  2035. padding-left: 20px
  2036. }
  2037. #drawer {
  2038. max-height: 100%;
  2039. overflow: hidden
  2040. }
  2041. #drawer.js-hidden {
  2042. max-height: 0
  2043. }
  2044. .image-grid {
  2045. *zoom: 1;
  2046. list-style: none;
  2047. margin: 0 0 1em;
  2048. padding: 0
  2049. }
  2050. .image-grid:before,
  2051. .image-grid:after {
  2052. display: table;
  2053. content: "";
  2054. line-height: 0
  2055. }
  2056. .image-grid:after {
  2057. clear: both
  2058. }
  2059. .image-grid li {
  2060. display: inline;
  2061. float: left;
  2062. width: 50%
  2063. }
  2064. @media only screen and (min-width: 30em) {
  2065. .image-grid li {
  2066. width: 33.333333%
  2067. }
  2068. }
  2069. @media only screen and (min-width: 37.5em) {
  2070. .image-grid li {
  2071. width: 25%
  2072. }
  2073. }
  2074. @media only screen and (min-width: 48em) {
  2075. .image-grid li {
  2076. width: 20%
  2077. }
  2078. }
  2079. @media only screen and (min-width: 62em) {
  2080. .image-grid li {
  2081. width: 16.666666666%
  2082. }
  2083. }
  2084. .recent-grid {
  2085. *zoom: 1;
  2086. list-style: none;
  2087. margin: 1em 0
  2088. }
  2089. .recent-grid:before,
  2090. .recent-grid:after {
  2091. display: table;
  2092. content: "";
  2093. line-height: 0
  2094. }
  2095. .recent-grid:after {
  2096. clear: both
  2097. }
  2098. .recent-grid li {
  2099. display: inline
  2100. }
  2101. .recent-grid li a {
  2102. border-bottom: 0 solid transparent
  2103. }
  2104. .recent-grid li a: hover {
  2105. border-bottom: 0 solid transparent
  2106. }
  2107. .recent-grid img {
  2108. width: 19%;
  2109. margin-bottom: 1%
  2110. }
  2111. .social-share {
  2112. margin-bottom: 26px;
  2113. margin-bottom: 1.625rem
  2114. }
  2115. .social-share ul,
  2116. .social-share li {
  2117. margin: 0;
  2118. padding: 0;
  2119. list-style: none
  2120. }
  2121. .social-share li {
  2122. display: inline-block
  2123. }
  2124. .social-share .facebook {
  2125. background: #3b5998
  2126. }
  2127. .social-share .flickr {
  2128. background: #ff0084
  2129. }
  2130. .social-share .foursquare {
  2131. background: #0cbadf
  2132. }
  2133. .social-share .google-plus {
  2134. background: #dd4b39
  2135. }
  2136. .social-share .instagram {
  2137. background: #4e433c
  2138. }
  2139. .social-share .linkedin {
  2140. background: #4875b4
  2141. }
  2142. .social-share .pinterest {
  2143. background: #cb2027
  2144. }
  2145. .social-share .rss {
  2146. background: #fa9b39
  2147. }
  2148. .social-share .tumblr {
  2149. background: #2c4762
  2150. }
  2151. .social-share .twitter {
  2152. background: #55acee
  2153. }
  2154. .social-share .vimeo {
  2155. background: #1ab7ea
  2156. }
  2157. .social-share .youtube {
  2158. background: #f33
  2159. }
  2160. .social-share a {
  2161. display: block;
  2162. padding: 8px 20px;
  2163. text-decoration: none !important;
  2164. text-transform: uppercase;
  2165. font-size: 14px;
  2166. font-size: 0.875rem;
  2167. font-family: "Alegreya",
  2168. serif;
  2169. font-weight: 700;
  2170. color: #fff;
  2171. opacity: 0.8
  2172. }
  2173. .social-share a: hover {
  2174. opacity: 1
  2175. }
  2176. .social-share span {
  2177. display: none
  2178. }
  2179. @media only screen and (min-width: 48em) {
  2180. .social-share span {
  2181. display: inline;
  2182. padding-left: 5px
  2183. }
  2184. }
  2185. .social-share h4 {
  2186. font-size: 14px;
  2187. font-size: 0.875rem;
  2188. margin-bottom: 10px;
  2189. text-transform: uppercase
  2190. }
  2191. .footer-wrap {
  2192. margin: 0 auto;
  2193. width: 100%;
  2194. *zoom: 1;
  2195. clear: both;
  2196. padding-bottom: 3em
  2197. }
  2198. .footer-wrap:before,
  2199. .footer-wrap:after {
  2200. display: table;
  2201. content: "";
  2202. line-height: 0
  2203. }
  2204. .footer-wrap:after {
  2205. clear: both
  2206. }
  2207. .footer-wrap a,
  2208. .footer-wrap a: active,
  2209. .footer-wrap a: visited,
  2210. .footer-wrap p,
  2211. .footer-wrap h4,
  2212. .footer-wrap h5,
  2213. .footer-wrap h6,
  2214. .footer-wrap span {
  2215. font-size: 14px;
  2216. font-size: 0.875rem
  2217. }
  2218. .footer-wrap footer {
  2219. display: inline;
  2220. float: left;
  2221. width: 83.33333%;
  2222. margin-left: 8.33333%;
  2223. margin-right: 8.33333%;
  2224. font-style: italic
  2225. }
  2226. @media only screen and (min-width: 37.5em) {
  2227. .footer-wrap footer {
  2228. display: inline;
  2229. float: left;
  2230. width: 50%;
  2231. margin-left: 25%;
  2232. margin-right: 25%
  2233. }
  2234. }
  2235. @media only screen and (min-width: 86.375em) {
  2236. .footer-wrap footer {
  2237. display: inline;
  2238. float: left;
  2239. width: 37.5%;
  2240. margin-left: 33.33333%;
  2241. margin-right: 29.16667%
  2242. }
  2243. }
  2244. .footer-wrap footer nav {
  2245. display: inline;
  2246. display: inline-block;
  2247. font-style: normal
  2248. }
  2249. @media only screen and (min-width: 37.5em) {
  2250. .home .footer-wrap {
  2251. padding-bottom: 0;
  2252. position: fixed;
  2253. bottom: 0
  2254. }
  2255. .home .footer-wrap footer {
  2256. padding: 10px 0;
  2257. background-color: #fff
  2258. }
  2259. }
  2260. .related-articles {
  2261. display: inline;
  2262. float: left;
  2263. width: 83.33333%;
  2264. margin-left: 8.33333%;
  2265. margin-right: 8.33333%;
  2266. margin-bottom: 2em
  2267. }
  2268. @media only screen and (min-width: 37.5em) {
  2269. .related-articles {
  2270. display: inline;
  2271. float: left;
  2272. width: 50%;
  2273. margin-left: 25%;
  2274. margin-right: 25%
  2275. }
  2276. }
  2277. @media only screen and (min-width: 86.375em) {
  2278. .related-articles {
  2279. display: inline;
  2280. float: left;
  2281. width: 37.5%;
  2282. margin-left: 33.33333%;
  2283. margin-right: 29.16667%
  2284. }
  2285. }
  2286. .related-articles h4 {
  2287. text-transform: uppercase;
  2288. margin-bottom: 0
  2289. }
  2290. .related-articles li {
  2291. margin-bottom: 0
  2292. }
  2293. .browser-upgrade {
  2294. background: #000;
  2295. text-align: center;
  2296. margin: 0 0 2em 0;
  2297. padding: 10px;
  2298. text-align: center;
  2299. color: #fff
  2300. }
  2301. .browser-upgrade a {
  2302. color: #fff;
  2303. border-bottom: 1px dotted #fff;
  2304. text-decoration: none
  2305. }
  2306. .browser-upgrade a: hover {
  2307. border-bottom: 1px solid #fff
  2308. }
  2309. #goog-fixurl ul {
  2310. list-style: none;
  2311. margin-left: 0;
  2312. padding-left: 0
  2313. }
  2314. #goog-fixurl ul li {
  2315. list-style-type: none
  2316. }
  2317. #goog-wm-qt {
  2318. width: auto;
  2319. margin-right: 10px;
  2320. margin-bottom: 20px;
  2321. padding: 8px 20px;
  2322. display: inline-block;
  2323. font-size: 14px;
  2324. font-size: 0.875rem;
  2325. background-color: #fff;
  2326. color: #111;
  2327. border-width: 2px !important;
  2328. border-style: solid !important;
  2329. border-color: #919191;
  2330. border-radius: 3px
  2331. }
  2332. /*!
  2333. * Font Awesome 4.5.0 by @davegandy - http: //fontawesome.io - @fontawesome
  2334. * License - http: //fontawesome.io/license (Font: SIL OFL 1.1,
  2335. CSS: MIT License)
  2336. */
  2337. @font-face {
  2338. font-family: 'FontAwesome';
  2339. src: url("../fonts/fontawesome-webfont.eot?v=4.5.0");
  2340. src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"),
  2341. url("../fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"),
  2342. url("../fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"),
  2343. url("../fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"),
  2344. url("../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
  2345. font-weight: normal;
  2346. font-style: normal
  2347. }
  2348. .fa {
  2349. display: inline-block;
  2350. font: normal normal normal 14px/1 FontAwesome;
  2351. font-size: inherit;
  2352. text-rendering: auto;
  2353. -webkit-font-smoothing: antialiased;
  2354. -moz-osx-font-smoothing: grayscale
  2355. }
  2356. .fa-lg {
  2357. font-size: 1.33333em;
  2358. line-height: 0.75em;
  2359. vertical-align: -15%
  2360. }
  2361. .fa-2x {
  2362. font-size: 2em
  2363. }
  2364. .fa-3x {
  2365. font-size: 3em
  2366. }
  2367. .fa-4x {
  2368. font-size: 4em
  2369. }
  2370. .fa-5x {
  2371. font-size: 5em
  2372. }
  2373. .fa-fw {
  2374. width: 1.28571em;
  2375. text-align: center
  2376. }
  2377. .fa-ul {
  2378. padding-left: 0;
  2379. margin-left: 2.14286em;
  2380. list-style-type: none
  2381. }
  2382. .fa-ul>li {
  2383. position: relative
  2384. }
  2385. .fa-li {
  2386. position: absolute;
  2387. left: -2.14286em;
  2388. width: 2.14286em;
  2389. top: 0.14286em;
  2390. text-align: center
  2391. }
  2392. .fa-li.fa-lg {
  2393. left: -1.85714em
  2394. }
  2395. .fa-border {
  2396. padding: .2em .25em .15em;
  2397. border: solid 0.08em #eee;
  2398. border-radius: .1em
  2399. }
  2400. .fa-pull-left {
  2401. float: left
  2402. }
  2403. .fa-pull-right {
  2404. float: right
  2405. }
  2406. .fa.fa-pull-left {
  2407. margin-right: .3em
  2408. }
  2409. .fa.fa-pull-right {
  2410. margin-left: .3em
  2411. }
  2412. .pull-right {
  2413. float: right
  2414. }
  2415. .pull-left {
  2416. float: left
  2417. }
  2418. .fa.pull-left {
  2419. margin-right: .3em
  2420. }
  2421. .fa.pull-right {
  2422. margin-left: .3em
  2423. }
  2424. .fa-spin {
  2425. -webkit-animation: fa-spin 2s infinite linear;
  2426. animation: fa-spin 2s infinite linear
  2427. }
  2428. .fa-pulse {
  2429. -webkit-animation: fa-spin 1s infinite steps(8);
  2430. animation: fa-spin 1s infinite steps(8)
  2431. }
  2432. @-webkit-keyframes fa-spin {
  2433. 0% {
  2434. -webkit-transform: rotate(0deg);
  2435. transform: rotate(0deg)
  2436. }
  2437. 100% {
  2438. -webkit-transform: rotate(359deg);
  2439. transform: rotate(359deg)
  2440. }
  2441. }
  2442. @keyframes fa-spin {
  2443. 0% {
  2444. -webkit-transform: rotate(0deg);
  2445. transform: rotate(0deg)
  2446. }
  2447. 100% {
  2448. -webkit-transform: rotate(359deg);
  2449. transform: rotate(359deg)
  2450. }
  2451. }
  2452. .fa-rotate-90 {
  2453. filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
  2454. -webkit-transform: rotate(90deg);
  2455. -ms-transform: rotate(90deg);
  2456. transform: rotate(90deg)
  2457. }
  2458. .fa-rotate-180 {
  2459. filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
  2460. -webkit-transform: rotate(180deg);
  2461. -ms-transform: rotate(180deg);
  2462. transform: rotate(180deg)
  2463. }
  2464. .fa-rotate-270 {
  2465. filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
  2466. -webkit-transform: rotate(270deg);
  2467. -ms-transform: rotate(270deg);
  2468. transform: rotate(270deg)
  2469. }
  2470. .fa-flip-horizontal {
  2471. filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0);
  2472. -webkit-transform: scale(-1,
  2473. 1);
  2474. -ms-transform: scale(-1,
  2475. 1);
  2476. transform: scale(-1,
  2477. 1)
  2478. }
  2479. .fa-flip-vertical {
  2480. filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
  2481. -webkit-transform: scale(1,
  2482. -1);
  2483. -ms-transform: scale(1,
  2484. -1);
  2485. transform: scale(1,
  2486. -1)
  2487. }
  2488. :root .fa-rotate-90,
  2489. :root .fa-rotate-180,
  2490. :root .fa-rotate-270,
  2491. :root .fa-flip-horizontal,
  2492. :root .fa-flip-vertical {
  2493. filter: none
  2494. }
  2495. .fa-stack {
  2496. position: relative;
  2497. display: inline-block;
  2498. width: 2em;
  2499. height: 2em;
  2500. line-height: 2em;
  2501. vertical-align: middle
  2502. }
  2503. .fa-stack-1x,
  2504. .fa-stack-2x {
  2505. position: absolute;
  2506. left: 0;
  2507. width: 100%;
  2508. text-align: center
  2509. }
  2510. .fa-stack-1x {
  2511. line-height: inherit
  2512. }
  2513. .fa-stack-2x {
  2514. font-size: 2em
  2515. }
  2516. .fa-inverse {
  2517. color: #fff
  2518. }
  2519. .fa-glass:before {
  2520. content: ""
  2521. }
  2522. .fa-music:before {
  2523. content: ""
  2524. }
  2525. .fa-search:before {
  2526. content: ""
  2527. }
  2528. .fa-envelope-o:before {
  2529. content: ""
  2530. }
  2531. .fa-heart:before {
  2532. content: ""
  2533. }
  2534. .fa-star:before {
  2535. content: ""
  2536. }
  2537. .fa-star-o:before {
  2538. content: ""
  2539. }
  2540. .fa-user:before {
  2541. content: ""
  2542. }
  2543. .fa-film:before {
  2544. content: ""
  2545. }
  2546. .fa-th-large:before {
  2547. content: ""
  2548. }
  2549. .fa-th:before {
  2550. content: ""
  2551. }
  2552. .fa-th-list:before {
  2553. content: ""
  2554. }
  2555. .fa-check:before {
  2556. content: ""
  2557. }
  2558. .fa-remove:before,
  2559. .fa-close:before,
  2560. .fa-times:before {
  2561. content: ""
  2562. }
  2563. .fa-search-plus:before {
  2564. content: ""
  2565. }
  2566. .fa-search-minus:before {
  2567. content: ""
  2568. }
  2569. .fa-power-off:before {
  2570. content: ""
  2571. }
  2572. .fa-signal:before {
  2573. content: ""
  2574. }
  2575. .fa-gear:before,
  2576. .fa-cog:before {
  2577. content: ""
  2578. }
  2579. .fa-trash-o:before {
  2580. content: ""
  2581. }
  2582. .fa-home:before {
  2583. content: ""
  2584. }
  2585. .fa-file-o:before {
  2586. content: ""
  2587. }
  2588. .fa-clock-o:before {
  2589. content: ""
  2590. }
  2591. .fa-road:before {
  2592. content: ""
  2593. }
  2594. .fa-download:before {
  2595. content: ""
  2596. }
  2597. .fa-arrow-circle-o-down:before {
  2598. content: ""
  2599. }
  2600. .fa-arrow-circle-o-up:before {
  2601. content: ""
  2602. }
  2603. .fa-inbox:before {
  2604. content: ""
  2605. }
  2606. .fa-play-circle-o:before {
  2607. content: ""
  2608. }
  2609. .fa-rotate-right:before,
  2610. .fa-repeat:before {
  2611. content: ""
  2612. }
  2613. .fa-refresh:before {
  2614. content: ""
  2615. }
  2616. .fa-list-alt:before {
  2617. content: ""
  2618. }
  2619. .fa-lock:before {
  2620. content: ""
  2621. }
  2622. .fa-flag:before {
  2623. content: ""
  2624. }
  2625. .fa-headphones:before {
  2626. content: ""
  2627. }
  2628. .fa-volume-off:before {
  2629. content: ""
  2630. }
  2631. .fa-volume-down:before {
  2632. content: ""
  2633. }
  2634. .fa-volume-up:before {
  2635. content: ""
  2636. }
  2637. .fa-qrcode:before {
  2638. content: ""
  2639. }
  2640. .fa-barcode:before {
  2641. content: ""
  2642. }
  2643. .fa-tag:before {
  2644. content: ""
  2645. }
  2646. .fa-tags:before {
  2647. content: ""
  2648. }
  2649. .fa-book:before {
  2650. content: ""
  2651. }
  2652. .fa-bookmark:before {
  2653. content: ""
  2654. }
  2655. .fa-print:before {
  2656. content: ""
  2657. }
  2658. .fa-camera:before {
  2659. content: ""
  2660. }
  2661. .fa-font:before {
  2662. content: ""
  2663. }
  2664. .fa-bold:before {
  2665. content: ""
  2666. }
  2667. .fa-italic:before {
  2668. content: ""
  2669. }
  2670. .fa-text-height:before {
  2671. content: ""
  2672. }
  2673. .fa-text-width:before {
  2674. content: ""
  2675. }
  2676. .fa-align-left:before {
  2677. content: ""
  2678. }
  2679. .fa-align-center:before {
  2680. content: ""
  2681. }
  2682. .fa-align-right:before {
  2683. content: ""
  2684. }
  2685. .fa-align-justify:before {
  2686. content: ""
  2687. }
  2688. .fa-list:before {
  2689. content: ""
  2690. }
  2691. .fa-dedent:before,
  2692. .fa-outdent:before {
  2693. content: ""
  2694. }
  2695. .fa-indent:before {
  2696. content: ""
  2697. }
  2698. .fa-video-camera:before {
  2699. content: ""
  2700. }
  2701. .fa-photo:before,
  2702. .fa-image:before,
  2703. .fa-picture-o:before {
  2704. content: ""
  2705. }
  2706. .fa-pencil:before {
  2707. content: ""
  2708. }
  2709. .fa-map-marker:before {
  2710. content: ""
  2711. }
  2712. .fa-adjust:before {
  2713. content: ""
  2714. }
  2715. .fa-tint:before {
  2716. content: ""
  2717. }
  2718. .fa-edit:before,
  2719. .fa-pencil-square-o:before {
  2720. content: ""
  2721. }
  2722. .fa-share-square-o:before {
  2723. content: ""
  2724. }
  2725. .fa-check-square-o:before {
  2726. content: ""
  2727. }
  2728. .fa-arrows:before {
  2729. content: ""
  2730. }
  2731. .fa-step-backward:before {
  2732. content: ""
  2733. }
  2734. .fa-fast-backward:before {
  2735. content: ""
  2736. }
  2737. .fa-backward:before {
  2738. content: ""
  2739. }
  2740. .fa-play:before {
  2741. content: ""
  2742. }
  2743. .fa-pause:before {
  2744. content: ""
  2745. }
  2746. .fa-stop:before {
  2747. content: ""
  2748. }
  2749. .fa-forward:before {
  2750. content: ""
  2751. }
  2752. .fa-fast-forward:before {
  2753. content: ""
  2754. }
  2755. .fa-step-forward:before {
  2756. content: ""
  2757. }
  2758. .fa-eject:before {
  2759. content: ""
  2760. }
  2761. .fa-chevron-left:before {
  2762. content: ""
  2763. }
  2764. .fa-chevron-right:before {
  2765. content: ""
  2766. }
  2767. .fa-plus-circle:before {
  2768. content: ""
  2769. }
  2770. .fa-minus-circle:before {
  2771. content: ""
  2772. }
  2773. .fa-times-circle:before {
  2774. content: ""
  2775. }
  2776. .fa-check-circle:before {
  2777. content: ""
  2778. }
  2779. .fa-question-circle:before {
  2780. content: ""
  2781. }
  2782. .fa-info-circle:before {
  2783. content: ""
  2784. }
  2785. .fa-crosshairs:before {
  2786. content: ""
  2787. }
  2788. .fa-times-circle-o:before {
  2789. content: ""
  2790. }
  2791. .fa-check-circle-o:before {
  2792. content: ""
  2793. }
  2794. .fa-ban:before {
  2795. content: ""
  2796. }
  2797. .fa-arrow-left:before {
  2798. content: ""
  2799. }
  2800. .fa-arrow-right:before {
  2801. content: ""
  2802. }
  2803. .fa-arrow-up:before {
  2804. content: ""
  2805. }
  2806. .fa-arrow-down:before {
  2807. content: ""
  2808. }
  2809. .fa-mail-forward:before,
  2810. .fa-share:before {
  2811. content: ""
  2812. }
  2813. .fa-expand:before {
  2814. content: ""
  2815. }
  2816. .fa-compress:before {
  2817. content: ""
  2818. }
  2819. .fa-plus:before {
  2820. content: ""
  2821. }
  2822. .fa-minus:before {
  2823. content: ""
  2824. }
  2825. .fa-asterisk:before {
  2826. content: ""
  2827. }
  2828. .fa-exclamation-circle:before {
  2829. content: ""
  2830. }
  2831. .fa-gift:before {
  2832. content: ""
  2833. }
  2834. .fa-leaf:before {
  2835. content: ""
  2836. }
  2837. .fa-fire:before {
  2838. content: ""
  2839. }
  2840. .fa-eye:before {
  2841. content: ""
  2842. }
  2843. .fa-eye-slash:before {
  2844. content: ""
  2845. }
  2846. .fa-warning:before,
  2847. .fa-exclamation-triangle:before {
  2848. content: ""
  2849. }
  2850. .fa-plane:before {
  2851. content: ""
  2852. }
  2853. .fa-calendar:before {
  2854. content: ""
  2855. }
  2856. .fa-random:before {
  2857. content: ""
  2858. }
  2859. .fa-comment:before {
  2860. content: ""
  2861. }
  2862. .fa-magnet:before {
  2863. content: ""
  2864. }
  2865. .fa-chevron-up:before {
  2866. content: ""
  2867. }
  2868. .fa-chevron-down:before {
  2869. content: ""
  2870. }
  2871. .fa-retweet:before {
  2872. content: ""
  2873. }
  2874. .fa-shopping-cart:before {
  2875. content: ""
  2876. }
  2877. .fa-folder:before {
  2878. content: ""
  2879. }
  2880. .fa-folder-open:before {
  2881. content: ""
  2882. }
  2883. .fa-arrows-v:before {
  2884. content: ""
  2885. }
  2886. .fa-arrows-h:before {
  2887. content: ""
  2888. }
  2889. .fa-bar-chart-o:before,
  2890. .fa-bar-chart:before {
  2891. content: ""
  2892. }
  2893. .fa-twitter-square:before {
  2894. content: ""
  2895. }
  2896. .fa-facebook-square:before {
  2897. content: ""
  2898. }
  2899. .fa-camera-retro:before {
  2900. content: ""
  2901. }
  2902. .fa-key:before {
  2903. content: ""
  2904. }
  2905. .fa-gears:before,
  2906. .fa-cogs:before {
  2907. content: ""
  2908. }
  2909. .fa-comments:before {
  2910. content: ""
  2911. }
  2912. .fa-thumbs-o-up:before {
  2913. content: ""
  2914. }
  2915. .fa-thumbs-o-down:before {
  2916. content: ""
  2917. }
  2918. .fa-star-half:before {
  2919. content: ""
  2920. }
  2921. .fa-heart-o:before {
  2922. content: ""
  2923. }
  2924. .fa-sign-out:before {
  2925. content: ""
  2926. }
  2927. .fa-linkedin-square:before {
  2928. content: ""
  2929. }
  2930. .fa-thumb-tack:before {
  2931. content: ""
  2932. }
  2933. .fa-external-link:before {
  2934. content: ""
  2935. }
  2936. .fa-sign-in:before {
  2937. content: ""
  2938. }
  2939. .fa-trophy:before {
  2940. content: ""
  2941. }
  2942. .fa-github-square:before {
  2943. content: ""
  2944. }
  2945. .fa-upload:before {
  2946. content: ""
  2947. }
  2948. .fa-lemon-o:before {
  2949. content: ""
  2950. }
  2951. .fa-phone:before {
  2952. content: ""
  2953. }
  2954. .fa-square-o:before {
  2955. content: ""
  2956. }
  2957. .fa-bookmark-o:before {
  2958. content: ""
  2959. }
  2960. .fa-phone-square:before {
  2961. content: ""
  2962. }
  2963. .fa-twitter:before {
  2964. content: ""
  2965. }
  2966. .fa-facebook-f:before,
  2967. .fa-facebook:before {
  2968. content: ""
  2969. }
  2970. .fa-github:before {
  2971. content: ""
  2972. }
  2973. .fa-unlock:before {
  2974. content: ""
  2975. }
  2976. .fa-credit-card:before {
  2977. content: ""
  2978. }
  2979. .fa-feed:before,
  2980. .fa-rss:before {
  2981. content: ""
  2982. }
  2983. .fa-hdd-o:before {
  2984. content: ""
  2985. }
  2986. .fa-bullhorn:before {
  2987. content: ""
  2988. }
  2989. .fa-bell:before {
  2990. content: ""
  2991. }
  2992. .fa-certificate:before {
  2993. content: ""
  2994. }
  2995. .fa-hand-o-right:before {
  2996. content: ""
  2997. }
  2998. .fa-hand-o-left:before {
  2999. content: ""
  3000. }
  3001. .fa-hand-o-up:before {
  3002. content: ""
  3003. }
  3004. .fa-hand-o-down:before {
  3005. content: ""
  3006. }
  3007. .fa-arrow-circle-left:before {
  3008. content: ""
  3009. }
  3010. .fa-arrow-circle-right:before {
  3011. content: ""
  3012. }
  3013. .fa-arrow-circle-up:before {
  3014. content: ""
  3015. }
  3016. .fa-arrow-circle-down:before {
  3017. content: ""
  3018. }
  3019. .fa-globe:before {
  3020. content: ""
  3021. }
  3022. .fa-wrench:before {
  3023. content: ""
  3024. }
  3025. .fa-tasks:before {
  3026. content: ""
  3027. }
  3028. .fa-filter:before {
  3029. content: ""
  3030. }
  3031. .fa-briefcase:before {
  3032. content: ""
  3033. }
  3034. .fa-arrows-alt:before {
  3035. content: ""
  3036. }
  3037. .fa-group:before,
  3038. .fa-users:before {
  3039. content: ""
  3040. }
  3041. .fa-chain:before,
  3042. .fa-link:before {
  3043. content: ""
  3044. }
  3045. .fa-cloud:before {
  3046. content: ""
  3047. }
  3048. .fa-flask:before {
  3049. content: ""
  3050. }
  3051. .fa-cut:before,
  3052. .fa-scissors:before {
  3053. content: ""
  3054. }
  3055. .fa-copy:before,
  3056. .fa-files-o:before {
  3057. content: ""
  3058. }
  3059. .fa-paperclip:before {
  3060. content: ""
  3061. }
  3062. .fa-save:before,
  3063. .fa-floppy-o:before {
  3064. content: ""
  3065. }
  3066. .fa-square:before {
  3067. content: ""
  3068. }
  3069. .fa-navicon:before,
  3070. .fa-reorder:before,
  3071. .fa-bars:before {
  3072. content: ""
  3073. }
  3074. .fa-list-ul:before {
  3075. content: ""
  3076. }
  3077. .fa-list-ol:before {
  3078. content: ""
  3079. }
  3080. .fa-strikethrough:before {
  3081. content: ""
  3082. }
  3083. .fa-underline:before {
  3084. content: ""
  3085. }
  3086. .fa-table:before {
  3087. content: ""
  3088. }
  3089. .fa-magic:before {
  3090. content: ""
  3091. }
  3092. .fa-truck:before {
  3093. content: ""
  3094. }
  3095. .fa-pinterest:before {
  3096. content: ""
  3097. }
  3098. .fa-pinterest-square:before {
  3099. content: ""
  3100. }
  3101. .fa-google-plus-square:before {
  3102. content: ""
  3103. }
  3104. .fa-google-plus:before {
  3105. content: ""
  3106. }
  3107. .fa-money:before {
  3108. content: ""
  3109. }
  3110. .fa-caret-down:before {
  3111. content: ""
  3112. }
  3113. .fa-caret-up:before {
  3114. content: ""
  3115. }
  3116. .fa-caret-left:before {
  3117. content: ""
  3118. }
  3119. .fa-caret-right:before {
  3120. content: ""
  3121. }
  3122. .fa-columns:before {
  3123. content: ""
  3124. }
  3125. .fa-unsorted:before,
  3126. .fa-sort:before {
  3127. content: ""
  3128. }
  3129. .fa-sort-down:before,
  3130. .fa-sort-desc:before {
  3131. content: ""
  3132. }
  3133. .fa-sort-up:before,
  3134. .fa-sort-asc:before {
  3135. content: ""
  3136. }
  3137. .fa-envelope:before {
  3138. content: ""
  3139. }
  3140. .fa-linkedin:before {
  3141. content: ""
  3142. }
  3143. .fa-rotate-left:before,
  3144. .fa-undo:before {
  3145. content: ""
  3146. }
  3147. .fa-legal:before,
  3148. .fa-gavel:before {
  3149. content: ""
  3150. }
  3151. .fa-dashboard:before,
  3152. .fa-tachometer:before {
  3153. content: ""
  3154. }
  3155. .fa-comment-o:before {
  3156. content: ""
  3157. }
  3158. .fa-comments-o:before {
  3159. content: ""
  3160. }
  3161. .fa-flash:before,
  3162. .fa-bolt:before {
  3163. content: ""
  3164. }
  3165. .fa-sitemap:before {
  3166. content: ""
  3167. }
  3168. .fa-umbrella:before {
  3169. content: ""
  3170. }
  3171. .fa-paste:before,
  3172. .fa-clipboard:before {
  3173. content: ""
  3174. }
  3175. .fa-lightbulb-o:before {
  3176. content: ""
  3177. }
  3178. .fa-exchange:before {
  3179. content: ""
  3180. }
  3181. .fa-cloud-download:before {
  3182. content: ""
  3183. }
  3184. .fa-cloud-upload:before {
  3185. content: ""
  3186. }
  3187. .fa-user-md:before {
  3188. content: ""
  3189. }
  3190. .fa-stethoscope:before {
  3191. content: ""
  3192. }
  3193. .fa-suitcase:before {
  3194. content: ""
  3195. }
  3196. .fa-bell-o:before {
  3197. content: ""
  3198. }
  3199. .fa-coffee:before {
  3200. content: ""
  3201. }
  3202. .fa-cutlery:before {
  3203. content: ""
  3204. }
  3205. .fa-file-text-o:before {
  3206. content: ""
  3207. }
  3208. .fa-building-o:before {
  3209. content: ""
  3210. }
  3211. .fa-hospital-o:before {
  3212. content: ""
  3213. }
  3214. .fa-ambulance:before {
  3215. content: ""
  3216. }
  3217. .fa-medkit:before {
  3218. content: ""
  3219. }
  3220. .fa-fighter-jet:before {
  3221. content: ""
  3222. }
  3223. .fa-beer:before {
  3224. content: ""
  3225. }
  3226. .fa-h-square:before {
  3227. content: ""
  3228. }
  3229. .fa-plus-square:before {
  3230. content: ""
  3231. }
  3232. .fa-angle-double-left:before {
  3233. content: ""
  3234. }
  3235. .fa-angle-double-right:before {
  3236. content: ""
  3237. }
  3238. .fa-angle-double-up:before {
  3239. content: ""
  3240. }
  3241. .fa-angle-double-down:before {
  3242. content: ""
  3243. }
  3244. .fa-angle-left:before {
  3245. content: ""
  3246. }
  3247. .fa-angle-right:before {
  3248. content: ""
  3249. }
  3250. .fa-angle-up:before {
  3251. content: ""
  3252. }
  3253. .fa-angle-down:before {
  3254. content: ""
  3255. }
  3256. .fa-desktop:before {
  3257. content: ""
  3258. }
  3259. .fa-laptop:before {
  3260. content: ""
  3261. }
  3262. .fa-tablet:before {
  3263. content: ""
  3264. }
  3265. .fa-mobile-phone:before,
  3266. .fa-mobile:before {
  3267. content: ""
  3268. }
  3269. .fa-circle-o:before {
  3270. content: ""
  3271. }
  3272. .fa-quote-left:before {
  3273. content: ""
  3274. }
  3275. .fa-quote-right:before {
  3276. content: ""
  3277. }
  3278. .fa-spinner:before {
  3279. content: ""
  3280. }
  3281. .fa-circle:before {
  3282. content: ""
  3283. }
  3284. .fa-mail-reply:before,
  3285. .fa-reply:before {
  3286. content: ""
  3287. }
  3288. .fa-github-alt:before {
  3289. content: ""
  3290. }
  3291. .fa-folder-o:before {
  3292. content: ""
  3293. }
  3294. .fa-folder-open-o:before {
  3295. content: ""
  3296. }
  3297. .fa-smile-o:before {
  3298. content: ""
  3299. }
  3300. .fa-frown-o:before {
  3301. content: ""
  3302. }
  3303. .fa-meh-o:before {
  3304. content: ""
  3305. }
  3306. .fa-gamepad:before {
  3307. content: ""
  3308. }
  3309. .fa-keyboard-o:before {
  3310. content: ""
  3311. }
  3312. .fa-flag-o:before {
  3313. content: ""
  3314. }
  3315. .fa-flag-checkered:before {
  3316. content: ""
  3317. }
  3318. .fa-terminal:before {
  3319. content: ""
  3320. }
  3321. .fa-code:before {
  3322. content: ""
  3323. }
  3324. .fa-mail-reply-all:before,
  3325. .fa-reply-all:before {
  3326. content: ""
  3327. }
  3328. .fa-star-half-empty:before,
  3329. .fa-star-half-full:before,
  3330. .fa-star-half-o:before {
  3331. content: ""
  3332. }
  3333. .fa-location-arrow:before {
  3334. content: ""
  3335. }
  3336. .fa-crop:before {
  3337. content: ""
  3338. }
  3339. .fa-code-fork:before {
  3340. content: ""
  3341. }
  3342. .fa-unlink:before,
  3343. .fa-chain-broken:before {
  3344. content: ""
  3345. }
  3346. .fa-question:before {
  3347. content: ""
  3348. }
  3349. .fa-info:before {
  3350. content: ""
  3351. }
  3352. .fa-exclamation:before {
  3353. content: ""
  3354. }
  3355. .fa-superscript:before {
  3356. content: ""
  3357. }
  3358. .fa-subscript:before {
  3359. content: ""
  3360. }
  3361. .fa-eraser:before {
  3362. content: ""
  3363. }
  3364. .fa-puzzle-piece:before {
  3365. content: ""
  3366. }
  3367. .fa-microphone:before {
  3368. content: ""
  3369. }
  3370. .fa-microphone-slash:before {
  3371. content: ""
  3372. }
  3373. .fa-shield:before {
  3374. content: ""
  3375. }
  3376. .fa-calendar-o:before {
  3377. content: ""
  3378. }
  3379. .fa-fire-extinguisher:before {
  3380. content: ""
  3381. }
  3382. .fa-rocket:before {
  3383. content: ""
  3384. }
  3385. .fa-maxcdn:before {
  3386. content: ""
  3387. }
  3388. .fa-chevron-circle-left:before {
  3389. content: ""
  3390. }
  3391. .fa-chevron-circle-right:before {
  3392. content: ""
  3393. }
  3394. .fa-chevron-circle-up:before {
  3395. content: ""
  3396. }
  3397. .fa-chevron-circle-down:before {
  3398. content: ""
  3399. }
  3400. .fa-html5:before {
  3401. content: ""
  3402. }
  3403. .fa-css3:before {
  3404. content: ""
  3405. }
  3406. .fa-anchor:before {
  3407. content: ""
  3408. }
  3409. .fa-unlock-alt:before {
  3410. content: ""
  3411. }
  3412. .fa-bullseye:before {
  3413. content: ""
  3414. }
  3415. .fa-ellipsis-h:before {
  3416. content: ""
  3417. }
  3418. .fa-ellipsis-v:before {
  3419. content: ""
  3420. }
  3421. .fa-rss-square:before {
  3422. content: ""
  3423. }
  3424. .fa-play-circle:before {
  3425. content: ""
  3426. }
  3427. .fa-ticket:before {
  3428. content: ""
  3429. }
  3430. .fa-minus-square:before {
  3431. content: ""
  3432. }
  3433. .fa-minus-square-o:before {
  3434. content: ""
  3435. }
  3436. .fa-level-up:before {
  3437. content: ""
  3438. }
  3439. .fa-level-down:before {
  3440. content: ""
  3441. }
  3442. .fa-check-square:before {
  3443. content: ""
  3444. }
  3445. .fa-pencil-square:before {
  3446. content: ""
  3447. }
  3448. .fa-external-link-square:before {
  3449. content: ""
  3450. }
  3451. .fa-share-square:before {
  3452. content: ""
  3453. }
  3454. .fa-compass:before {
  3455. content: ""
  3456. }
  3457. .fa-toggle-down:before,
  3458. .fa-caret-square-o-down:before {
  3459. content: ""
  3460. }
  3461. .fa-toggle-up:before,
  3462. .fa-caret-square-o-up:before {
  3463. content: ""
  3464. }
  3465. .fa-toggle-right:before,
  3466. .fa-caret-square-o-right:before {
  3467. content: ""
  3468. }
  3469. .fa-euro:before,
  3470. .fa-eur:before {
  3471. content: ""
  3472. }
  3473. .fa-gbp:before {
  3474. content: ""
  3475. }
  3476. .fa-dollar:before,
  3477. .fa-usd:before {
  3478. content: ""
  3479. }
  3480. .fa-rupee:before,
  3481. .fa-inr:before {
  3482. content: ""
  3483. }
  3484. .fa-cny:before,
  3485. .fa-rmb:before,
  3486. .fa-yen:before,
  3487. .fa-jpy:before {
  3488. content: ""
  3489. }
  3490. .fa-ruble:before,
  3491. .fa-rouble:before,
  3492. .fa-rub:before {
  3493. content: ""
  3494. }
  3495. .fa-won:before,
  3496. .fa-krw:before {
  3497. content: ""
  3498. }
  3499. .fa-bitcoin:before,
  3500. .fa-btc:before {
  3501. content: ""
  3502. }
  3503. .fa-file:before {
  3504. content: ""
  3505. }
  3506. .fa-file-text:before {
  3507. content: ""
  3508. }
  3509. .fa-sort-alpha-asc:before {
  3510. content: ""
  3511. }
  3512. .fa-sort-alpha-desc:before {
  3513. content: ""
  3514. }
  3515. .fa-sort-amount-asc:before {
  3516. content: ""
  3517. }
  3518. .fa-sort-amount-desc:before {
  3519. content: ""
  3520. }
  3521. .fa-sort-numeric-asc:before {
  3522. content: ""
  3523. }
  3524. .fa-sort-numeric-desc:before {
  3525. content: ""
  3526. }
  3527. .fa-thumbs-up:before {
  3528. content: ""
  3529. }
  3530. .fa-thumbs-down:before {
  3531. content: ""
  3532. }
  3533. .fa-youtube-square:before {
  3534. content: ""
  3535. }
  3536. .fa-youtube:before {
  3537. content: ""
  3538. }
  3539. .fa-xing:before {
  3540. content: ""
  3541. }
  3542. .fa-xing-square:before {
  3543. content: ""
  3544. }
  3545. .fa-youtube-play:before {
  3546. content: ""
  3547. }
  3548. .fa-dropbox:before {
  3549. content: ""
  3550. }
  3551. .fa-stack-overflow:before {
  3552. content: ""
  3553. }
  3554. .fa-instagram:before {
  3555. content: ""
  3556. }
  3557. .fa-flickr:before {
  3558. content: ""
  3559. }
  3560. .fa-adn:before {
  3561. content: ""
  3562. }
  3563. .fa-bitbucket:before {
  3564. content: ""
  3565. }
  3566. .fa-bitbucket-square:before {
  3567. content: ""
  3568. }
  3569. .fa-tumblr:before {
  3570. content: ""
  3571. }
  3572. .fa-tumblr-square:before {
  3573. content: ""
  3574. }
  3575. .fa-long-arrow-down:before {
  3576. content: ""
  3577. }
  3578. .fa-long-arrow-up:before {
  3579. content: ""
  3580. }
  3581. .fa-long-arrow-left:before {
  3582. content: ""
  3583. }
  3584. .fa-long-arrow-right:before {
  3585. content: ""
  3586. }
  3587. .fa-apple:before {
  3588. content: ""
  3589. }
  3590. .fa-windows:before {
  3591. content: ""
  3592. }
  3593. .fa-android:before {
  3594. content: ""
  3595. }
  3596. .fa-linux:before {
  3597. content: ""
  3598. }
  3599. .fa-dribbble:before {
  3600. content: ""
  3601. }
  3602. .fa-skype:before {
  3603. content: ""
  3604. }
  3605. .fa-foursquare:before {
  3606. content: ""
  3607. }
  3608. .fa-trello:before {
  3609. content: ""
  3610. }
  3611. .fa-female:before {
  3612. content: ""
  3613. }
  3614. .fa-male:before {
  3615. content: ""
  3616. }
  3617. .fa-gittip:before,
  3618. .fa-gratipay:before {
  3619. content: ""
  3620. }
  3621. .fa-sun-o:before {
  3622. content: ""
  3623. }
  3624. .fa-moon-o:before {
  3625. content: ""
  3626. }
  3627. .fa-archive:before {
  3628. content: ""
  3629. }
  3630. .fa-bug:before {
  3631. content: ""
  3632. }
  3633. .fa-vk:before {
  3634. content: ""
  3635. }
  3636. .fa-weibo:before {
  3637. content: ""
  3638. }
  3639. .fa-renren:before {
  3640. content: ""
  3641. }
  3642. .fa-pagelines:before {
  3643. content: ""
  3644. }
  3645. .fa-stack-exchange:before {
  3646. content: ""
  3647. }
  3648. .fa-arrow-circle-o-right:before {
  3649. content: ""
  3650. }
  3651. .fa-arrow-circle-o-left:before {
  3652. content: ""
  3653. }
  3654. .fa-toggle-left:before,
  3655. .fa-caret-square-o-left:before {
  3656. content: ""
  3657. }
  3658. .fa-dot-circle-o:before {
  3659. content: ""
  3660. }
  3661. .fa-wheelchair:before {
  3662. content: ""
  3663. }
  3664. .fa-vimeo-square:before {
  3665. content: ""
  3666. }
  3667. .fa-turkish-lira:before,
  3668. .fa-try:before {
  3669. content: ""
  3670. }
  3671. .fa-plus-square-o:before {
  3672. content: ""
  3673. }
  3674. .fa-space-shuttle:before {
  3675. content: ""
  3676. }
  3677. .fa-slack:before {
  3678. content: ""
  3679. }
  3680. .fa-envelope-square:before {
  3681. content: ""
  3682. }
  3683. .fa-wordpress:before {
  3684. content: ""
  3685. }
  3686. .fa-openid:before {
  3687. content: ""
  3688. }
  3689. .fa-institution:before,
  3690. .fa-bank:before,
  3691. .fa-university:before {
  3692. content: ""
  3693. }
  3694. .fa-mortar-board:before,
  3695. .fa-graduation-cap:before {
  3696. content: ""
  3697. }
  3698. .fa-yahoo:before {
  3699. content: ""
  3700. }
  3701. .fa-google:before {
  3702. content: ""
  3703. }
  3704. .fa-reddit:before {
  3705. content: ""
  3706. }
  3707. .fa-reddit-square:before {
  3708. content: ""
  3709. }
  3710. .fa-stumbleupon-circle:before {
  3711. content: ""
  3712. }
  3713. .fa-stumbleupon:before {
  3714. content: ""
  3715. }
  3716. .fa-delicious:before {
  3717. content: ""
  3718. }
  3719. .fa-digg:before {
  3720. content: ""
  3721. }
  3722. .fa-pied-piper:before {
  3723. content: ""
  3724. }
  3725. .fa-pied-piper-alt:before {
  3726. content: ""
  3727. }
  3728. .fa-drupal:before {
  3729. content: ""
  3730. }
  3731. .fa-joomla:before {
  3732. content: ""
  3733. }
  3734. .fa-language:before {
  3735. content: ""
  3736. }
  3737. .fa-fax:before {
  3738. content: ""
  3739. }
  3740. .fa-building:before {
  3741. content: ""
  3742. }
  3743. .fa-child:before {
  3744. content: ""
  3745. }
  3746. .fa-paw:before {
  3747. content: ""
  3748. }
  3749. .fa-spoon:before {
  3750. content: ""
  3751. }
  3752. .fa-cube:before {
  3753. content: ""
  3754. }
  3755. .fa-cubes:before {
  3756. content: ""
  3757. }
  3758. .fa-behance:before {
  3759. content: ""
  3760. }
  3761. .fa-behance-square:before {
  3762. content: ""
  3763. }
  3764. .fa-steam:before {
  3765. content: ""
  3766. }
  3767. .fa-steam-square:before {
  3768. content: ""
  3769. }
  3770. .fa-recycle:before {
  3771. content: ""
  3772. }
  3773. .fa-automobile:before,
  3774. .fa-car:before {
  3775. content: ""
  3776. }
  3777. .fa-cab:before,
  3778. .fa-taxi:before {
  3779. content: ""
  3780. }
  3781. .fa-tree:before {
  3782. content: ""
  3783. }
  3784. .fa-spotify:before {
  3785. content: ""
  3786. }
  3787. .fa-deviantart:before {
  3788. content: ""
  3789. }
  3790. .fa-soundcloud:before {
  3791. content: ""
  3792. }
  3793. .fa-database:before {
  3794. content: ""
  3795. }
  3796. .fa-file-pdf-o:before {
  3797. content: ""
  3798. }
  3799. .fa-file-word-o:before {
  3800. content: ""
  3801. }
  3802. .fa-file-excel-o:before {
  3803. content: ""
  3804. }
  3805. .fa-file-powerpoint-o:before {
  3806. content: ""
  3807. }
  3808. .fa-file-photo-o:before,
  3809. .fa-file-picture-o:before,
  3810. .fa-file-image-o:before {
  3811. content: ""
  3812. }
  3813. .fa-file-zip-o:before,
  3814. .fa-file-archive-o:before {
  3815. content: ""
  3816. }
  3817. .fa-file-sound-o:before,
  3818. .fa-file-audio-o:before {
  3819. content: ""
  3820. }
  3821. .fa-file-movie-o:before,
  3822. .fa-file-video-o:before {
  3823. content: ""
  3824. }
  3825. .fa-file-code-o:before {
  3826. content: ""
  3827. }
  3828. .fa-vine:before {
  3829. content: ""
  3830. }
  3831. .fa-codepen:before {
  3832. content: ""
  3833. }
  3834. .fa-jsfiddle:before {
  3835. content: ""
  3836. }
  3837. .fa-life-bouy:before,
  3838. .fa-life-buoy:before,
  3839. .fa-life-saver:before,
  3840. .fa-support:before,
  3841. .fa-life-ring:before {
  3842. content: ""
  3843. }
  3844. .fa-circle-o-notch:before {
  3845. content: ""
  3846. }
  3847. .fa-ra:before,
  3848. .fa-rebel:before {
  3849. content: ""
  3850. }
  3851. .fa-ge:before,
  3852. .fa-empire:before {
  3853. content: ""
  3854. }
  3855. .fa-git-square:before {
  3856. content: ""
  3857. }
  3858. .fa-git:before {
  3859. content: ""
  3860. }
  3861. .fa-y-combinator-square:before,
  3862. .fa-yc-square:before,
  3863. .fa-hacker-news:before {
  3864. content: ""
  3865. }
  3866. .fa-tencent-weibo:before {
  3867. content: ""
  3868. }
  3869. .fa-qq:before {
  3870. content: ""
  3871. }
  3872. .fa-wechat:before,
  3873. .fa-weixin:before {
  3874. content: ""
  3875. }
  3876. .fa-send:before,
  3877. .fa-paper-plane:before {
  3878. content: ""
  3879. }
  3880. .fa-send-o:before,
  3881. .fa-paper-plane-o:before {
  3882. content: ""
  3883. }
  3884. .fa-history:before {
  3885. content: ""
  3886. }
  3887. .fa-circle-thin:before {
  3888. content: ""
  3889. }
  3890. .fa-header:before {
  3891. content: ""
  3892. }
  3893. .fa-paragraph:before {
  3894. content: ""
  3895. }
  3896. .fa-sliders:before {
  3897. content: ""
  3898. }
  3899. .fa-share-alt:before {
  3900. content: ""
  3901. }
  3902. .fa-share-alt-square:before {
  3903. content: ""
  3904. }
  3905. .fa-bomb:before {
  3906. content: ""
  3907. }
  3908. .fa-soccer-ball-o:before,
  3909. .fa-futbol-o:before {
  3910. content: ""
  3911. }
  3912. .fa-tty:before {
  3913. content: ""
  3914. }
  3915. .fa-binoculars:before {
  3916. content: ""
  3917. }
  3918. .fa-plug:before {
  3919. content: ""
  3920. }
  3921. .fa-slideshare:before {
  3922. content: ""
  3923. }
  3924. .fa-twitch:before {
  3925. content: ""
  3926. }
  3927. .fa-yelp:before {
  3928. content: ""
  3929. }
  3930. .fa-newspaper-o:before {
  3931. content: ""
  3932. }
  3933. .fa-wifi:before {
  3934. content: ""
  3935. }
  3936. .fa-calculator:before {
  3937. content: ""
  3938. }
  3939. .fa-paypal:before {
  3940. content: ""
  3941. }
  3942. .fa-google-wallet:before {
  3943. content: ""
  3944. }
  3945. .fa-cc-visa:before {
  3946. content: ""
  3947. }
  3948. .fa-cc-mastercard:before {
  3949. content: ""
  3950. }
  3951. .fa-cc-discover:before {
  3952. content: ""
  3953. }
  3954. .fa-cc-amex:before {
  3955. content: ""
  3956. }
  3957. .fa-cc-paypal:before {
  3958. content: ""
  3959. }
  3960. .fa-cc-stripe:before {
  3961. content: ""
  3962. }
  3963. .fa-bell-slash:before {
  3964. content: ""
  3965. }
  3966. .fa-bell-slash-o:before {
  3967. content: ""
  3968. }
  3969. .fa-trash:before {
  3970. content: ""
  3971. }
  3972. .fa-copyright:before {
  3973. content: ""
  3974. }
  3975. .fa-at:before {
  3976. content: ""
  3977. }
  3978. .fa-eyedropper:before {
  3979. content: ""
  3980. }
  3981. .fa-paint-brush:before {
  3982. content: ""
  3983. }
  3984. .fa-birthday-cake:before {
  3985. content: ""
  3986. }
  3987. .fa-area-chart:before {
  3988. content: ""
  3989. }
  3990. .fa-pie-chart:before {
  3991. content: ""
  3992. }
  3993. .fa-line-chart:before {
  3994. content: ""
  3995. }
  3996. .fa-lastfm:before {
  3997. content: ""
  3998. }
  3999. .fa-lastfm-square:before {
  4000. content: ""
  4001. }
  4002. .fa-toggle-off:before {
  4003. content: ""
  4004. }
  4005. .fa-toggle-on:before {
  4006. content: ""
  4007. }
  4008. .fa-bicycle:before {
  4009. content: ""
  4010. }
  4011. .fa-bus:before {
  4012. content: ""
  4013. }
  4014. .fa-ioxhost:before {
  4015. content: ""
  4016. }
  4017. .fa-angellist:before {
  4018. content: ""
  4019. }
  4020. .fa-cc:before {
  4021. content: ""
  4022. }
  4023. .fa-shekel:before,
  4024. .fa-sheqel:before,
  4025. .fa-ils:before {
  4026. content: ""
  4027. }
  4028. .fa-meanpath:before {
  4029. content: ""
  4030. }
  4031. .fa-buysellads:before {
  4032. content: ""
  4033. }
  4034. .fa-connectdevelop:before {
  4035. content: ""
  4036. }
  4037. .fa-dashcube:before {
  4038. content: ""
  4039. }
  4040. .fa-forumbee:before {
  4041. content: ""
  4042. }
  4043. .fa-leanpub:before {
  4044. content: ""
  4045. }
  4046. .fa-sellsy:before {
  4047. content: ""
  4048. }
  4049. .fa-shirtsinbulk:before {
  4050. content: ""
  4051. }
  4052. .fa-simplybuilt:before {
  4053. content: ""
  4054. }
  4055. .fa-skyatlas:before {
  4056. content: ""
  4057. }
  4058. .fa-cart-plus:before {
  4059. content: ""
  4060. }
  4061. .fa-cart-arrow-down:before {
  4062. content: ""
  4063. }
  4064. .fa-diamond:before {
  4065. content: ""
  4066. }
  4067. .fa-ship:before {
  4068. content: ""
  4069. }
  4070. .fa-user-secret:before {
  4071. content: ""
  4072. }
  4073. .fa-motorcycle:before {
  4074. content: ""
  4075. }
  4076. .fa-street-view:before {
  4077. content: ""
  4078. }
  4079. .fa-heartbeat:before {
  4080. content: ""
  4081. }
  4082. .fa-venus:before {
  4083. content: ""
  4084. }
  4085. .fa-mars:before {
  4086. content: ""
  4087. }
  4088. .fa-mercury:before {
  4089. content: ""
  4090. }
  4091. .fa-intersex:before,
  4092. .fa-transgender:before {
  4093. content: ""
  4094. }
  4095. .fa-transgender-alt:before {
  4096. content: ""
  4097. }
  4098. .fa-venus-double:before {
  4099. content: ""
  4100. }
  4101. .fa-mars-double:before {
  4102. content: ""
  4103. }
  4104. .fa-venus-mars:before {
  4105. content: ""
  4106. }
  4107. .fa-mars-stroke:before {
  4108. content: ""
  4109. }
  4110. .fa-mars-stroke-v:before {
  4111. content: ""
  4112. }
  4113. .fa-mars-stroke-h:before {
  4114. content: ""
  4115. }
  4116. .fa-neuter:before {
  4117. content: ""
  4118. }
  4119. .fa-genderless:before {
  4120. content: ""
  4121. }
  4122. .fa-facebook-official:before {
  4123. content: ""
  4124. }
  4125. .fa-pinterest-p:before {
  4126. content: ""
  4127. }
  4128. .fa-whatsapp:before {
  4129. content: ""
  4130. }
  4131. .fa-server:before {
  4132. content: ""
  4133. }
  4134. .fa-user-plus:before {
  4135. content: ""
  4136. }
  4137. .fa-user-times:before {
  4138. content: ""
  4139. }
  4140. .fa-hotel:before,
  4141. .fa-bed:before {
  4142. content: ""
  4143. }
  4144. .fa-viacoin:before {
  4145. content: ""
  4146. }
  4147. .fa-train:before {
  4148. content: ""
  4149. }
  4150. .fa-subway:before {
  4151. content: ""
  4152. }
  4153. .fa-medium:before {
  4154. content: ""
  4155. }
  4156. .fa-yc:before,
  4157. .fa-y-combinator:before {
  4158. content: ""
  4159. }
  4160. .fa-optin-monster:before {
  4161. content: ""
  4162. }
  4163. .fa-opencart:before {
  4164. content: ""
  4165. }
  4166. .fa-expeditedssl:before {
  4167. content: ""
  4168. }
  4169. .fa-battery-4:before,
  4170. .fa-battery-full:before {
  4171. content: ""
  4172. }
  4173. .fa-battery-3:before,
  4174. .fa-battery-three-quarters:before {
  4175. content: ""
  4176. }
  4177. .fa-battery-2:before,
  4178. .fa-battery-half:before {
  4179. content: ""
  4180. }
  4181. .fa-battery-1:before,
  4182. .fa-battery-quarter:before {
  4183. content: ""
  4184. }
  4185. .fa-battery-0:before,
  4186. .fa-battery-empty:before {
  4187. content: ""
  4188. }
  4189. .fa-mouse-pointer:before {
  4190. content: ""
  4191. }
  4192. .fa-i-cursor:before {
  4193. content: ""
  4194. }
  4195. .fa-object-group:before {
  4196. content: ""
  4197. }
  4198. .fa-object-ungroup:before {
  4199. content: ""
  4200. }
  4201. .fa-sticky-note:before {
  4202. content: ""
  4203. }
  4204. .fa-sticky-note-o:before {
  4205. content: ""
  4206. }
  4207. .fa-cc-jcb:before {
  4208. content: ""
  4209. }
  4210. .fa-cc-diners-club:before {
  4211. content: ""
  4212. }
  4213. .fa-clone:before {
  4214. content: ""
  4215. }
  4216. .fa-balance-scale:before {
  4217. content: ""
  4218. }
  4219. .fa-hourglass-o:before {
  4220. content: ""
  4221. }
  4222. .fa-hourglass-1:before,
  4223. .fa-hourglass-start:before {
  4224. content: ""
  4225. }
  4226. .fa-hourglass-2:before,
  4227. .fa-hourglass-half:before {
  4228. content: ""
  4229. }
  4230. .fa-hourglass-3:before,
  4231. .fa-hourglass-end:before {
  4232. content: ""
  4233. }
  4234. .fa-hourglass:before {
  4235. content: ""
  4236. }
  4237. .fa-hand-grab-o:before,
  4238. .fa-hand-rock-o:before {
  4239. content: ""
  4240. }
  4241. .fa-hand-stop-o:before,
  4242. .fa-hand-paper-o:before {
  4243. content: ""
  4244. }
  4245. .fa-hand-scissors-o:before {
  4246. content: ""
  4247. }
  4248. .fa-hand-lizard-o:before {
  4249. content: ""
  4250. }
  4251. .fa-hand-spock-o:before {
  4252. content: ""
  4253. }
  4254. .fa-hand-pointer-o:before {
  4255. content: ""
  4256. }
  4257. .fa-hand-peace-o:before {
  4258. content: ""
  4259. }
  4260. .fa-trademark:before {
  4261. content: ""
  4262. }
  4263. .fa-registered:before {
  4264. content: ""
  4265. }
  4266. .fa-creative-commons:before {
  4267. content: ""
  4268. }
  4269. .fa-gg:before {
  4270. content: ""
  4271. }
  4272. .fa-gg-circle:before {
  4273. content: ""
  4274. }
  4275. .fa-tripadvisor:before {
  4276. content: ""
  4277. }
  4278. .fa-odnoklassniki:before {
  4279. content: ""
  4280. }
  4281. .fa-odnoklassniki-square:before {
  4282. content: ""
  4283. }
  4284. .fa-get-pocket:before {
  4285. content: ""
  4286. }
  4287. .fa-wikipedia-w:before {
  4288. content: ""
  4289. }
  4290. .fa-safari:before {
  4291. content: ""
  4292. }
  4293. .fa-chrome:before {
  4294. content: ""
  4295. }
  4296. .fa-firefox:before {
  4297. content: ""
  4298. }
  4299. .fa-opera:before {
  4300. content: ""
  4301. }
  4302. .fa-internet-explorer:before {
  4303. content: ""
  4304. }
  4305. .fa-tv:before,
  4306. .fa-television:before {
  4307. content: ""
  4308. }
  4309. .fa-contao:before {
  4310. content: ""
  4311. }
  4312. .fa-500px:before {
  4313. content: ""
  4314. }
  4315. .fa-amazon:before {
  4316. content: ""
  4317. }
  4318. .fa-calendar-plus-o:before {
  4319. content: ""
  4320. }
  4321. .fa-calendar-minus-o:before {
  4322. content: ""
  4323. }
  4324. .fa-calendar-times-o:before {
  4325. content: ""
  4326. }
  4327. .fa-calendar-check-o:before {
  4328. content: ""
  4329. }
  4330. .fa-industry:before {
  4331. content: ""
  4332. }
  4333. .fa-map-pin:before {
  4334. content: ""
  4335. }
  4336. .fa-map-signs:before {
  4337. content: ""
  4338. }
  4339. .fa-map-o:before {
  4340. content: ""
  4341. }
  4342. .fa-map:before {
  4343. content: ""
  4344. }
  4345. .fa-commenting:before {
  4346. content: ""
  4347. }
  4348. .fa-commenting-o:before {
  4349. content: ""
  4350. }
  4351. .fa-houzz:before {
  4352. content: ""
  4353. }
  4354. .fa-vimeo:before {
  4355. content: ""
  4356. }
  4357. .fa-black-tie:before {
  4358. content: ""
  4359. }
  4360. .fa-fonticons:before {
  4361. content: ""
  4362. }
  4363. .fa-reddit-alien:before {
  4364. content: ""
  4365. }
  4366. .fa-edge:before {
  4367. content: ""
  4368. }
  4369. .fa-credit-card-alt:before {
  4370. content: ""
  4371. }
  4372. .fa-codiepie:before {
  4373. content: ""
  4374. }
  4375. .fa-modx:before {
  4376. content: ""
  4377. }
  4378. .fa-fort-awesome:before {
  4379. content: ""
  4380. }
  4381. .fa-usb:before {
  4382. content: ""
  4383. }
  4384. .fa-product-hunt:before {
  4385. content: ""
  4386. }
  4387. .fa-mixcloud:before {
  4388. content: ""
  4389. }
  4390. .fa-scribd:before {
  4391. content: ""
  4392. }
  4393. .fa-pause-circle:before {
  4394. content: ""
  4395. }
  4396. .fa-pause-circle-o:before {
  4397. content: ""
  4398. }
  4399. .fa-stop-circle:before {
  4400. content: ""
  4401. }
  4402. .fa-stop-circle-o:before {
  4403. content: ""
  4404. }
  4405. .fa-shopping-bag:before {
  4406. content: ""
  4407. }
  4408. .fa-shopping-basket:before {
  4409. content: ""
  4410. }
  4411. .fa-hashtag:before {
  4412. content: ""
  4413. }
  4414. .fa-bluetooth:before {
  4415. content: ""
  4416. }
  4417. .fa-bluetooth-b:before {
  4418. content: ""
  4419. }
  4420. .fa-percent:before {
  4421. content: ""
  4422. }
  4423. @font-face {
  4424. font-family: 'Alegreya';
  4425. src: local("Alegreya SC Black Italic"),
  4426. url("../fonts/alegreyasc-blackitalic-webfont.eot?#iefix") format("embedded-opentype"),
  4427. url("../fonts/alegreyasc-blackitalic-webfont.woff2") format("woff2"),
  4428. url("../fonts/alegreyasc-blackitalic-webfont.woff") format("woff"),
  4429. url("../fonts/alegreyasc-blackitalic-webfont.ttf") format("truetype"),
  4430. url("../fonts/alegreyasc-blackitalic-webfont.svg#alegreya_scblack_italic") format("svg");
  4431. font-weight: 900;
  4432. font-style: italic;
  4433. font-variant: small-caps
  4434. }
  4435. @font-face {
  4436. font-family: 'Alegreya';
  4437. src: local("Alegreya SC Black"),
  4438. url("../fonts/alegreyasc-black-webfont.eot?#iefix") format("embedded-opentype"),
  4439. url("../fonts/alegreyasc-black-webfont.woff2") format("woff2"),
  4440. url("../fonts/alegreyasc-black-webfont.woff") format("woff"),
  4441. url("../fonts/alegreyasc-black-webfont.ttf") format("truetype"),
  4442. url("../fonts/alegreyasc-black-webfont.svg#alegreya_scblack") format("svg");
  4443. font-weight: 900;
  4444. font-style: normal;
  4445. font-variant: small-caps
  4446. }
  4447. @font-face {
  4448. font-family: 'Alegreya';
  4449. src: local("Alegreya SC Bold Italic"),
  4450. url("../fonts/alegreyasc-bolditalic-webfont.eot?#iefix") format("embedded-opentype"),
  4451. url("../fonts/alegreyasc-bolditalic-webfont.woff2") format("woff2"),
  4452. url("../fonts/alegreyasc-bolditalic-webfont.woff") format("woff"),
  4453. url("../fonts/alegreyasc-bolditalic-webfont.ttf") format("truetype"),
  4454. url("../fonts/alegreyasc-bolditalic-webfont.svg#alegreya_scbold_italic") format("svg");
  4455. font-weight: 700;
  4456. font-style: italic;
  4457. font-variant: small-caps
  4458. }
  4459. @font-face {
  4460. font-family: 'Alegreya';
  4461. src: local("Alegreya SC Bold"),
  4462. url("../fonts/alegreyasc-bold-webfont.eot?#iefix") format("embedded-opentype"),
  4463. url("../fonts/alegreyasc-bold-webfont.woff2") format("woff2"),
  4464. url("../fonts/alegreyasc-bold-webfont.woff") format("woff"),
  4465. url("../fonts/alegreyasc-bold-webfont.ttf") format("truetype"),
  4466. url("../fonts/alegreyasc-bold-webfont.svg#alegreya_scbold") format("svg");
  4467. font-weight: 700;
  4468. font-style: normal;
  4469. font-variant: small-caps
  4470. }
  4471. @font-face {
  4472. font-family: 'Alegreya';
  4473. src: local("Alegreya SC Italic"),
  4474. url("../fonts/alegreyasc-italic-webfont.eot?#iefix") format("embedded-opentype"),
  4475. url("../fonts/alegreyasc-italic-webfont.woff2") format("woff2"),
  4476. url("../fonts/alegreyasc-italic-webfont.woff") format("woff"),
  4477. url("../fonts/alegreyasc-italic-webfont.ttf") format("truetype"),
  4478. url("../fonts/alegreyasc-italic-webfont.svg#alegreya_scitalic") format("svg");
  4479. font-weight: normal;
  4480. font-style: italic;
  4481. font-variant: small-caps
  4482. }
  4483. @font-face {
  4484. font-family: 'Alegreya';
  4485. src: local("Alegreya SC"),
  4486. url("../fonts/alegreyasc-regular-webfont.eot?#iefix") format("embedded-opentype"),
  4487. url("../fonts/alegreyasc-regular-webfont.woff2") format("woff2"),
  4488. url("../fonts/alegreyasc-regular-webfont.woff") format("woff"),
  4489. url("../fonts/alegreyasc-regular-webfont.ttf") format("truetype"),
  4490. url("../fonts/alegreyasc-regular-webfont.svg#alegreya_scregular") format("svg");
  4491. font-weight: normal;
  4492. font-style: normal;
  4493. font-variant: small-caps
  4494. }
  4495. @font-face {
  4496. font-family: 'Alegreya';
  4497. src: local("Alegreya Black Italic"),
  4498. url("../fonts/alegreya-blackitalic-google.woff2") format("woff2"),
  4499. url("../fonts/alegreya-blackitalic-webfont.eot?#iefix") format("embedded-opentype"),
  4500. url("../fonts/alegreya-blackitalic-webfont.woff") format("woff"),
  4501. url("../fonts/alegreya-blackitalic-webfont.ttf") format("truetype"),
  4502. url("../fonts/alegreya-blackitalic-webfont.svg#alegreyablack_italic") format("svg");
  4503. font-weight: 900;
  4504. font-style: italic
  4505. }
  4506. @font-face {
  4507. font-family: 'Alegreya';
  4508. src: local("Alegreya Black"),
  4509. url("../fonts/alegreya-black-google.woff2") format("woff2"),
  4510. url("../fonts/alegreya-black-webfont.eot?#iefix") format("embedded-opentype"),
  4511. url("../fonts/alegreya-black-webfont.woff") format("woff"),
  4512. url("../fonts/alegreya-black-webfont.ttf") format("truetype"),
  4513. url("../fonts/alegreya-black-webfont.svg#alegreyablack") format("svg");
  4514. font-weight: 900;
  4515. font-style: normal
  4516. }
  4517. @font-face {
  4518. font-family: 'Alegreya';
  4519. src: local("Alegreya Bold Italic"),
  4520. url("../fonts/alegreya-bolditalic-google.woff2") format("woff2"),
  4521. url("../fonts/alegreya-bolditalic-webfont.eot?#iefix") format("embedded-opentype"),
  4522. url("../fonts/alegreya-bolditalic-webfont.woff") format("woff"),
  4523. url("../fonts/alegreya-bolditalic-webfont.ttf") format("truetype"),
  4524. url("../fonts/alegreya-bolditalic-webfont.svg#alegreyabold_italic") format("svg");
  4525. font-weight: 700;
  4526. font-style: italic
  4527. }
  4528. @font-face {
  4529. font-family: 'Alegreya';
  4530. src: local("Alegreya Bold"),
  4531. url("../fonts/alegreya-bold-google.woff2") format("woff2"),
  4532. url("../fonts/alegreya-bold-webfont.eot?#iefix") format("embedded-opentype"),
  4533. url("../fonts/alegreya-bold-webfont.woff") format("woff"),
  4534. url("../fonts/alegreya-bold-webfont.ttf") format("truetype"),
  4535. url("../fonts/alegreya-bold-webfont.svg#alegreyabold") format("svg");
  4536. font-weight: 700;
  4537. font-style: normal
  4538. }
  4539. @font-face {
  4540. font-family: 'Alegreya';
  4541. src: local("Alegreya Italic"),
  4542. url("../fonts/alegreya-italic-google.woff2") format("woff2"),
  4543. url("../fonts/alegreya-italic-webfont.eot?#iefix") format("embedded-opentype"),
  4544. url("../fonts/alegreya-italic-webfont.woff") format("woff"),
  4545. url("../fonts/alegreya-italic-webfont.ttf") format("truetype"),
  4546. url("../fonts/alegreya-italic-webfont.svg#alegreyaitalic") format("svg");
  4547. font-weight: normal;
  4548. font-style: italic
  4549. }
  4550. @font-face {
  4551. font-family: 'Alegreya';
  4552. src: local("Alegreya"),
  4553. url("../fonts/alegreya-regular-google.woff2") format("woff2"),
  4554. url("../fonts/alegreya-regular-webfont.eot?#iefix") format("embedded-opentype"),
  4555. url("../fonts/alegreya-regular-webfont.woff") format("woff"),
  4556. url("../fonts/alegreya-regular-webfont.ttf") format("truetype"),
  4557. url("../fonts/alegreya-regular-webfont.svg#alegreyaregular") format("svg");
  4558. font-weight: normal;
  4559. font-style: normal
  4560. }
  4561. @font-face {
  4562. font-family: 'Junction';
  4563. src: url("../fonts/junction-bold.eot");
  4564. src: url("../fonts/junction-bold.eot?#iefix") format("embedded-opentype"),
  4565. url("../fonts/junction-bold.woff") format("woff"),
  4566. url("../fonts/junction-bold.ttf") format("truetype"),
  4567. url("../fonts/junction-bold.svg#junctionbold") format("svg");
  4568. font-weight: bold;
  4569. font-style: normal
  4570. }
  4571. @font-face {
  4572. font-family: 'Junction';
  4573. src: url("../fonts/junction-light.eot");
  4574. src: url("../fonts/junction-light.eot?#iefix") format("embedded-opentype"),
  4575. url("../fonts/junction-light.woff") format("woff"),
  4576. url("../fonts/junction-light.ttf") format("truetype"),
  4577. url("../fonts/junction-light.svg#junctionlight") format("svg");
  4578. font-weight: 300;
  4579. font-style: normal
  4580. }
  4581. @font-face {
  4582. font-family: 'Junction';
  4583. src: url("../fonts/junction-regular.eot");
  4584. src: url("../fonts/junction-regular.eot?#iefix") format("embedded-opentype"),
  4585. url("../fonts/junction-regular.woff") format("woff"),
  4586. url("../fonts/junction-regular.ttf") format("truetype"),
  4587. url("../fonts/junction-regular.svg#junctionregular") format("svg");
  4588. font-weight: normal;
  4589. font-style: normal
  4590. }
  4591. .mfp-counter {
  4592. font-family: "Alegreya",
  4593. serif
  4594. }
  4595. .mfp-bg {
  4596. top: 0;
  4597. left: 0;
  4598. width: 100%;
  4599. height: 100%;
  4600. z-index: 1042;
  4601. overflow: hidden;
  4602. position: fixed;
  4603. background: #111;
  4604. opacity: 0.8;
  4605. filter: alpha(opacity=80)
  4606. }
  4607. .mfp-wrap {
  4608. top: 0;
  4609. left: 0;
  4610. width: 100%;
  4611. height: 100%;
  4612. z-index: 1043;
  4613. position: fixed;
  4614. outline: none !important;
  4615. -webkit-backface-visibility: hidden
  4616. }
  4617. .mfp-container {
  4618. text-align: center;
  4619. position: absolute;
  4620. width: 100%;
  4621. height: 100%;
  4622. left: 0;
  4623. top: 0;
  4624. padding: 0 8px;
  4625. -webkit-box-sizing: border-box;
  4626. -moz-box-sizing: border-box;
  4627. box-sizing: border-box
  4628. }
  4629. .mfp-container:before {
  4630. content: '';
  4631. display: inline-block;
  4632. height: 100%;
  4633. vertical-align: middle
  4634. }
  4635. .mfp-align-top .mfp-container: before {
  4636. display: none
  4637. }
  4638. .mfp-content {
  4639. position: relative;
  4640. display: inline-block;
  4641. vertical-align: middle;
  4642. margin: 0 auto;
  4643. text-align: left;
  4644. z-index: 1045
  4645. }
  4646. .mfp-inline-holder .mfp-content,
  4647. .mfp-ajax-holder .mfp-content {
  4648. width: 100%;
  4649. cursor: auto
  4650. }
  4651. .mfp-ajax-cur {
  4652. cursor: progress
  4653. }
  4654. .mfp-zoom-out-cur,
  4655. .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  4656. cursor: -moz-zoom-out;
  4657. cursor: -webkit-zoom-out;
  4658. cursor: zoom-out
  4659. }
  4660. .mfp-zoom {
  4661. cursor: pointer;
  4662. cursor: -webkit-zoom-in;
  4663. cursor: -moz-zoom-in;
  4664. cursor: zoom-in
  4665. }
  4666. .mfp-auto-cursor .mfp-content {
  4667. cursor: auto
  4668. }
  4669. .mfp-close,
  4670. .mfp-arrow,
  4671. .mfp-preloader,
  4672. .mfp-counter {
  4673. -webkit-user-select: none;
  4674. -moz-user-select: none;
  4675. user-select: none
  4676. }
  4677. .mfp-loading.mfp-figure {
  4678. display: none
  4679. }
  4680. .mfp-hide {
  4681. display: none !important
  4682. }
  4683. .mfp-preloader {
  4684. color: #CCC;
  4685. position: absolute;
  4686. top: 50%;
  4687. width: auto;
  4688. text-align: center;
  4689. margin-top: -0.8em;
  4690. left: 8px;
  4691. right: 8px;
  4692. z-index: 1044
  4693. }
  4694. .mfp-preloader a {
  4695. color: #CCC
  4696. }
  4697. .mfp-preloader a: hover {
  4698. color: #fff
  4699. }
  4700. .mfp-s-ready .mfp-preloader {
  4701. display: none
  4702. }
  4703. .mfp-s-error .mfp-content {
  4704. display: none
  4705. }
  4706. button.mfp-close,
  4707. button.mfp-arrow {
  4708. overflow: visible;
  4709. cursor: pointer;
  4710. background: transparent;
  4711. border: 0;
  4712. -webkit-appearance: none;
  4713. display: block;
  4714. outline: none;
  4715. padding: 0;
  4716. z-index: 1046;
  4717. -webkit-box-shadow: none;
  4718. box-shadow: none
  4719. }
  4720. button::-moz-focus-inner {
  4721. padding: 0;
  4722. border: 0
  4723. }
  4724. .mfp-close {
  4725. width: 44px;
  4726. height: 44px;
  4727. line-height: 44px;
  4728. position: absolute;
  4729. right: 0;
  4730. top: 0;
  4731. text-decoration: none;
  4732. text-align: center;
  4733. opacity: 1;
  4734. filter: alpha(opacity=100);
  4735. padding: 0 0 18px 10px;
  4736. color: #fff;
  4737. font-style: normal;
  4738. font-size: 28px;
  4739. font-family: Arial,
  4740. Baskerville,
  4741. monospace
  4742. }
  4743. .mfp-close:hover,
  4744. .mfp-close:focus {
  4745. opacity: 1;
  4746. filter: alpha(opacity=100)
  4747. }
  4748. .mfp-close:active {
  4749. top: 1px
  4750. }
  4751. .mfp-close-btn-in .mfp-close {
  4752. color: #fff
  4753. }
  4754. .mfp-image-holder .mfp-close,
  4755. .mfp-iframe-holder .mfp-close {
  4756. color: #fff;
  4757. right: -6px;
  4758. text-align: right;
  4759. padding-right: 6px;
  4760. width: 100%
  4761. }
  4762. .mfp-counter {
  4763. position: absolute;
  4764. top: 0;
  4765. right: 0;
  4766. color: #CCC;
  4767. font-size: 12px;
  4768. line-height: 18px
  4769. }
  4770. .mfp-arrow {
  4771. position: absolute;
  4772. opacity: 1;
  4773. filter: alpha(opacity=100);
  4774. margin: 0;
  4775. top: 50%;
  4776. margin-top: -55px;
  4777. padding: 0;
  4778. width: 90px;
  4779. height: 110px;
  4780. -webkit-tap-highlight-color: transparent
  4781. }
  4782. .mfp-arrow:active {
  4783. margin-top: -54px
  4784. }
  4785. .mfp-arrow:hover,
  4786. .mfp-arrow:focus {
  4787. opacity: 1;
  4788. filter: alpha(opacity=100)
  4789. }
  4790. .mfp-arrow:before,
  4791. .mfp-arrow:after,
  4792. .mfp-arrow .mfp-b,
  4793. .mfp-arrow .mfp-a {
  4794. content: '';
  4795. display: block;
  4796. width: 0;
  4797. height: 0;
  4798. position: absolute;
  4799. left: 0;
  4800. top: 0;
  4801. margin-top: 35px;
  4802. margin-left: 35px;
  4803. border: medium inset transparent
  4804. }
  4805. .mfp-arrow:after,
  4806. .mfp-arrow .mfp-a {
  4807. border-top-width: 13px;
  4808. border-bottom-width: 13px;
  4809. top: 8px
  4810. }
  4811. .mfp-arrow:before,
  4812. .mfp-arrow .mfp-b {
  4813. border-top-width: 21px;
  4814. border-bottom-width: 21px;
  4815. opacity: 0.7
  4816. }
  4817. .mfp-arrow-left {
  4818. left: 0
  4819. }
  4820. .mfp-arrow-left:after,
  4821. .mfp-arrow-left .mfp-a {
  4822. border-right: 17px solid #fff;
  4823. margin-left: 31px
  4824. }
  4825. .mfp-arrow-left:before,
  4826. .mfp-arrow-left .mfp-b {
  4827. margin-left: 25px;
  4828. border-right: 27px solid #fff
  4829. }
  4830. .mfp-arrow-right {
  4831. right: 0
  4832. }
  4833. .mfp-arrow-right:after,
  4834. .mfp-arrow-right .mfp-a {
  4835. border-left: 17px solid #fff;
  4836. margin-left: 39px
  4837. }
  4838. .mfp-arrow-right:before,
  4839. .mfp-arrow-right .mfp-b {
  4840. border-left: 27px solid #fff
  4841. }
  4842. .mfp-iframe-holder {
  4843. padding-top: 40px;
  4844. padding-bottom: 40px
  4845. }
  4846. .mfp-iframe-holder .mfp-content {
  4847. line-height: 0;
  4848. width: 100%;
  4849. max-width: 900px
  4850. }
  4851. .mfp-iframe-holder .mfp-close {
  4852. top: -40px
  4853. }
  4854. .mfp-iframe-scaler {
  4855. width: 100%;
  4856. height: 0;
  4857. overflow: hidden;
  4858. padding-top: 56.25%
  4859. }
  4860. .mfp-iframe-scaler iframe {
  4861. position: absolute;
  4862. display: block;
  4863. top: 0;
  4864. left: 0;
  4865. width: 100%;
  4866. height: 100%;
  4867. box-shadow: 0 0 8px rgba(0,
  4868. 0,
  4869. 0,
  4870. 0.6);
  4871. background: #000
  4872. }
  4873. img.mfp-img {
  4874. width: auto;
  4875. max-width: 100%;
  4876. height: auto;
  4877. display: block;
  4878. line-height: 0;
  4879. -webkit-box-sizing: border-box;
  4880. -moz-box-sizing: border-box;
  4881. box-sizing: border-box;
  4882. padding: 40px 0 40px;
  4883. margin: 0 auto
  4884. }
  4885. .mfp-figure {
  4886. line-height: 0
  4887. }
  4888. .mfp-figure:after {
  4889. content: '';
  4890. position: absolute;
  4891. left: 0;
  4892. top: 40px;
  4893. bottom: 40px;
  4894. display: block;
  4895. right: 0;
  4896. width: auto;
  4897. height: auto;
  4898. z-index: -1;
  4899. box-shadow: 0 0 8px rgba(0,
  4900. 0,
  4901. 0,
  4902. 0.6);
  4903. background: #444
  4904. }
  4905. .mfp-figure small {
  4906. color: #BDBDBD;
  4907. display: block;
  4908. font-size: 12px;
  4909. line-height: 14px
  4910. }
  4911. .mfp-figure figure {
  4912. margin: 0
  4913. }
  4914. .mfp-bottom-bar {
  4915. margin-top: -36px;
  4916. position: absolute;
  4917. top: 100%;
  4918. left: 0;
  4919. width: 100%;
  4920. cursor: auto
  4921. }
  4922. .mfp-title {
  4923. text-align: left;
  4924. line-height: 18px;
  4925. color: #F3F3F3;
  4926. word-wrap: break-word;
  4927. padding-right: 36px
  4928. }
  4929. .mfp-image-holder .mfp-content {
  4930. max-width: 100%
  4931. }
  4932. .mfp-gallery .mfp-image-holder .mfp-figure {
  4933. cursor: pointer
  4934. }
  4935. @media screen and (max-width: 800px) and (orientation: landscape),
  4936. screen and (max-height: 300px) {
  4937. .mfp-img-mobile .mfp-image-holder {
  4938. padding-left: 0;
  4939. padding-right: 0
  4940. }
  4941. .mfp-img-mobile img.mfp-img {
  4942. padding: 0
  4943. }
  4944. .mfp-img-mobile .mfp-figure: after {
  4945. top: 0;
  4946. bottom: 0
  4947. }
  4948. .mfp-img-mobile .mfp-figure small {
  4949. display: inline;
  4950. margin-left: 5px
  4951. }
  4952. .mfp-img-mobile .mfp-bottom-bar {
  4953. background: rgba(0,
  4954. 0,
  4955. 0,
  4956. 0.6);
  4957. bottom: 0;
  4958. margin: 0;
  4959. top: auto;
  4960. padding: 3px 5px;
  4961. position: fixed;
  4962. -webkit-box-sizing: border-box;
  4963. -moz-box-sizing: border-box;
  4964. box-sizing: border-box
  4965. }
  4966. .mfp-img-mobile .mfp-bottom-bar: empty {
  4967. padding: 0
  4968. }
  4969. .mfp-img-mobile .mfp-counter {
  4970. right: 5px;
  4971. top: 3px
  4972. }
  4973. .mfp-img-mobile .mfp-close {
  4974. top: 0;
  4975. right: 0;
  4976. width: 35px;
  4977. height: 35px;
  4978. line-height: 35px;
  4979. background: rgba(0,
  4980. 0,
  4981. 0,
  4982. 0.6);
  4983. position: fixed;
  4984. text-align: center;
  4985. padding: 0
  4986. }
  4987. }
  4988. @media all and (max-width: 900px) {
  4989. .mfp-arrow {
  4990. -webkit-transform: scale(0.75);
  4991. transform: scale(0.75)
  4992. }
  4993. .mfp-arrow-left {
  4994. -webkit-transform-origin: 0;
  4995. transform-origin: 0
  4996. }
  4997. .mfp-arrow-right {
  4998. -webkit-transform-origin: 100%;
  4999. transform-origin: 100%
  5000. }
  5001. .mfp-container {
  5002. padding-left: 6px;
  5003. padding-right: 6px
  5004. }
  5005. }
  5006. .mfp-ie7 .mfp-img {
  5007. padding: 0
  5008. }
  5009. .mfp-ie7 .mfp-bottom-bar {
  5010. width: 600px;
  5011. left: 50%;
  5012. margin-left: -300px;
  5013. margin-top: 5px;
  5014. padding-bottom: 5px
  5015. }
  5016. .mfp-ie7 .mfp-container {
  5017. padding: 0
  5018. }
  5019. .mfp-ie7 .mfp-content {
  5020. padding-top: 44px
  5021. }
  5022. .mfp-ie7 .mfp-close {
  5023. top: 0;
  5024. right: 0;
  5025. padding-top: 0
  5026. }
  5027. .right-navigation {
  5028. position: absolute;
  5029. top: 10px;
  5030. right: 0;
  5031. text-align: right;
  5032. width: auto;
  5033. font-size: 80%
  5034. }
  5035. #lang-nav {
  5036. @extend #site-nav !optional;
  5037. }
  5038. @media only screen and (min-width: 86.375em) {
  5039. #lang-nav {
  5040. background: transparent url('/static/images/icon-language.png') no-repeat scroll left center;
  5041. padding-left: 30px;
  5042. }
  5043. }
  5044. #lang-nav li {
  5045. margin-right: 7px;
  5046. }
  5047. .pinned-news {
  5048. margin-bottom: 2em;
  5049. }