main.css 89 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313
  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. background: transparent url('/static/images/icon-language.png') no-repeat scroll left center;
  5037. padding-left: 30px;
  5038. }
  5039. #lang-nav li {
  5040. margin-right: 7px;
  5041. }
  5042. .pinned-news {
  5043. margin-bottom: 2em;
  5044. }