main.css 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342
  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-left: 1em;
  5049. margin-right: 1em;
  5050. margin-bottom: 2em;
  5051. }
  5052. @media only screen and (max-width: 37.49em) {
  5053. .home .article-author-side {
  5054. display: block;
  5055. margin-left: 1em;
  5056. margin-right: 1em;
  5057. margin-bottom: 2em;
  5058. }
  5059. .home .article-author-side .bio-photo,
  5060. .home .article-author-side h3
  5061. {
  5062. display: none;
  5063. }
  5064. .home .article-author-side .author-social {
  5065. display: inline;
  5066. margin-right: 2em;
  5067. }
  5068. .home .article-author-side p {
  5069. font-size: 100%;
  5070. }
  5071. }