styles.css 240 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735
  1. @charset "UTF-8";
  2. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  3. /**
  4. * 1. Set default font family to sans-serif.
  5. * 2. Prevent iOS and IE text size adjust after device orientation change,
  6. * without disabling user zoom.
  7. */
  8. html {
  9. font-family: sans-serif;
  10. /* 1 */
  11. -ms-text-size-adjust: 100%;
  12. /* 2 */
  13. -webkit-text-size-adjust: 100%;
  14. /* 2 */ }
  15. /**
  16. * Remove default margin.
  17. */
  18. body {
  19. margin: 0; }
  20. /* HTML5 display definitions
  21. ========================================================================== */
  22. /**
  23. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  24. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  25. * and Firefox.
  26. * Correct `block` display not defined for `main` in IE 11.
  27. */
  28. article,
  29. aside,
  30. details,
  31. figcaption,
  32. figure,
  33. footer,
  34. header,
  35. hgroup,
  36. main,
  37. menu,
  38. nav,
  39. section,
  40. summary {
  41. display: block; }
  42. /**
  43. * 1. Correct `inline-block` display not defined in IE 8/9.
  44. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  45. */
  46. audio,
  47. canvas,
  48. progress,
  49. video {
  50. display: inline-block;
  51. /* 1 */
  52. vertical-align: baseline;
  53. /* 2 */ }
  54. /**
  55. * Prevent modern browsers from displaying `audio` without controls.
  56. * Remove excess height in iOS 5 devices.
  57. */
  58. audio:not([controls]) {
  59. display: none;
  60. height: 0; }
  61. /**
  62. * Address `[hidden]` styling not present in IE 8/9/10.
  63. * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
  64. */
  65. [hidden],
  66. template {
  67. display: none; }
  68. /* Links
  69. ========================================================================== */
  70. /**
  71. * Remove the gray background color from active links in IE 10.
  72. */
  73. a {
  74. background-color: transparent; }
  75. /**
  76. * Improve readability of focused elements when they are also in an
  77. * active/hover state.
  78. */
  79. a:active,
  80. a:hover {
  81. outline: 0; }
  82. /* Text-level semantics
  83. ========================================================================== */
  84. /**
  85. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  86. */
  87. abbr[title] {
  88. border-bottom: 1px dotted; }
  89. /**
  90. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  91. */
  92. b,
  93. strong {
  94. font-weight: bold; }
  95. /**
  96. * Address styling not present in Safari and Chrome.
  97. */
  98. dfn {
  99. font-style: italic; }
  100. /**
  101. * Address variable `h1` font-size and margin within `section` and `article`
  102. * contexts in Firefox 4+, Safari, and Chrome.
  103. */
  104. h1 {
  105. font-size: 2em;
  106. margin: 0.67em 0; }
  107. /**
  108. * Address styling not present in IE 8/9.
  109. */
  110. mark {
  111. background: #ff0;
  112. color: #000; }
  113. /**
  114. * Address inconsistent and variable font size in all browsers.
  115. */
  116. small {
  117. font-size: 80%; }
  118. /**
  119. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  120. */
  121. sub,
  122. sup {
  123. font-size: 75%;
  124. line-height: 0;
  125. position: relative;
  126. vertical-align: baseline; }
  127. sup {
  128. top: -0.5em; }
  129. sub {
  130. bottom: -0.25em; }
  131. /* Embedded content
  132. ========================================================================== */
  133. /**
  134. * Remove border when inside `a` element in IE 8/9/10.
  135. */
  136. img {
  137. border: 0; }
  138. /**
  139. * Correct overflow not hidden in IE 9/10/11.
  140. */
  141. svg:not(:root) {
  142. overflow: hidden; }
  143. /* Grouping content
  144. ========================================================================== */
  145. /**
  146. * Address margin not present in IE 8/9 and Safari.
  147. */
  148. figure {
  149. margin: 1em 40px; }
  150. /**
  151. * Address differences between Firefox and other browsers.
  152. */
  153. hr {
  154. box-sizing: content-box;
  155. height: 0; }
  156. /**
  157. * Contain overflow in all browsers.
  158. */
  159. pre {
  160. overflow: auto; }
  161. /**
  162. * Address odd `em`-unit font size rendering in all browsers.
  163. */
  164. code,
  165. kbd,
  166. pre,
  167. samp {
  168. font-family: monospace, monospace;
  169. font-size: 1em; }
  170. /* Forms
  171. ========================================================================== */
  172. /**
  173. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  174. * styling of `select`, unless a `border` property is set.
  175. */
  176. /**
  177. * 1. Correct color not being inherited.
  178. * Known issue: affects color of disabled elements.
  179. * 2. Correct font properties not being inherited.
  180. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  181. */
  182. button,
  183. input,
  184. optgroup,
  185. select,
  186. textarea {
  187. color: inherit;
  188. /* 1 */
  189. font: inherit;
  190. /* 2 */
  191. margin: 0;
  192. /* 3 */ }
  193. /**
  194. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  195. */
  196. button {
  197. overflow: visible; }
  198. /**
  199. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  200. * All other form control elements do not inherit `text-transform` values.
  201. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  202. * Correct `select` style inheritance in Firefox.
  203. */
  204. button,
  205. select {
  206. text-transform: none; }
  207. /**
  208. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  209. * and `video` controls.
  210. * 2. Correct inability to style clickable `input` types in iOS.
  211. * 3. Improve usability and consistency of cursor style between image-type
  212. * `input` and others.
  213. */
  214. button,
  215. html input[type="button"],
  216. input[type="reset"],
  217. input[type="submit"] {
  218. -webkit-appearance: button;
  219. /* 2 */
  220. cursor: pointer;
  221. /* 3 */ }
  222. /**
  223. * Re-set default cursor for disabled elements.
  224. */
  225. button[disabled],
  226. html input[disabled] {
  227. cursor: default; }
  228. /**
  229. * Remove inner padding and border in Firefox 4+.
  230. */
  231. button::-moz-focus-inner,
  232. input::-moz-focus-inner {
  233. border: 0;
  234. padding: 0; }
  235. /**
  236. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  237. * the UA stylesheet.
  238. */
  239. input {
  240. line-height: normal; }
  241. /**
  242. * It's recommended that you don't attempt to style these elements.
  243. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  244. *
  245. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  246. * 2. Remove excess padding in IE 8/9/10.
  247. */
  248. input[type="checkbox"],
  249. input[type="radio"] {
  250. box-sizing: border-box;
  251. /* 1 */
  252. padding: 0;
  253. /* 2 */ }
  254. /**
  255. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  256. * `font-size` values of the `input`, it causes the cursor style of the
  257. * decrement button to change from `default` to `text`.
  258. */
  259. input[type="number"]::-webkit-inner-spin-button,
  260. input[type="number"]::-webkit-outer-spin-button {
  261. height: auto; }
  262. /**
  263. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  264. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
  265. */
  266. input[type="search"] {
  267. -webkit-appearance: textfield;
  268. /* 1 */
  269. box-sizing: content-box;
  270. /* 2 */ }
  271. /**
  272. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  273. * Safari (but not Chrome) clips the cancel button when the search input has
  274. * padding (and `textfield` appearance).
  275. */
  276. input[type="search"]::-webkit-search-cancel-button,
  277. input[type="search"]::-webkit-search-decoration {
  278. -webkit-appearance: none; }
  279. /**
  280. * Define consistent border, margin, and padding.
  281. */
  282. fieldset {
  283. border: 1px solid #c0c0c0;
  284. margin: 0 2px;
  285. padding: 0.35em 0.625em 0.75em; }
  286. /**
  287. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  288. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  289. */
  290. legend {
  291. border: 0;
  292. /* 1 */
  293. padding: 0;
  294. /* 2 */ }
  295. /**
  296. * Remove default vertical scrollbar in IE 8/9/10/11.
  297. */
  298. textarea {
  299. overflow: auto; }
  300. /**
  301. * Don't inherit the `font-weight` (applied by a rule above).
  302. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  303. */
  304. optgroup {
  305. font-weight: bold; }
  306. /* Tables
  307. ========================================================================== */
  308. /**
  309. * Remove most spacing between table cells.
  310. */
  311. table {
  312. border-collapse: collapse;
  313. border-spacing: 0; }
  314. td,
  315. th {
  316. padding: 0; }
  317. meta.foundation-version {
  318. font-family: "/5.5.3/"; }
  319. meta.foundation-mq-small {
  320. font-family: "/only screen/";
  321. width: 0; }
  322. meta.foundation-mq-small-only {
  323. font-family: "/only screen and (max-width: 40em)/";
  324. width: 0; }
  325. meta.foundation-mq-medium {
  326. font-family: "/only screen and (min-width:40.0625em)/";
  327. width: 40.0625em; }
  328. meta.foundation-mq-medium-only {
  329. font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  330. width: 40.0625em; }
  331. meta.foundation-mq-large {
  332. font-family: "/only screen and (min-width:64.0625em)/";
  333. width: 64.0625em; }
  334. meta.foundation-mq-large-only {
  335. font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  336. width: 64.0625em; }
  337. meta.foundation-mq-xlarge {
  338. font-family: "/only screen and (min-width:90.0625em)/";
  339. width: 90.0625em; }
  340. meta.foundation-mq-xlarge-only {
  341. font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  342. width: 90.0625em; }
  343. meta.foundation-mq-xxlarge {
  344. font-family: "/only screen and (min-width:120.0625em)/";
  345. width: 120.0625em; }
  346. meta.foundation-data-attribute-namespace {
  347. font-family: false; }
  348. html, body {
  349. height: 100%; }
  350. *,
  351. *:before,
  352. *:after {
  353. -webkit-box-sizing: border-box;
  354. -moz-box-sizing: border-box;
  355. box-sizing: border-box; }
  356. html,
  357. body {
  358. font-size: 100%; }
  359. body {
  360. background: #fff;
  361. color: #222;
  362. cursor: auto;
  363. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  364. font-style: normal;
  365. font-weight: normal;
  366. line-height: 1.5;
  367. margin: 0;
  368. padding: 0;
  369. position: relative; }
  370. a:hover {
  371. cursor: pointer; }
  372. img {
  373. max-width: 100%;
  374. height: auto; }
  375. img {
  376. -ms-interpolation-mode: bicubic; }
  377. #map_canvas img,
  378. #map_canvas embed,
  379. #map_canvas object,
  380. .map_canvas img,
  381. .map_canvas embed,
  382. .map_canvas object,
  383. .mqa-display img,
  384. .mqa-display embed,
  385. .mqa-display object {
  386. max-width: none !important; }
  387. .left {
  388. float: left !important; }
  389. .right {
  390. float: right !important; }
  391. .clearfix:before, .clearfix:after {
  392. content: " ";
  393. display: table; }
  394. .clearfix:after {
  395. clear: both; }
  396. .hide {
  397. display: none; }
  398. .invisible {
  399. visibility: hidden; }
  400. .antialiased {
  401. -webkit-font-smoothing: antialiased;
  402. -moz-osx-font-smoothing: grayscale; }
  403. img {
  404. display: inline-block;
  405. vertical-align: middle; }
  406. textarea {
  407. height: auto;
  408. min-height: 50px; }
  409. select {
  410. width: 100%; }
  411. .row {
  412. margin: 0 auto;
  413. max-width: 62.5rem;
  414. width: 100%; }
  415. .row:before, .row:after {
  416. content: " ";
  417. display: table; }
  418. .row:after {
  419. clear: both; }
  420. .row.collapse > .column,
  421. .row.collapse > .columns {
  422. padding-left: 0;
  423. padding-right: 0; }
  424. .row.collapse .row {
  425. margin-left: 0;
  426. margin-right: 0; }
  427. .row .row {
  428. margin: 0 -0.15625rem;
  429. max-width: none;
  430. width: auto; }
  431. .row .row:before, .row .row:after {
  432. content: " ";
  433. display: table; }
  434. .row .row:after {
  435. clear: both; }
  436. .row .row.collapse {
  437. margin: 0;
  438. max-width: none;
  439. width: auto; }
  440. .row .row.collapse:before, .row .row.collapse:after {
  441. content: " ";
  442. display: table; }
  443. .row .row.collapse:after {
  444. clear: both; }
  445. .column,
  446. .columns {
  447. padding-left: 0.15625rem;
  448. padding-right: 0.15625rem;
  449. width: 100%;
  450. float: left; }
  451. .column + .column:last-child,
  452. .columns + .column:last-child, .column +
  453. .columns:last-child,
  454. .columns +
  455. .columns:last-child {
  456. float: right; }
  457. .column + .column.end,
  458. .columns + .column.end, .column +
  459. .columns.end,
  460. .columns +
  461. .columns.end {
  462. float: left; }
  463. @media only screen {
  464. .small-push-0 {
  465. position: relative;
  466. left: 0;
  467. right: auto; }
  468. .small-pull-0 {
  469. position: relative;
  470. right: 0;
  471. left: auto; }
  472. .small-push-1 {
  473. position: relative;
  474. left: 8.33333%;
  475. right: auto; }
  476. .small-pull-1 {
  477. position: relative;
  478. right: 8.33333%;
  479. left: auto; }
  480. .small-push-2 {
  481. position: relative;
  482. left: 16.66667%;
  483. right: auto; }
  484. .small-pull-2 {
  485. position: relative;
  486. right: 16.66667%;
  487. left: auto; }
  488. .small-push-3 {
  489. position: relative;
  490. left: 25%;
  491. right: auto; }
  492. .small-pull-3 {
  493. position: relative;
  494. right: 25%;
  495. left: auto; }
  496. .small-push-4 {
  497. position: relative;
  498. left: 33.33333%;
  499. right: auto; }
  500. .small-pull-4 {
  501. position: relative;
  502. right: 33.33333%;
  503. left: auto; }
  504. .small-push-5 {
  505. position: relative;
  506. left: 41.66667%;
  507. right: auto; }
  508. .small-pull-5 {
  509. position: relative;
  510. right: 41.66667%;
  511. left: auto; }
  512. .small-push-6 {
  513. position: relative;
  514. left: 50%;
  515. right: auto; }
  516. .small-pull-6 {
  517. position: relative;
  518. right: 50%;
  519. left: auto; }
  520. .small-push-7 {
  521. position: relative;
  522. left: 58.33333%;
  523. right: auto; }
  524. .small-pull-7 {
  525. position: relative;
  526. right: 58.33333%;
  527. left: auto; }
  528. .small-push-8 {
  529. position: relative;
  530. left: 66.66667%;
  531. right: auto; }
  532. .small-pull-8 {
  533. position: relative;
  534. right: 66.66667%;
  535. left: auto; }
  536. .small-push-9 {
  537. position: relative;
  538. left: 75%;
  539. right: auto; }
  540. .small-pull-9 {
  541. position: relative;
  542. right: 75%;
  543. left: auto; }
  544. .small-push-10 {
  545. position: relative;
  546. left: 83.33333%;
  547. right: auto; }
  548. .small-pull-10 {
  549. position: relative;
  550. right: 83.33333%;
  551. left: auto; }
  552. .small-push-11 {
  553. position: relative;
  554. left: 91.66667%;
  555. right: auto; }
  556. .small-pull-11 {
  557. position: relative;
  558. right: 91.66667%;
  559. left: auto; }
  560. .column,
  561. .columns {
  562. position: relative;
  563. padding-left: 0.15625rem;
  564. padding-right: 0.15625rem;
  565. float: left; }
  566. .small-1 {
  567. width: 8.33333%; }
  568. .small-2 {
  569. width: 16.66667%; }
  570. .small-3 {
  571. width: 25%; }
  572. .small-4 {
  573. width: 33.33333%; }
  574. .small-5 {
  575. width: 41.66667%; }
  576. .small-6 {
  577. width: 50%; }
  578. .small-7 {
  579. width: 58.33333%; }
  580. .small-8 {
  581. width: 66.66667%; }
  582. .small-9 {
  583. width: 75%; }
  584. .small-10 {
  585. width: 83.33333%; }
  586. .small-11 {
  587. width: 91.66667%; }
  588. .small-12 {
  589. width: 100%; }
  590. .small-offset-0 {
  591. margin-left: 0 !important; }
  592. .small-offset-1 {
  593. margin-left: 8.33333% !important; }
  594. .small-offset-2 {
  595. margin-left: 16.66667% !important; }
  596. .small-offset-3 {
  597. margin-left: 25% !important; }
  598. .small-offset-4 {
  599. margin-left: 33.33333% !important; }
  600. .small-offset-5 {
  601. margin-left: 41.66667% !important; }
  602. .small-offset-6 {
  603. margin-left: 50% !important; }
  604. .small-offset-7 {
  605. margin-left: 58.33333% !important; }
  606. .small-offset-8 {
  607. margin-left: 66.66667% !important; }
  608. .small-offset-9 {
  609. margin-left: 75% !important; }
  610. .small-offset-10 {
  611. margin-left: 83.33333% !important; }
  612. .small-offset-11 {
  613. margin-left: 91.66667% !important; }
  614. .small-reset-order {
  615. float: left;
  616. left: auto;
  617. margin-left: 0;
  618. margin-right: 0;
  619. right: auto; }
  620. .column.small-centered,
  621. .columns.small-centered {
  622. margin-left: auto;
  623. margin-right: auto;
  624. float: none; }
  625. .column.small-uncentered,
  626. .columns.small-uncentered {
  627. float: left;
  628. margin-left: 0;
  629. margin-right: 0; }
  630. .column.small-centered:last-child,
  631. .columns.small-centered:last-child {
  632. float: none; }
  633. .column.small-uncentered:last-child,
  634. .columns.small-uncentered:last-child {
  635. float: left; }
  636. .column.small-uncentered.opposite,
  637. .columns.small-uncentered.opposite {
  638. float: right; }
  639. .row.small-collapse > .column,
  640. .row.small-collapse > .columns {
  641. padding-left: 0;
  642. padding-right: 0; }
  643. .row.small-collapse .row {
  644. margin-left: 0;
  645. margin-right: 0; }
  646. .row.small-uncollapse > .column,
  647. .row.small-uncollapse > .columns {
  648. padding-left: 0.15625rem;
  649. padding-right: 0.15625rem;
  650. float: left; } }
  651. @media only screen and (min-width: 40.0625em) {
  652. .medium-push-0 {
  653. position: relative;
  654. left: 0;
  655. right: auto; }
  656. .medium-pull-0 {
  657. position: relative;
  658. right: 0;
  659. left: auto; }
  660. .medium-push-1 {
  661. position: relative;
  662. left: 8.33333%;
  663. right: auto; }
  664. .medium-pull-1 {
  665. position: relative;
  666. right: 8.33333%;
  667. left: auto; }
  668. .medium-push-2 {
  669. position: relative;
  670. left: 16.66667%;
  671. right: auto; }
  672. .medium-pull-2 {
  673. position: relative;
  674. right: 16.66667%;
  675. left: auto; }
  676. .medium-push-3 {
  677. position: relative;
  678. left: 25%;
  679. right: auto; }
  680. .medium-pull-3 {
  681. position: relative;
  682. right: 25%;
  683. left: auto; }
  684. .medium-push-4 {
  685. position: relative;
  686. left: 33.33333%;
  687. right: auto; }
  688. .medium-pull-4 {
  689. position: relative;
  690. right: 33.33333%;
  691. left: auto; }
  692. .medium-push-5 {
  693. position: relative;
  694. left: 41.66667%;
  695. right: auto; }
  696. .medium-pull-5 {
  697. position: relative;
  698. right: 41.66667%;
  699. left: auto; }
  700. .medium-push-6 {
  701. position: relative;
  702. left: 50%;
  703. right: auto; }
  704. .medium-pull-6 {
  705. position: relative;
  706. right: 50%;
  707. left: auto; }
  708. .medium-push-7 {
  709. position: relative;
  710. left: 58.33333%;
  711. right: auto; }
  712. .medium-pull-7 {
  713. position: relative;
  714. right: 58.33333%;
  715. left: auto; }
  716. .medium-push-8 {
  717. position: relative;
  718. left: 66.66667%;
  719. right: auto; }
  720. .medium-pull-8 {
  721. position: relative;
  722. right: 66.66667%;
  723. left: auto; }
  724. .medium-push-9 {
  725. position: relative;
  726. left: 75%;
  727. right: auto; }
  728. .medium-pull-9 {
  729. position: relative;
  730. right: 75%;
  731. left: auto; }
  732. .medium-push-10 {
  733. position: relative;
  734. left: 83.33333%;
  735. right: auto; }
  736. .medium-pull-10 {
  737. position: relative;
  738. right: 83.33333%;
  739. left: auto; }
  740. .medium-push-11 {
  741. position: relative;
  742. left: 91.66667%;
  743. right: auto; }
  744. .medium-pull-11 {
  745. position: relative;
  746. right: 91.66667%;
  747. left: auto; }
  748. .column,
  749. .columns {
  750. position: relative;
  751. padding-left: 0.15625rem;
  752. padding-right: 0.15625rem;
  753. float: left; }
  754. .medium-1 {
  755. width: 8.33333%; }
  756. .medium-2 {
  757. width: 16.66667%; }
  758. .medium-3 {
  759. width: 25%; }
  760. .medium-4 {
  761. width: 33.33333%; }
  762. .medium-5 {
  763. width: 41.66667%; }
  764. .medium-6 {
  765. width: 50%; }
  766. .medium-7 {
  767. width: 58.33333%; }
  768. .medium-8 {
  769. width: 66.66667%; }
  770. .medium-9 {
  771. width: 75%; }
  772. .medium-10 {
  773. width: 83.33333%; }
  774. .medium-11 {
  775. width: 91.66667%; }
  776. .medium-12 {
  777. width: 100%; }
  778. .medium-offset-0 {
  779. margin-left: 0 !important; }
  780. .medium-offset-1 {
  781. margin-left: 8.33333% !important; }
  782. .medium-offset-2 {
  783. margin-left: 16.66667% !important; }
  784. .medium-offset-3 {
  785. margin-left: 25% !important; }
  786. .medium-offset-4 {
  787. margin-left: 33.33333% !important; }
  788. .medium-offset-5 {
  789. margin-left: 41.66667% !important; }
  790. .medium-offset-6 {
  791. margin-left: 50% !important; }
  792. .medium-offset-7 {
  793. margin-left: 58.33333% !important; }
  794. .medium-offset-8 {
  795. margin-left: 66.66667% !important; }
  796. .medium-offset-9 {
  797. margin-left: 75% !important; }
  798. .medium-offset-10 {
  799. margin-left: 83.33333% !important; }
  800. .medium-offset-11 {
  801. margin-left: 91.66667% !important; }
  802. .medium-reset-order {
  803. float: left;
  804. left: auto;
  805. margin-left: 0;
  806. margin-right: 0;
  807. right: auto; }
  808. .column.medium-centered,
  809. .columns.medium-centered {
  810. margin-left: auto;
  811. margin-right: auto;
  812. float: none; }
  813. .column.medium-uncentered,
  814. .columns.medium-uncentered {
  815. float: left;
  816. margin-left: 0;
  817. margin-right: 0; }
  818. .column.medium-centered:last-child,
  819. .columns.medium-centered:last-child {
  820. float: none; }
  821. .column.medium-uncentered:last-child,
  822. .columns.medium-uncentered:last-child {
  823. float: left; }
  824. .column.medium-uncentered.opposite,
  825. .columns.medium-uncentered.opposite {
  826. float: right; }
  827. .row.medium-collapse > .column,
  828. .row.medium-collapse > .columns {
  829. padding-left: 0;
  830. padding-right: 0; }
  831. .row.medium-collapse .row {
  832. margin-left: 0;
  833. margin-right: 0; }
  834. .row.medium-uncollapse > .column,
  835. .row.medium-uncollapse > .columns {
  836. padding-left: 0.15625rem;
  837. padding-right: 0.15625rem;
  838. float: left; }
  839. .push-0 {
  840. position: relative;
  841. left: 0;
  842. right: auto; }
  843. .pull-0 {
  844. position: relative;
  845. right: 0;
  846. left: auto; }
  847. .push-1 {
  848. position: relative;
  849. left: 8.33333%;
  850. right: auto; }
  851. .pull-1 {
  852. position: relative;
  853. right: 8.33333%;
  854. left: auto; }
  855. .push-2 {
  856. position: relative;
  857. left: 16.66667%;
  858. right: auto; }
  859. .pull-2 {
  860. position: relative;
  861. right: 16.66667%;
  862. left: auto; }
  863. .push-3 {
  864. position: relative;
  865. left: 25%;
  866. right: auto; }
  867. .pull-3 {
  868. position: relative;
  869. right: 25%;
  870. left: auto; }
  871. .push-4 {
  872. position: relative;
  873. left: 33.33333%;
  874. right: auto; }
  875. .pull-4 {
  876. position: relative;
  877. right: 33.33333%;
  878. left: auto; }
  879. .push-5 {
  880. position: relative;
  881. left: 41.66667%;
  882. right: auto; }
  883. .pull-5 {
  884. position: relative;
  885. right: 41.66667%;
  886. left: auto; }
  887. .push-6 {
  888. position: relative;
  889. left: 50%;
  890. right: auto; }
  891. .pull-6 {
  892. position: relative;
  893. right: 50%;
  894. left: auto; }
  895. .push-7 {
  896. position: relative;
  897. left: 58.33333%;
  898. right: auto; }
  899. .pull-7 {
  900. position: relative;
  901. right: 58.33333%;
  902. left: auto; }
  903. .push-8 {
  904. position: relative;
  905. left: 66.66667%;
  906. right: auto; }
  907. .pull-8 {
  908. position: relative;
  909. right: 66.66667%;
  910. left: auto; }
  911. .push-9 {
  912. position: relative;
  913. left: 75%;
  914. right: auto; }
  915. .pull-9 {
  916. position: relative;
  917. right: 75%;
  918. left: auto; }
  919. .push-10 {
  920. position: relative;
  921. left: 83.33333%;
  922. right: auto; }
  923. .pull-10 {
  924. position: relative;
  925. right: 83.33333%;
  926. left: auto; }
  927. .push-11 {
  928. position: relative;
  929. left: 91.66667%;
  930. right: auto; }
  931. .pull-11 {
  932. position: relative;
  933. right: 91.66667%;
  934. left: auto; } }
  935. @media only screen and (min-width: 64.0625em) {
  936. .large-push-0 {
  937. position: relative;
  938. left: 0;
  939. right: auto; }
  940. .large-pull-0 {
  941. position: relative;
  942. right: 0;
  943. left: auto; }
  944. .large-push-1 {
  945. position: relative;
  946. left: 8.33333%;
  947. right: auto; }
  948. .large-pull-1 {
  949. position: relative;
  950. right: 8.33333%;
  951. left: auto; }
  952. .large-push-2 {
  953. position: relative;
  954. left: 16.66667%;
  955. right: auto; }
  956. .large-pull-2 {
  957. position: relative;
  958. right: 16.66667%;
  959. left: auto; }
  960. .large-push-3 {
  961. position: relative;
  962. left: 25%;
  963. right: auto; }
  964. .large-pull-3 {
  965. position: relative;
  966. right: 25%;
  967. left: auto; }
  968. .large-push-4 {
  969. position: relative;
  970. left: 33.33333%;
  971. right: auto; }
  972. .large-pull-4 {
  973. position: relative;
  974. right: 33.33333%;
  975. left: auto; }
  976. .large-push-5 {
  977. position: relative;
  978. left: 41.66667%;
  979. right: auto; }
  980. .large-pull-5 {
  981. position: relative;
  982. right: 41.66667%;
  983. left: auto; }
  984. .large-push-6 {
  985. position: relative;
  986. left: 50%;
  987. right: auto; }
  988. .large-pull-6 {
  989. position: relative;
  990. right: 50%;
  991. left: auto; }
  992. .large-push-7 {
  993. position: relative;
  994. left: 58.33333%;
  995. right: auto; }
  996. .large-pull-7 {
  997. position: relative;
  998. right: 58.33333%;
  999. left: auto; }
  1000. .large-push-8 {
  1001. position: relative;
  1002. left: 66.66667%;
  1003. right: auto; }
  1004. .large-pull-8 {
  1005. position: relative;
  1006. right: 66.66667%;
  1007. left: auto; }
  1008. .large-push-9 {
  1009. position: relative;
  1010. left: 75%;
  1011. right: auto; }
  1012. .large-pull-9 {
  1013. position: relative;
  1014. right: 75%;
  1015. left: auto; }
  1016. .large-push-10 {
  1017. position: relative;
  1018. left: 83.33333%;
  1019. right: auto; }
  1020. .large-pull-10 {
  1021. position: relative;
  1022. right: 83.33333%;
  1023. left: auto; }
  1024. .large-push-11 {
  1025. position: relative;
  1026. left: 91.66667%;
  1027. right: auto; }
  1028. .large-pull-11 {
  1029. position: relative;
  1030. right: 91.66667%;
  1031. left: auto; }
  1032. .column,
  1033. .columns {
  1034. position: relative;
  1035. padding-left: 0.15625rem;
  1036. padding-right: 0.15625rem;
  1037. float: left; }
  1038. .large-1 {
  1039. width: 8.33333%; }
  1040. .large-2 {
  1041. width: 16.66667%; }
  1042. .large-3 {
  1043. width: 25%; }
  1044. .large-4 {
  1045. width: 33.33333%; }
  1046. .large-5 {
  1047. width: 41.66667%; }
  1048. .large-6 {
  1049. width: 50%; }
  1050. .large-7 {
  1051. width: 58.33333%; }
  1052. .large-8 {
  1053. width: 66.66667%; }
  1054. .large-9 {
  1055. width: 75%; }
  1056. .large-10 {
  1057. width: 83.33333%; }
  1058. .large-11 {
  1059. width: 91.66667%; }
  1060. .large-12 {
  1061. width: 100%; }
  1062. .large-offset-0 {
  1063. margin-left: 0 !important; }
  1064. .large-offset-1 {
  1065. margin-left: 8.33333% !important; }
  1066. .large-offset-2 {
  1067. margin-left: 16.66667% !important; }
  1068. .large-offset-3 {
  1069. margin-left: 25% !important; }
  1070. .large-offset-4 {
  1071. margin-left: 33.33333% !important; }
  1072. .large-offset-5 {
  1073. margin-left: 41.66667% !important; }
  1074. .large-offset-6 {
  1075. margin-left: 50% !important; }
  1076. .large-offset-7 {
  1077. margin-left: 58.33333% !important; }
  1078. .large-offset-8 {
  1079. margin-left: 66.66667% !important; }
  1080. .large-offset-9 {
  1081. margin-left: 75% !important; }
  1082. .large-offset-10 {
  1083. margin-left: 83.33333% !important; }
  1084. .large-offset-11 {
  1085. margin-left: 91.66667% !important; }
  1086. .large-reset-order {
  1087. float: left;
  1088. left: auto;
  1089. margin-left: 0;
  1090. margin-right: 0;
  1091. right: auto; }
  1092. .column.large-centered,
  1093. .columns.large-centered {
  1094. margin-left: auto;
  1095. margin-right: auto;
  1096. float: none; }
  1097. .column.large-uncentered,
  1098. .columns.large-uncentered {
  1099. float: left;
  1100. margin-left: 0;
  1101. margin-right: 0; }
  1102. .column.large-centered:last-child,
  1103. .columns.large-centered:last-child {
  1104. float: none; }
  1105. .column.large-uncentered:last-child,
  1106. .columns.large-uncentered:last-child {
  1107. float: left; }
  1108. .column.large-uncentered.opposite,
  1109. .columns.large-uncentered.opposite {
  1110. float: right; }
  1111. .row.large-collapse > .column,
  1112. .row.large-collapse > .columns {
  1113. padding-left: 0;
  1114. padding-right: 0; }
  1115. .row.large-collapse .row {
  1116. margin-left: 0;
  1117. margin-right: 0; }
  1118. .row.large-uncollapse > .column,
  1119. .row.large-uncollapse > .columns {
  1120. padding-left: 0.15625rem;
  1121. padding-right: 0.15625rem;
  1122. float: left; }
  1123. .push-0 {
  1124. position: relative;
  1125. left: 0;
  1126. right: auto; }
  1127. .pull-0 {
  1128. position: relative;
  1129. right: 0;
  1130. left: auto; }
  1131. .push-1 {
  1132. position: relative;
  1133. left: 8.33333%;
  1134. right: auto; }
  1135. .pull-1 {
  1136. position: relative;
  1137. right: 8.33333%;
  1138. left: auto; }
  1139. .push-2 {
  1140. position: relative;
  1141. left: 16.66667%;
  1142. right: auto; }
  1143. .pull-2 {
  1144. position: relative;
  1145. right: 16.66667%;
  1146. left: auto; }
  1147. .push-3 {
  1148. position: relative;
  1149. left: 25%;
  1150. right: auto; }
  1151. .pull-3 {
  1152. position: relative;
  1153. right: 25%;
  1154. left: auto; }
  1155. .push-4 {
  1156. position: relative;
  1157. left: 33.33333%;
  1158. right: auto; }
  1159. .pull-4 {
  1160. position: relative;
  1161. right: 33.33333%;
  1162. left: auto; }
  1163. .push-5 {
  1164. position: relative;
  1165. left: 41.66667%;
  1166. right: auto; }
  1167. .pull-5 {
  1168. position: relative;
  1169. right: 41.66667%;
  1170. left: auto; }
  1171. .push-6 {
  1172. position: relative;
  1173. left: 50%;
  1174. right: auto; }
  1175. .pull-6 {
  1176. position: relative;
  1177. right: 50%;
  1178. left: auto; }
  1179. .push-7 {
  1180. position: relative;
  1181. left: 58.33333%;
  1182. right: auto; }
  1183. .pull-7 {
  1184. position: relative;
  1185. right: 58.33333%;
  1186. left: auto; }
  1187. .push-8 {
  1188. position: relative;
  1189. left: 66.66667%;
  1190. right: auto; }
  1191. .pull-8 {
  1192. position: relative;
  1193. right: 66.66667%;
  1194. left: auto; }
  1195. .push-9 {
  1196. position: relative;
  1197. left: 75%;
  1198. right: auto; }
  1199. .pull-9 {
  1200. position: relative;
  1201. right: 75%;
  1202. left: auto; }
  1203. .push-10 {
  1204. position: relative;
  1205. left: 83.33333%;
  1206. right: auto; }
  1207. .pull-10 {
  1208. position: relative;
  1209. right: 83.33333%;
  1210. left: auto; }
  1211. .push-11 {
  1212. position: relative;
  1213. left: 91.66667%;
  1214. right: auto; }
  1215. .pull-11 {
  1216. position: relative;
  1217. right: 91.66667%;
  1218. left: auto; } }
  1219. @media only screen and (min-width: 90.0625em) {
  1220. .xlarge-push-0 {
  1221. position: relative;
  1222. left: 0;
  1223. right: auto; }
  1224. .xlarge-pull-0 {
  1225. position: relative;
  1226. right: 0;
  1227. left: auto; }
  1228. .xlarge-push-1 {
  1229. position: relative;
  1230. left: 8.33333%;
  1231. right: auto; }
  1232. .xlarge-pull-1 {
  1233. position: relative;
  1234. right: 8.33333%;
  1235. left: auto; }
  1236. .xlarge-push-2 {
  1237. position: relative;
  1238. left: 16.66667%;
  1239. right: auto; }
  1240. .xlarge-pull-2 {
  1241. position: relative;
  1242. right: 16.66667%;
  1243. left: auto; }
  1244. .xlarge-push-3 {
  1245. position: relative;
  1246. left: 25%;
  1247. right: auto; }
  1248. .xlarge-pull-3 {
  1249. position: relative;
  1250. right: 25%;
  1251. left: auto; }
  1252. .xlarge-push-4 {
  1253. position: relative;
  1254. left: 33.33333%;
  1255. right: auto; }
  1256. .xlarge-pull-4 {
  1257. position: relative;
  1258. right: 33.33333%;
  1259. left: auto; }
  1260. .xlarge-push-5 {
  1261. position: relative;
  1262. left: 41.66667%;
  1263. right: auto; }
  1264. .xlarge-pull-5 {
  1265. position: relative;
  1266. right: 41.66667%;
  1267. left: auto; }
  1268. .xlarge-push-6 {
  1269. position: relative;
  1270. left: 50%;
  1271. right: auto; }
  1272. .xlarge-pull-6 {
  1273. position: relative;
  1274. right: 50%;
  1275. left: auto; }
  1276. .xlarge-push-7 {
  1277. position: relative;
  1278. left: 58.33333%;
  1279. right: auto; }
  1280. .xlarge-pull-7 {
  1281. position: relative;
  1282. right: 58.33333%;
  1283. left: auto; }
  1284. .xlarge-push-8 {
  1285. position: relative;
  1286. left: 66.66667%;
  1287. right: auto; }
  1288. .xlarge-pull-8 {
  1289. position: relative;
  1290. right: 66.66667%;
  1291. left: auto; }
  1292. .xlarge-push-9 {
  1293. position: relative;
  1294. left: 75%;
  1295. right: auto; }
  1296. .xlarge-pull-9 {
  1297. position: relative;
  1298. right: 75%;
  1299. left: auto; }
  1300. .xlarge-push-10 {
  1301. position: relative;
  1302. left: 83.33333%;
  1303. right: auto; }
  1304. .xlarge-pull-10 {
  1305. position: relative;
  1306. right: 83.33333%;
  1307. left: auto; }
  1308. .xlarge-push-11 {
  1309. position: relative;
  1310. left: 91.66667%;
  1311. right: auto; }
  1312. .xlarge-pull-11 {
  1313. position: relative;
  1314. right: 91.66667%;
  1315. left: auto; }
  1316. .column,
  1317. .columns {
  1318. position: relative;
  1319. padding-left: 0.15625rem;
  1320. padding-right: 0.15625rem;
  1321. float: left; }
  1322. .xlarge-1 {
  1323. width: 8.33333%; }
  1324. .xlarge-2 {
  1325. width: 16.66667%; }
  1326. .xlarge-3 {
  1327. width: 25%; }
  1328. .xlarge-4 {
  1329. width: 33.33333%; }
  1330. .xlarge-5 {
  1331. width: 41.66667%; }
  1332. .xlarge-6 {
  1333. width: 50%; }
  1334. .xlarge-7 {
  1335. width: 58.33333%; }
  1336. .xlarge-8 {
  1337. width: 66.66667%; }
  1338. .xlarge-9 {
  1339. width: 75%; }
  1340. .xlarge-10 {
  1341. width: 83.33333%; }
  1342. .xlarge-11 {
  1343. width: 91.66667%; }
  1344. .xlarge-12 {
  1345. width: 100%; }
  1346. .xlarge-offset-0 {
  1347. margin-left: 0 !important; }
  1348. .xlarge-offset-1 {
  1349. margin-left: 8.33333% !important; }
  1350. .xlarge-offset-2 {
  1351. margin-left: 16.66667% !important; }
  1352. .xlarge-offset-3 {
  1353. margin-left: 25% !important; }
  1354. .xlarge-offset-4 {
  1355. margin-left: 33.33333% !important; }
  1356. .xlarge-offset-5 {
  1357. margin-left: 41.66667% !important; }
  1358. .xlarge-offset-6 {
  1359. margin-left: 50% !important; }
  1360. .xlarge-offset-7 {
  1361. margin-left: 58.33333% !important; }
  1362. .xlarge-offset-8 {
  1363. margin-left: 66.66667% !important; }
  1364. .xlarge-offset-9 {
  1365. margin-left: 75% !important; }
  1366. .xlarge-offset-10 {
  1367. margin-left: 83.33333% !important; }
  1368. .xlarge-offset-11 {
  1369. margin-left: 91.66667% !important; }
  1370. .xlarge-reset-order {
  1371. float: left;
  1372. left: auto;
  1373. margin-left: 0;
  1374. margin-right: 0;
  1375. right: auto; }
  1376. .column.xlarge-centered,
  1377. .columns.xlarge-centered {
  1378. margin-left: auto;
  1379. margin-right: auto;
  1380. float: none; }
  1381. .column.xlarge-uncentered,
  1382. .columns.xlarge-uncentered {
  1383. float: left;
  1384. margin-left: 0;
  1385. margin-right: 0; }
  1386. .column.xlarge-centered:last-child,
  1387. .columns.xlarge-centered:last-child {
  1388. float: none; }
  1389. .column.xlarge-uncentered:last-child,
  1390. .columns.xlarge-uncentered:last-child {
  1391. float: left; }
  1392. .column.xlarge-uncentered.opposite,
  1393. .columns.xlarge-uncentered.opposite {
  1394. float: right; }
  1395. .row.xlarge-collapse > .column,
  1396. .row.xlarge-collapse > .columns {
  1397. padding-left: 0;
  1398. padding-right: 0; }
  1399. .row.xlarge-collapse .row {
  1400. margin-left: 0;
  1401. margin-right: 0; }
  1402. .row.xlarge-uncollapse > .column,
  1403. .row.xlarge-uncollapse > .columns {
  1404. padding-left: 0.15625rem;
  1405. padding-right: 0.15625rem;
  1406. float: left; } }
  1407. @media only screen and (min-width: 120.0625em) {
  1408. .xxlarge-push-0 {
  1409. position: relative;
  1410. left: 0;
  1411. right: auto; }
  1412. .xxlarge-pull-0 {
  1413. position: relative;
  1414. right: 0;
  1415. left: auto; }
  1416. .xxlarge-push-1 {
  1417. position: relative;
  1418. left: 8.33333%;
  1419. right: auto; }
  1420. .xxlarge-pull-1 {
  1421. position: relative;
  1422. right: 8.33333%;
  1423. left: auto; }
  1424. .xxlarge-push-2 {
  1425. position: relative;
  1426. left: 16.66667%;
  1427. right: auto; }
  1428. .xxlarge-pull-2 {
  1429. position: relative;
  1430. right: 16.66667%;
  1431. left: auto; }
  1432. .xxlarge-push-3 {
  1433. position: relative;
  1434. left: 25%;
  1435. right: auto; }
  1436. .xxlarge-pull-3 {
  1437. position: relative;
  1438. right: 25%;
  1439. left: auto; }
  1440. .xxlarge-push-4 {
  1441. position: relative;
  1442. left: 33.33333%;
  1443. right: auto; }
  1444. .xxlarge-pull-4 {
  1445. position: relative;
  1446. right: 33.33333%;
  1447. left: auto; }
  1448. .xxlarge-push-5 {
  1449. position: relative;
  1450. left: 41.66667%;
  1451. right: auto; }
  1452. .xxlarge-pull-5 {
  1453. position: relative;
  1454. right: 41.66667%;
  1455. left: auto; }
  1456. .xxlarge-push-6 {
  1457. position: relative;
  1458. left: 50%;
  1459. right: auto; }
  1460. .xxlarge-pull-6 {
  1461. position: relative;
  1462. right: 50%;
  1463. left: auto; }
  1464. .xxlarge-push-7 {
  1465. position: relative;
  1466. left: 58.33333%;
  1467. right: auto; }
  1468. .xxlarge-pull-7 {
  1469. position: relative;
  1470. right: 58.33333%;
  1471. left: auto; }
  1472. .xxlarge-push-8 {
  1473. position: relative;
  1474. left: 66.66667%;
  1475. right: auto; }
  1476. .xxlarge-pull-8 {
  1477. position: relative;
  1478. right: 66.66667%;
  1479. left: auto; }
  1480. .xxlarge-push-9 {
  1481. position: relative;
  1482. left: 75%;
  1483. right: auto; }
  1484. .xxlarge-pull-9 {
  1485. position: relative;
  1486. right: 75%;
  1487. left: auto; }
  1488. .xxlarge-push-10 {
  1489. position: relative;
  1490. left: 83.33333%;
  1491. right: auto; }
  1492. .xxlarge-pull-10 {
  1493. position: relative;
  1494. right: 83.33333%;
  1495. left: auto; }
  1496. .xxlarge-push-11 {
  1497. position: relative;
  1498. left: 91.66667%;
  1499. right: auto; }
  1500. .xxlarge-pull-11 {
  1501. position: relative;
  1502. right: 91.66667%;
  1503. left: auto; }
  1504. .column,
  1505. .columns {
  1506. position: relative;
  1507. padding-left: 0.15625rem;
  1508. padding-right: 0.15625rem;
  1509. float: left; }
  1510. .xxlarge-1 {
  1511. width: 8.33333%; }
  1512. .xxlarge-2 {
  1513. width: 16.66667%; }
  1514. .xxlarge-3 {
  1515. width: 25%; }
  1516. .xxlarge-4 {
  1517. width: 33.33333%; }
  1518. .xxlarge-5 {
  1519. width: 41.66667%; }
  1520. .xxlarge-6 {
  1521. width: 50%; }
  1522. .xxlarge-7 {
  1523. width: 58.33333%; }
  1524. .xxlarge-8 {
  1525. width: 66.66667%; }
  1526. .xxlarge-9 {
  1527. width: 75%; }
  1528. .xxlarge-10 {
  1529. width: 83.33333%; }
  1530. .xxlarge-11 {
  1531. width: 91.66667%; }
  1532. .xxlarge-12 {
  1533. width: 100%; }
  1534. .xxlarge-offset-0 {
  1535. margin-left: 0 !important; }
  1536. .xxlarge-offset-1 {
  1537. margin-left: 8.33333% !important; }
  1538. .xxlarge-offset-2 {
  1539. margin-left: 16.66667% !important; }
  1540. .xxlarge-offset-3 {
  1541. margin-left: 25% !important; }
  1542. .xxlarge-offset-4 {
  1543. margin-left: 33.33333% !important; }
  1544. .xxlarge-offset-5 {
  1545. margin-left: 41.66667% !important; }
  1546. .xxlarge-offset-6 {
  1547. margin-left: 50% !important; }
  1548. .xxlarge-offset-7 {
  1549. margin-left: 58.33333% !important; }
  1550. .xxlarge-offset-8 {
  1551. margin-left: 66.66667% !important; }
  1552. .xxlarge-offset-9 {
  1553. margin-left: 75% !important; }
  1554. .xxlarge-offset-10 {
  1555. margin-left: 83.33333% !important; }
  1556. .xxlarge-offset-11 {
  1557. margin-left: 91.66667% !important; }
  1558. .xxlarge-reset-order {
  1559. float: left;
  1560. left: auto;
  1561. margin-left: 0;
  1562. margin-right: 0;
  1563. right: auto; }
  1564. .column.xxlarge-centered,
  1565. .columns.xxlarge-centered {
  1566. margin-left: auto;
  1567. margin-right: auto;
  1568. float: none; }
  1569. .column.xxlarge-uncentered,
  1570. .columns.xxlarge-uncentered {
  1571. float: left;
  1572. margin-left: 0;
  1573. margin-right: 0; }
  1574. .column.xxlarge-centered:last-child,
  1575. .columns.xxlarge-centered:last-child {
  1576. float: none; }
  1577. .column.xxlarge-uncentered:last-child,
  1578. .columns.xxlarge-uncentered:last-child {
  1579. float: left; }
  1580. .column.xxlarge-uncentered.opposite,
  1581. .columns.xxlarge-uncentered.opposite {
  1582. float: right; }
  1583. .row.xxlarge-collapse > .column,
  1584. .row.xxlarge-collapse > .columns {
  1585. padding-left: 0;
  1586. padding-right: 0; }
  1587. .row.xxlarge-collapse .row {
  1588. margin-left: 0;
  1589. margin-right: 0; }
  1590. .row.xxlarge-uncollapse > .column,
  1591. .row.xxlarge-uncollapse > .columns {
  1592. padding-left: 0.15625rem;
  1593. padding-right: 0.15625rem;
  1594. float: left; } }
  1595. .accordion {
  1596. margin-bottom: 0;
  1597. margin-left: 0; }
  1598. .accordion:before, .accordion:after {
  1599. content: " ";
  1600. display: table; }
  1601. .accordion:after {
  1602. clear: both; }
  1603. .accordion .accordion-navigation, .accordion dd {
  1604. display: block;
  1605. margin-bottom: 0 !important; }
  1606. .accordion .accordion-navigation.active > a, .accordion dd.active > a {
  1607. background: #e8e8e8;
  1608. color: #222222; }
  1609. .accordion .accordion-navigation > a, .accordion dd > a {
  1610. background: #EFEFEF;
  1611. color: #222222;
  1612. display: block;
  1613. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  1614. font-size: 1rem;
  1615. padding: 1rem; }
  1616. .accordion .accordion-navigation > a:hover, .accordion dd > a:hover {
  1617. background: #e3e3e3; }
  1618. .accordion .accordion-navigation > .content, .accordion dd > .content {
  1619. display: none;
  1620. padding: 0.15625rem; }
  1621. .accordion .accordion-navigation > .content.active, .accordion dd > .content.active {
  1622. background: #FFFFFF;
  1623. display: block; }
  1624. .alert-box {
  1625. border-style: solid;
  1626. border-width: 1px;
  1627. display: block;
  1628. font-size: 0.8125rem;
  1629. font-weight: normal;
  1630. margin-bottom: 1.25rem;
  1631. padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  1632. position: relative;
  1633. transition: opacity 300ms ease-out;
  1634. background-color: #008CBA;
  1635. border-color: #0078a0;
  1636. color: #FFFFFF; }
  1637. .alert-box .close {
  1638. right: 0.25rem;
  1639. background: inherit;
  1640. color: #333333;
  1641. font-size: 1.375rem;
  1642. line-height: .9;
  1643. margin-top: -0.6875rem;
  1644. opacity: 0.3;
  1645. padding: 0 6px 4px;
  1646. position: absolute;
  1647. top: 50%; }
  1648. .alert-box .close:hover, .alert-box .close:focus {
  1649. opacity: 0.5; }
  1650. .alert-box.radius {
  1651. border-radius: 3px; }
  1652. .alert-box.round {
  1653. border-radius: 1000px; }
  1654. .alert-box.success {
  1655. background-color: #43AC6A;
  1656. border-color: #3a945b;
  1657. color: #FFFFFF; }
  1658. .alert-box.alert {
  1659. background-color: #f04124;
  1660. border-color: #de2d0f;
  1661. color: #FFFFFF; }
  1662. .alert-box.secondary {
  1663. background-color: #e7e7e7;
  1664. border-color: #c7c7c7;
  1665. color: #4f4f4f; }
  1666. .alert-box.warning {
  1667. background-color: #f08a24;
  1668. border-color: #de770f;
  1669. color: #FFFFFF; }
  1670. .alert-box.info {
  1671. background-color: #a0d3e8;
  1672. border-color: #74bfdd;
  1673. color: #4f4f4f; }
  1674. .alert-box.alert-close {
  1675. opacity: 0; }
  1676. [class*="block-grid-"] {
  1677. display: block;
  1678. padding: 0;
  1679. margin: 0 -0.625rem; }
  1680. [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  1681. content: " ";
  1682. display: table; }
  1683. [class*="block-grid-"]:after {
  1684. clear: both; }
  1685. [class*="block-grid-"] > li {
  1686. display: block;
  1687. float: left;
  1688. height: auto;
  1689. padding: 0 0.625rem 1.25rem; }
  1690. @media only screen {
  1691. .small-block-grid-1 > li {
  1692. list-style: none;
  1693. width: 100%; }
  1694. .small-block-grid-1 > li:nth-of-type(1n) {
  1695. clear: none; }
  1696. .small-block-grid-1 > li:nth-of-type(1n+1) {
  1697. clear: both; }
  1698. .small-block-grid-2 > li {
  1699. list-style: none;
  1700. width: 50%; }
  1701. .small-block-grid-2 > li:nth-of-type(1n) {
  1702. clear: none; }
  1703. .small-block-grid-2 > li:nth-of-type(2n+1) {
  1704. clear: both; }
  1705. .small-block-grid-3 > li {
  1706. list-style: none;
  1707. width: 33.33333%; }
  1708. .small-block-grid-3 > li:nth-of-type(1n) {
  1709. clear: none; }
  1710. .small-block-grid-3 > li:nth-of-type(3n+1) {
  1711. clear: both; }
  1712. .small-block-grid-4 > li {
  1713. list-style: none;
  1714. width: 25%; }
  1715. .small-block-grid-4 > li:nth-of-type(1n) {
  1716. clear: none; }
  1717. .small-block-grid-4 > li:nth-of-type(4n+1) {
  1718. clear: both; }
  1719. .small-block-grid-5 > li {
  1720. list-style: none;
  1721. width: 20%; }
  1722. .small-block-grid-5 > li:nth-of-type(1n) {
  1723. clear: none; }
  1724. .small-block-grid-5 > li:nth-of-type(5n+1) {
  1725. clear: both; }
  1726. .small-block-grid-6 > li {
  1727. list-style: none;
  1728. width: 16.66667%; }
  1729. .small-block-grid-6 > li:nth-of-type(1n) {
  1730. clear: none; }
  1731. .small-block-grid-6 > li:nth-of-type(6n+1) {
  1732. clear: both; }
  1733. .small-block-grid-7 > li {
  1734. list-style: none;
  1735. width: 14.28571%; }
  1736. .small-block-grid-7 > li:nth-of-type(1n) {
  1737. clear: none; }
  1738. .small-block-grid-7 > li:nth-of-type(7n+1) {
  1739. clear: both; }
  1740. .small-block-grid-8 > li {
  1741. list-style: none;
  1742. width: 12.5%; }
  1743. .small-block-grid-8 > li:nth-of-type(1n) {
  1744. clear: none; }
  1745. .small-block-grid-8 > li:nth-of-type(8n+1) {
  1746. clear: both; }
  1747. .small-block-grid-9 > li {
  1748. list-style: none;
  1749. width: 11.11111%; }
  1750. .small-block-grid-9 > li:nth-of-type(1n) {
  1751. clear: none; }
  1752. .small-block-grid-9 > li:nth-of-type(9n+1) {
  1753. clear: both; }
  1754. .small-block-grid-10 > li {
  1755. list-style: none;
  1756. width: 10%; }
  1757. .small-block-grid-10 > li:nth-of-type(1n) {
  1758. clear: none; }
  1759. .small-block-grid-10 > li:nth-of-type(10n+1) {
  1760. clear: both; }
  1761. .small-block-grid-11 > li {
  1762. list-style: none;
  1763. width: 9.09091%; }
  1764. .small-block-grid-11 > li:nth-of-type(1n) {
  1765. clear: none; }
  1766. .small-block-grid-11 > li:nth-of-type(11n+1) {
  1767. clear: both; }
  1768. .small-block-grid-12 > li {
  1769. list-style: none;
  1770. width: 8.33333%; }
  1771. .small-block-grid-12 > li:nth-of-type(1n) {
  1772. clear: none; }
  1773. .small-block-grid-12 > li:nth-of-type(12n+1) {
  1774. clear: both; } }
  1775. @media only screen and (min-width: 40.0625em) {
  1776. .medium-block-grid-1 > li {
  1777. list-style: none;
  1778. width: 100%; }
  1779. .medium-block-grid-1 > li:nth-of-type(1n) {
  1780. clear: none; }
  1781. .medium-block-grid-1 > li:nth-of-type(1n+1) {
  1782. clear: both; }
  1783. .medium-block-grid-2 > li {
  1784. list-style: none;
  1785. width: 50%; }
  1786. .medium-block-grid-2 > li:nth-of-type(1n) {
  1787. clear: none; }
  1788. .medium-block-grid-2 > li:nth-of-type(2n+1) {
  1789. clear: both; }
  1790. .medium-block-grid-3 > li {
  1791. list-style: none;
  1792. width: 33.33333%; }
  1793. .medium-block-grid-3 > li:nth-of-type(1n) {
  1794. clear: none; }
  1795. .medium-block-grid-3 > li:nth-of-type(3n+1) {
  1796. clear: both; }
  1797. .medium-block-grid-4 > li {
  1798. list-style: none;
  1799. width: 25%; }
  1800. .medium-block-grid-4 > li:nth-of-type(1n) {
  1801. clear: none; }
  1802. .medium-block-grid-4 > li:nth-of-type(4n+1) {
  1803. clear: both; }
  1804. .medium-block-grid-5 > li {
  1805. list-style: none;
  1806. width: 20%; }
  1807. .medium-block-grid-5 > li:nth-of-type(1n) {
  1808. clear: none; }
  1809. .medium-block-grid-5 > li:nth-of-type(5n+1) {
  1810. clear: both; }
  1811. .medium-block-grid-6 > li {
  1812. list-style: none;
  1813. width: 16.66667%; }
  1814. .medium-block-grid-6 > li:nth-of-type(1n) {
  1815. clear: none; }
  1816. .medium-block-grid-6 > li:nth-of-type(6n+1) {
  1817. clear: both; }
  1818. .medium-block-grid-7 > li {
  1819. list-style: none;
  1820. width: 14.28571%; }
  1821. .medium-block-grid-7 > li:nth-of-type(1n) {
  1822. clear: none; }
  1823. .medium-block-grid-7 > li:nth-of-type(7n+1) {
  1824. clear: both; }
  1825. .medium-block-grid-8 > li {
  1826. list-style: none;
  1827. width: 12.5%; }
  1828. .medium-block-grid-8 > li:nth-of-type(1n) {
  1829. clear: none; }
  1830. .medium-block-grid-8 > li:nth-of-type(8n+1) {
  1831. clear: both; }
  1832. .medium-block-grid-9 > li {
  1833. list-style: none;
  1834. width: 11.11111%; }
  1835. .medium-block-grid-9 > li:nth-of-type(1n) {
  1836. clear: none; }
  1837. .medium-block-grid-9 > li:nth-of-type(9n+1) {
  1838. clear: both; }
  1839. .medium-block-grid-10 > li {
  1840. list-style: none;
  1841. width: 10%; }
  1842. .medium-block-grid-10 > li:nth-of-type(1n) {
  1843. clear: none; }
  1844. .medium-block-grid-10 > li:nth-of-type(10n+1) {
  1845. clear: both; }
  1846. .medium-block-grid-11 > li {
  1847. list-style: none;
  1848. width: 9.09091%; }
  1849. .medium-block-grid-11 > li:nth-of-type(1n) {
  1850. clear: none; }
  1851. .medium-block-grid-11 > li:nth-of-type(11n+1) {
  1852. clear: both; }
  1853. .medium-block-grid-12 > li {
  1854. list-style: none;
  1855. width: 8.33333%; }
  1856. .medium-block-grid-12 > li:nth-of-type(1n) {
  1857. clear: none; }
  1858. .medium-block-grid-12 > li:nth-of-type(12n+1) {
  1859. clear: both; } }
  1860. @media only screen and (min-width: 64.0625em) {
  1861. .large-block-grid-1 > li {
  1862. list-style: none;
  1863. width: 100%; }
  1864. .large-block-grid-1 > li:nth-of-type(1n) {
  1865. clear: none; }
  1866. .large-block-grid-1 > li:nth-of-type(1n+1) {
  1867. clear: both; }
  1868. .large-block-grid-2 > li {
  1869. list-style: none;
  1870. width: 50%; }
  1871. .large-block-grid-2 > li:nth-of-type(1n) {
  1872. clear: none; }
  1873. .large-block-grid-2 > li:nth-of-type(2n+1) {
  1874. clear: both; }
  1875. .large-block-grid-3 > li {
  1876. list-style: none;
  1877. width: 33.33333%; }
  1878. .large-block-grid-3 > li:nth-of-type(1n) {
  1879. clear: none; }
  1880. .large-block-grid-3 > li:nth-of-type(3n+1) {
  1881. clear: both; }
  1882. .large-block-grid-4 > li {
  1883. list-style: none;
  1884. width: 25%; }
  1885. .large-block-grid-4 > li:nth-of-type(1n) {
  1886. clear: none; }
  1887. .large-block-grid-4 > li:nth-of-type(4n+1) {
  1888. clear: both; }
  1889. .large-block-grid-5 > li {
  1890. list-style: none;
  1891. width: 20%; }
  1892. .large-block-grid-5 > li:nth-of-type(1n) {
  1893. clear: none; }
  1894. .large-block-grid-5 > li:nth-of-type(5n+1) {
  1895. clear: both; }
  1896. .large-block-grid-6 > li {
  1897. list-style: none;
  1898. width: 16.66667%; }
  1899. .large-block-grid-6 > li:nth-of-type(1n) {
  1900. clear: none; }
  1901. .large-block-grid-6 > li:nth-of-type(6n+1) {
  1902. clear: both; }
  1903. .large-block-grid-7 > li {
  1904. list-style: none;
  1905. width: 14.28571%; }
  1906. .large-block-grid-7 > li:nth-of-type(1n) {
  1907. clear: none; }
  1908. .large-block-grid-7 > li:nth-of-type(7n+1) {
  1909. clear: both; }
  1910. .large-block-grid-8 > li {
  1911. list-style: none;
  1912. width: 12.5%; }
  1913. .large-block-grid-8 > li:nth-of-type(1n) {
  1914. clear: none; }
  1915. .large-block-grid-8 > li:nth-of-type(8n+1) {
  1916. clear: both; }
  1917. .large-block-grid-9 > li {
  1918. list-style: none;
  1919. width: 11.11111%; }
  1920. .large-block-grid-9 > li:nth-of-type(1n) {
  1921. clear: none; }
  1922. .large-block-grid-9 > li:nth-of-type(9n+1) {
  1923. clear: both; }
  1924. .large-block-grid-10 > li {
  1925. list-style: none;
  1926. width: 10%; }
  1927. .large-block-grid-10 > li:nth-of-type(1n) {
  1928. clear: none; }
  1929. .large-block-grid-10 > li:nth-of-type(10n+1) {
  1930. clear: both; }
  1931. .large-block-grid-11 > li {
  1932. list-style: none;
  1933. width: 9.09091%; }
  1934. .large-block-grid-11 > li:nth-of-type(1n) {
  1935. clear: none; }
  1936. .large-block-grid-11 > li:nth-of-type(11n+1) {
  1937. clear: both; }
  1938. .large-block-grid-12 > li {
  1939. list-style: none;
  1940. width: 8.33333%; }
  1941. .large-block-grid-12 > li:nth-of-type(1n) {
  1942. clear: none; }
  1943. .large-block-grid-12 > li:nth-of-type(12n+1) {
  1944. clear: both; } }
  1945. .breadcrumbs {
  1946. border-style: solid;
  1947. border-width: 1px;
  1948. display: block;
  1949. list-style: none;
  1950. margin-left: 0;
  1951. overflow: hidden;
  1952. padding: 0.5625rem 0.875rem 0.5625rem;
  1953. background-color: #f4f4f4;
  1954. border-color: gainsboro;
  1955. border-radius: 3px; }
  1956. .breadcrumbs > * {
  1957. color: #008CBA;
  1958. float: left;
  1959. font-size: 0.6875rem;
  1960. line-height: 0.6875rem;
  1961. margin: 0;
  1962. text-transform: uppercase; }
  1963. .breadcrumbs > *:hover a, .breadcrumbs > *:focus a {
  1964. text-decoration: underline; }
  1965. .breadcrumbs > * a {
  1966. color: #008CBA; }
  1967. .breadcrumbs > *.current {
  1968. color: #333333;
  1969. cursor: default; }
  1970. .breadcrumbs > *.current a {
  1971. color: #333333;
  1972. cursor: default; }
  1973. .breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a {
  1974. text-decoration: none; }
  1975. .breadcrumbs > *.unavailable {
  1976. color: #999999; }
  1977. .breadcrumbs > *.unavailable a {
  1978. color: #999999; }
  1979. .breadcrumbs > *.unavailable:hover,
  1980. .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus,
  1981. .breadcrumbs > *.unavailable a:focus {
  1982. color: #999999;
  1983. cursor: not-allowed;
  1984. text-decoration: none; }
  1985. .breadcrumbs > *:before {
  1986. color: #AAAAAA;
  1987. content: "/";
  1988. margin: 0 0.75rem;
  1989. position: relative;
  1990. top: 1px; }
  1991. .breadcrumbs > *:first-child:before {
  1992. content: " ";
  1993. margin: 0; }
  1994. /* Accessibility - hides the forward slash */
  1995. [aria-label="breadcrumbs"] [aria-hidden="true"]:after {
  1996. content: "/"; }
  1997. button, .button {
  1998. -webkit-appearance: none;
  1999. -moz-appearance: none;
  2000. border-radius: 0;
  2001. border-style: solid;
  2002. border-width: 0;
  2003. cursor: pointer;
  2004. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  2005. font-weight: normal;
  2006. line-height: normal;
  2007. margin: 0 0 1.25rem;
  2008. position: relative;
  2009. text-align: center;
  2010. text-decoration: none;
  2011. display: inline-block;
  2012. padding: 1rem 2rem 1.0625rem 2rem;
  2013. font-size: 1rem;
  2014. background-color: #008CBA;
  2015. border-color: #007095;
  2016. color: #FFFFFF;
  2017. transition: background-color 300ms ease-out; }
  2018. button:hover, button:focus, .button:hover, .button:focus {
  2019. background-color: #007095; }
  2020. button:hover, button:focus, .button:hover, .button:focus {
  2021. color: #FFFFFF; }
  2022. button.secondary, .button.secondary {
  2023. background-color: #e7e7e7;
  2024. border-color: #b9b9b9;
  2025. color: #333333; }
  2026. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  2027. background-color: #b9b9b9; }
  2028. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  2029. color: #333333; }
  2030. button.success, .button.success {
  2031. background-color: #43AC6A;
  2032. border-color: #368a55;
  2033. color: #FFFFFF; }
  2034. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  2035. background-color: #368a55; }
  2036. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  2037. color: #FFFFFF; }
  2038. button.alert, .button.alert {
  2039. background-color: #f04124;
  2040. border-color: #cf2a0e;
  2041. color: #FFFFFF; }
  2042. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  2043. background-color: #cf2a0e; }
  2044. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  2045. color: #FFFFFF; }
  2046. button.warning, .button.warning {
  2047. background-color: #f08a24;
  2048. border-color: #cf6e0e;
  2049. color: #FFFFFF; }
  2050. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  2051. background-color: #cf6e0e; }
  2052. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  2053. color: #FFFFFF; }
  2054. button.info, .button.info {
  2055. background-color: #a0d3e8;
  2056. border-color: #61b6d9;
  2057. color: #333333; }
  2058. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  2059. background-color: #61b6d9; }
  2060. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  2061. color: #FFFFFF; }
  2062. button.large, .button.large {
  2063. padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  2064. font-size: 1.25rem; }
  2065. button.small, .button.small {
  2066. padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  2067. font-size: 0.8125rem; }
  2068. button.tiny, .button.tiny {
  2069. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  2070. font-size: 0.6875rem; }
  2071. button.expand, .button.expand {
  2072. padding: 1rem 2rem 1.0625rem 2rem;
  2073. font-size: 1rem;
  2074. padding-bottom: 1.0625rem;
  2075. padding-top: 1rem;
  2076. padding-left: 1rem;
  2077. padding-right: 1rem;
  2078. width: 100%; }
  2079. button.left-align, .button.left-align {
  2080. text-align: left;
  2081. text-indent: 0.75rem; }
  2082. button.right-align, .button.right-align {
  2083. text-align: right;
  2084. padding-right: 0.75rem; }
  2085. button.radius, .button.radius {
  2086. border-radius: 3px; }
  2087. button.round, .button.round {
  2088. border-radius: 1000px; }
  2089. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  2090. background-color: #008CBA;
  2091. border-color: #007095;
  2092. color: #FFFFFF;
  2093. box-shadow: none;
  2094. cursor: default;
  2095. opacity: 0.7; }
  2096. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  2097. background-color: #007095; }
  2098. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  2099. color: #FFFFFF; }
  2100. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  2101. background-color: #008CBA; }
  2102. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  2103. background-color: #e7e7e7;
  2104. border-color: #b9b9b9;
  2105. color: #333333;
  2106. box-shadow: none;
  2107. cursor: default;
  2108. opacity: 0.7; }
  2109. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  2110. background-color: #b9b9b9; }
  2111. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  2112. color: #333333; }
  2113. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  2114. background-color: #e7e7e7; }
  2115. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  2116. background-color: #43AC6A;
  2117. border-color: #368a55;
  2118. color: #FFFFFF;
  2119. box-shadow: none;
  2120. cursor: default;
  2121. opacity: 0.7; }
  2122. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  2123. background-color: #368a55; }
  2124. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  2125. color: #FFFFFF; }
  2126. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  2127. background-color: #43AC6A; }
  2128. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  2129. background-color: #f04124;
  2130. border-color: #cf2a0e;
  2131. color: #FFFFFF;
  2132. box-shadow: none;
  2133. cursor: default;
  2134. opacity: 0.7; }
  2135. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  2136. background-color: #cf2a0e; }
  2137. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  2138. color: #FFFFFF; }
  2139. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  2140. background-color: #f04124; }
  2141. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  2142. background-color: #f08a24;
  2143. border-color: #cf6e0e;
  2144. color: #FFFFFF;
  2145. box-shadow: none;
  2146. cursor: default;
  2147. opacity: 0.7; }
  2148. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  2149. background-color: #cf6e0e; }
  2150. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  2151. color: #FFFFFF; }
  2152. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  2153. background-color: #f08a24; }
  2154. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  2155. background-color: #a0d3e8;
  2156. border-color: #61b6d9;
  2157. color: #333333;
  2158. box-shadow: none;
  2159. cursor: default;
  2160. opacity: 0.7; }
  2161. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  2162. background-color: #61b6d9; }
  2163. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  2164. color: #FFFFFF; }
  2165. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  2166. background-color: #a0d3e8; }
  2167. button::-moz-focus-inner {
  2168. border: 0;
  2169. padding: 0; }
  2170. @media only screen and (min-width: 40.0625em) {
  2171. button, .button {
  2172. display: inline-block; } }
  2173. .button-group {
  2174. list-style: none;
  2175. margin: 0;
  2176. left: 0; }
  2177. .button-group:before, .button-group:after {
  2178. content: " ";
  2179. display: table; }
  2180. .button-group:after {
  2181. clear: both; }
  2182. .button-group.even-2 li {
  2183. display: inline-block;
  2184. margin: 0 -2px;
  2185. width: 50%; }
  2186. .button-group.even-2 li > button, .button-group.even-2 li .button {
  2187. border-left: 1px solid;
  2188. border-color: rgba(255, 255, 255, 0.5); }
  2189. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  2190. border-left: 0; }
  2191. .button-group.even-2 li button, .button-group.even-2 li .button {
  2192. width: 100%; }
  2193. .button-group.even-3 li {
  2194. display: inline-block;
  2195. margin: 0 -2px;
  2196. width: 33.33333%; }
  2197. .button-group.even-3 li > button, .button-group.even-3 li .button {
  2198. border-left: 1px solid;
  2199. border-color: rgba(255, 255, 255, 0.5); }
  2200. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  2201. border-left: 0; }
  2202. .button-group.even-3 li button, .button-group.even-3 li .button {
  2203. width: 100%; }
  2204. .button-group.even-4 li {
  2205. display: inline-block;
  2206. margin: 0 -2px;
  2207. width: 25%; }
  2208. .button-group.even-4 li > button, .button-group.even-4 li .button {
  2209. border-left: 1px solid;
  2210. border-color: rgba(255, 255, 255, 0.5); }
  2211. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  2212. border-left: 0; }
  2213. .button-group.even-4 li button, .button-group.even-4 li .button {
  2214. width: 100%; }
  2215. .button-group.even-5 li {
  2216. display: inline-block;
  2217. margin: 0 -2px;
  2218. width: 20%; }
  2219. .button-group.even-5 li > button, .button-group.even-5 li .button {
  2220. border-left: 1px solid;
  2221. border-color: rgba(255, 255, 255, 0.5); }
  2222. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  2223. border-left: 0; }
  2224. .button-group.even-5 li button, .button-group.even-5 li .button {
  2225. width: 100%; }
  2226. .button-group.even-6 li {
  2227. display: inline-block;
  2228. margin: 0 -2px;
  2229. width: 16.66667%; }
  2230. .button-group.even-6 li > button, .button-group.even-6 li .button {
  2231. border-left: 1px solid;
  2232. border-color: rgba(255, 255, 255, 0.5); }
  2233. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  2234. border-left: 0; }
  2235. .button-group.even-6 li button, .button-group.even-6 li .button {
  2236. width: 100%; }
  2237. .button-group.even-7 li {
  2238. display: inline-block;
  2239. margin: 0 -2px;
  2240. width: 14.28571%; }
  2241. .button-group.even-7 li > button, .button-group.even-7 li .button {
  2242. border-left: 1px solid;
  2243. border-color: rgba(255, 255, 255, 0.5); }
  2244. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  2245. border-left: 0; }
  2246. .button-group.even-7 li button, .button-group.even-7 li .button {
  2247. width: 100%; }
  2248. .button-group.even-8 li {
  2249. display: inline-block;
  2250. margin: 0 -2px;
  2251. width: 12.5%; }
  2252. .button-group.even-8 li > button, .button-group.even-8 li .button {
  2253. border-left: 1px solid;
  2254. border-color: rgba(255, 255, 255, 0.5); }
  2255. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  2256. border-left: 0; }
  2257. .button-group.even-8 li button, .button-group.even-8 li .button {
  2258. width: 100%; }
  2259. .button-group > li {
  2260. display: inline-block;
  2261. margin: 0 -2px; }
  2262. .button-group > li > button, .button-group > li .button {
  2263. border-left: 1px solid;
  2264. border-color: rgba(255, 255, 255, 0.5); }
  2265. .button-group > li:first-child button, .button-group > li:first-child .button {
  2266. border-left: 0; }
  2267. .button-group.stack > li {
  2268. display: block;
  2269. margin: 0;
  2270. float: none; }
  2271. .button-group.stack > li > button, .button-group.stack > li .button {
  2272. border-left: 1px solid;
  2273. border-color: rgba(255, 255, 255, 0.5); }
  2274. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  2275. border-left: 0; }
  2276. .button-group.stack > li > button, .button-group.stack > li .button {
  2277. border-color: rgba(255, 255, 255, 0.5);
  2278. border-left-width: 0;
  2279. border-top: 1px solid;
  2280. display: block;
  2281. margin: 0; }
  2282. .button-group.stack > li > button {
  2283. width: 100%; }
  2284. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  2285. border-top: 0; }
  2286. .button-group.stack-for-small > li {
  2287. display: inline-block;
  2288. margin: 0 -2px; }
  2289. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  2290. border-left: 1px solid;
  2291. border-color: rgba(255, 255, 255, 0.5); }
  2292. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  2293. border-left: 0; }
  2294. @media only screen and (max-width: 40em) {
  2295. .button-group.stack-for-small > li {
  2296. display: block;
  2297. margin: 0;
  2298. width: 100%; }
  2299. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  2300. border-left: 1px solid;
  2301. border-color: rgba(255, 255, 255, 0.5); }
  2302. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  2303. border-left: 0; }
  2304. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  2305. border-color: rgba(255, 255, 255, 0.5);
  2306. border-left-width: 0;
  2307. border-top: 1px solid;
  2308. display: block;
  2309. margin: 0; }
  2310. .button-group.stack-for-small > li > button {
  2311. width: 100%; }
  2312. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  2313. border-top: 0; } }
  2314. .button-group.radius > * {
  2315. display: inline-block;
  2316. margin: 0 -2px; }
  2317. .button-group.radius > * > button, .button-group.radius > * .button {
  2318. border-left: 1px solid;
  2319. border-color: rgba(255, 255, 255, 0.5); }
  2320. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  2321. border-left: 0; }
  2322. .button-group.radius > *,
  2323. .button-group.radius > * > a,
  2324. .button-group.radius > * > button,
  2325. .button-group.radius > * > .button {
  2326. border-radius: 0; }
  2327. .button-group.radius > *:first-child,
  2328. .button-group.radius > *:first-child > a,
  2329. .button-group.radius > *:first-child > button,
  2330. .button-group.radius > *:first-child > .button {
  2331. -webkit-border-bottom-left-radius: 3px;
  2332. -webkit-border-top-left-radius: 3px;
  2333. border-bottom-left-radius: 3px;
  2334. border-top-left-radius: 3px; }
  2335. .button-group.radius > *:last-child,
  2336. .button-group.radius > *:last-child > a,
  2337. .button-group.radius > *:last-child > button,
  2338. .button-group.radius > *:last-child > .button {
  2339. -webkit-border-bottom-right-radius: 3px;
  2340. -webkit-border-top-right-radius: 3px;
  2341. border-bottom-right-radius: 3px;
  2342. border-top-right-radius: 3px; }
  2343. .button-group.radius.stack > * {
  2344. display: block;
  2345. margin: 0; }
  2346. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  2347. border-left: 1px solid;
  2348. border-color: rgba(255, 255, 255, 0.5); }
  2349. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  2350. border-left: 0; }
  2351. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  2352. border-color: rgba(255, 255, 255, 0.5);
  2353. border-left-width: 0;
  2354. border-top: 1px solid;
  2355. display: block;
  2356. margin: 0; }
  2357. .button-group.radius.stack > * > button {
  2358. width: 100%; }
  2359. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  2360. border-top: 0; }
  2361. .button-group.radius.stack > *,
  2362. .button-group.radius.stack > * > a,
  2363. .button-group.radius.stack > * > button,
  2364. .button-group.radius.stack > * > .button {
  2365. border-radius: 0; }
  2366. .button-group.radius.stack > *:first-child,
  2367. .button-group.radius.stack > *:first-child > a,
  2368. .button-group.radius.stack > *:first-child > button,
  2369. .button-group.radius.stack > *:first-child > .button {
  2370. -webkit-top-left-radius: 3px;
  2371. -webkit-top-right-radius: 3px;
  2372. border-top-left-radius: 3px;
  2373. border-top-right-radius: 3px; }
  2374. .button-group.radius.stack > *:last-child,
  2375. .button-group.radius.stack > *:last-child > a,
  2376. .button-group.radius.stack > *:last-child > button,
  2377. .button-group.radius.stack > *:last-child > .button {
  2378. -webkit-bottom-left-radius: 3px;
  2379. -webkit-bottom-right-radius: 3px;
  2380. border-bottom-left-radius: 3px;
  2381. border-bottom-right-radius: 3px; }
  2382. @media only screen and (min-width: 40.0625em) {
  2383. .button-group.radius.stack-for-small > * {
  2384. display: inline-block;
  2385. margin: 0 -2px; }
  2386. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  2387. border-left: 1px solid;
  2388. border-color: rgba(255, 255, 255, 0.5); }
  2389. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  2390. border-left: 0; }
  2391. .button-group.radius.stack-for-small > *,
  2392. .button-group.radius.stack-for-small > * > a,
  2393. .button-group.radius.stack-for-small > * > button,
  2394. .button-group.radius.stack-for-small > * > .button {
  2395. border-radius: 0; }
  2396. .button-group.radius.stack-for-small > *:first-child,
  2397. .button-group.radius.stack-for-small > *:first-child > a,
  2398. .button-group.radius.stack-for-small > *:first-child > button,
  2399. .button-group.radius.stack-for-small > *:first-child > .button {
  2400. -webkit-border-bottom-left-radius: 3px;
  2401. -webkit-border-top-left-radius: 3px;
  2402. border-bottom-left-radius: 3px;
  2403. border-top-left-radius: 3px; }
  2404. .button-group.radius.stack-for-small > *:last-child,
  2405. .button-group.radius.stack-for-small > *:last-child > a,
  2406. .button-group.radius.stack-for-small > *:last-child > button,
  2407. .button-group.radius.stack-for-small > *:last-child > .button {
  2408. -webkit-border-bottom-right-radius: 3px;
  2409. -webkit-border-top-right-radius: 3px;
  2410. border-bottom-right-radius: 3px;
  2411. border-top-right-radius: 3px; } }
  2412. @media only screen and (max-width: 40em) {
  2413. .button-group.radius.stack-for-small > * {
  2414. display: block;
  2415. margin: 0; }
  2416. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  2417. border-left: 1px solid;
  2418. border-color: rgba(255, 255, 255, 0.5); }
  2419. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  2420. border-left: 0; }
  2421. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  2422. border-color: rgba(255, 255, 255, 0.5);
  2423. border-left-width: 0;
  2424. border-top: 1px solid;
  2425. display: block;
  2426. margin: 0; }
  2427. .button-group.radius.stack-for-small > * > button {
  2428. width: 100%; }
  2429. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  2430. border-top: 0; }
  2431. .button-group.radius.stack-for-small > *,
  2432. .button-group.radius.stack-for-small > * > a,
  2433. .button-group.radius.stack-for-small > * > button,
  2434. .button-group.radius.stack-for-small > * > .button {
  2435. border-radius: 0; }
  2436. .button-group.radius.stack-for-small > *:first-child,
  2437. .button-group.radius.stack-for-small > *:first-child > a,
  2438. .button-group.radius.stack-for-small > *:first-child > button,
  2439. .button-group.radius.stack-for-small > *:first-child > .button {
  2440. -webkit-top-left-radius: 3px;
  2441. -webkit-top-right-radius: 3px;
  2442. border-top-left-radius: 3px;
  2443. border-top-right-radius: 3px; }
  2444. .button-group.radius.stack-for-small > *:last-child,
  2445. .button-group.radius.stack-for-small > *:last-child > a,
  2446. .button-group.radius.stack-for-small > *:last-child > button,
  2447. .button-group.radius.stack-for-small > *:last-child > .button {
  2448. -webkit-bottom-left-radius: 3px;
  2449. -webkit-bottom-right-radius: 3px;
  2450. border-bottom-left-radius: 3px;
  2451. border-bottom-right-radius: 3px; } }
  2452. .button-group.round > * {
  2453. display: inline-block;
  2454. margin: 0 -2px; }
  2455. .button-group.round > * > button, .button-group.round > * .button {
  2456. border-left: 1px solid;
  2457. border-color: rgba(255, 255, 255, 0.5); }
  2458. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  2459. border-left: 0; }
  2460. .button-group.round > *,
  2461. .button-group.round > * > a,
  2462. .button-group.round > * > button,
  2463. .button-group.round > * > .button {
  2464. border-radius: 0; }
  2465. .button-group.round > *:first-child,
  2466. .button-group.round > *:first-child > a,
  2467. .button-group.round > *:first-child > button,
  2468. .button-group.round > *:first-child > .button {
  2469. -webkit-border-bottom-left-radius: 1000px;
  2470. -webkit-border-top-left-radius: 1000px;
  2471. border-bottom-left-radius: 1000px;
  2472. border-top-left-radius: 1000px; }
  2473. .button-group.round > *:last-child,
  2474. .button-group.round > *:last-child > a,
  2475. .button-group.round > *:last-child > button,
  2476. .button-group.round > *:last-child > .button {
  2477. -webkit-border-bottom-right-radius: 1000px;
  2478. -webkit-border-top-right-radius: 1000px;
  2479. border-bottom-right-radius: 1000px;
  2480. border-top-right-radius: 1000px; }
  2481. .button-group.round.stack > * {
  2482. display: block;
  2483. margin: 0; }
  2484. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  2485. border-left: 1px solid;
  2486. border-color: rgba(255, 255, 255, 0.5); }
  2487. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  2488. border-left: 0; }
  2489. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  2490. border-color: rgba(255, 255, 255, 0.5);
  2491. border-left-width: 0;
  2492. border-top: 1px solid;
  2493. display: block;
  2494. margin: 0; }
  2495. .button-group.round.stack > * > button {
  2496. width: 100%; }
  2497. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  2498. border-top: 0; }
  2499. .button-group.round.stack > *,
  2500. .button-group.round.stack > * > a,
  2501. .button-group.round.stack > * > button,
  2502. .button-group.round.stack > * > .button {
  2503. border-radius: 0; }
  2504. .button-group.round.stack > *:first-child,
  2505. .button-group.round.stack > *:first-child > a,
  2506. .button-group.round.stack > *:first-child > button,
  2507. .button-group.round.stack > *:first-child > .button {
  2508. -webkit-top-left-radius: 1rem;
  2509. -webkit-top-right-radius: 1rem;
  2510. border-top-left-radius: 1rem;
  2511. border-top-right-radius: 1rem; }
  2512. .button-group.round.stack > *:last-child,
  2513. .button-group.round.stack > *:last-child > a,
  2514. .button-group.round.stack > *:last-child > button,
  2515. .button-group.round.stack > *:last-child > .button {
  2516. -webkit-bottom-left-radius: 1rem;
  2517. -webkit-bottom-right-radius: 1rem;
  2518. border-bottom-left-radius: 1rem;
  2519. border-bottom-right-radius: 1rem; }
  2520. @media only screen and (min-width: 40.0625em) {
  2521. .button-group.round.stack-for-small > * {
  2522. display: inline-block;
  2523. margin: 0 -2px; }
  2524. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2525. border-left: 1px solid;
  2526. border-color: rgba(255, 255, 255, 0.5); }
  2527. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2528. border-left: 0; }
  2529. .button-group.round.stack-for-small > *,
  2530. .button-group.round.stack-for-small > * > a,
  2531. .button-group.round.stack-for-small > * > button,
  2532. .button-group.round.stack-for-small > * > .button {
  2533. border-radius: 0; }
  2534. .button-group.round.stack-for-small > *:first-child,
  2535. .button-group.round.stack-for-small > *:first-child > a,
  2536. .button-group.round.stack-for-small > *:first-child > button,
  2537. .button-group.round.stack-for-small > *:first-child > .button {
  2538. -webkit-border-bottom-left-radius: 1000px;
  2539. -webkit-border-top-left-radius: 1000px;
  2540. border-bottom-left-radius: 1000px;
  2541. border-top-left-radius: 1000px; }
  2542. .button-group.round.stack-for-small > *:last-child,
  2543. .button-group.round.stack-for-small > *:last-child > a,
  2544. .button-group.round.stack-for-small > *:last-child > button,
  2545. .button-group.round.stack-for-small > *:last-child > .button {
  2546. -webkit-border-bottom-right-radius: 1000px;
  2547. -webkit-border-top-right-radius: 1000px;
  2548. border-bottom-right-radius: 1000px;
  2549. border-top-right-radius: 1000px; } }
  2550. @media only screen and (max-width: 40em) {
  2551. .button-group.round.stack-for-small > * {
  2552. display: block;
  2553. margin: 0; }
  2554. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2555. border-left: 1px solid;
  2556. border-color: rgba(255, 255, 255, 0.5); }
  2557. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2558. border-left: 0; }
  2559. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2560. border-color: rgba(255, 255, 255, 0.5);
  2561. border-left-width: 0;
  2562. border-top: 1px solid;
  2563. display: block;
  2564. margin: 0; }
  2565. .button-group.round.stack-for-small > * > button {
  2566. width: 100%; }
  2567. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2568. border-top: 0; }
  2569. .button-group.round.stack-for-small > *,
  2570. .button-group.round.stack-for-small > * > a,
  2571. .button-group.round.stack-for-small > * > button,
  2572. .button-group.round.stack-for-small > * > .button {
  2573. border-radius: 0; }
  2574. .button-group.round.stack-for-small > *:first-child,
  2575. .button-group.round.stack-for-small > *:first-child > a,
  2576. .button-group.round.stack-for-small > *:first-child > button,
  2577. .button-group.round.stack-for-small > *:first-child > .button {
  2578. -webkit-top-left-radius: 1rem;
  2579. -webkit-top-right-radius: 1rem;
  2580. border-top-left-radius: 1rem;
  2581. border-top-right-radius: 1rem; }
  2582. .button-group.round.stack-for-small > *:last-child,
  2583. .button-group.round.stack-for-small > *:last-child > a,
  2584. .button-group.round.stack-for-small > *:last-child > button,
  2585. .button-group.round.stack-for-small > *:last-child > .button {
  2586. -webkit-bottom-left-radius: 1rem;
  2587. -webkit-bottom-right-radius: 1rem;
  2588. border-bottom-left-radius: 1rem;
  2589. border-bottom-right-radius: 1rem; } }
  2590. .button-bar:before, .button-bar:after {
  2591. content: " ";
  2592. display: table; }
  2593. .button-bar:after {
  2594. clear: both; }
  2595. .button-bar .button-group {
  2596. float: left;
  2597. margin-right: 0.625rem; }
  2598. .button-bar .button-group div {
  2599. overflow: hidden; }
  2600. /* Clearing Styles */
  2601. .clearing-thumbs, [data-clearing] {
  2602. list-style: none;
  2603. margin-left: 0;
  2604. margin-bottom: 0; }
  2605. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  2606. content: " ";
  2607. display: table; }
  2608. .clearing-thumbs:after, [data-clearing]:after {
  2609. clear: both; }
  2610. .clearing-thumbs li, [data-clearing] li {
  2611. float: left;
  2612. margin-right: 10px; }
  2613. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  2614. margin-right: 0; }
  2615. .clearing-blackout {
  2616. background: #333333;
  2617. height: 100%;
  2618. position: fixed;
  2619. top: 0;
  2620. width: 100%;
  2621. z-index: 998;
  2622. left: 0; }
  2623. .clearing-blackout .clearing-close {
  2624. display: block; }
  2625. .clearing-container {
  2626. height: 100%;
  2627. margin: 0;
  2628. overflow: hidden;
  2629. position: relative;
  2630. z-index: 998; }
  2631. .clearing-touch-label {
  2632. color: #AAAAAA;
  2633. font-size: .6em;
  2634. left: 50%;
  2635. position: absolute;
  2636. top: 50%; }
  2637. .visible-img {
  2638. height: 95%;
  2639. position: relative; }
  2640. .visible-img img {
  2641. position: absolute;
  2642. left: 50%;
  2643. top: 50%;
  2644. -webkit-transform: translateY(-50%) translateX(-50%);
  2645. -moz-transform: translateY(-50%) translateX(-50%);
  2646. -ms-transform: translateY(-50%) translateX(-50%);
  2647. -o-transform: translateY(-50%) translateX(-50%);
  2648. transform: translateY(-50%) translateX(-50%);
  2649. max-height: 100%;
  2650. max-width: 100%; }
  2651. .clearing-caption {
  2652. background: #333333;
  2653. bottom: 0;
  2654. color: #CCCCCC;
  2655. font-size: 0.875em;
  2656. line-height: 1.3;
  2657. margin-bottom: 0;
  2658. padding: 10px 30px 20px;
  2659. position: absolute;
  2660. text-align: center;
  2661. width: 100%;
  2662. left: 0; }
  2663. .clearing-close {
  2664. color: #CCCCCC;
  2665. display: none;
  2666. font-size: 30px;
  2667. line-height: 1;
  2668. padding-left: 20px;
  2669. padding-top: 10px;
  2670. z-index: 999; }
  2671. .clearing-close:hover, .clearing-close:focus {
  2672. color: #CCCCCC; }
  2673. .clearing-assembled .clearing-container {
  2674. height: 100%; }
  2675. .clearing-assembled .clearing-container .carousel > ul {
  2676. display: none; }
  2677. .clearing-feature li {
  2678. display: none; }
  2679. .clearing-feature li.clearing-featured-img {
  2680. display: block; }
  2681. @media only screen and (min-width: 40.0625em) {
  2682. .clearing-main-prev,
  2683. .clearing-main-next {
  2684. height: 100%;
  2685. position: absolute;
  2686. top: 0;
  2687. width: 40px; }
  2688. .clearing-main-prev > span,
  2689. .clearing-main-next > span {
  2690. border: solid 12px;
  2691. display: block;
  2692. height: 0;
  2693. position: absolute;
  2694. top: 50%;
  2695. width: 0; }
  2696. .clearing-main-prev > span:hover,
  2697. .clearing-main-next > span:hover {
  2698. opacity: .8; }
  2699. .clearing-main-prev {
  2700. left: 0; }
  2701. .clearing-main-prev > span {
  2702. left: 5px;
  2703. border-color: transparent;
  2704. border-right-color: #CCCCCC; }
  2705. .clearing-main-next {
  2706. right: 0; }
  2707. .clearing-main-next > span {
  2708. border-color: transparent;
  2709. border-left-color: #CCCCCC; }
  2710. .clearing-main-prev.disabled,
  2711. .clearing-main-next.disabled {
  2712. opacity: .3; }
  2713. .clearing-assembled .clearing-container .carousel {
  2714. background: rgba(51, 51, 51, 0.8);
  2715. height: 120px;
  2716. margin-top: 10px;
  2717. text-align: center; }
  2718. .clearing-assembled .clearing-container .carousel > ul {
  2719. display: inline-block;
  2720. z-index: 999;
  2721. height: 100%;
  2722. position: relative;
  2723. float: none; }
  2724. .clearing-assembled .clearing-container .carousel > ul li {
  2725. clear: none;
  2726. cursor: pointer;
  2727. display: block;
  2728. float: left;
  2729. margin-right: 0;
  2730. min-height: inherit;
  2731. opacity: .4;
  2732. overflow: hidden;
  2733. padding: 0;
  2734. position: relative;
  2735. width: 120px; }
  2736. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  2737. height: 100%;
  2738. max-width: none; }
  2739. .clearing-assembled .clearing-container .carousel > ul li a.th {
  2740. border: none;
  2741. box-shadow: none;
  2742. display: block; }
  2743. .clearing-assembled .clearing-container .carousel > ul li img {
  2744. cursor: pointer !important;
  2745. width: 100% !important; }
  2746. .clearing-assembled .clearing-container .carousel > ul li.visible {
  2747. opacity: 1; }
  2748. .clearing-assembled .clearing-container .carousel > ul li:hover {
  2749. opacity: .8; }
  2750. .clearing-assembled .clearing-container .visible-img {
  2751. background: #333333;
  2752. height: 85%;
  2753. overflow: hidden; }
  2754. .clearing-close {
  2755. padding-left: 0;
  2756. padding-top: 0;
  2757. position: absolute;
  2758. top: 10px;
  2759. right: 20px; } }
  2760. /* Foundation Dropdowns */
  2761. .f-dropdown {
  2762. display: none;
  2763. left: -9999px;
  2764. list-style: none;
  2765. margin-left: 0;
  2766. position: absolute;
  2767. background: #FFFFFF;
  2768. border: solid 1px #cccccc;
  2769. font-size: 0.875rem;
  2770. height: auto;
  2771. max-height: none;
  2772. width: 100%;
  2773. z-index: 89;
  2774. margin-top: 2px;
  2775. max-width: 200px; }
  2776. .f-dropdown.open {
  2777. display: block; }
  2778. .f-dropdown > *:first-child {
  2779. margin-top: 0; }
  2780. .f-dropdown > *:last-child {
  2781. margin-bottom: 0; }
  2782. .f-dropdown:before {
  2783. border: inset 6px;
  2784. content: "";
  2785. display: block;
  2786. height: 0;
  2787. width: 0;
  2788. border-color: transparent transparent #FFFFFF transparent;
  2789. border-bottom-style: solid;
  2790. position: absolute;
  2791. top: -12px;
  2792. left: 10px;
  2793. z-index: 89; }
  2794. .f-dropdown:after {
  2795. border: inset 7px;
  2796. content: "";
  2797. display: block;
  2798. height: 0;
  2799. width: 0;
  2800. border-color: transparent transparent #cccccc transparent;
  2801. border-bottom-style: solid;
  2802. position: absolute;
  2803. top: -14px;
  2804. left: 9px;
  2805. z-index: 88; }
  2806. .f-dropdown.right:before {
  2807. left: auto;
  2808. right: 10px; }
  2809. .f-dropdown.right:after {
  2810. left: auto;
  2811. right: 9px; }
  2812. .f-dropdown.drop-right {
  2813. display: none;
  2814. left: -9999px;
  2815. list-style: none;
  2816. margin-left: 0;
  2817. position: absolute;
  2818. background: #FFFFFF;
  2819. border: solid 1px #cccccc;
  2820. font-size: 0.875rem;
  2821. height: auto;
  2822. max-height: none;
  2823. width: 100%;
  2824. z-index: 89;
  2825. margin-top: 0;
  2826. margin-left: 2px;
  2827. max-width: 200px; }
  2828. .f-dropdown.drop-right.open {
  2829. display: block; }
  2830. .f-dropdown.drop-right > *:first-child {
  2831. margin-top: 0; }
  2832. .f-dropdown.drop-right > *:last-child {
  2833. margin-bottom: 0; }
  2834. .f-dropdown.drop-right:before {
  2835. border: inset 6px;
  2836. content: "";
  2837. display: block;
  2838. height: 0;
  2839. width: 0;
  2840. border-color: transparent #FFFFFF transparent transparent;
  2841. border-right-style: solid;
  2842. position: absolute;
  2843. top: 10px;
  2844. left: -12px;
  2845. z-index: 89; }
  2846. .f-dropdown.drop-right:after {
  2847. border: inset 7px;
  2848. content: "";
  2849. display: block;
  2850. height: 0;
  2851. width: 0;
  2852. border-color: transparent #cccccc transparent transparent;
  2853. border-right-style: solid;
  2854. position: absolute;
  2855. top: 9px;
  2856. left: -14px;
  2857. z-index: 88; }
  2858. .f-dropdown.drop-left {
  2859. display: none;
  2860. left: -9999px;
  2861. list-style: none;
  2862. margin-left: 0;
  2863. position: absolute;
  2864. background: #FFFFFF;
  2865. border: solid 1px #cccccc;
  2866. font-size: 0.875rem;
  2867. height: auto;
  2868. max-height: none;
  2869. width: 100%;
  2870. z-index: 89;
  2871. margin-top: 0;
  2872. margin-left: -2px;
  2873. max-width: 200px; }
  2874. .f-dropdown.drop-left.open {
  2875. display: block; }
  2876. .f-dropdown.drop-left > *:first-child {
  2877. margin-top: 0; }
  2878. .f-dropdown.drop-left > *:last-child {
  2879. margin-bottom: 0; }
  2880. .f-dropdown.drop-left:before {
  2881. border: inset 6px;
  2882. content: "";
  2883. display: block;
  2884. height: 0;
  2885. width: 0;
  2886. border-color: transparent transparent transparent #FFFFFF;
  2887. border-left-style: solid;
  2888. position: absolute;
  2889. top: 10px;
  2890. right: -12px;
  2891. left: auto;
  2892. z-index: 89; }
  2893. .f-dropdown.drop-left:after {
  2894. border: inset 7px;
  2895. content: "";
  2896. display: block;
  2897. height: 0;
  2898. width: 0;
  2899. border-color: transparent transparent transparent #cccccc;
  2900. border-left-style: solid;
  2901. position: absolute;
  2902. top: 9px;
  2903. right: -14px;
  2904. left: auto;
  2905. z-index: 88; }
  2906. .f-dropdown.drop-top {
  2907. display: none;
  2908. left: -9999px;
  2909. list-style: none;
  2910. margin-left: 0;
  2911. position: absolute;
  2912. background: #FFFFFF;
  2913. border: solid 1px #cccccc;
  2914. font-size: 0.875rem;
  2915. height: auto;
  2916. max-height: none;
  2917. width: 100%;
  2918. z-index: 89;
  2919. margin-left: 0;
  2920. margin-top: -2px;
  2921. max-width: 200px; }
  2922. .f-dropdown.drop-top.open {
  2923. display: block; }
  2924. .f-dropdown.drop-top > *:first-child {
  2925. margin-top: 0; }
  2926. .f-dropdown.drop-top > *:last-child {
  2927. margin-bottom: 0; }
  2928. .f-dropdown.drop-top:before {
  2929. border: inset 6px;
  2930. content: "";
  2931. display: block;
  2932. height: 0;
  2933. width: 0;
  2934. border-color: #FFFFFF transparent transparent transparent;
  2935. border-top-style: solid;
  2936. bottom: -12px;
  2937. position: absolute;
  2938. top: auto;
  2939. left: 10px;
  2940. right: auto;
  2941. z-index: 89; }
  2942. .f-dropdown.drop-top:after {
  2943. border: inset 7px;
  2944. content: "";
  2945. display: block;
  2946. height: 0;
  2947. width: 0;
  2948. border-color: #cccccc transparent transparent transparent;
  2949. border-top-style: solid;
  2950. bottom: -14px;
  2951. position: absolute;
  2952. top: auto;
  2953. left: 9px;
  2954. right: auto;
  2955. z-index: 88; }
  2956. .f-dropdown li {
  2957. cursor: pointer;
  2958. font-size: 0.875rem;
  2959. line-height: 1.125rem;
  2960. margin: 0; }
  2961. .f-dropdown li:hover, .f-dropdown li:focus {
  2962. background: #EEEEEE; }
  2963. .f-dropdown li a {
  2964. display: block;
  2965. padding: 0.5rem;
  2966. color: #555555; }
  2967. .f-dropdown.content {
  2968. display: none;
  2969. left: -9999px;
  2970. list-style: none;
  2971. margin-left: 0;
  2972. position: absolute;
  2973. background: #FFFFFF;
  2974. border: solid 1px #cccccc;
  2975. font-size: 0.875rem;
  2976. height: auto;
  2977. max-height: none;
  2978. padding: 1.25rem;
  2979. width: 100%;
  2980. z-index: 89;
  2981. max-width: 200px; }
  2982. .f-dropdown.content.open {
  2983. display: block; }
  2984. .f-dropdown.content > *:first-child {
  2985. margin-top: 0; }
  2986. .f-dropdown.content > *:last-child {
  2987. margin-bottom: 0; }
  2988. .f-dropdown.radius {
  2989. border-radius: 3px; }
  2990. .f-dropdown.tiny {
  2991. max-width: 200px; }
  2992. .f-dropdown.small {
  2993. max-width: 300px; }
  2994. .f-dropdown.medium {
  2995. max-width: 500px; }
  2996. .f-dropdown.large {
  2997. max-width: 800px; }
  2998. .f-dropdown.mega {
  2999. width: 100% !important;
  3000. max-width: 100% !important; }
  3001. .f-dropdown.mega.open {
  3002. left: 0 !important; }
  3003. .dropdown.button, button.dropdown {
  3004. position: relative;
  3005. padding-right: 3.5625rem; }
  3006. .dropdown.button::after, button.dropdown::after {
  3007. border-color: #FFFFFF transparent transparent transparent;
  3008. border-style: solid;
  3009. content: "";
  3010. display: block;
  3011. height: 0;
  3012. position: absolute;
  3013. top: 50%;
  3014. width: 0; }
  3015. .dropdown.button::after, button.dropdown::after {
  3016. border-width: 0.375rem;
  3017. right: 1.40625rem;
  3018. margin-top: -0.15625rem; }
  3019. .dropdown.button::after, button.dropdown::after {
  3020. border-color: #FFFFFF transparent transparent transparent; }
  3021. .dropdown.button.tiny, button.dropdown.tiny {
  3022. padding-right: 2.625rem; }
  3023. .dropdown.button.tiny:after, button.dropdown.tiny:after {
  3024. border-width: 0.375rem;
  3025. right: 1.125rem;
  3026. margin-top: -0.125rem; }
  3027. .dropdown.button.tiny::after, button.dropdown.tiny::after {
  3028. border-color: #FFFFFF transparent transparent transparent; }
  3029. .dropdown.button.small, button.dropdown.small {
  3030. padding-right: 3.0625rem; }
  3031. .dropdown.button.small::after, button.dropdown.small::after {
  3032. border-width: 0.4375rem;
  3033. right: 1.3125rem;
  3034. margin-top: -0.15625rem; }
  3035. .dropdown.button.small::after, button.dropdown.small::after {
  3036. border-color: #FFFFFF transparent transparent transparent; }
  3037. .dropdown.button.large, button.dropdown.large {
  3038. padding-right: 3.625rem; }
  3039. .dropdown.button.large::after, button.dropdown.large::after {
  3040. border-width: 0.3125rem;
  3041. right: 1.71875rem;
  3042. margin-top: -0.15625rem; }
  3043. .dropdown.button.large::after, button.dropdown.large::after {
  3044. border-color: #FFFFFF transparent transparent transparent; }
  3045. .dropdown.button.secondary:after, button.dropdown.secondary:after {
  3046. border-color: #333333 transparent transparent transparent; }
  3047. .flex-video {
  3048. height: 0;
  3049. margin-bottom: 1rem;
  3050. overflow: hidden;
  3051. padding-bottom: 67.5%;
  3052. padding-top: 1.5625rem;
  3053. position: relative; }
  3054. .flex-video.widescreen {
  3055. padding-bottom: 56.34%; }
  3056. .flex-video.vimeo {
  3057. padding-top: 0; }
  3058. .flex-video iframe,
  3059. .flex-video object,
  3060. .flex-video embed,
  3061. .flex-video video {
  3062. height: 100%;
  3063. position: absolute;
  3064. top: 0;
  3065. width: 100%;
  3066. left: 0; }
  3067. /* Standard Forms */
  3068. form {
  3069. margin: 0 0 1rem; }
  3070. /* Using forms within rows, we need to set some defaults */
  3071. form .row .row {
  3072. margin: 0 -0.5rem; }
  3073. form .row .row .column,
  3074. form .row .row .columns {
  3075. padding: 0 0.5rem; }
  3076. form .row .row.collapse {
  3077. margin: 0; }
  3078. form .row .row.collapse .column,
  3079. form .row .row.collapse .columns {
  3080. padding: 0; }
  3081. form .row .row.collapse input {
  3082. -webkit-border-bottom-right-radius: 0;
  3083. -webkit-border-top-right-radius: 0;
  3084. border-bottom-right-radius: 0;
  3085. border-top-right-radius: 0; }
  3086. form .row input.column,
  3087. form .row input.columns,
  3088. form .row textarea.column,
  3089. form .row textarea.columns {
  3090. padding-left: 0.5rem; }
  3091. /* Label Styles */
  3092. label {
  3093. color: #4d4d4d;
  3094. cursor: pointer;
  3095. display: block;
  3096. font-size: 0.875rem;
  3097. font-weight: normal;
  3098. line-height: 1.5;
  3099. margin-bottom: 0;
  3100. /* Styles for required inputs */ }
  3101. label.right {
  3102. float: none !important;
  3103. text-align: right; }
  3104. label.inline {
  3105. margin: 0 0 1rem 0;
  3106. padding: 0.5625rem 0; }
  3107. label small {
  3108. text-transform: capitalize;
  3109. color: #676767; }
  3110. /* Attach elements to the beginning or end of an input */
  3111. .prefix,
  3112. .postfix {
  3113. border-style: solid;
  3114. border-width: 1px;
  3115. display: block;
  3116. font-size: 0.875rem;
  3117. height: 2.3125rem;
  3118. line-height: 2.3125rem;
  3119. overflow: visible;
  3120. padding-bottom: 0;
  3121. padding-top: 0;
  3122. position: relative;
  3123. text-align: center;
  3124. width: 100%;
  3125. z-index: 2; }
  3126. /* Adjust padding, alignment and radius if pre/post element is a button */
  3127. .postfix.button {
  3128. border: none;
  3129. padding-left: 0;
  3130. padding-right: 0;
  3131. padding-bottom: 0;
  3132. padding-top: 0;
  3133. text-align: center; }
  3134. .prefix.button {
  3135. border: none;
  3136. padding-left: 0;
  3137. padding-right: 0;
  3138. padding-bottom: 0;
  3139. padding-top: 0;
  3140. text-align: center; }
  3141. .prefix.button.radius {
  3142. border-radius: 0;
  3143. -webkit-border-bottom-left-radius: 3px;
  3144. -webkit-border-top-left-radius: 3px;
  3145. border-bottom-left-radius: 3px;
  3146. border-top-left-radius: 3px; }
  3147. .postfix.button.radius {
  3148. border-radius: 0;
  3149. -webkit-border-bottom-right-radius: 3px;
  3150. -webkit-border-top-right-radius: 3px;
  3151. border-bottom-right-radius: 3px;
  3152. border-top-right-radius: 3px; }
  3153. .prefix.button.round {
  3154. border-radius: 0;
  3155. -webkit-border-bottom-left-radius: 1000px;
  3156. -webkit-border-top-left-radius: 1000px;
  3157. border-bottom-left-radius: 1000px;
  3158. border-top-left-radius: 1000px; }
  3159. .postfix.button.round {
  3160. border-radius: 0;
  3161. -webkit-border-bottom-right-radius: 1000px;
  3162. -webkit-border-top-right-radius: 1000px;
  3163. border-bottom-right-radius: 1000px;
  3164. border-top-right-radius: 1000px; }
  3165. /* Separate prefix and postfix styles when on span or label so buttons keep their own */
  3166. span.prefix, label.prefix {
  3167. background: #f2f2f2;
  3168. border-right: none;
  3169. color: #333333;
  3170. border-color: #cccccc; }
  3171. span.postfix, label.postfix {
  3172. background: #f2f2f2;
  3173. border-left: none;
  3174. color: #333333;
  3175. border-color: #cccccc; }
  3176. /* We use this to get basic styling on all basic form elements */
  3177. input:not([type]), input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea {
  3178. -webkit-appearance: none;
  3179. -moz-appearance: none;
  3180. border-radius: 0;
  3181. background-color: #FFFFFF;
  3182. border-style: solid;
  3183. border-width: 1px;
  3184. border-color: #cccccc;
  3185. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3186. color: rgba(0, 0, 0, 0.75);
  3187. display: block;
  3188. font-family: inherit;
  3189. font-size: 0.875rem;
  3190. height: 2.3125rem;
  3191. margin: 0 0 1rem 0;
  3192. padding: 0.5rem;
  3193. width: 100%;
  3194. -webkit-box-sizing: border-box;
  3195. -moz-box-sizing: border-box;
  3196. box-sizing: border-box;
  3197. -webkit-transition: border-color 0.15s linear, background 0.15s linear;
  3198. -moz-transition: border-color 0.15s linear, background 0.15s linear;
  3199. -ms-transition: border-color 0.15s linear, background 0.15s linear;
  3200. -o-transition: border-color 0.15s linear, background 0.15s linear;
  3201. transition: border-color 0.15s linear, background 0.15s linear; }
  3202. input:not([type]):focus, input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="color"]:focus, textarea:focus {
  3203. background: #fafafa;
  3204. border-color: #999999;
  3205. outline: none; }
  3206. input:not([type]):disabled, input[type="text"]:disabled, input[type="password"]:disabled, input[type="date"]:disabled, input[type="datetime"]:disabled, input[type="datetime-local"]:disabled, input[type="month"]:disabled, input[type="week"]:disabled, input[type="email"]:disabled, input[type="number"]:disabled, input[type="search"]:disabled, input[type="tel"]:disabled, input[type="time"]:disabled, input[type="url"]:disabled, input[type="color"]:disabled, textarea:disabled {
  3207. background-color: #DDDDDD;
  3208. cursor: default; }
  3209. input:not([type])[disabled], input:not([type])[readonly],
  3210. fieldset[disabled] input:not([type]), input[type="text"][disabled], input[type="text"][readonly],
  3211. fieldset[disabled] input[type="text"], input[type="password"][disabled], input[type="password"][readonly],
  3212. fieldset[disabled] input[type="password"], input[type="date"][disabled], input[type="date"][readonly],
  3213. fieldset[disabled] input[type="date"], input[type="datetime"][disabled], input[type="datetime"][readonly],
  3214. fieldset[disabled] input[type="datetime"], input[type="datetime-local"][disabled], input[type="datetime-local"][readonly],
  3215. fieldset[disabled] input[type="datetime-local"], input[type="month"][disabled], input[type="month"][readonly],
  3216. fieldset[disabled] input[type="month"], input[type="week"][disabled], input[type="week"][readonly],
  3217. fieldset[disabled] input[type="week"], input[type="email"][disabled], input[type="email"][readonly],
  3218. fieldset[disabled] input[type="email"], input[type="number"][disabled], input[type="number"][readonly],
  3219. fieldset[disabled] input[type="number"], input[type="search"][disabled], input[type="search"][readonly],
  3220. fieldset[disabled] input[type="search"], input[type="tel"][disabled], input[type="tel"][readonly],
  3221. fieldset[disabled] input[type="tel"], input[type="time"][disabled], input[type="time"][readonly],
  3222. fieldset[disabled] input[type="time"], input[type="url"][disabled], input[type="url"][readonly],
  3223. fieldset[disabled] input[type="url"], input[type="color"][disabled], input[type="color"][readonly],
  3224. fieldset[disabled] input[type="color"], textarea[disabled], textarea[readonly],
  3225. fieldset[disabled] textarea {
  3226. background-color: #DDDDDD;
  3227. cursor: default; }
  3228. input:not([type]).radius, input[type="text"].radius, input[type="password"].radius, input[type="date"].radius, input[type="datetime"].radius, input[type="datetime-local"].radius, input[type="month"].radius, input[type="week"].radius, input[type="email"].radius, input[type="number"].radius, input[type="search"].radius, input[type="tel"].radius, input[type="time"].radius, input[type="url"].radius, input[type="color"].radius, textarea.radius {
  3229. border-radius: 3px; }
  3230. form .row .prefix-radius.row.collapse input,
  3231. form .row .prefix-radius.row.collapse textarea,
  3232. form .row .prefix-radius.row.collapse select,
  3233. form .row .prefix-radius.row.collapse button {
  3234. border-radius: 0;
  3235. -webkit-border-bottom-right-radius: 3px;
  3236. -webkit-border-top-right-radius: 3px;
  3237. border-bottom-right-radius: 3px;
  3238. border-top-right-radius: 3px; }
  3239. form .row .prefix-radius.row.collapse .prefix {
  3240. border-radius: 0;
  3241. -webkit-border-bottom-left-radius: 3px;
  3242. -webkit-border-top-left-radius: 3px;
  3243. border-bottom-left-radius: 3px;
  3244. border-top-left-radius: 3px; }
  3245. form .row .postfix-radius.row.collapse input,
  3246. form .row .postfix-radius.row.collapse textarea,
  3247. form .row .postfix-radius.row.collapse select,
  3248. form .row .postfix-radius.row.collapse button {
  3249. border-radius: 0;
  3250. -webkit-border-bottom-left-radius: 3px;
  3251. -webkit-border-top-left-radius: 3px;
  3252. border-bottom-left-radius: 3px;
  3253. border-top-left-radius: 3px; }
  3254. form .row .postfix-radius.row.collapse .postfix {
  3255. border-radius: 0;
  3256. -webkit-border-bottom-right-radius: 3px;
  3257. -webkit-border-top-right-radius: 3px;
  3258. border-bottom-right-radius: 3px;
  3259. border-top-right-radius: 3px; }
  3260. form .row .prefix-round.row.collapse input,
  3261. form .row .prefix-round.row.collapse textarea,
  3262. form .row .prefix-round.row.collapse select,
  3263. form .row .prefix-round.row.collapse button {
  3264. border-radius: 0;
  3265. -webkit-border-bottom-right-radius: 1000px;
  3266. -webkit-border-top-right-radius: 1000px;
  3267. border-bottom-right-radius: 1000px;
  3268. border-top-right-radius: 1000px; }
  3269. form .row .prefix-round.row.collapse .prefix {
  3270. border-radius: 0;
  3271. -webkit-border-bottom-left-radius: 1000px;
  3272. -webkit-border-top-left-radius: 1000px;
  3273. border-bottom-left-radius: 1000px;
  3274. border-top-left-radius: 1000px; }
  3275. form .row .postfix-round.row.collapse input,
  3276. form .row .postfix-round.row.collapse textarea,
  3277. form .row .postfix-round.row.collapse select,
  3278. form .row .postfix-round.row.collapse button {
  3279. border-radius: 0;
  3280. -webkit-border-bottom-left-radius: 1000px;
  3281. -webkit-border-top-left-radius: 1000px;
  3282. border-bottom-left-radius: 1000px;
  3283. border-top-left-radius: 1000px; }
  3284. form .row .postfix-round.row.collapse .postfix {
  3285. border-radius: 0;
  3286. -webkit-border-bottom-right-radius: 1000px;
  3287. -webkit-border-top-right-radius: 1000px;
  3288. border-bottom-right-radius: 1000px;
  3289. border-top-right-radius: 1000px; }
  3290. input[type="submit"] {
  3291. -webkit-appearance: none;
  3292. -moz-appearance: none;
  3293. border-radius: 0; }
  3294. /* Respect enforced amount of rows for textarea */
  3295. textarea[rows] {
  3296. height: auto; }
  3297. /* Not allow resize out of parent */
  3298. textarea {
  3299. max-width: 100%; }
  3300. ::-webkit-input-placeholder {
  3301. color: #666666; }
  3302. :-moz-placeholder {
  3303. /* Firefox 18- */
  3304. color: #666666; }
  3305. ::-moz-placeholder {
  3306. /* Firefox 19+ */
  3307. color: #666666; }
  3308. :-ms-input-placeholder {
  3309. color: #666666; }
  3310. /* Add height value for select elements to match text input height */
  3311. select {
  3312. -webkit-appearance: none !important;
  3313. -moz-appearance: none !important;
  3314. background-color: #FAFAFA;
  3315. border-radius: 0;
  3316. background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
  3317. background-position: 100% center;
  3318. background-repeat: no-repeat;
  3319. border-style: solid;
  3320. border-width: 1px;
  3321. border-color: #cccccc;
  3322. color: rgba(0, 0, 0, 0.75);
  3323. font-family: inherit;
  3324. font-size: 0.875rem;
  3325. line-height: normal;
  3326. padding: 0.5rem;
  3327. border-radius: 0;
  3328. height: 2.3125rem; }
  3329. select::-ms-expand {
  3330. display: none; }
  3331. select.radius {
  3332. border-radius: 3px; }
  3333. select:focus {
  3334. background-color: #f3f3f3;
  3335. border-color: #999999; }
  3336. select:disabled {
  3337. background-color: #DDDDDD;
  3338. cursor: default; }
  3339. select[multiple] {
  3340. height: auto; }
  3341. /* Adjust margin for form elements below */
  3342. input[type="file"],
  3343. input[type="checkbox"],
  3344. input[type="radio"],
  3345. select {
  3346. margin: 0 0 1rem 0; }
  3347. input[type="checkbox"] + label,
  3348. input[type="radio"] + label {
  3349. display: inline-block;
  3350. margin-left: 0.5rem;
  3351. margin-right: 1rem;
  3352. margin-bottom: 0;
  3353. vertical-align: baseline; }
  3354. /* Normalize file input width */
  3355. input[type="file"] {
  3356. width: 100%; }
  3357. /* HTML5 Number spinners settings */
  3358. /* We add basic fieldset styling */
  3359. fieldset {
  3360. border: 1px solid #DDDDDD;
  3361. margin: 1.125rem 0;
  3362. padding: 1.25rem; }
  3363. fieldset legend {
  3364. font-weight: bold;
  3365. margin: 0;
  3366. margin-left: -0.1875rem;
  3367. padding: 0 0.1875rem; }
  3368. /* Error Handling */
  3369. [data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
  3370. display: block;
  3371. font-size: 0.75rem;
  3372. font-style: italic;
  3373. font-weight: normal;
  3374. margin-bottom: 1rem;
  3375. margin-top: -1px;
  3376. padding: 0.375rem 0.5625rem 0.5625rem;
  3377. background: #f04124;
  3378. color: #FFFFFF; }
  3379. [data-abide] span.error, [data-abide] small.error {
  3380. display: none; }
  3381. span.error, small.error {
  3382. display: block;
  3383. font-size: 0.75rem;
  3384. font-style: italic;
  3385. font-weight: normal;
  3386. margin-bottom: 1rem;
  3387. margin-top: -1px;
  3388. padding: 0.375rem 0.5625rem 0.5625rem;
  3389. background: #f04124;
  3390. color: #FFFFFF; }
  3391. .error input,
  3392. .error textarea,
  3393. .error select {
  3394. margin-bottom: 0; }
  3395. .error input[type="checkbox"],
  3396. .error input[type="radio"] {
  3397. margin-bottom: 1rem; }
  3398. .error label,
  3399. .error label.error {
  3400. color: #f04124; }
  3401. .error small.error {
  3402. display: block;
  3403. font-size: 0.75rem;
  3404. font-style: italic;
  3405. font-weight: normal;
  3406. margin-bottom: 1rem;
  3407. margin-top: -1px;
  3408. padding: 0.375rem 0.5625rem 0.5625rem;
  3409. background: #f04124;
  3410. color: #FFFFFF; }
  3411. .error > label > small {
  3412. background: transparent;
  3413. color: #676767;
  3414. display: inline;
  3415. font-size: 60%;
  3416. font-style: normal;
  3417. margin: 0;
  3418. padding: 0;
  3419. text-transform: capitalize; }
  3420. .error span.error-message {
  3421. display: block; }
  3422. input.error,
  3423. textarea.error,
  3424. select.error {
  3425. margin-bottom: 0; }
  3426. label.error {
  3427. color: #f04124; }
  3428. .icon-bar {
  3429. display: inline-block;
  3430. font-size: 0;
  3431. width: 100%;
  3432. background: #333333; }
  3433. .icon-bar > * {
  3434. display: block;
  3435. float: left;
  3436. font-size: 1rem;
  3437. margin: 0 auto;
  3438. padding: 1.25rem;
  3439. text-align: center;
  3440. width: 25%; }
  3441. .icon-bar > * i, .icon-bar > * img {
  3442. display: block;
  3443. margin: 0 auto; }
  3444. .icon-bar > * i + label, .icon-bar > * img + label {
  3445. margin-top: .0625rem; }
  3446. .icon-bar > * i {
  3447. font-size: 1.875rem;
  3448. vertical-align: middle; }
  3449. .icon-bar > * img {
  3450. height: 1.875rem;
  3451. width: 1.875rem; }
  3452. .icon-bar.label-right > * i, .icon-bar.label-right > * img {
  3453. display: inline-block;
  3454. margin: 0 .0625rem 0 0; }
  3455. .icon-bar.label-right > * i + label, .icon-bar.label-right > * img + label {
  3456. margin-top: 0; }
  3457. .icon-bar.label-right > * label {
  3458. display: inline-block; }
  3459. .icon-bar.vertical.label-right > * {
  3460. text-align: left; }
  3461. .icon-bar.vertical, .icon-bar.small-vertical {
  3462. height: 100%;
  3463. width: auto; }
  3464. .icon-bar.vertical .item, .icon-bar.small-vertical .item {
  3465. float: none;
  3466. margin: auto;
  3467. width: auto; }
  3468. @media only screen and (min-width: 40.0625em) {
  3469. .icon-bar.medium-vertical {
  3470. height: 100%;
  3471. width: auto; }
  3472. .icon-bar.medium-vertical .item {
  3473. float: none;
  3474. margin: auto;
  3475. width: auto; } }
  3476. @media only screen and (min-width: 64.0625em) {
  3477. .icon-bar.large-vertical {
  3478. height: 100%;
  3479. width: auto; }
  3480. .icon-bar.large-vertical .item {
  3481. float: none;
  3482. margin: auto;
  3483. width: auto; } }
  3484. .icon-bar > * {
  3485. font-size: 1rem;
  3486. padding: 1.25rem; }
  3487. .icon-bar > * i + label, .icon-bar > * img + label {
  3488. margin-top: .0625rem;
  3489. font-size: 1rem; }
  3490. .icon-bar > * i {
  3491. font-size: 1.875rem; }
  3492. .icon-bar > * img {
  3493. height: 1.875rem;
  3494. width: 1.875rem; }
  3495. .icon-bar > * label {
  3496. color: #FFFFFF; }
  3497. .icon-bar > * i {
  3498. color: #FFFFFF; }
  3499. .icon-bar > a:hover {
  3500. background: #008CBA; }
  3501. .icon-bar > a:hover label {
  3502. color: #FFFFFF; }
  3503. .icon-bar > a:hover i {
  3504. color: #FFFFFF; }
  3505. .icon-bar > a.active {
  3506. background: #008CBA; }
  3507. .icon-bar > a.active label {
  3508. color: #FFFFFF; }
  3509. .icon-bar > a.active i {
  3510. color: #FFFFFF; }
  3511. .icon-bar .item.disabled {
  3512. cursor: not-allowed;
  3513. opacity: 0.7;
  3514. pointer-events: none; }
  3515. .icon-bar .item.disabled > * {
  3516. opacity: 0.7;
  3517. cursor: not-allowed; }
  3518. .icon-bar.two-up .item {
  3519. width: 50%; }
  3520. .icon-bar.two-up.vertical .item, .icon-bar.two-up.small-vertical .item {
  3521. width: auto; }
  3522. @media only screen and (min-width: 40.0625em) {
  3523. .icon-bar.two-up.medium-vertical .item {
  3524. width: auto; } }
  3525. @media only screen and (min-width: 64.0625em) {
  3526. .icon-bar.two-up.large-vertical .item {
  3527. width: auto; } }
  3528. .icon-bar.three-up .item {
  3529. width: 33.3333%; }
  3530. .icon-bar.three-up.vertical .item, .icon-bar.three-up.small-vertical .item {
  3531. width: auto; }
  3532. @media only screen and (min-width: 40.0625em) {
  3533. .icon-bar.three-up.medium-vertical .item {
  3534. width: auto; } }
  3535. @media only screen and (min-width: 64.0625em) {
  3536. .icon-bar.three-up.large-vertical .item {
  3537. width: auto; } }
  3538. .icon-bar.four-up .item {
  3539. width: 25%; }
  3540. .icon-bar.four-up.vertical .item, .icon-bar.four-up.small-vertical .item {
  3541. width: auto; }
  3542. @media only screen and (min-width: 40.0625em) {
  3543. .icon-bar.four-up.medium-vertical .item {
  3544. width: auto; } }
  3545. @media only screen and (min-width: 64.0625em) {
  3546. .icon-bar.four-up.large-vertical .item {
  3547. width: auto; } }
  3548. .icon-bar.five-up .item {
  3549. width: 20%; }
  3550. .icon-bar.five-up.vertical .item, .icon-bar.five-up.small-vertical .item {
  3551. width: auto; }
  3552. @media only screen and (min-width: 40.0625em) {
  3553. .icon-bar.five-up.medium-vertical .item {
  3554. width: auto; } }
  3555. @media only screen and (min-width: 64.0625em) {
  3556. .icon-bar.five-up.large-vertical .item {
  3557. width: auto; } }
  3558. .icon-bar.six-up .item {
  3559. width: 16.66667%; }
  3560. .icon-bar.six-up.vertical .item, .icon-bar.six-up.small-vertical .item {
  3561. width: auto; }
  3562. @media only screen and (min-width: 40.0625em) {
  3563. .icon-bar.six-up.medium-vertical .item {
  3564. width: auto; } }
  3565. @media only screen and (min-width: 64.0625em) {
  3566. .icon-bar.six-up.large-vertical .item {
  3567. width: auto; } }
  3568. .icon-bar.seven-up .item {
  3569. width: 14.28571%; }
  3570. .icon-bar.seven-up.vertical .item, .icon-bar.seven-up.small-vertical .item {
  3571. width: auto; }
  3572. @media only screen and (min-width: 40.0625em) {
  3573. .icon-bar.seven-up.medium-vertical .item {
  3574. width: auto; } }
  3575. @media only screen and (min-width: 64.0625em) {
  3576. .icon-bar.seven-up.large-vertical .item {
  3577. width: auto; } }
  3578. .icon-bar.eight-up .item {
  3579. width: 12.5%; }
  3580. .icon-bar.eight-up.vertical .item, .icon-bar.eight-up.small-vertical .item {
  3581. width: auto; }
  3582. @media only screen and (min-width: 40.0625em) {
  3583. .icon-bar.eight-up.medium-vertical .item {
  3584. width: auto; } }
  3585. @media only screen and (min-width: 64.0625em) {
  3586. .icon-bar.eight-up.large-vertical .item {
  3587. width: auto; } }
  3588. .icon-bar.two-up .item {
  3589. width: 50%; }
  3590. .icon-bar.two-up.vertical .item, .icon-bar.two-up.small-vertical .item {
  3591. width: auto; }
  3592. @media only screen and (min-width: 40.0625em) {
  3593. .icon-bar.two-up.medium-vertical .item {
  3594. width: auto; } }
  3595. @media only screen and (min-width: 64.0625em) {
  3596. .icon-bar.two-up.large-vertical .item {
  3597. width: auto; } }
  3598. .icon-bar.three-up .item {
  3599. width: 33.3333%; }
  3600. .icon-bar.three-up.vertical .item, .icon-bar.three-up.small-vertical .item {
  3601. width: auto; }
  3602. @media only screen and (min-width: 40.0625em) {
  3603. .icon-bar.three-up.medium-vertical .item {
  3604. width: auto; } }
  3605. @media only screen and (min-width: 64.0625em) {
  3606. .icon-bar.three-up.large-vertical .item {
  3607. width: auto; } }
  3608. .icon-bar.four-up .item {
  3609. width: 25%; }
  3610. .icon-bar.four-up.vertical .item, .icon-bar.four-up.small-vertical .item {
  3611. width: auto; }
  3612. @media only screen and (min-width: 40.0625em) {
  3613. .icon-bar.four-up.medium-vertical .item {
  3614. width: auto; } }
  3615. @media only screen and (min-width: 64.0625em) {
  3616. .icon-bar.four-up.large-vertical .item {
  3617. width: auto; } }
  3618. .icon-bar.five-up .item {
  3619. width: 20%; }
  3620. .icon-bar.five-up.vertical .item, .icon-bar.five-up.small-vertical .item {
  3621. width: auto; }
  3622. @media only screen and (min-width: 40.0625em) {
  3623. .icon-bar.five-up.medium-vertical .item {
  3624. width: auto; } }
  3625. @media only screen and (min-width: 64.0625em) {
  3626. .icon-bar.five-up.large-vertical .item {
  3627. width: auto; } }
  3628. .icon-bar.six-up .item {
  3629. width: 16.66667%; }
  3630. .icon-bar.six-up.vertical .item, .icon-bar.six-up.small-vertical .item {
  3631. width: auto; }
  3632. @media only screen and (min-width: 40.0625em) {
  3633. .icon-bar.six-up.medium-vertical .item {
  3634. width: auto; } }
  3635. @media only screen and (min-width: 64.0625em) {
  3636. .icon-bar.six-up.large-vertical .item {
  3637. width: auto; } }
  3638. .icon-bar.seven-up .item {
  3639. width: 14.28571%; }
  3640. .icon-bar.seven-up.vertical .item, .icon-bar.seven-up.small-vertical .item {
  3641. width: auto; }
  3642. @media only screen and (min-width: 40.0625em) {
  3643. .icon-bar.seven-up.medium-vertical .item {
  3644. width: auto; } }
  3645. @media only screen and (min-width: 64.0625em) {
  3646. .icon-bar.seven-up.large-vertical .item {
  3647. width: auto; } }
  3648. .icon-bar.eight-up .item {
  3649. width: 12.5%; }
  3650. .icon-bar.eight-up.vertical .item, .icon-bar.eight-up.small-vertical .item {
  3651. width: auto; }
  3652. @media only screen and (min-width: 40.0625em) {
  3653. .icon-bar.eight-up.medium-vertical .item {
  3654. width: auto; } }
  3655. @media only screen and (min-width: 64.0625em) {
  3656. .icon-bar.eight-up.large-vertical .item {
  3657. width: auto; } }
  3658. .inline-list {
  3659. list-style: none;
  3660. margin-top: 0;
  3661. margin-bottom: 1.0625rem;
  3662. margin-left: -1.375rem;
  3663. margin-right: 0;
  3664. overflow: hidden;
  3665. padding: 0; }
  3666. .inline-list > li {
  3667. display: block;
  3668. float: left;
  3669. list-style: none;
  3670. margin-left: 1.375rem; }
  3671. .inline-list > li > * {
  3672. display: block; }
  3673. /* Foundation Joyride */
  3674. .joyride-list {
  3675. display: none; }
  3676. /* Default styles for the container */
  3677. .joyride-tip-guide {
  3678. background: #333333;
  3679. color: #FFFFFF;
  3680. display: none;
  3681. font-family: inherit;
  3682. font-weight: normal;
  3683. position: absolute;
  3684. top: 0;
  3685. width: 95%;
  3686. z-index: 103;
  3687. left: 2.5%; }
  3688. .lt-ie9 .joyride-tip-guide {
  3689. margin-left: -400px;
  3690. max-width: 800px;
  3691. left: 50%; }
  3692. .joyride-content-wrapper {
  3693. padding: 1.125rem 1.25rem 1.5rem;
  3694. width: 100%; }
  3695. .joyride-content-wrapper .button {
  3696. margin-bottom: 0 !important; }
  3697. .joyride-content-wrapper .joyride-prev-tip {
  3698. margin-right: 10px; }
  3699. /* Add a little css triangle pip, older browser just miss out on the fanciness of it */
  3700. .joyride-tip-guide .joyride-nub {
  3701. border: 10px solid #333333;
  3702. display: block;
  3703. height: 0;
  3704. position: absolute;
  3705. width: 0;
  3706. left: 22px; }
  3707. .joyride-tip-guide .joyride-nub.top {
  3708. border-color: #333333;
  3709. border-top-color: transparent !important;
  3710. border-top-style: solid;
  3711. border-left-color: transparent !important;
  3712. border-right-color: transparent !important;
  3713. top: -20px; }
  3714. .joyride-tip-guide .joyride-nub.bottom {
  3715. border-color: #333333 !important;
  3716. border-bottom-color: transparent !important;
  3717. border-bottom-style: solid;
  3718. border-left-color: transparent !important;
  3719. border-right-color: transparent !important;
  3720. bottom: -20px; }
  3721. .joyride-tip-guide .joyride-nub.right {
  3722. right: -20px; }
  3723. .joyride-tip-guide .joyride-nub.left {
  3724. left: -20px; }
  3725. /* Typography */
  3726. .joyride-tip-guide h1,
  3727. .joyride-tip-guide h2,
  3728. .joyride-tip-guide h3,
  3729. .joyride-tip-guide h4,
  3730. .joyride-tip-guide h5,
  3731. .joyride-tip-guide h6 {
  3732. color: #FFFFFF;
  3733. font-weight: bold;
  3734. line-height: 1.25;
  3735. margin: 0; }
  3736. .joyride-tip-guide p {
  3737. font-size: 0.875rem;
  3738. line-height: 1.3;
  3739. margin: 0 0 1.125rem 0; }
  3740. .joyride-timer-indicator-wrap {
  3741. border: solid 1px #555555;
  3742. bottom: 1rem;
  3743. height: 3px;
  3744. position: absolute;
  3745. width: 50px;
  3746. right: 1.0625rem; }
  3747. .joyride-timer-indicator {
  3748. background: #666666;
  3749. display: block;
  3750. height: inherit;
  3751. width: 0; }
  3752. .joyride-close-tip {
  3753. color: #777777 !important;
  3754. font-size: 24px;
  3755. font-weight: normal;
  3756. line-height: .5 !important;
  3757. position: absolute;
  3758. text-decoration: none;
  3759. top: 10px;
  3760. right: 12px; }
  3761. .joyride-close-tip:hover, .joyride-close-tip:focus {
  3762. color: #EEEEEE !important; }
  3763. .joyride-modal-bg {
  3764. background: rgba(0, 0, 0, 0.5);
  3765. cursor: pointer;
  3766. display: none;
  3767. height: 100%;
  3768. position: fixed;
  3769. top: 0;
  3770. width: 100%;
  3771. z-index: 100;
  3772. left: 0; }
  3773. .joyride-expose-wrapper {
  3774. background-color: #FFFFFF;
  3775. border-radius: 3px;
  3776. box-shadow: 0 0 15px #FFFFFF;
  3777. position: absolute;
  3778. z-index: 102; }
  3779. .joyride-expose-cover {
  3780. background: transparent;
  3781. border-radius: 3px;
  3782. left: 0;
  3783. position: absolute;
  3784. top: 0;
  3785. z-index: 9999; }
  3786. /* Styles for screens that are at least 768px; */
  3787. @media only screen {
  3788. .joyride-tip-guide {
  3789. width: 300px;
  3790. left: inherit; }
  3791. .joyride-tip-guide .joyride-nub.bottom {
  3792. border-color: #333333 !important;
  3793. border-bottom-color: transparent !important;
  3794. border-left-color: transparent !important;
  3795. border-right-color: transparent !important;
  3796. bottom: -20px; }
  3797. .joyride-tip-guide .joyride-nub.right {
  3798. border-color: #333333 !important;
  3799. border-right-color: transparent !important;
  3800. border-bottom-color: transparent !important;
  3801. border-top-color: transparent !important;
  3802. left: auto;
  3803. right: -20px;
  3804. top: 22px; }
  3805. .joyride-tip-guide .joyride-nub.left {
  3806. border-color: #333333 !important;
  3807. border-bottom-color: transparent !important;
  3808. border-left-color: transparent !important;
  3809. border-top-color: transparent !important;
  3810. left: -20px;
  3811. right: auto;
  3812. top: 22px; } }
  3813. .keystroke,
  3814. kbd {
  3815. background-color: #ededed;
  3816. border-color: #dddddd;
  3817. color: #222222;
  3818. border-style: solid;
  3819. border-width: 1px;
  3820. font-family: "Consolas", "Menlo", "Courier", monospace;
  3821. font-size: inherit;
  3822. margin: 0;
  3823. padding: 0.125rem 0.25rem 0;
  3824. border-radius: 3px; }
  3825. .label {
  3826. display: inline-block;
  3827. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  3828. font-weight: normal;
  3829. line-height: 1;
  3830. margin-bottom: auto;
  3831. position: relative;
  3832. text-align: center;
  3833. text-decoration: none;
  3834. white-space: nowrap;
  3835. padding: 0.25rem 0.5rem 0.25rem;
  3836. font-size: 0.6875rem;
  3837. background-color: #008CBA;
  3838. color: #FFFFFF; }
  3839. .label.radius {
  3840. border-radius: 3px; }
  3841. .label.round {
  3842. border-radius: 1000px; }
  3843. .label.alert {
  3844. background-color: #f04124;
  3845. color: #FFFFFF; }
  3846. .label.warning {
  3847. background-color: #f08a24;
  3848. color: #FFFFFF; }
  3849. .label.success {
  3850. background-color: #43AC6A;
  3851. color: #FFFFFF; }
  3852. .label.secondary {
  3853. background-color: #e7e7e7;
  3854. color: #333333; }
  3855. .label.info {
  3856. background-color: #a0d3e8;
  3857. color: #333333; }
  3858. [data-magellan-expedition], [data-magellan-expedition-clone] {
  3859. background: #FFFFFF;
  3860. min-width: 100%;
  3861. padding: 10px;
  3862. z-index: 50; }
  3863. [data-magellan-expedition] .sub-nav, [data-magellan-expedition-clone] .sub-nav {
  3864. margin-bottom: 0; }
  3865. [data-magellan-expedition] .sub-nav dd, [data-magellan-expedition-clone] .sub-nav dd {
  3866. margin-bottom: 0; }
  3867. [data-magellan-expedition] .sub-nav a, [data-magellan-expedition-clone] .sub-nav a {
  3868. line-height: 1.8em; }
  3869. @-webkit-keyframes rotate {
  3870. from {
  3871. -webkit-transform: rotate(0deg);
  3872. transform: rotate(0deg); }
  3873. to {
  3874. -webkit-transform: rotate(360deg);
  3875. transform: rotate(360deg); } }
  3876. @keyframes rotate {
  3877. from {
  3878. -webkit-transform: rotate(0deg);
  3879. -moz-transform: rotate(0deg);
  3880. -ms-transform: rotate(0deg);
  3881. transform: rotate(0deg); }
  3882. to {
  3883. -webkit-transform: rotate(360deg);
  3884. -moz-transform: rotate(360deg);
  3885. -ms-transform: rotate(360deg);
  3886. transform: rotate(360deg); } }
  3887. /* Orbit Graceful Loading */
  3888. .slideshow-wrapper {
  3889. position: relative; }
  3890. .slideshow-wrapper ul {
  3891. list-style-type: none;
  3892. margin: 0; }
  3893. .slideshow-wrapper ul li,
  3894. .slideshow-wrapper ul li .orbit-caption {
  3895. display: none; }
  3896. .slideshow-wrapper ul li:first-child {
  3897. display: block; }
  3898. .slideshow-wrapper .orbit-container {
  3899. background-color: transparent; }
  3900. .slideshow-wrapper .orbit-container li {
  3901. display: block; }
  3902. .slideshow-wrapper .orbit-container li .orbit-caption {
  3903. display: block; }
  3904. .slideshow-wrapper .orbit-container .orbit-bullets li {
  3905. display: inline-block; }
  3906. .slideshow-wrapper .preloader {
  3907. border-radius: 1000px;
  3908. animation-duration: 1.5s;
  3909. animation-iteration-count: infinite;
  3910. animation-name: rotate;
  3911. animation-timing-function: linear;
  3912. border-color: #555555 #FFFFFF;
  3913. border: solid 3px;
  3914. display: block;
  3915. height: 40px;
  3916. left: 50%;
  3917. margin-left: -20px;
  3918. margin-top: -20px;
  3919. position: absolute;
  3920. top: 50%;
  3921. width: 40px; }
  3922. .orbit-container {
  3923. background: none;
  3924. overflow: hidden;
  3925. position: relative;
  3926. width: 100%; }
  3927. .orbit-container .orbit-slides-container {
  3928. list-style: none;
  3929. margin: 0;
  3930. padding: 0;
  3931. position: relative;
  3932. -webkit-transform: translateZ(0);
  3933. -moz-transform: translateZ(0);
  3934. -ms-transform: translateZ(0);
  3935. -o-transform: translateZ(0);
  3936. transform: translateZ(0); }
  3937. .orbit-container .orbit-slides-container img {
  3938. display: block;
  3939. max-width: 100%; }
  3940. .orbit-container .orbit-slides-container > * {
  3941. position: absolute;
  3942. top: 0;
  3943. width: 100%;
  3944. margin-left: 100%; }
  3945. .orbit-container .orbit-slides-container > *:first-child {
  3946. margin-left: 0; }
  3947. .orbit-container .orbit-slides-container > * .orbit-caption {
  3948. bottom: 0;
  3949. position: absolute;
  3950. background-color: rgba(51, 51, 51, 0.8);
  3951. color: #FFFFFF;
  3952. font-size: 0.875rem;
  3953. padding: 0.625rem 0.875rem;
  3954. width: 100%; }
  3955. .orbit-container .orbit-slide-number {
  3956. left: 10px;
  3957. background: transparent;
  3958. color: #FFFFFF;
  3959. font-size: 12px;
  3960. position: absolute;
  3961. top: 10px;
  3962. z-index: 10; }
  3963. .orbit-container .orbit-slide-number span {
  3964. font-weight: 700;
  3965. padding: 0.3125rem; }
  3966. .orbit-container .orbit-timer {
  3967. position: absolute;
  3968. top: 12px;
  3969. right: 10px;
  3970. height: 6px;
  3971. width: 100px;
  3972. z-index: 10; }
  3973. .orbit-container .orbit-timer .orbit-progress {
  3974. height: 3px;
  3975. background-color: rgba(255, 255, 255, 0.3);
  3976. display: block;
  3977. width: 0;
  3978. position: relative;
  3979. right: 20px;
  3980. top: 5px; }
  3981. .orbit-container .orbit-timer > span {
  3982. border: solid 4px #FFFFFF;
  3983. border-bottom: none;
  3984. border-top: none;
  3985. display: none;
  3986. height: 14px;
  3987. position: absolute;
  3988. top: 0;
  3989. width: 11px;
  3990. right: 0; }
  3991. .orbit-container .orbit-timer.paused > span {
  3992. top: 0;
  3993. width: 11px;
  3994. height: 14px;
  3995. border: inset 8px;
  3996. border-left-style: solid;
  3997. border-color: transparent;
  3998. border-left-color: #FFFFFF;
  3999. right: -4px; }
  4000. .orbit-container .orbit-timer.paused > span.dark {
  4001. border-left-color: #333333; }
  4002. .orbit-container:hover .orbit-timer > span {
  4003. display: block; }
  4004. .orbit-container .orbit-prev,
  4005. .orbit-container .orbit-next {
  4006. background-color: transparent;
  4007. color: white;
  4008. height: 60px;
  4009. line-height: 50px;
  4010. margin-top: -25px;
  4011. position: absolute;
  4012. text-indent: -9999px !important;
  4013. top: 45%;
  4014. width: 36px;
  4015. z-index: 10; }
  4016. .orbit-container .orbit-prev:hover,
  4017. .orbit-container .orbit-next:hover {
  4018. background-color: rgba(0, 0, 0, 0.3); }
  4019. .orbit-container .orbit-prev > span,
  4020. .orbit-container .orbit-next > span {
  4021. border: inset 10px;
  4022. display: block;
  4023. height: 0;
  4024. margin-top: -10px;
  4025. position: absolute;
  4026. top: 50%;
  4027. width: 0; }
  4028. .orbit-container .orbit-prev {
  4029. left: 0; }
  4030. .orbit-container .orbit-prev > span {
  4031. border-right-style: solid;
  4032. border-color: transparent;
  4033. border-right-color: #FFFFFF; }
  4034. .orbit-container .orbit-prev:hover > span {
  4035. border-right-color: #FFFFFF; }
  4036. .orbit-container .orbit-next {
  4037. right: 0; }
  4038. .orbit-container .orbit-next > span {
  4039. border-color: transparent;
  4040. border-left-style: solid;
  4041. border-left-color: #FFFFFF;
  4042. left: 50%;
  4043. margin-left: -4px; }
  4044. .orbit-container .orbit-next:hover > span {
  4045. border-left-color: #FFFFFF; }
  4046. .orbit-bullets-container {
  4047. text-align: center; }
  4048. .orbit-bullets {
  4049. display: block;
  4050. float: none;
  4051. margin: 0 auto 30px auto;
  4052. overflow: hidden;
  4053. position: relative;
  4054. text-align: center;
  4055. top: 10px; }
  4056. .orbit-bullets li {
  4057. background: #CCCCCC;
  4058. cursor: pointer;
  4059. display: inline-block;
  4060. float: none;
  4061. height: 0.5625rem;
  4062. margin-right: 6px;
  4063. width: 0.5625rem;
  4064. border-radius: 1000px; }
  4065. .orbit-bullets li.active {
  4066. background: #999999; }
  4067. .orbit-bullets li:last-child {
  4068. margin-right: 0; }
  4069. .touch .orbit-container .orbit-prev,
  4070. .touch .orbit-container .orbit-next {
  4071. display: none; }
  4072. .touch .orbit-bullets {
  4073. display: none; }
  4074. @media only screen and (min-width: 40.0625em) {
  4075. .touch .orbit-container .orbit-prev,
  4076. .touch .orbit-container .orbit-next {
  4077. display: inherit; }
  4078. .touch .orbit-bullets {
  4079. display: block; } }
  4080. @media only screen and (max-width: 40em) {
  4081. .orbit-stack-on-small .orbit-slides-container {
  4082. height: auto !important; }
  4083. .orbit-stack-on-small .orbit-slides-container > * {
  4084. margin: 0 !important;
  4085. opacity: 1 !important;
  4086. position: relative; }
  4087. .orbit-stack-on-small .orbit-slide-number {
  4088. display: none; }
  4089. .orbit-timer {
  4090. display: none; }
  4091. .orbit-next, .orbit-prev {
  4092. display: none; }
  4093. .orbit-bullets {
  4094. display: none; } }
  4095. ul.pagination {
  4096. display: block;
  4097. margin-left: -0.3125rem;
  4098. min-height: 1.5rem; }
  4099. ul.pagination li {
  4100. color: #222222;
  4101. font-size: 0.875rem;
  4102. height: 1.5rem;
  4103. margin-left: 0.3125rem; }
  4104. ul.pagination li a, ul.pagination li button {
  4105. border-radius: 3px;
  4106. transition: background-color 300ms ease-out;
  4107. background: none;
  4108. color: #999999;
  4109. display: block;
  4110. font-size: 1em;
  4111. font-weight: normal;
  4112. line-height: inherit;
  4113. padding: 0.0625rem 0.625rem 0.0625rem; }
  4114. ul.pagination li:hover a,
  4115. ul.pagination li a:focus,
  4116. ul.pagination li:hover button,
  4117. ul.pagination li button:focus {
  4118. background: #e6e6e6; }
  4119. ul.pagination li.unavailable a, ul.pagination li.unavailable button {
  4120. cursor: default;
  4121. color: #999999;
  4122. pointer-events: none; }
  4123. ul.pagination li.unavailable:hover a,
  4124. ul.pagination li.unavailable a:focus,
  4125. ul.pagination li.unavailable:hover button,
  4126. ul.pagination li.unavailable button:focus {
  4127. background: transparent; }
  4128. ul.pagination li.current a, ul.pagination li.current button {
  4129. background: #008CBA;
  4130. color: #FFFFFF;
  4131. cursor: default;
  4132. font-weight: bold; }
  4133. ul.pagination li.current a:hover, ul.pagination li.current a:focus, ul.pagination li.current button:hover, ul.pagination li.current button:focus {
  4134. background: #008CBA; }
  4135. ul.pagination li {
  4136. display: block;
  4137. float: left; }
  4138. /* Pagination centred wrapper */
  4139. .pagination-centered {
  4140. text-align: center; }
  4141. .pagination-centered ul.pagination li {
  4142. display: inline-block;
  4143. float: none; }
  4144. /* Panels */
  4145. .panel {
  4146. border-style: solid;
  4147. border-width: 1px;
  4148. border-color: #d8d8d8;
  4149. margin-bottom: 1.25rem;
  4150. padding: 1.25rem;
  4151. background: #f2f2f2;
  4152. color: #333333; }
  4153. .panel > :first-child {
  4154. margin-top: 0; }
  4155. .panel > :last-child {
  4156. margin-bottom: 0; }
  4157. .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p, .panel li, .panel dl {
  4158. color: #333333; }
  4159. .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
  4160. line-height: 1;
  4161. margin-bottom: 0.625rem; }
  4162. .panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
  4163. line-height: 1.4; }
  4164. .panel.callout {
  4165. border-style: solid;
  4166. border-width: 1px;
  4167. border-color: #d8d8d8;
  4168. margin-bottom: 1.25rem;
  4169. padding: 1.25rem;
  4170. background: #ecfaff;
  4171. color: #333333; }
  4172. .panel.callout > :first-child {
  4173. margin-top: 0; }
  4174. .panel.callout > :last-child {
  4175. margin-bottom: 0; }
  4176. .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6, .panel.callout p, .panel.callout li, .panel.callout dl {
  4177. color: #333333; }
  4178. .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
  4179. line-height: 1;
  4180. margin-bottom: 0.625rem; }
  4181. .panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
  4182. line-height: 1.4; }
  4183. .panel.callout a:not(.button) {
  4184. color: #008CBA; }
  4185. .panel.callout a:not(.button):hover, .panel.callout a:not(.button):focus {
  4186. color: #0078a0; }
  4187. .panel.radius {
  4188. border-radius: 3px; }
  4189. /* Pricing Tables */
  4190. .pricing-table {
  4191. border: solid 1px #DDDDDD;
  4192. margin-left: 0;
  4193. margin-bottom: 1.25rem; }
  4194. .pricing-table * {
  4195. list-style: none;
  4196. line-height: 1; }
  4197. .pricing-table .title {
  4198. background-color: #333333;
  4199. color: #EEEEEE;
  4200. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  4201. font-size: 1rem;
  4202. font-weight: normal;
  4203. padding: 0.9375rem 1.25rem;
  4204. text-align: center; }
  4205. .pricing-table .price {
  4206. background-color: #F6F6F6;
  4207. color: #333333;
  4208. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  4209. font-size: 2rem;
  4210. font-weight: normal;
  4211. padding: 0.9375rem 1.25rem;
  4212. text-align: center; }
  4213. .pricing-table .description {
  4214. background-color: #FFFFFF;
  4215. border-bottom: dotted 1px #DDDDDD;
  4216. color: #777777;
  4217. font-size: 0.75rem;
  4218. font-weight: normal;
  4219. line-height: 1.4;
  4220. padding: 0.9375rem;
  4221. text-align: center; }
  4222. .pricing-table .bullet-item {
  4223. background-color: #FFFFFF;
  4224. border-bottom: dotted 1px #DDDDDD;
  4225. color: #333333;
  4226. font-size: 0.875rem;
  4227. font-weight: normal;
  4228. padding: 0.9375rem;
  4229. text-align: center; }
  4230. .pricing-table .cta-button {
  4231. background-color: #FFFFFF;
  4232. padding: 1.25rem 1.25rem 0;
  4233. text-align: center; }
  4234. /* Progress Bar */
  4235. .progress {
  4236. background-color: #F6F6F6;
  4237. border: 1px solid white;
  4238. height: 1.5625rem;
  4239. margin-bottom: 0.625rem;
  4240. padding: 0.125rem; }
  4241. .progress .meter {
  4242. background: #008CBA;
  4243. display: block;
  4244. height: 100%;
  4245. float: left;
  4246. width: 0%; }
  4247. .progress .meter.secondary {
  4248. background: #e7e7e7;
  4249. display: block;
  4250. height: 100%;
  4251. float: left;
  4252. width: 0%; }
  4253. .progress .meter.success {
  4254. background: #43AC6A;
  4255. display: block;
  4256. height: 100%;
  4257. float: left;
  4258. width: 0%; }
  4259. .progress .meter.alert {
  4260. background: #f04124;
  4261. display: block;
  4262. height: 100%;
  4263. float: left;
  4264. width: 0%; }
  4265. .progress.secondary .meter {
  4266. background: #e7e7e7;
  4267. display: block;
  4268. height: 100%;
  4269. float: left;
  4270. width: 0%; }
  4271. .progress.success .meter {
  4272. background: #43AC6A;
  4273. display: block;
  4274. height: 100%;
  4275. float: left;
  4276. width: 0%; }
  4277. .progress.alert .meter {
  4278. background: #f04124;
  4279. display: block;
  4280. height: 100%;
  4281. float: left;
  4282. width: 0%; }
  4283. .progress.radius {
  4284. border-radius: 3px; }
  4285. .progress.radius .meter {
  4286. border-radius: 2px; }
  4287. .progress.round {
  4288. border-radius: 1000px; }
  4289. .progress.round .meter {
  4290. border-radius: 999px; }
  4291. .range-slider {
  4292. border: 1px solid #DDDDDD;
  4293. margin: 1.25rem 0;
  4294. position: relative;
  4295. -ms-touch-action: none;
  4296. touch-action: none;
  4297. display: block;
  4298. height: 1rem;
  4299. width: 100%;
  4300. background: #FAFAFA; }
  4301. .range-slider.vertical-range {
  4302. border: 1px solid #DDDDDD;
  4303. margin: 1.25rem 0;
  4304. position: relative;
  4305. -ms-touch-action: none;
  4306. touch-action: none;
  4307. display: inline-block;
  4308. height: 12.5rem;
  4309. width: 1rem; }
  4310. .range-slider.vertical-range .range-slider-handle {
  4311. bottom: -10.5rem;
  4312. margin-left: -0.5rem;
  4313. margin-top: 0;
  4314. position: absolute; }
  4315. .range-slider.vertical-range .range-slider-active-segment {
  4316. border-bottom-left-radius: inherit;
  4317. border-bottom-right-radius: inherit;
  4318. border-top-left-radius: initial;
  4319. bottom: 0;
  4320. height: auto;
  4321. width: 0.875rem; }
  4322. .range-slider.radius {
  4323. background: #FAFAFA;
  4324. border-radius: 3px; }
  4325. .range-slider.radius .range-slider-handle {
  4326. background: #008CBA;
  4327. border-radius: 3px; }
  4328. .range-slider.radius .range-slider-handle:hover {
  4329. background: #007ba4; }
  4330. .range-slider.round {
  4331. background: #FAFAFA;
  4332. border-radius: 1000px; }
  4333. .range-slider.round .range-slider-handle {
  4334. background: #008CBA;
  4335. border-radius: 1000px; }
  4336. .range-slider.round .range-slider-handle:hover {
  4337. background: #007ba4; }
  4338. .range-slider.disabled, .range-slider[disabled] {
  4339. background: #FAFAFA;
  4340. cursor: not-allowed;
  4341. opacity: 0.7; }
  4342. .range-slider.disabled .range-slider-handle, .range-slider[disabled] .range-slider-handle {
  4343. background: #008CBA;
  4344. cursor: default;
  4345. opacity: 0.7; }
  4346. .range-slider.disabled .range-slider-handle:hover, .range-slider[disabled] .range-slider-handle:hover {
  4347. background: #007ba4; }
  4348. .range-slider-active-segment {
  4349. background: #e5e5e5;
  4350. border-bottom-left-radius: inherit;
  4351. border-top-left-radius: inherit;
  4352. display: inline-block;
  4353. height: 0.875rem;
  4354. position: absolute; }
  4355. .range-slider-handle {
  4356. border: 1px solid none;
  4357. cursor: pointer;
  4358. display: inline-block;
  4359. height: 1.375rem;
  4360. position: absolute;
  4361. top: -0.3125rem;
  4362. width: 2rem;
  4363. z-index: 1;
  4364. -ms-touch-action: manipulation;
  4365. touch-action: manipulation;
  4366. background: #008CBA; }
  4367. .range-slider-handle:hover {
  4368. background: #007ba4; }
  4369. .reveal-modal-bg {
  4370. background: #000000;
  4371. background: rgba(0, 0, 0, 0.45);
  4372. bottom: 0;
  4373. display: none;
  4374. left: 0;
  4375. position: fixed;
  4376. right: 0;
  4377. top: 0;
  4378. z-index: 1004;
  4379. left: 0; }
  4380. .reveal-modal {
  4381. border-radius: 3px;
  4382. display: none;
  4383. position: absolute;
  4384. top: 0;
  4385. visibility: hidden;
  4386. width: 100%;
  4387. z-index: 1005;
  4388. left: 0;
  4389. background-color: #FFFFFF;
  4390. padding: 1.875rem;
  4391. border: solid 1px #666666;
  4392. box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); }
  4393. @media only screen and (max-width: 40em) {
  4394. .reveal-modal {
  4395. min-height: 100vh; } }
  4396. .reveal-modal .column, .reveal-modal .columns {
  4397. min-width: 0; }
  4398. .reveal-modal > :first-child {
  4399. margin-top: 0; }
  4400. .reveal-modal > :last-child {
  4401. margin-bottom: 0; }
  4402. @media only screen and (min-width: 40.0625em) {
  4403. .reveal-modal {
  4404. left: 0;
  4405. margin: 0 auto;
  4406. max-width: 62.5rem;
  4407. right: 0;
  4408. width: 80%; } }
  4409. @media only screen and (min-width: 40.0625em) {
  4410. .reveal-modal {
  4411. top: 6.25rem; } }
  4412. .reveal-modal.radius {
  4413. box-shadow: none;
  4414. border-radius: 3px; }
  4415. .reveal-modal.round {
  4416. box-shadow: none;
  4417. border-radius: 1000px; }
  4418. .reveal-modal.collapse {
  4419. padding: 0;
  4420. box-shadow: none; }
  4421. @media only screen and (min-width: 40.0625em) {
  4422. .reveal-modal.tiny {
  4423. left: 0;
  4424. margin: 0 auto;
  4425. max-width: 62.5rem;
  4426. right: 0;
  4427. width: 30%; } }
  4428. @media only screen and (min-width: 40.0625em) {
  4429. .reveal-modal.small {
  4430. left: 0;
  4431. margin: 0 auto;
  4432. max-width: 62.5rem;
  4433. right: 0;
  4434. width: 40%; } }
  4435. @media only screen and (min-width: 40.0625em) {
  4436. .reveal-modal.medium {
  4437. left: 0;
  4438. margin: 0 auto;
  4439. max-width: 62.5rem;
  4440. right: 0;
  4441. width: 60%; } }
  4442. @media only screen and (min-width: 40.0625em) {
  4443. .reveal-modal.large {
  4444. left: 0;
  4445. margin: 0 auto;
  4446. max-width: 62.5rem;
  4447. right: 0;
  4448. width: 70%; } }
  4449. @media only screen and (min-width: 40.0625em) {
  4450. .reveal-modal.xlarge {
  4451. left: 0;
  4452. margin: 0 auto;
  4453. max-width: 62.5rem;
  4454. right: 0;
  4455. width: 95%; } }
  4456. .reveal-modal.full {
  4457. height: 100vh;
  4458. height: 100%;
  4459. left: 0;
  4460. margin-left: 0 !important;
  4461. max-width: none !important;
  4462. min-height: 100vh;
  4463. top: 0; }
  4464. @media only screen and (min-width: 40.0625em) {
  4465. .reveal-modal.full {
  4466. left: 0;
  4467. margin: 0 auto;
  4468. max-width: 62.5rem;
  4469. right: 0;
  4470. width: 100%; } }
  4471. .reveal-modal.toback {
  4472. z-index: 1003; }
  4473. .reveal-modal .close-reveal-modal {
  4474. color: #AAAAAA;
  4475. cursor: pointer;
  4476. font-size: 2.5rem;
  4477. font-weight: bold;
  4478. line-height: 1;
  4479. position: absolute;
  4480. top: 0.625rem;
  4481. right: 1.375rem; }
  4482. .side-nav {
  4483. display: block;
  4484. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  4485. list-style-position: outside;
  4486. list-style-type: none;
  4487. margin: 0;
  4488. padding: 0.875rem 0; }
  4489. .side-nav li {
  4490. font-size: 0.875rem;
  4491. font-weight: normal;
  4492. margin: 0 0 0.4375rem 0; }
  4493. .side-nav li a:not(.button) {
  4494. color: #008CBA;
  4495. display: block;
  4496. margin: 0;
  4497. padding: 0.4375rem 0.875rem; }
  4498. .side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus {
  4499. background: rgba(0, 0, 0, 0.025);
  4500. color: #1cc7ff; }
  4501. .side-nav li a:not(.button):active {
  4502. color: #1cc7ff; }
  4503. .side-nav li.active > a:first-child:not(.button) {
  4504. color: #1cc7ff;
  4505. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  4506. font-weight: normal; }
  4507. .side-nav li.divider {
  4508. border-top: 1px solid;
  4509. height: 0;
  4510. list-style: none;
  4511. padding: 0;
  4512. border-top-color: #e6e6e6; }
  4513. .side-nav li.heading {
  4514. color: #008CBA;
  4515. font-size: 0.875rem;
  4516. font-weight: bold;
  4517. text-transform: uppercase; }
  4518. .split.button {
  4519. position: relative;
  4520. padding-right: 5.0625rem; }
  4521. .split.button span {
  4522. display: block;
  4523. height: 100%;
  4524. position: absolute;
  4525. right: 0;
  4526. top: 0;
  4527. border-left: solid 1px; }
  4528. .split.button span:after {
  4529. position: absolute;
  4530. content: "";
  4531. width: 0;
  4532. height: 0;
  4533. display: block;
  4534. border-style: inset;
  4535. top: 50%;
  4536. left: 50%; }
  4537. .split.button span:active {
  4538. background-color: rgba(0, 0, 0, 0.1); }
  4539. .split.button span {
  4540. border-left-color: rgba(255, 255, 255, 0.5); }
  4541. .split.button span {
  4542. width: 3.09375rem; }
  4543. .split.button span:after {
  4544. border-top-style: solid;
  4545. border-width: 0.375rem;
  4546. margin-left: -0.375rem;
  4547. top: 48%; }
  4548. .split.button span:after {
  4549. border-color: #FFFFFF transparent transparent transparent; }
  4550. .split.button.secondary span {
  4551. border-left-color: rgba(255, 255, 255, 0.5); }
  4552. .split.button.secondary span:after {
  4553. border-color: #FFFFFF transparent transparent transparent; }
  4554. .split.button.alert span {
  4555. border-left-color: rgba(255, 255, 255, 0.5); }
  4556. .split.button.success span {
  4557. border-left-color: rgba(255, 255, 255, 0.5); }
  4558. .split.button.tiny {
  4559. padding-right: 3.75rem; }
  4560. .split.button.tiny span {
  4561. width: 2.25rem; }
  4562. .split.button.tiny span:after {
  4563. border-top-style: solid;
  4564. border-width: 0.375rem;
  4565. margin-left: -0.375rem;
  4566. top: 48%; }
  4567. .split.button.small {
  4568. padding-right: 4.375rem; }
  4569. .split.button.small span {
  4570. width: 2.625rem; }
  4571. .split.button.small span:after {
  4572. border-top-style: solid;
  4573. border-width: 0.4375rem;
  4574. margin-left: -0.375rem;
  4575. top: 48%; }
  4576. .split.button.large {
  4577. padding-right: 5.5rem; }
  4578. .split.button.large span {
  4579. width: 3.4375rem; }
  4580. .split.button.large span:after {
  4581. border-top-style: solid;
  4582. border-width: 0.3125rem;
  4583. margin-left: -0.375rem;
  4584. top: 48%; }
  4585. .split.button.expand {
  4586. padding-left: 2rem; }
  4587. .split.button.secondary span:after {
  4588. border-color: #333333 transparent transparent transparent; }
  4589. .split.button.radius span {
  4590. -webkit-border-bottom-right-radius: 3px;
  4591. -webkit-border-top-right-radius: 3px;
  4592. border-bottom-right-radius: 3px;
  4593. border-top-right-radius: 3px; }
  4594. .split.button.round span {
  4595. -webkit-border-bottom-right-radius: 1000px;
  4596. -webkit-border-top-right-radius: 1000px;
  4597. border-bottom-right-radius: 1000px;
  4598. border-top-right-radius: 1000px; }
  4599. .split.button.no-pip span:before {
  4600. border-style: none; }
  4601. .split.button.no-pip span:after {
  4602. border-style: none; }
  4603. .split.button.no-pip span > i {
  4604. display: block;
  4605. left: 50%;
  4606. margin-left: -0.28889em;
  4607. margin-top: -0.48889em;
  4608. position: absolute;
  4609. top: 50%; }
  4610. .sub-nav {
  4611. display: block;
  4612. margin: -0.25rem 0 1.125rem;
  4613. overflow: hidden;
  4614. padding-top: 0.25rem;
  4615. width: auto; }
  4616. .sub-nav dt {
  4617. text-transform: uppercase; }
  4618. .sub-nav dt,
  4619. .sub-nav dd,
  4620. .sub-nav li {
  4621. color: #999999;
  4622. float: left;
  4623. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  4624. font-size: 0.875rem;
  4625. font-weight: normal;
  4626. margin-left: 1rem;
  4627. margin-bottom: 0; }
  4628. .sub-nav dt a,
  4629. .sub-nav dd a,
  4630. .sub-nav li a {
  4631. color: #999999;
  4632. padding: 0.1875rem 1rem;
  4633. text-decoration: none; }
  4634. .sub-nav dt a:hover,
  4635. .sub-nav dd a:hover,
  4636. .sub-nav li a:hover {
  4637. color: #737373; }
  4638. .sub-nav dt.active a,
  4639. .sub-nav dd.active a,
  4640. .sub-nav li.active a {
  4641. border-radius: 3px;
  4642. background: #008CBA;
  4643. color: #FFFFFF;
  4644. cursor: default;
  4645. font-weight: normal;
  4646. padding: 0.1875rem 1rem; }
  4647. .sub-nav dt.active a:hover,
  4648. .sub-nav dd.active a:hover,
  4649. .sub-nav li.active a:hover {
  4650. background: #0078a0; }
  4651. .switch {
  4652. border: none;
  4653. margin-bottom: 1.5rem;
  4654. outline: 0;
  4655. padding: 0;
  4656. position: relative;
  4657. -webkit-user-select: none;
  4658. -moz-user-select: none;
  4659. -ms-user-select: none;
  4660. user-select: none; }
  4661. .switch label {
  4662. background: #DDDDDD;
  4663. color: transparent;
  4664. cursor: pointer;
  4665. display: block;
  4666. margin-bottom: 1rem;
  4667. position: relative;
  4668. text-indent: 100%;
  4669. width: 4rem;
  4670. height: 2rem;
  4671. transition: left 0.15s ease-out; }
  4672. .switch input {
  4673. left: 10px;
  4674. opacity: 0;
  4675. padding: 0;
  4676. position: absolute;
  4677. top: 9px; }
  4678. .switch input + label {
  4679. margin-left: 0;
  4680. margin-right: 0; }
  4681. .switch label:after {
  4682. background: #FFFFFF;
  4683. content: "";
  4684. display: block;
  4685. height: 1.5rem;
  4686. left: .25rem;
  4687. position: absolute;
  4688. top: .25rem;
  4689. width: 1.5rem;
  4690. -webkit-transition: left 0.15s ease-out;
  4691. -moz-transition: left 0.15s ease-out;
  4692. -o-transition: translate3d(0, 0, 0);
  4693. transition: left 0.15s ease-out;
  4694. -webkit-transform: translate3d(0, 0, 0);
  4695. -moz-transform: translate3d(0, 0, 0);
  4696. -ms-transform: translate3d(0, 0, 0);
  4697. -o-transform: translate3d(0, 0, 0);
  4698. transform: translate3d(0, 0, 0); }
  4699. .switch input:checked + label {
  4700. background: #008CBA; }
  4701. .switch input:checked + label:after {
  4702. left: 2.25rem; }
  4703. .switch label {
  4704. height: 2rem;
  4705. width: 4rem; }
  4706. .switch label:after {
  4707. height: 1.5rem;
  4708. width: 1.5rem; }
  4709. .switch input:checked + label:after {
  4710. left: 2.25rem; }
  4711. .switch label {
  4712. color: transparent;
  4713. background: #DDDDDD; }
  4714. .switch label:after {
  4715. background: #FFFFFF; }
  4716. .switch input:checked + label {
  4717. background: #008CBA; }
  4718. .switch.large label {
  4719. height: 2.5rem;
  4720. width: 5rem; }
  4721. .switch.large label:after {
  4722. height: 2rem;
  4723. width: 2rem; }
  4724. .switch.large input:checked + label:after {
  4725. left: 2.75rem; }
  4726. .switch.small label {
  4727. height: 1.75rem;
  4728. width: 3.5rem; }
  4729. .switch.small label:after {
  4730. height: 1.25rem;
  4731. width: 1.25rem; }
  4732. .switch.small input:checked + label:after {
  4733. left: 2rem; }
  4734. .switch.tiny label {
  4735. height: 1.5rem;
  4736. width: 3rem; }
  4737. .switch.tiny label:after {
  4738. height: 1rem;
  4739. width: 1rem; }
  4740. .switch.tiny input:checked + label:after {
  4741. left: 1.75rem; }
  4742. .switch.radius label {
  4743. border-radius: 4px; }
  4744. .switch.radius label:after {
  4745. border-radius: 3px; }
  4746. .switch.round {
  4747. border-radius: 1000px; }
  4748. .switch.round label {
  4749. border-radius: 2rem; }
  4750. .switch.round label:after {
  4751. border-radius: 2rem; }
  4752. table {
  4753. background: #FFFFFF;
  4754. border: solid 1px #DDDDDD;
  4755. margin-bottom: 1.25rem;
  4756. table-layout: auto; }
  4757. table caption {
  4758. background: transparent;
  4759. color: #222222;
  4760. font-size: 1rem;
  4761. font-weight: bold; }
  4762. table thead {
  4763. background: #F5F5F5; }
  4764. table thead tr th,
  4765. table thead tr td {
  4766. color: #222222;
  4767. font-size: 0.875rem;
  4768. font-weight: bold;
  4769. padding: 0.5rem 0.625rem 0.625rem; }
  4770. table tfoot {
  4771. background: #F5F5F5; }
  4772. table tfoot tr th,
  4773. table tfoot tr td {
  4774. color: #222222;
  4775. font-size: 0.875rem;
  4776. font-weight: bold;
  4777. padding: 0.5rem 0.625rem 0.625rem; }
  4778. table tr th,
  4779. table tr td {
  4780. color: #222222;
  4781. font-size: 0.875rem;
  4782. padding: 0.5625rem 0.625rem;
  4783. text-align: left; }
  4784. table tr.even, table tr.alt, table tr:nth-of-type(even) {
  4785. background: #F9F9F9; }
  4786. table thead tr th,
  4787. table tfoot tr th,
  4788. table tfoot tr td,
  4789. table tbody tr th,
  4790. table tbody tr td,
  4791. table tr td {
  4792. display: table-cell;
  4793. line-height: 1.125rem; }
  4794. .tabs {
  4795. margin-bottom: 0 !important;
  4796. margin-left: 0; }
  4797. .tabs:before, .tabs:after {
  4798. content: " ";
  4799. display: table; }
  4800. .tabs:after {
  4801. clear: both; }
  4802. .tabs dd,
  4803. .tabs .tab-title {
  4804. float: left;
  4805. list-style: none;
  4806. margin-bottom: 0 !important;
  4807. position: relative; }
  4808. .tabs dd > a,
  4809. .tabs .tab-title > a {
  4810. display: block;
  4811. background-color: #EFEFEF;
  4812. color: #222222;
  4813. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  4814. font-size: 1rem;
  4815. padding: 1rem 2rem; }
  4816. .tabs dd > a:hover,
  4817. .tabs .tab-title > a:hover {
  4818. background-color: #e1e1e1; }
  4819. .tabs dd.active > a,
  4820. .tabs .tab-title.active > a {
  4821. background-color: #FFFFFF;
  4822. color: #222222; }
  4823. .tabs.radius dd:first-child a,
  4824. .tabs.radius .tab:first-child a {
  4825. -webkit-border-bottom-left-radius: 3px;
  4826. -webkit-border-top-left-radius: 3px;
  4827. border-bottom-left-radius: 3px;
  4828. border-top-left-radius: 3px; }
  4829. .tabs.radius dd:last-child a,
  4830. .tabs.radius .tab:last-child a {
  4831. -webkit-border-bottom-right-radius: 3px;
  4832. -webkit-border-top-right-radius: 3px;
  4833. border-bottom-right-radius: 3px;
  4834. border-top-right-radius: 3px; }
  4835. .tabs.vertical dd,
  4836. .tabs.vertical .tab-title {
  4837. position: inherit;
  4838. float: none;
  4839. display: block;
  4840. top: auto; }
  4841. .tabs-content {
  4842. margin-bottom: 1.5rem;
  4843. width: 100%; }
  4844. .tabs-content:before, .tabs-content:after {
  4845. content: " ";
  4846. display: table; }
  4847. .tabs-content:after {
  4848. clear: both; }
  4849. .tabs-content > .content {
  4850. display: none;
  4851. float: left;
  4852. padding: 0.15625rem 0;
  4853. width: 100%; }
  4854. .tabs-content > .content.active {
  4855. display: block;
  4856. float: none; }
  4857. .tabs-content > .content.contained {
  4858. padding: 0.15625rem; }
  4859. .tabs-content.vertical {
  4860. display: block; }
  4861. .tabs-content.vertical > .content {
  4862. padding: 0 0.15625rem; }
  4863. @media only screen and (min-width: 40.0625em) {
  4864. .tabs.vertical {
  4865. float: left;
  4866. margin: 0;
  4867. margin-bottom: 1.25rem !important;
  4868. max-width: 20%;
  4869. width: 20%; }
  4870. .tabs-content.vertical {
  4871. float: left;
  4872. margin-left: -1px;
  4873. max-width: 80%;
  4874. padding-left: 1rem;
  4875. width: 80%; } }
  4876. .no-js .tabs-content > .content {
  4877. display: block;
  4878. float: none; }
  4879. /* Image Thumbnails */
  4880. .th {
  4881. border: solid 4px #FFFFFF;
  4882. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  4883. display: inline-block;
  4884. line-height: 0;
  4885. max-width: 100%;
  4886. transition: all 200ms ease-out; }
  4887. .th:hover, .th:focus {
  4888. box-shadow: 0 0 6px 1px rgba(0, 140, 186, 0.5); }
  4889. .th.radius {
  4890. border-radius: 3px; }
  4891. /* Tooltips */
  4892. .has-tip {
  4893. border-bottom: dotted 1px #CCCCCC;
  4894. color: #333333;
  4895. cursor: help;
  4896. font-weight: bold; }
  4897. .has-tip:hover, .has-tip:focus {
  4898. border-bottom: dotted 1px #003f54;
  4899. color: #008CBA; }
  4900. .has-tip.tip-left, .has-tip.tip-right {
  4901. float: none !important; }
  4902. .tooltip {
  4903. background: #333333;
  4904. color: #FFFFFF;
  4905. display: none;
  4906. font-size: 0.875rem;
  4907. font-weight: normal;
  4908. line-height: 1.3;
  4909. max-width: 300px;
  4910. padding: 0.75rem;
  4911. position: absolute;
  4912. width: 100%;
  4913. z-index: 1006;
  4914. left: 50%; }
  4915. .tooltip > .nub {
  4916. border: solid 5px;
  4917. border-color: transparent transparent #333333 transparent;
  4918. display: block;
  4919. height: 0;
  4920. pointer-events: none;
  4921. position: absolute;
  4922. top: -10px;
  4923. width: 0;
  4924. left: 5px; }
  4925. .tooltip > .nub.rtl {
  4926. left: auto;
  4927. right: 5px; }
  4928. .tooltip.radius {
  4929. border-radius: 3px; }
  4930. .tooltip.round {
  4931. border-radius: 1000px; }
  4932. .tooltip.round > .nub {
  4933. left: 2rem; }
  4934. .tooltip.opened {
  4935. border-bottom: dotted 1px #003f54 !important;
  4936. color: #008CBA !important; }
  4937. .tap-to-close {
  4938. color: #777777;
  4939. display: block;
  4940. font-size: 0.625rem;
  4941. font-weight: normal; }
  4942. @media only screen {
  4943. .tooltip > .nub {
  4944. border-color: transparent transparent #333333 transparent;
  4945. top: -10px; }
  4946. .tooltip.tip-top > .nub {
  4947. border-color: #333333 transparent transparent transparent;
  4948. bottom: -10px;
  4949. top: auto; }
  4950. .tooltip.tip-left, .tooltip.tip-right {
  4951. float: none !important; }
  4952. .tooltip.tip-left > .nub {
  4953. border-color: transparent transparent transparent #333333;
  4954. left: auto;
  4955. margin-top: -5px;
  4956. right: -10px;
  4957. top: 50%; }
  4958. .tooltip.tip-right > .nub {
  4959. border-color: transparent #333333 transparent transparent;
  4960. left: -10px;
  4961. margin-top: -5px;
  4962. right: auto;
  4963. top: 50%; } }
  4964. meta.foundation-mq-topbar {
  4965. font-family: "/only screen and (min-width:40.0625em)/";
  4966. width: 40.0625em; }
  4967. /* Wrapped around .top-bar to contain to grid width */
  4968. .contain-to-grid {
  4969. width: 100%;
  4970. background: #333333; }
  4971. .contain-to-grid .top-bar {
  4972. margin-bottom: 0; }
  4973. .fixed {
  4974. position: fixed;
  4975. top: 0;
  4976. width: 100%;
  4977. z-index: 99;
  4978. left: 0; }
  4979. .fixed.expanded:not(.top-bar) {
  4980. height: auto;
  4981. max-height: 100%;
  4982. overflow-y: auto;
  4983. width: 100%; }
  4984. .fixed.expanded:not(.top-bar) .title-area {
  4985. position: fixed;
  4986. width: 100%;
  4987. z-index: 99; }
  4988. .fixed.expanded:not(.top-bar) .top-bar-section {
  4989. margin-top: 2.8125rem;
  4990. z-index: 98; }
  4991. .top-bar {
  4992. background: #333333;
  4993. height: 2.8125rem;
  4994. line-height: 2.8125rem;
  4995. margin-bottom: 0;
  4996. overflow: hidden;
  4997. position: relative; }
  4998. .top-bar ul {
  4999. list-style: none;
  5000. margin-bottom: 0; }
  5001. .top-bar .row {
  5002. max-width: none; }
  5003. .top-bar form,
  5004. .top-bar input,
  5005. .top-bar select {
  5006. margin-bottom: 0; }
  5007. .top-bar input,
  5008. .top-bar select {
  5009. font-size: 0.75rem;
  5010. height: 1.75rem;
  5011. padding-bottom: .35rem;
  5012. padding-top: .35rem; }
  5013. .top-bar .button, .top-bar button {
  5014. font-size: 0.75rem;
  5015. margin-bottom: 0;
  5016. padding-bottom: 0.4125rem;
  5017. padding-top: 0.4125rem; }
  5018. @media only screen and (max-width: 40em) {
  5019. .top-bar .button, .top-bar button {
  5020. position: relative;
  5021. top: -1px; } }
  5022. .top-bar .title-area {
  5023. margin: 0;
  5024. position: relative; }
  5025. .top-bar .name {
  5026. font-size: 16px;
  5027. height: 2.8125rem;
  5028. margin: 0; }
  5029. .top-bar .name h1, .top-bar .name h2, .top-bar .name h3, .top-bar .name h4, .top-bar .name p, .top-bar .name span {
  5030. font-size: 1.0625rem;
  5031. line-height: 2.8125rem;
  5032. margin: 0; }
  5033. .top-bar .name h1 a, .top-bar .name h2 a, .top-bar .name h3 a, .top-bar .name h4 a, .top-bar .name p a, .top-bar .name span a {
  5034. color: #FFFFFF;
  5035. display: block;
  5036. font-weight: normal;
  5037. padding: 0 0.9375rem;
  5038. width: 75%; }
  5039. .top-bar .toggle-topbar {
  5040. position: absolute;
  5041. right: 0;
  5042. top: 0; }
  5043. .top-bar .toggle-topbar a {
  5044. color: #FFFFFF;
  5045. display: block;
  5046. font-size: 0.8125rem;
  5047. font-weight: bold;
  5048. height: 2.8125rem;
  5049. line-height: 2.8125rem;
  5050. padding: 0 0.9375rem;
  5051. position: relative;
  5052. text-transform: uppercase; }
  5053. .top-bar .toggle-topbar.menu-icon {
  5054. margin-top: -16px;
  5055. top: 50%; }
  5056. .top-bar .toggle-topbar.menu-icon a {
  5057. color: #FFFFFF;
  5058. height: 34px;
  5059. line-height: 33px;
  5060. padding: 0 2.5rem 0 0.9375rem;
  5061. position: relative; }
  5062. .top-bar .toggle-topbar.menu-icon a span::after {
  5063. content: "";
  5064. display: block;
  5065. height: 0;
  5066. position: absolute;
  5067. margin-top: -8px;
  5068. top: 50%;
  5069. right: 0.9375rem;
  5070. box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  5071. width: 16px; }
  5072. .top-bar .toggle-topbar.menu-icon a span:hover:after {
  5073. box-shadow: 0 0 0 1px "", 0 7px 0 1px "", 0 14px 0 1px ""; }
  5074. .top-bar.expanded {
  5075. background: transparent;
  5076. height: auto; }
  5077. .top-bar.expanded .title-area {
  5078. background: #333333; }
  5079. .top-bar.expanded .toggle-topbar a {
  5080. color: #888888; }
  5081. .top-bar.expanded .toggle-topbar a span::after {
  5082. box-shadow: 0 0 0 1px #888888, 0 7px 0 1px #888888, 0 14px 0 1px #888888; }
  5083. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  5084. .top-bar.expanded .top-bar-section .has-dropdown.moved > .dropdown,
  5085. .top-bar.expanded .top-bar-section .dropdown {
  5086. clip: initial; }
  5087. .top-bar.expanded .top-bar-section .has-dropdown:not(.moved) > ul {
  5088. padding: 0; } }
  5089. .top-bar-section {
  5090. left: 0;
  5091. position: relative;
  5092. width: auto;
  5093. transition: left 300ms ease-out; }
  5094. .top-bar-section ul {
  5095. display: block;
  5096. font-size: 16px;
  5097. height: auto;
  5098. margin: 0;
  5099. padding: 0;
  5100. width: 100%; }
  5101. .top-bar-section .divider,
  5102. .top-bar-section [role="separator"] {
  5103. border-top: solid 1px #1a1a1a;
  5104. clear: both;
  5105. height: 1px;
  5106. width: 100%; }
  5107. .top-bar-section ul li {
  5108. background: #333333; }
  5109. .top-bar-section ul li > a {
  5110. color: #FFFFFF;
  5111. display: block;
  5112. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5113. font-size: 0.8125rem;
  5114. font-weight: normal;
  5115. padding-left: 0.9375rem;
  5116. padding: 12px 0 12px 0.9375rem;
  5117. text-transform: none;
  5118. width: 100%; }
  5119. .top-bar-section ul li > a.button {
  5120. font-size: 0.8125rem;
  5121. padding-left: 0.9375rem;
  5122. padding-right: 0.9375rem;
  5123. background-color: #008CBA;
  5124. border-color: #007095;
  5125. color: #FFFFFF; }
  5126. .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  5127. background-color: #007095; }
  5128. .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  5129. color: #FFFFFF; }
  5130. .top-bar-section ul li > a.button.secondary {
  5131. background-color: #e7e7e7;
  5132. border-color: #b9b9b9;
  5133. color: #333333; }
  5134. .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  5135. background-color: #b9b9b9; }
  5136. .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  5137. color: #333333; }
  5138. .top-bar-section ul li > a.button.success {
  5139. background-color: #43AC6A;
  5140. border-color: #368a55;
  5141. color: #FFFFFF; }
  5142. .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  5143. background-color: #368a55; }
  5144. .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  5145. color: #FFFFFF; }
  5146. .top-bar-section ul li > a.button.alert {
  5147. background-color: #f04124;
  5148. border-color: #cf2a0e;
  5149. color: #FFFFFF; }
  5150. .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  5151. background-color: #cf2a0e; }
  5152. .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  5153. color: #FFFFFF; }
  5154. .top-bar-section ul li > a.button.warning {
  5155. background-color: #f08a24;
  5156. border-color: #cf6e0e;
  5157. color: #FFFFFF; }
  5158. .top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  5159. background-color: #cf6e0e; }
  5160. .top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  5161. color: #FFFFFF; }
  5162. .top-bar-section ul li > a.button.info {
  5163. background-color: #a0d3e8;
  5164. border-color: #61b6d9;
  5165. color: #333333; }
  5166. .top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  5167. background-color: #61b6d9; }
  5168. .top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  5169. color: #FFFFFF; }
  5170. .top-bar-section ul li > button {
  5171. font-size: 0.8125rem;
  5172. padding-left: 0.9375rem;
  5173. padding-right: 0.9375rem;
  5174. background-color: #008CBA;
  5175. border-color: #007095;
  5176. color: #FFFFFF; }
  5177. .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  5178. background-color: #007095; }
  5179. .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  5180. color: #FFFFFF; }
  5181. .top-bar-section ul li > button.secondary {
  5182. background-color: #e7e7e7;
  5183. border-color: #b9b9b9;
  5184. color: #333333; }
  5185. .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  5186. background-color: #b9b9b9; }
  5187. .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  5188. color: #333333; }
  5189. .top-bar-section ul li > button.success {
  5190. background-color: #43AC6A;
  5191. border-color: #368a55;
  5192. color: #FFFFFF; }
  5193. .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  5194. background-color: #368a55; }
  5195. .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  5196. color: #FFFFFF; }
  5197. .top-bar-section ul li > button.alert {
  5198. background-color: #f04124;
  5199. border-color: #cf2a0e;
  5200. color: #FFFFFF; }
  5201. .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  5202. background-color: #cf2a0e; }
  5203. .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  5204. color: #FFFFFF; }
  5205. .top-bar-section ul li > button.warning {
  5206. background-color: #f08a24;
  5207. border-color: #cf6e0e;
  5208. color: #FFFFFF; }
  5209. .top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  5210. background-color: #cf6e0e; }
  5211. .top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  5212. color: #FFFFFF; }
  5213. .top-bar-section ul li > button.info {
  5214. background-color: #a0d3e8;
  5215. border-color: #61b6d9;
  5216. color: #333333; }
  5217. .top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  5218. background-color: #61b6d9; }
  5219. .top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  5220. color: #FFFFFF; }
  5221. .top-bar-section ul li:hover:not(.has-form) > a {
  5222. background-color: #555555;
  5223. color: #FFFFFF;
  5224. background: #222222; }
  5225. .top-bar-section ul li.active > a {
  5226. background: #008CBA;
  5227. color: #FFFFFF; }
  5228. .top-bar-section ul li.active > a:hover {
  5229. background: #0078a0;
  5230. color: #FFFFFF; }
  5231. .top-bar-section .has-form {
  5232. padding: 0.9375rem; }
  5233. .top-bar-section .has-dropdown {
  5234. position: relative; }
  5235. .top-bar-section .has-dropdown > a:after {
  5236. border: inset 5px;
  5237. content: "";
  5238. display: block;
  5239. height: 0;
  5240. width: 0;
  5241. border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  5242. border-left-style: solid;
  5243. margin-right: 0.9375rem;
  5244. margin-top: -4.5px;
  5245. position: absolute;
  5246. top: 50%;
  5247. right: 0; }
  5248. .top-bar-section .has-dropdown.moved {
  5249. position: static; }
  5250. .top-bar-section .has-dropdown.moved > .dropdown {
  5251. position: static !important;
  5252. height: auto;
  5253. width: auto;
  5254. overflow: visible;
  5255. clip: auto;
  5256. display: block;
  5257. position: absolute !important;
  5258. width: 100%; }
  5259. .top-bar-section .has-dropdown.moved > a:after {
  5260. display: none; }
  5261. .top-bar-section .dropdown {
  5262. clip: rect(1px, 1px, 1px, 1px);
  5263. height: 1px;
  5264. overflow: hidden;
  5265. position: absolute !important;
  5266. width: 1px;
  5267. display: block;
  5268. padding: 0;
  5269. position: absolute;
  5270. top: 0;
  5271. z-index: 99;
  5272. left: 100%; }
  5273. .top-bar-section .dropdown li {
  5274. height: auto;
  5275. width: 100%; }
  5276. .top-bar-section .dropdown li a {
  5277. font-weight: normal;
  5278. padding: 8px 0.9375rem; }
  5279. .top-bar-section .dropdown li a.parent-link {
  5280. font-weight: normal; }
  5281. .top-bar-section .dropdown li.title h5, .top-bar-section .dropdown li.parent-link {
  5282. margin-bottom: 0;
  5283. margin-top: 0;
  5284. font-size: 1.125rem; }
  5285. .top-bar-section .dropdown li.title h5 a, .top-bar-section .dropdown li.parent-link a {
  5286. color: #FFFFFF;
  5287. display: block; }
  5288. .top-bar-section .dropdown li.title h5 a:hover, .top-bar-section .dropdown li.parent-link a:hover {
  5289. background: none; }
  5290. .top-bar-section .dropdown li.has-form {
  5291. padding: 8px 0.9375rem; }
  5292. .top-bar-section .dropdown li .button,
  5293. .top-bar-section .dropdown li button {
  5294. top: auto; }
  5295. .top-bar-section .dropdown label {
  5296. color: #777777;
  5297. font-size: 0.625rem;
  5298. font-weight: bold;
  5299. margin-bottom: 0;
  5300. padding: 8px 0.9375rem 2px;
  5301. text-transform: uppercase; }
  5302. .js-generated {
  5303. display: block; }
  5304. @media only screen and (min-width: 40.0625em) {
  5305. .top-bar {
  5306. background: #333333;
  5307. overflow: visible; }
  5308. .top-bar:before, .top-bar:after {
  5309. content: " ";
  5310. display: table; }
  5311. .top-bar:after {
  5312. clear: both; }
  5313. .top-bar .toggle-topbar {
  5314. display: none; }
  5315. .top-bar .title-area {
  5316. float: left; }
  5317. .top-bar .name h1 a,
  5318. .top-bar .name h2 a,
  5319. .top-bar .name h3 a,
  5320. .top-bar .name h4 a,
  5321. .top-bar .name h5 a,
  5322. .top-bar .name h6 a {
  5323. width: auto; }
  5324. .top-bar input,
  5325. .top-bar select,
  5326. .top-bar .button,
  5327. .top-bar button {
  5328. font-size: 0.875rem;
  5329. height: 1.75rem;
  5330. position: relative;
  5331. top: 0.53125rem; }
  5332. .top-bar .has-form > .button,
  5333. .top-bar .has-form > button {
  5334. font-size: 0.875rem;
  5335. height: 1.75rem;
  5336. position: relative;
  5337. top: 0.53125rem; }
  5338. .top-bar.expanded {
  5339. background: #333333; }
  5340. .contain-to-grid .top-bar {
  5341. margin: 0 auto;
  5342. margin-bottom: 0;
  5343. max-width: 62.5rem; }
  5344. .top-bar-section {
  5345. transition: none 0 0;
  5346. left: 0 !important; }
  5347. .top-bar-section ul {
  5348. display: inline;
  5349. height: auto !important;
  5350. width: auto; }
  5351. .top-bar-section ul li {
  5352. float: left; }
  5353. .top-bar-section ul li .js-generated {
  5354. display: none; }
  5355. .top-bar-section li.hover > a:not(.button) {
  5356. background-color: #555555;
  5357. background: #222222;
  5358. color: #FFFFFF; }
  5359. .top-bar-section li:not(.has-form) a:not(.button) {
  5360. background: #333333;
  5361. line-height: 2.8125rem;
  5362. padding: 0 0.9375rem; }
  5363. .top-bar-section li:not(.has-form) a:not(.button):hover {
  5364. background-color: #555555;
  5365. background: #222222; }
  5366. .top-bar-section li.active:not(.has-form) a:not(.button) {
  5367. background: #008CBA;
  5368. color: #FFFFFF;
  5369. line-height: 2.8125rem;
  5370. padding: 0 0.9375rem; }
  5371. .top-bar-section li.active:not(.has-form) a:not(.button):hover {
  5372. background: #0078a0;
  5373. color: #FFFFFF; }
  5374. .top-bar-section .has-dropdown > a {
  5375. padding-right: 2.1875rem !important; }
  5376. .top-bar-section .has-dropdown > a:after {
  5377. border: inset 5px;
  5378. content: "";
  5379. display: block;
  5380. height: 0;
  5381. width: 0;
  5382. border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
  5383. border-top-style: solid;
  5384. margin-top: -2.5px;
  5385. top: 1.40625rem; }
  5386. .top-bar-section .has-dropdown.moved {
  5387. position: relative; }
  5388. .top-bar-section .has-dropdown.moved > .dropdown {
  5389. clip: rect(1px, 1px, 1px, 1px);
  5390. height: 1px;
  5391. overflow: hidden;
  5392. position: absolute !important;
  5393. width: 1px;
  5394. display: block; }
  5395. .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
  5396. position: static !important;
  5397. height: auto;
  5398. width: auto;
  5399. overflow: visible;
  5400. clip: auto;
  5401. display: block;
  5402. position: absolute !important; }
  5403. .top-bar-section .has-dropdown > a:focus + .dropdown {
  5404. position: static !important;
  5405. height: auto;
  5406. width: auto;
  5407. overflow: visible;
  5408. clip: auto;
  5409. display: block;
  5410. position: absolute !important; }
  5411. .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
  5412. border: none;
  5413. content: "\00bb";
  5414. top: 0.1875rem;
  5415. right: 5px; }
  5416. .top-bar-section .dropdown {
  5417. left: 0;
  5418. background: transparent;
  5419. min-width: 100%;
  5420. top: auto; }
  5421. .top-bar-section .dropdown li a {
  5422. background: #333333;
  5423. color: #FFFFFF;
  5424. line-height: 2.8125rem;
  5425. padding: 12px 0.9375rem;
  5426. white-space: nowrap; }
  5427. .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
  5428. background: #333333;
  5429. color: #FFFFFF; }
  5430. .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
  5431. background-color: #555555;
  5432. color: #FFFFFF;
  5433. background: #222222; }
  5434. .top-bar-section .dropdown li label {
  5435. background: #333333;
  5436. white-space: nowrap; }
  5437. .top-bar-section .dropdown li .dropdown {
  5438. left: 100%;
  5439. top: 0; }
  5440. .top-bar-section > ul > .divider,
  5441. .top-bar-section > ul > [role="separator"] {
  5442. border-right: solid 1px #4e4e4e;
  5443. border-bottom: none;
  5444. border-top: none;
  5445. clear: none;
  5446. height: 2.8125rem;
  5447. width: 0; }
  5448. .top-bar-section .has-form {
  5449. background: #333333;
  5450. height: 2.8125rem;
  5451. padding: 0 0.9375rem; }
  5452. .top-bar-section .right li .dropdown {
  5453. left: auto;
  5454. right: 0; }
  5455. .top-bar-section .right li .dropdown li .dropdown {
  5456. right: 100%; }
  5457. .top-bar-section .left li .dropdown {
  5458. right: auto;
  5459. left: 0; }
  5460. .top-bar-section .left li .dropdown li .dropdown {
  5461. left: 100%; }
  5462. .no-js .top-bar-section ul li:hover > a {
  5463. background-color: #555555;
  5464. background: #222222;
  5465. color: #FFFFFF; }
  5466. .no-js .top-bar-section ul li:active > a {
  5467. background: #008CBA;
  5468. color: #FFFFFF; }
  5469. .no-js .top-bar-section .has-dropdown:hover > .dropdown {
  5470. position: static !important;
  5471. height: auto;
  5472. width: auto;
  5473. overflow: visible;
  5474. clip: auto;
  5475. display: block;
  5476. position: absolute !important; }
  5477. .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
  5478. position: static !important;
  5479. height: auto;
  5480. width: auto;
  5481. overflow: visible;
  5482. clip: auto;
  5483. display: block;
  5484. position: absolute !important; } }
  5485. .text-left {
  5486. text-align: left !important; }
  5487. .text-right {
  5488. text-align: right !important; }
  5489. .text-center {
  5490. text-align: center !important; }
  5491. .text-justify {
  5492. text-align: justify !important; }
  5493. @media only screen and (max-width: 40em) {
  5494. .small-only-text-left {
  5495. text-align: left !important; }
  5496. .small-only-text-right {
  5497. text-align: right !important; }
  5498. .small-only-text-center {
  5499. text-align: center !important; }
  5500. .small-only-text-justify {
  5501. text-align: justify !important; } }
  5502. @media only screen {
  5503. .small-text-left {
  5504. text-align: left !important; }
  5505. .small-text-right {
  5506. text-align: right !important; }
  5507. .small-text-center {
  5508. text-align: center !important; }
  5509. .small-text-justify {
  5510. text-align: justify !important; } }
  5511. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  5512. .medium-only-text-left {
  5513. text-align: left !important; }
  5514. .medium-only-text-right {
  5515. text-align: right !important; }
  5516. .medium-only-text-center {
  5517. text-align: center !important; }
  5518. .medium-only-text-justify {
  5519. text-align: justify !important; } }
  5520. @media only screen and (min-width: 40.0625em) {
  5521. .medium-text-left {
  5522. text-align: left !important; }
  5523. .medium-text-right {
  5524. text-align: right !important; }
  5525. .medium-text-center {
  5526. text-align: center !important; }
  5527. .medium-text-justify {
  5528. text-align: justify !important; } }
  5529. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  5530. .large-only-text-left {
  5531. text-align: left !important; }
  5532. .large-only-text-right {
  5533. text-align: right !important; }
  5534. .large-only-text-center {
  5535. text-align: center !important; }
  5536. .large-only-text-justify {
  5537. text-align: justify !important; } }
  5538. @media only screen and (min-width: 64.0625em) {
  5539. .large-text-left {
  5540. text-align: left !important; }
  5541. .large-text-right {
  5542. text-align: right !important; }
  5543. .large-text-center {
  5544. text-align: center !important; }
  5545. .large-text-justify {
  5546. text-align: justify !important; } }
  5547. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  5548. .xlarge-only-text-left {
  5549. text-align: left !important; }
  5550. .xlarge-only-text-right {
  5551. text-align: right !important; }
  5552. .xlarge-only-text-center {
  5553. text-align: center !important; }
  5554. .xlarge-only-text-justify {
  5555. text-align: justify !important; } }
  5556. @media only screen and (min-width: 90.0625em) {
  5557. .xlarge-text-left {
  5558. text-align: left !important; }
  5559. .xlarge-text-right {
  5560. text-align: right !important; }
  5561. .xlarge-text-center {
  5562. text-align: center !important; }
  5563. .xlarge-text-justify {
  5564. text-align: justify !important; } }
  5565. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  5566. .xxlarge-only-text-left {
  5567. text-align: left !important; }
  5568. .xxlarge-only-text-right {
  5569. text-align: right !important; }
  5570. .xxlarge-only-text-center {
  5571. text-align: center !important; }
  5572. .xxlarge-only-text-justify {
  5573. text-align: justify !important; } }
  5574. @media only screen and (min-width: 120.0625em) {
  5575. .xxlarge-text-left {
  5576. text-align: left !important; }
  5577. .xxlarge-text-right {
  5578. text-align: right !important; }
  5579. .xxlarge-text-center {
  5580. text-align: center !important; }
  5581. .xxlarge-text-justify {
  5582. text-align: justify !important; } }
  5583. /* Typography resets */
  5584. div,
  5585. dl,
  5586. dt,
  5587. dd,
  5588. ul,
  5589. ol,
  5590. li,
  5591. h1,
  5592. h2,
  5593. h3,
  5594. h4,
  5595. h5,
  5596. h6,
  5597. pre,
  5598. form,
  5599. p,
  5600. blockquote,
  5601. th,
  5602. td {
  5603. margin: 0;
  5604. padding: 0; }
  5605. /* Default Link Styles */
  5606. a {
  5607. color: #008CBA;
  5608. line-height: inherit;
  5609. text-decoration: none; }
  5610. a:hover, a:focus {
  5611. color: #0078a0; }
  5612. a img {
  5613. border: none; }
  5614. /* Default paragraph styles */
  5615. p {
  5616. font-family: inherit;
  5617. font-size: 1rem;
  5618. font-weight: normal;
  5619. line-height: 1.6;
  5620. margin-bottom: 1.25rem;
  5621. text-rendering: optimizeLegibility; }
  5622. p.lead {
  5623. font-size: 1.21875rem;
  5624. line-height: 1.6; }
  5625. p aside {
  5626. font-size: 0.875rem;
  5627. font-style: italic;
  5628. line-height: 1.35; }
  5629. /* Default header styles */
  5630. h1, h2, h3, h4, h5, h6 {
  5631. color: #222222;
  5632. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5633. font-style: normal;
  5634. font-weight: normal;
  5635. line-height: 1.4;
  5636. margin-bottom: 0.5rem;
  5637. margin-top: 0.2rem;
  5638. text-rendering: optimizeLegibility; }
  5639. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  5640. color: #6f6f6f;
  5641. font-size: 60%;
  5642. line-height: 0; }
  5643. h1 {
  5644. font-size: 2.125rem; }
  5645. h2 {
  5646. font-size: 1.6875rem; }
  5647. h3 {
  5648. font-size: 1.375rem; }
  5649. h4 {
  5650. font-size: 1.125rem; }
  5651. h5 {
  5652. font-size: 1.125rem; }
  5653. h6 {
  5654. font-size: 1rem; }
  5655. .subheader {
  5656. line-height: 1.4;
  5657. color: #6f6f6f;
  5658. font-weight: normal;
  5659. margin-top: 0.2rem;
  5660. margin-bottom: 0.5rem; }
  5661. hr {
  5662. border: solid #DDDDDD;
  5663. border-width: 1px 0 0;
  5664. clear: both;
  5665. height: 0;
  5666. margin: 1.25rem 0 1.1875rem; }
  5667. /* Helpful Typography Defaults */
  5668. em,
  5669. i {
  5670. font-style: italic;
  5671. line-height: inherit; }
  5672. strong,
  5673. b {
  5674. font-weight: bold;
  5675. line-height: inherit; }
  5676. small {
  5677. font-size: 60%;
  5678. line-height: inherit; }
  5679. code {
  5680. background-color: #f8f8f8;
  5681. border-color: #dfdfdf;
  5682. border-style: solid;
  5683. border-width: 1px;
  5684. color: #333333;
  5685. font-family: Consolas, "Liberation Mono", Courier, monospace;
  5686. font-weight: normal;
  5687. padding: 0.125rem 0.3125rem 0.0625rem; }
  5688. /* Lists */
  5689. ul,
  5690. ol,
  5691. dl {
  5692. font-family: inherit;
  5693. font-size: 1rem;
  5694. line-height: 1.6;
  5695. list-style-position: outside;
  5696. margin-bottom: 1.25rem; }
  5697. ul {
  5698. margin-left: 1.1rem; }
  5699. /* Unordered Lists */
  5700. ul li ul,
  5701. ul li ol {
  5702. margin-left: 1.25rem;
  5703. margin-bottom: 0; }
  5704. ul.square li ul, ul.circle li ul, ul.disc li ul {
  5705. list-style: inherit; }
  5706. ul.square {
  5707. list-style-type: square;
  5708. margin-left: 1.1rem; }
  5709. ul.circle {
  5710. list-style-type: circle;
  5711. margin-left: 1.1rem; }
  5712. ul.disc {
  5713. list-style-type: disc;
  5714. margin-left: 1.1rem; }
  5715. /* Ordered Lists */
  5716. ol {
  5717. margin-left: 1.4rem; }
  5718. ol li ul,
  5719. ol li ol {
  5720. margin-left: 1.25rem;
  5721. margin-bottom: 0; }
  5722. .no-bullet {
  5723. list-style-type: none;
  5724. margin-left: 0; }
  5725. .no-bullet li ul,
  5726. .no-bullet li ol {
  5727. margin-left: 1.25rem;
  5728. margin-bottom: 0;
  5729. list-style: none; }
  5730. /* Definition Lists */
  5731. dl dt {
  5732. margin-bottom: 0.3rem;
  5733. font-weight: bold; }
  5734. dl dd {
  5735. margin-bottom: 0.75rem; }
  5736. /* Abbreviations */
  5737. abbr,
  5738. acronym {
  5739. text-transform: uppercase;
  5740. font-size: 90%;
  5741. color: #222;
  5742. cursor: help; }
  5743. abbr {
  5744. text-transform: none; }
  5745. abbr[title] {
  5746. border-bottom: 1px dotted #DDDDDD; }
  5747. /* Blockquotes */
  5748. blockquote {
  5749. margin: 0 0 1.25rem;
  5750. padding: 0.5625rem 1.25rem 0 1.1875rem;
  5751. border-left: 1px solid #DDDDDD; }
  5752. blockquote cite {
  5753. display: block;
  5754. font-size: 0.8125rem;
  5755. color: #555555; }
  5756. blockquote cite:before {
  5757. content: "\2014 \0020"; }
  5758. blockquote cite a,
  5759. blockquote cite a:visited {
  5760. color: #555555; }
  5761. blockquote,
  5762. blockquote p {
  5763. line-height: 1.6;
  5764. color: #6f6f6f; }
  5765. /* Microformats */
  5766. .vcard {
  5767. display: inline-block;
  5768. margin: 0 0 1.25rem 0;
  5769. border: 1px solid #DDDDDD;
  5770. padding: 0.625rem 0.75rem; }
  5771. .vcard li {
  5772. margin: 0;
  5773. display: block; }
  5774. .vcard .fn {
  5775. font-weight: bold;
  5776. font-size: 0.9375rem; }
  5777. .vevent .summary {
  5778. font-weight: bold; }
  5779. .vevent abbr {
  5780. cursor: default;
  5781. text-decoration: none;
  5782. font-weight: bold;
  5783. border: none;
  5784. padding: 0 0.0625rem; }
  5785. @media only screen and (min-width: 40.0625em) {
  5786. h1, h2, h3, h4, h5, h6 {
  5787. line-height: 1.4; }
  5788. h1 {
  5789. font-size: 2.75rem; }
  5790. h2 {
  5791. font-size: 2.3125rem; }
  5792. h3 {
  5793. font-size: 1.6875rem; }
  5794. h4 {
  5795. font-size: 1.4375rem; }
  5796. h5 {
  5797. font-size: 1.125rem; }
  5798. h6 {
  5799. font-size: 1rem; } }
  5800. /*
  5801. * Print styles.
  5802. *
  5803. * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
  5804. * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
  5805. */
  5806. @media print {
  5807. * {
  5808. background: transparent !important;
  5809. color: #000000 !important;
  5810. /* Black prints faster: h5bp.com/s */
  5811. box-shadow: none !important;
  5812. text-shadow: none !important; }
  5813. a,
  5814. a:visited {
  5815. text-decoration: underline; }
  5816. a[href]:after {
  5817. content: " (" attr(href) ")"; }
  5818. abbr[title]:after {
  5819. content: " (" attr(title) ")"; }
  5820. .ir a:after,
  5821. a[href^="javascript:"]:after,
  5822. a[href^="#"]:after {
  5823. content: ""; }
  5824. pre,
  5825. blockquote {
  5826. border: 1px solid #999999;
  5827. page-break-inside: avoid; }
  5828. thead {
  5829. display: table-header-group;
  5830. /* h5bp.com/t */ }
  5831. tr,
  5832. img {
  5833. page-break-inside: avoid; }
  5834. img {
  5835. max-width: 100% !important; }
  5836. @page {
  5837. margin: 0.34in; }
  5838. p,
  5839. h2,
  5840. h3 {
  5841. orphans: 3;
  5842. widows: 3; }
  5843. h2,
  5844. h3 {
  5845. page-break-after: avoid; } }
  5846. .off-canvas-wrap {
  5847. -webkit-backface-visibility: hidden;
  5848. position: relative;
  5849. width: 100%;
  5850. overflow: hidden; }
  5851. .off-canvas-wrap.move-right, .off-canvas-wrap.move-left, .off-canvas-wrap.move-bottom, .off-canvas-wrap.move-top {
  5852. min-height: 100%;
  5853. -webkit-overflow-scrolling: touch; }
  5854. .inner-wrap {
  5855. position: relative;
  5856. width: 100%;
  5857. -webkit-transition: -webkit-transform 500ms ease;
  5858. -moz-transition: -moz-transform 500ms ease;
  5859. -ms-transition: -ms-transform 500ms ease;
  5860. -o-transition: -o-transform 500ms ease;
  5861. transition: transform 500ms ease; }
  5862. .inner-wrap:before, .inner-wrap:after {
  5863. content: " ";
  5864. display: table; }
  5865. .inner-wrap:after {
  5866. clear: both; }
  5867. .tab-bar {
  5868. -webkit-backface-visibility: hidden;
  5869. background: #333333;
  5870. color: #FFFFFF;
  5871. height: 2.8125rem;
  5872. line-height: 2.8125rem;
  5873. position: relative; }
  5874. .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 {
  5875. color: #FFFFFF;
  5876. font-weight: bold;
  5877. line-height: 2.8125rem;
  5878. margin: 0; }
  5879. .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 {
  5880. font-size: 1.125rem; }
  5881. .left-small {
  5882. height: 2.8125rem;
  5883. position: absolute;
  5884. top: 0;
  5885. width: 2.8125rem;
  5886. border-right: solid 1px #1a1a1a;
  5887. left: 0; }
  5888. .right-small {
  5889. height: 2.8125rem;
  5890. position: absolute;
  5891. top: 0;
  5892. width: 2.8125rem;
  5893. border-left: solid 1px #1a1a1a;
  5894. right: 0; }
  5895. .tab-bar-section {
  5896. height: 2.8125rem;
  5897. padding: 0 0.625rem;
  5898. position: absolute;
  5899. text-align: center;
  5900. top: 0; }
  5901. .tab-bar-section.left {
  5902. text-align: left; }
  5903. .tab-bar-section.right {
  5904. text-align: right; }
  5905. .tab-bar-section.left {
  5906. left: 0;
  5907. right: 2.8125rem; }
  5908. .tab-bar-section.right {
  5909. left: 2.8125rem;
  5910. right: 0; }
  5911. .tab-bar-section.middle {
  5912. left: 2.8125rem;
  5913. right: 2.8125rem; }
  5914. .tab-bar .menu-icon {
  5915. color: #FFFFFF;
  5916. display: block;
  5917. height: 2.8125rem;
  5918. padding: 0;
  5919. position: relative;
  5920. text-indent: 2.1875rem;
  5921. transform: translate3d(0, 0, 0);
  5922. width: 2.8125rem; }
  5923. .tab-bar .menu-icon span::after {
  5924. content: "";
  5925. display: block;
  5926. height: 0;
  5927. position: absolute;
  5928. top: 50%;
  5929. margin-top: -0.5rem;
  5930. left: 0.90625rem;
  5931. box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  5932. width: 1rem; }
  5933. .tab-bar .menu-icon span:hover:after {
  5934. box-shadow: 0 0 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3; }
  5935. .left-off-canvas-menu {
  5936. -webkit-backface-visibility: hidden;
  5937. background: #333333;
  5938. bottom: 0;
  5939. box-sizing: content-box;
  5940. -webkit-overflow-scrolling: touch;
  5941. -ms-overflow-style: -ms-autohiding-scrollbar;
  5942. overflow-x: hidden;
  5943. overflow-y: auto;
  5944. position: absolute;
  5945. transition: transform 500ms ease 0s;
  5946. width: 15.625rem;
  5947. z-index: 1001;
  5948. -webkit-transform: translate3d(-100%, 0, 0);
  5949. -moz-transform: translate3d(-100%, 0, 0);
  5950. -ms-transform: translate(-100%, 0);
  5951. -o-transform: translate3d(-100%, 0, 0);
  5952. transform: translate3d(-100%, 0, 0);
  5953. left: 0;
  5954. top: 0; }
  5955. .left-off-canvas-menu * {
  5956. -webkit-backface-visibility: hidden; }
  5957. .right-off-canvas-menu {
  5958. -webkit-backface-visibility: hidden;
  5959. background: #333333;
  5960. bottom: 0;
  5961. box-sizing: content-box;
  5962. -webkit-overflow-scrolling: touch;
  5963. -ms-overflow-style: -ms-autohiding-scrollbar;
  5964. overflow-x: hidden;
  5965. overflow-y: auto;
  5966. position: absolute;
  5967. transition: transform 500ms ease 0s;
  5968. width: 15.625rem;
  5969. z-index: 1001;
  5970. -webkit-transform: translate3d(100%, 0, 0);
  5971. -moz-transform: translate3d(100%, 0, 0);
  5972. -ms-transform: translate(100%, 0);
  5973. -o-transform: translate3d(100%, 0, 0);
  5974. transform: translate3d(100%, 0, 0);
  5975. right: 0;
  5976. top: 0; }
  5977. .right-off-canvas-menu * {
  5978. -webkit-backface-visibility: hidden; }
  5979. .top-off-canvas-menu {
  5980. -webkit-backface-visibility: hidden;
  5981. background: #333333;
  5982. bottom: 0;
  5983. box-sizing: content-box;
  5984. -webkit-overflow-scrolling: touch;
  5985. -ms-overflow-style: -ms-autohiding-scrollbar;
  5986. overflow-x: hidden;
  5987. overflow-y: auto;
  5988. position: absolute;
  5989. transition: transform 500ms ease 0s;
  5990. width: 15.625rem;
  5991. z-index: 1001;
  5992. -webkit-transform: translate3d(0, -100%, 0);
  5993. -moz-transform: translate3d(0, -100%, 0);
  5994. -ms-transform: translate(0, -100%);
  5995. -o-transform: translate3d(0, -100%, 0);
  5996. transform: translate3d(0, -100%, 0);
  5997. top: 0;
  5998. width: 100%;
  5999. height: 18.75rem; }
  6000. .top-off-canvas-menu * {
  6001. -webkit-backface-visibility: hidden; }
  6002. .bottom-off-canvas-menu {
  6003. -webkit-backface-visibility: hidden;
  6004. background: #333333;
  6005. bottom: 0;
  6006. box-sizing: content-box;
  6007. -webkit-overflow-scrolling: touch;
  6008. -ms-overflow-style: -ms-autohiding-scrollbar;
  6009. overflow-x: hidden;
  6010. overflow-y: auto;
  6011. position: absolute;
  6012. transition: transform 500ms ease 0s;
  6013. width: 15.625rem;
  6014. z-index: 1001;
  6015. -webkit-transform: translate3d(0, 100%, 0);
  6016. -moz-transform: translate3d(0, 100%, 0);
  6017. -ms-transform: translate(0, 100%);
  6018. -o-transform: translate3d(0, 100%, 0);
  6019. transform: translate3d(0, 100%, 0);
  6020. bottom: 0;
  6021. width: 100%;
  6022. height: 18.75rem; }
  6023. .bottom-off-canvas-menu * {
  6024. -webkit-backface-visibility: hidden; }
  6025. ul.off-canvas-list {
  6026. list-style-type: none;
  6027. margin: 0;
  6028. padding: 0; }
  6029. ul.off-canvas-list li label {
  6030. background: #444444;
  6031. border-bottom: none;
  6032. border-top: 1px solid #5e5e5e;
  6033. color: #999999;
  6034. display: block;
  6035. font-size: 0.75rem;
  6036. font-weight: bold;
  6037. margin: 0;
  6038. padding: 0.3rem 0.9375rem;
  6039. text-transform: uppercase; }
  6040. ul.off-canvas-list li a {
  6041. border-bottom: 1px solid #262626;
  6042. color: rgba(255, 255, 255, 0.7);
  6043. display: block;
  6044. padding: 0.66667rem;
  6045. transition: background 300ms ease; }
  6046. ul.off-canvas-list li a:hover {
  6047. background: #242424; }
  6048. ul.off-canvas-list li a:active {
  6049. background: #242424; }
  6050. .move-right > .inner-wrap {
  6051. -webkit-transform: translate3d(15.625rem, 0, 0);
  6052. -moz-transform: translate3d(15.625rem, 0, 0);
  6053. -ms-transform: translate(15.625rem, 0);
  6054. -o-transform: translate3d(15.625rem, 0, 0);
  6055. transform: translate3d(15.625rem, 0, 0); }
  6056. .move-right .exit-off-canvas {
  6057. -webkit-backface-visibility: hidden;
  6058. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6059. cursor: pointer;
  6060. transition: background 300ms ease;
  6061. -webkit-tap-highlight-color: transparent;
  6062. background: rgba(255, 255, 255, 0.2);
  6063. bottom: 0;
  6064. display: block;
  6065. left: 0;
  6066. position: absolute;
  6067. right: 0;
  6068. top: 0;
  6069. z-index: 1002; }
  6070. @media only screen and (min-width: 40.0625em) {
  6071. .move-right .exit-off-canvas:hover {
  6072. background: rgba(255, 255, 255, 0.05); } }
  6073. .move-left > .inner-wrap {
  6074. -webkit-transform: translate3d(-15.625rem, 0, 0);
  6075. -moz-transform: translate3d(-15.625rem, 0, 0);
  6076. -ms-transform: translate(-15.625rem, 0);
  6077. -o-transform: translate3d(-15.625rem, 0, 0);
  6078. transform: translate3d(-15.625rem, 0, 0); }
  6079. .move-left .exit-off-canvas {
  6080. -webkit-backface-visibility: hidden;
  6081. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6082. cursor: pointer;
  6083. transition: background 300ms ease;
  6084. -webkit-tap-highlight-color: transparent;
  6085. background: rgba(255, 255, 255, 0.2);
  6086. bottom: 0;
  6087. display: block;
  6088. left: 0;
  6089. position: absolute;
  6090. right: 0;
  6091. top: 0;
  6092. z-index: 1002; }
  6093. @media only screen and (min-width: 40.0625em) {
  6094. .move-left .exit-off-canvas:hover {
  6095. background: rgba(255, 255, 255, 0.05); } }
  6096. .move-top > .inner-wrap {
  6097. -webkit-transform: translate3d(0, -18.75rem, 0);
  6098. -moz-transform: translate3d(0, -18.75rem, 0);
  6099. -ms-transform: translate(0, -18.75rem);
  6100. -o-transform: translate3d(0, -18.75rem, 0);
  6101. transform: translate3d(0, -18.75rem, 0); }
  6102. .move-top .exit-off-canvas {
  6103. -webkit-backface-visibility: hidden;
  6104. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6105. cursor: pointer;
  6106. transition: background 300ms ease;
  6107. -webkit-tap-highlight-color: transparent;
  6108. background: rgba(255, 255, 255, 0.2);
  6109. bottom: 0;
  6110. display: block;
  6111. left: 0;
  6112. position: absolute;
  6113. right: 0;
  6114. top: 0;
  6115. z-index: 1002; }
  6116. @media only screen and (min-width: 40.0625em) {
  6117. .move-top .exit-off-canvas:hover {
  6118. background: rgba(255, 255, 255, 0.05); } }
  6119. .move-bottom > .inner-wrap {
  6120. -webkit-transform: translate3d(0, 18.75rem, 0);
  6121. -moz-transform: translate3d(0, 18.75rem, 0);
  6122. -ms-transform: translate(0, 18.75rem);
  6123. -o-transform: translate3d(0, 18.75rem, 0);
  6124. transform: translate3d(0, 18.75rem, 0); }
  6125. .move-bottom .exit-off-canvas {
  6126. -webkit-backface-visibility: hidden;
  6127. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6128. cursor: pointer;
  6129. transition: background 300ms ease;
  6130. -webkit-tap-highlight-color: transparent;
  6131. background: rgba(255, 255, 255, 0.2);
  6132. bottom: 0;
  6133. display: block;
  6134. left: 0;
  6135. position: absolute;
  6136. right: 0;
  6137. top: 0;
  6138. z-index: 1002; }
  6139. @media only screen and (min-width: 40.0625em) {
  6140. .move-bottom .exit-off-canvas:hover {
  6141. background: rgba(255, 255, 255, 0.05); } }
  6142. .offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu,
  6143. .offcanvas-overlap .top-off-canvas-menu, .offcanvas-overlap .bottom-off-canvas-menu {
  6144. -ms-transform: none;
  6145. -webkit-transform: none;
  6146. -moz-transform: none;
  6147. -o-transform: none;
  6148. transform: none;
  6149. z-index: 1003; }
  6150. .offcanvas-overlap .exit-off-canvas {
  6151. -webkit-backface-visibility: hidden;
  6152. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6153. cursor: pointer;
  6154. transition: background 300ms ease;
  6155. -webkit-tap-highlight-color: transparent;
  6156. background: rgba(255, 255, 255, 0.2);
  6157. bottom: 0;
  6158. display: block;
  6159. left: 0;
  6160. position: absolute;
  6161. right: 0;
  6162. top: 0;
  6163. z-index: 1002; }
  6164. @media only screen and (min-width: 40.0625em) {
  6165. .offcanvas-overlap .exit-off-canvas:hover {
  6166. background: rgba(255, 255, 255, 0.05); } }
  6167. .offcanvas-overlap-left .right-off-canvas-menu {
  6168. -ms-transform: none;
  6169. -webkit-transform: none;
  6170. -moz-transform: none;
  6171. -o-transform: none;
  6172. transform: none;
  6173. z-index: 1003; }
  6174. .offcanvas-overlap-left .exit-off-canvas {
  6175. -webkit-backface-visibility: hidden;
  6176. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6177. cursor: pointer;
  6178. transition: background 300ms ease;
  6179. -webkit-tap-highlight-color: transparent;
  6180. background: rgba(255, 255, 255, 0.2);
  6181. bottom: 0;
  6182. display: block;
  6183. left: 0;
  6184. position: absolute;
  6185. right: 0;
  6186. top: 0;
  6187. z-index: 1002; }
  6188. @media only screen and (min-width: 40.0625em) {
  6189. .offcanvas-overlap-left .exit-off-canvas:hover {
  6190. background: rgba(255, 255, 255, 0.05); } }
  6191. .offcanvas-overlap-right .left-off-canvas-menu {
  6192. -ms-transform: none;
  6193. -webkit-transform: none;
  6194. -moz-transform: none;
  6195. -o-transform: none;
  6196. transform: none;
  6197. z-index: 1003; }
  6198. .offcanvas-overlap-right .exit-off-canvas {
  6199. -webkit-backface-visibility: hidden;
  6200. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6201. cursor: pointer;
  6202. transition: background 300ms ease;
  6203. -webkit-tap-highlight-color: transparent;
  6204. background: rgba(255, 255, 255, 0.2);
  6205. bottom: 0;
  6206. display: block;
  6207. left: 0;
  6208. position: absolute;
  6209. right: 0;
  6210. top: 0;
  6211. z-index: 1002; }
  6212. @media only screen and (min-width: 40.0625em) {
  6213. .offcanvas-overlap-right .exit-off-canvas:hover {
  6214. background: rgba(255, 255, 255, 0.05); } }
  6215. .offcanvas-overlap-top .bottom-off-canvas-menu {
  6216. -ms-transform: none;
  6217. -webkit-transform: none;
  6218. -moz-transform: none;
  6219. -o-transform: none;
  6220. transform: none;
  6221. z-index: 1003; }
  6222. .offcanvas-overlap-top .exit-off-canvas {
  6223. -webkit-backface-visibility: hidden;
  6224. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6225. cursor: pointer;
  6226. transition: background 300ms ease;
  6227. -webkit-tap-highlight-color: transparent;
  6228. background: rgba(255, 255, 255, 0.2);
  6229. bottom: 0;
  6230. display: block;
  6231. left: 0;
  6232. position: absolute;
  6233. right: 0;
  6234. top: 0;
  6235. z-index: 1002; }
  6236. @media only screen and (min-width: 40.0625em) {
  6237. .offcanvas-overlap-top .exit-off-canvas:hover {
  6238. background: rgba(255, 255, 255, 0.05); } }
  6239. .offcanvas-overlap-bottom .top-off-canvas-menu {
  6240. -ms-transform: none;
  6241. -webkit-transform: none;
  6242. -moz-transform: none;
  6243. -o-transform: none;
  6244. transform: none;
  6245. z-index: 1003; }
  6246. .offcanvas-overlap-bottom .exit-off-canvas {
  6247. -webkit-backface-visibility: hidden;
  6248. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  6249. cursor: pointer;
  6250. transition: background 300ms ease;
  6251. -webkit-tap-highlight-color: transparent;
  6252. background: rgba(255, 255, 255, 0.2);
  6253. bottom: 0;
  6254. display: block;
  6255. left: 0;
  6256. position: absolute;
  6257. right: 0;
  6258. top: 0;
  6259. z-index: 1002; }
  6260. @media only screen and (min-width: 40.0625em) {
  6261. .offcanvas-overlap-bottom .exit-off-canvas:hover {
  6262. background: rgba(255, 255, 255, 0.05); } }
  6263. .no-csstransforms .left-off-canvas-menu {
  6264. left: -15.625rem; }
  6265. .no-csstransforms .right-off-canvas-menu {
  6266. right: -15.625rem; }
  6267. .no-csstransforms .top-off-canvas-menu {
  6268. top: -18.75rem; }
  6269. .no-csstransforms .bottom-off-canvas-menu {
  6270. bottom: -18.75rem; }
  6271. .no-csstransforms .move-left > .inner-wrap {
  6272. right: 15.625rem; }
  6273. .no-csstransforms .move-right > .inner-wrap {
  6274. left: 15.625rem; }
  6275. .no-csstransforms .move-top > .inner-wrap {
  6276. right: 18.75rem; }
  6277. .no-csstransforms .move-bottom > .inner-wrap {
  6278. left: 18.75rem; }
  6279. .left-submenu {
  6280. -webkit-backface-visibility: hidden;
  6281. -webkit-overflow-scrolling: touch;
  6282. background: #333333;
  6283. bottom: 0;
  6284. box-sizing: content-box;
  6285. margin: 0;
  6286. overflow-x: hidden;
  6287. overflow-y: auto;
  6288. position: absolute;
  6289. top: 0;
  6290. width: 15.625rem;
  6291. height: 18.75rem;
  6292. z-index: 1002;
  6293. -webkit-transform: translate3d(-100%, 0, 0);
  6294. -moz-transform: translate3d(-100%, 0, 0);
  6295. -ms-transform: translate(-100%, 0);
  6296. -o-transform: translate3d(-100%, 0, 0);
  6297. transform: translate3d(-100%, 0, 0);
  6298. left: 0;
  6299. -webkit-transition: -webkit-transform 500ms ease;
  6300. -moz-transition: -moz-transform 500ms ease;
  6301. -ms-transition: -ms-transform 500ms ease;
  6302. -o-transition: -o-transform 500ms ease;
  6303. transition: transform 500ms ease; }
  6304. .left-submenu * {
  6305. -webkit-backface-visibility: hidden; }
  6306. .left-submenu .back > a {
  6307. background: #444;
  6308. border-bottom: none;
  6309. border-top: 1px solid #5e5e5e;
  6310. color: #999999;
  6311. font-weight: bold;
  6312. padding: 0.3rem 0.9375rem;
  6313. text-transform: uppercase;
  6314. margin: 0; }
  6315. .left-submenu .back > a:hover {
  6316. background: #303030;
  6317. border-bottom: none;
  6318. border-top: 1px solid #5e5e5e; }
  6319. .left-submenu .back > a:before {
  6320. content: "\AB";
  6321. margin-right: .5rem;
  6322. display: inline; }
  6323. .left-submenu.move-right, .left-submenu.offcanvas-overlap-right, .left-submenu.offcanvas-overlap {
  6324. -webkit-transform: translate3d(0%, 0, 0);
  6325. -moz-transform: translate3d(0%, 0, 0);
  6326. -ms-transform: translate(0%, 0);
  6327. -o-transform: translate3d(0%, 0, 0);
  6328. transform: translate3d(0%, 0, 0); }
  6329. .right-submenu {
  6330. -webkit-backface-visibility: hidden;
  6331. -webkit-overflow-scrolling: touch;
  6332. background: #333333;
  6333. bottom: 0;
  6334. box-sizing: content-box;
  6335. margin: 0;
  6336. overflow-x: hidden;
  6337. overflow-y: auto;
  6338. position: absolute;
  6339. top: 0;
  6340. width: 15.625rem;
  6341. height: 18.75rem;
  6342. z-index: 1002;
  6343. -webkit-transform: translate3d(100%, 0, 0);
  6344. -moz-transform: translate3d(100%, 0, 0);
  6345. -ms-transform: translate(100%, 0);
  6346. -o-transform: translate3d(100%, 0, 0);
  6347. transform: translate3d(100%, 0, 0);
  6348. right: 0;
  6349. -webkit-transition: -webkit-transform 500ms ease;
  6350. -moz-transition: -moz-transform 500ms ease;
  6351. -ms-transition: -ms-transform 500ms ease;
  6352. -o-transition: -o-transform 500ms ease;
  6353. transition: transform 500ms ease; }
  6354. .right-submenu * {
  6355. -webkit-backface-visibility: hidden; }
  6356. .right-submenu .back > a {
  6357. background: #444;
  6358. border-bottom: none;
  6359. border-top: 1px solid #5e5e5e;
  6360. color: #999999;
  6361. font-weight: bold;
  6362. padding: 0.3rem 0.9375rem;
  6363. text-transform: uppercase;
  6364. margin: 0; }
  6365. .right-submenu .back > a:hover {
  6366. background: #303030;
  6367. border-bottom: none;
  6368. border-top: 1px solid #5e5e5e; }
  6369. .right-submenu .back > a:after {
  6370. content: "\BB";
  6371. margin-left: .5rem;
  6372. display: inline; }
  6373. .right-submenu.move-left, .right-submenu.offcanvas-overlap-left, .right-submenu.offcanvas-overlap {
  6374. -webkit-transform: translate3d(0%, 0, 0);
  6375. -moz-transform: translate3d(0%, 0, 0);
  6376. -ms-transform: translate(0%, 0);
  6377. -o-transform: translate3d(0%, 0, 0);
  6378. transform: translate3d(0%, 0, 0); }
  6379. .top-submenu {
  6380. -webkit-backface-visibility: hidden;
  6381. -webkit-overflow-scrolling: touch;
  6382. background: #333333;
  6383. bottom: 0;
  6384. box-sizing: content-box;
  6385. margin: 0;
  6386. overflow-x: hidden;
  6387. overflow-y: auto;
  6388. position: absolute;
  6389. top: 0;
  6390. width: 15.625rem;
  6391. height: 18.75rem;
  6392. z-index: 1002;
  6393. -webkit-transform: translate3d(0, -100%, 0);
  6394. -moz-transform: translate3d(0, -100%, 0);
  6395. -ms-transform: translate(0, -100%);
  6396. -o-transform: translate3d(0, -100%, 0);
  6397. transform: translate3d(0, -100%, 0);
  6398. top: 0;
  6399. width: 100%;
  6400. -webkit-transition: -webkit-transform 500ms ease;
  6401. -moz-transition: -moz-transform 500ms ease;
  6402. -ms-transition: -ms-transform 500ms ease;
  6403. -o-transition: -o-transform 500ms ease;
  6404. transition: transform 500ms ease; }
  6405. .top-submenu * {
  6406. -webkit-backface-visibility: hidden; }
  6407. .top-submenu .back > a {
  6408. background: #444;
  6409. border-bottom: none;
  6410. border-top: 1px solid #5e5e5e;
  6411. color: #999999;
  6412. font-weight: bold;
  6413. padding: 0.3rem 0.9375rem;
  6414. text-transform: uppercase;
  6415. margin: 0; }
  6416. .top-submenu .back > a:hover {
  6417. background: #303030;
  6418. border-bottom: none;
  6419. border-top: 1px solid #5e5e5e; }
  6420. .top-submenu.move-bottom, .top-submenu.offcanvas-overlap-bottom, .top-submenu.offcanvas-overlap {
  6421. -webkit-transform: translate3d(0, 0%, 0);
  6422. -moz-transform: translate3d(0, 0%, 0);
  6423. -ms-transform: translate(0, 0%);
  6424. -o-transform: translate3d(0, 0%, 0);
  6425. transform: translate3d(0, 0%, 0); }
  6426. .bottom-submenu {
  6427. -webkit-backface-visibility: hidden;
  6428. -webkit-overflow-scrolling: touch;
  6429. background: #333333;
  6430. bottom: 0;
  6431. box-sizing: content-box;
  6432. margin: 0;
  6433. overflow-x: hidden;
  6434. overflow-y: auto;
  6435. position: absolute;
  6436. top: 0;
  6437. width: 15.625rem;
  6438. height: 18.75rem;
  6439. z-index: 1002;
  6440. -webkit-transform: translate3d(0, 100%, 0);
  6441. -moz-transform: translate3d(0, 100%, 0);
  6442. -ms-transform: translate(0, 100%);
  6443. -o-transform: translate3d(0, 100%, 0);
  6444. transform: translate3d(0, 100%, 0);
  6445. bottom: 0;
  6446. width: 100%;
  6447. -webkit-transition: -webkit-transform 500ms ease;
  6448. -moz-transition: -moz-transform 500ms ease;
  6449. -ms-transition: -ms-transform 500ms ease;
  6450. -o-transition: -o-transform 500ms ease;
  6451. transition: transform 500ms ease; }
  6452. .bottom-submenu * {
  6453. -webkit-backface-visibility: hidden; }
  6454. .bottom-submenu .back > a {
  6455. background: #444;
  6456. border-bottom: none;
  6457. border-top: 1px solid #5e5e5e;
  6458. color: #999999;
  6459. font-weight: bold;
  6460. padding: 0.3rem 0.9375rem;
  6461. text-transform: uppercase;
  6462. margin: 0; }
  6463. .bottom-submenu .back > a:hover {
  6464. background: #303030;
  6465. border-bottom: none;
  6466. border-top: 1px solid #5e5e5e; }
  6467. .bottom-submenu.move-top, .bottom-submenu.offcanvas-overlap-top, .bottom-submenu.offcanvas-overlap {
  6468. -webkit-transform: translate3d(0, 0%, 0);
  6469. -moz-transform: translate3d(0, 0%, 0);
  6470. -ms-transform: translate(0, 0%);
  6471. -o-transform: translate3d(0, 0%, 0);
  6472. transform: translate3d(0, 0%, 0); }
  6473. .left-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
  6474. content: "\BB";
  6475. margin-left: .5rem;
  6476. display: inline; }
  6477. .right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
  6478. content: "\AB";
  6479. margin-right: .5rem;
  6480. display: inline; }
  6481. /* small displays */
  6482. @media only screen {
  6483. .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
  6484. display: inherit !important; }
  6485. .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
  6486. display: none !important; }
  6487. .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
  6488. position: static !important;
  6489. height: auto;
  6490. width: auto;
  6491. overflow: visible;
  6492. clip: auto; }
  6493. .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
  6494. clip: rect(1px, 1px, 1px, 1px);
  6495. height: 1px;
  6496. overflow: hidden;
  6497. position: absolute !important;
  6498. width: 1px; }
  6499. table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
  6500. display: table !important; }
  6501. thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
  6502. display: table-header-group !important; }
  6503. tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
  6504. display: table-row-group !important; }
  6505. tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
  6506. display: table-row; }
  6507. th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
  6508. display: table-cell !important; } }
  6509. /* medium displays */
  6510. @media only screen and (min-width: 40.0625em) {
  6511. .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
  6512. display: inherit !important; }
  6513. .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
  6514. display: none !important; }
  6515. .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
  6516. position: static !important;
  6517. height: auto;
  6518. width: auto;
  6519. overflow: visible;
  6520. clip: auto; }
  6521. .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
  6522. clip: rect(1px, 1px, 1px, 1px);
  6523. height: 1px;
  6524. overflow: hidden;
  6525. position: absolute !important;
  6526. width: 1px; }
  6527. table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
  6528. display: table !important; }
  6529. thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
  6530. display: table-header-group !important; }
  6531. tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
  6532. display: table-row-group !important; }
  6533. tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
  6534. display: table-row; }
  6535. th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
  6536. display: table-cell !important; } }
  6537. /* large displays */
  6538. @media only screen and (min-width: 64.0625em) {
  6539. .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
  6540. display: inherit !important; }
  6541. .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
  6542. display: none !important; }
  6543. .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
  6544. position: static !important;
  6545. height: auto;
  6546. width: auto;
  6547. overflow: visible;
  6548. clip: auto; }
  6549. .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
  6550. clip: rect(1px, 1px, 1px, 1px);
  6551. height: 1px;
  6552. overflow: hidden;
  6553. position: absolute !important;
  6554. width: 1px; }
  6555. table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
  6556. display: table !important; }
  6557. thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
  6558. display: table-header-group !important; }
  6559. tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
  6560. display: table-row-group !important; }
  6561. tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
  6562. display: table-row; }
  6563. th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
  6564. display: table-cell !important; } }
  6565. /* xlarge displays */
  6566. @media only screen and (min-width: 90.0625em) {
  6567. .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
  6568. display: inherit !important; }
  6569. .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
  6570. display: none !important; }
  6571. .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
  6572. position: static !important;
  6573. height: auto;
  6574. width: auto;
  6575. overflow: visible;
  6576. clip: auto; }
  6577. .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
  6578. clip: rect(1px, 1px, 1px, 1px);
  6579. height: 1px;
  6580. overflow: hidden;
  6581. position: absolute !important;
  6582. width: 1px; }
  6583. table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
  6584. display: table !important; }
  6585. thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
  6586. display: table-header-group !important; }
  6587. tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
  6588. display: table-row-group !important; }
  6589. tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
  6590. display: table-row; }
  6591. th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
  6592. display: table-cell !important; } }
  6593. /* xxlarge displays */
  6594. @media only screen and (min-width: 120.0625em) {
  6595. .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
  6596. display: inherit !important; }
  6597. .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
  6598. display: none !important; }
  6599. .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down {
  6600. position: static !important;
  6601. height: auto;
  6602. width: auto;
  6603. overflow: visible;
  6604. clip: auto; }
  6605. .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down {
  6606. clip: rect(1px, 1px, 1px, 1px);
  6607. height: 1px;
  6608. overflow: hidden;
  6609. position: absolute !important;
  6610. width: 1px; }
  6611. table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down {
  6612. display: table !important; }
  6613. thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down {
  6614. display: table-header-group !important; }
  6615. tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down {
  6616. display: table-row-group !important; }
  6617. tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down {
  6618. display: table-row; }
  6619. th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
  6620. display: table-cell !important; } }
  6621. /* Orientation targeting */
  6622. .show-for-landscape,
  6623. .hide-for-portrait {
  6624. display: inherit !important; }
  6625. .hide-for-landscape,
  6626. .show-for-portrait {
  6627. display: none !important; }
  6628. /* Specific visibility for tables */
  6629. table.hide-for-landscape, table.show-for-portrait {
  6630. display: table !important; }
  6631. thead.hide-for-landscape, thead.show-for-portrait {
  6632. display: table-header-group !important; }
  6633. tbody.hide-for-landscape, tbody.show-for-portrait {
  6634. display: table-row-group !important; }
  6635. tr.hide-for-landscape, tr.show-for-portrait {
  6636. display: table-row !important; }
  6637. td.hide-for-landscape, td.show-for-portrait,
  6638. th.hide-for-landscape,
  6639. th.show-for-portrait {
  6640. display: table-cell !important; }
  6641. @media only screen and (orientation: landscape) {
  6642. .show-for-landscape,
  6643. .hide-for-portrait {
  6644. display: inherit !important; }
  6645. .hide-for-landscape,
  6646. .show-for-portrait {
  6647. display: none !important; }
  6648. /* Specific visibility for tables */
  6649. table.show-for-landscape, table.hide-for-portrait {
  6650. display: table !important; }
  6651. thead.show-for-landscape, thead.hide-for-portrait {
  6652. display: table-header-group !important; }
  6653. tbody.show-for-landscape, tbody.hide-for-portrait {
  6654. display: table-row-group !important; }
  6655. tr.show-for-landscape, tr.hide-for-portrait {
  6656. display: table-row !important; }
  6657. td.show-for-landscape, td.hide-for-portrait,
  6658. th.show-for-landscape,
  6659. th.hide-for-portrait {
  6660. display: table-cell !important; } }
  6661. @media only screen and (orientation: portrait) {
  6662. .show-for-portrait,
  6663. .hide-for-landscape {
  6664. display: inherit !important; }
  6665. .hide-for-portrait,
  6666. .show-for-landscape {
  6667. display: none !important; }
  6668. /* Specific visibility for tables */
  6669. table.show-for-portrait, table.hide-for-landscape {
  6670. display: table !important; }
  6671. thead.show-for-portrait, thead.hide-for-landscape {
  6672. display: table-header-group !important; }
  6673. tbody.show-for-portrait, tbody.hide-for-landscape {
  6674. display: table-row-group !important; }
  6675. tr.show-for-portrait, tr.hide-for-landscape {
  6676. display: table-row !important; }
  6677. td.show-for-portrait, td.hide-for-landscape,
  6678. th.show-for-portrait,
  6679. th.hide-for-landscape {
  6680. display: table-cell !important; } }
  6681. /* Touch-enabled device targeting */
  6682. .show-for-touch {
  6683. display: none !important; }
  6684. .hide-for-touch {
  6685. display: inherit !important; }
  6686. .touch .show-for-touch {
  6687. display: inherit !important; }
  6688. .touch .hide-for-touch {
  6689. display: none !important; }
  6690. /* Specific visibility for tables */
  6691. table.hide-for-touch {
  6692. display: table !important; }
  6693. .touch table.show-for-touch {
  6694. display: table !important; }
  6695. thead.hide-for-touch {
  6696. display: table-header-group !important; }
  6697. .touch thead.show-for-touch {
  6698. display: table-header-group !important; }
  6699. tbody.hide-for-touch {
  6700. display: table-row-group !important; }
  6701. .touch tbody.show-for-touch {
  6702. display: table-row-group !important; }
  6703. tr.hide-for-touch {
  6704. display: table-row !important; }
  6705. .touch tr.show-for-touch {
  6706. display: table-row !important; }
  6707. td.hide-for-touch {
  6708. display: table-cell !important; }
  6709. .touch td.show-for-touch {
  6710. display: table-cell !important; }
  6711. th.hide-for-touch {
  6712. display: table-cell !important; }
  6713. .touch th.show-for-touch {
  6714. display: table-cell !important; }
  6715. /* Screen reader-specific classes */
  6716. .show-for-sr {
  6717. clip: rect(1px, 1px, 1px, 1px);
  6718. height: 1px;
  6719. overflow: hidden;
  6720. position: absolute !important;
  6721. width: 1px; }
  6722. .show-on-focus {
  6723. clip: rect(1px, 1px, 1px, 1px);
  6724. height: 1px;
  6725. overflow: hidden;
  6726. position: absolute !important;
  6727. width: 1px; }
  6728. .show-on-focus:focus, .show-on-focus:active {
  6729. position: static !important;
  6730. height: auto;
  6731. width: auto;
  6732. overflow: visible;
  6733. clip: auto; }
  6734. /* Print visibility */
  6735. .print-only,
  6736. .show-for-print {
  6737. display: none !important; }
  6738. @media print {
  6739. .print-only,
  6740. .show-for-print {
  6741. display: block !important; }
  6742. .hide-on-print,
  6743. .hide-for-print {
  6744. display: none !important; }
  6745. table.show-for-print {
  6746. display: table !important; }
  6747. thead.show-for-print {
  6748. display: table-header-group !important; }
  6749. tbody.show-for-print {
  6750. display: table-row-group !important; }
  6751. tr.show-for-print {
  6752. display: table-row !important; }
  6753. td.show-for-print {
  6754. display: table-cell !important; }
  6755. th.show-for-print {
  6756. display: table-cell !important; } }
  6757. body {
  6758. font-family: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6759. letter-spacing: 1px;
  6760. font-weight: 300;
  6761. font-variant: normal;
  6762. color: #5b2d87; }
  6763. h1, h2, h3, h4, h5, h6 {
  6764. font-family: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; }
  6765. a, a:hover {
  6766. color: inherit; }
  6767. ul, li {
  6768. padding: 0;
  6769. margin: 0;
  6770. list-style: none; }
  6771. #container {
  6772. display: block;
  6773. position: relative;
  6774. min-height: 100vh; }
  6775. @media only screen and (min-width: 40.0625em) {
  6776. .row {
  6777. width: 41rem; } }
  6778. @media only screen and (min-width: 64.0625em) {
  6779. .row {
  6780. width: 62rem; } }
  6781. @media only screen and (min-width: 90.0625em) {
  6782. .row {
  6783. width: 83rem;
  6784. max-width: 83rem; } }
  6785. /*
  6786. _ _ _
  6787. | | | | | |
  6788. | |__| | ___ __ _ __| | ___ _ __
  6789. | __ |/ _ \/ _` |/ _` |/ _ \ '__|
  6790. | | | | __/ (_| | (_| | __/ |
  6791. |_| |_|\___|\__,_|\__,_|\___|_|
  6792. */
  6793. header#top-bar {
  6794. position: fixed;
  6795. top: 0;
  6796. width: 100%;
  6797. z-index: 9; }
  6798. header#top-bar > .bg {
  6799. padding-top: 0.9em;
  6800. background-color: rgba(255, 255, 255, 0.95); }
  6801. header#top-bar > .bg > .row {
  6802. position: relative;
  6803. display: block;
  6804. padding: 0 0.7em; }
  6805. header#top-bar #title-area {
  6806. position: relative;
  6807. height: 10.1em;
  6808. transition: height 0.4s ease-in-out; }
  6809. header#top-bar #title-area h1 {
  6810. font-size: 1em;
  6811. margin: 0;
  6812. height: 100%;
  6813. overflow: hidden;
  6814. position: relative; }
  6815. header#top-bar #title-area h1 a {
  6816. display: block;
  6817. height: 9.3em;
  6818. margin: 0.3em 0 0.5em;
  6819. color: #e30613;
  6820. transition-property: color, font-size;
  6821. transition-duration: 0.4s;
  6822. transition-timing-function: ease-out;
  6823. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6824. font-size: 0.8em;
  6825. font-weight: 300;
  6826. font-variant: normal;
  6827. font-weight: 500; }
  6828. header#top-bar #title-area h1 a:before {
  6829. content: "";
  6830. display: block;
  6831. width: 95px;
  6832. height: 95px;
  6833. border-radius: 47.5px;
  6834. border: 17.27273px solid #5b2d87;
  6835. transition-property: width, height, border-radius, border-color, border-width;
  6836. transition-duration: 0.4s;
  6837. transition-timing-function: ease-out;
  6838. margin: 0 auto 1em; }
  6839. header#top-bar #title-area:hover h1 a {
  6840. color: #5b2d87;
  6841. transition-duration: 0.2s;
  6842. transition-timing-function: ease-in-out; }
  6843. header#top-bar #title-area:hover h1 a:before {
  6844. border-color: #e30613;
  6845. transition-duration: 0.2s;
  6846. transition-timing-function: ease-in-out; }
  6847. header#top-bar.reduced #title-area {
  6848. height: 7.07em; }
  6849. header#top-bar.reduced #title-area h1 a:before {
  6850. width: 50px;
  6851. height: 50px;
  6852. border-radius: 25px;
  6853. border-width: 9.09091px; }
  6854. header#top-bar h1, header#top-bar h2 {
  6855. text-align: center; }
  6856. header#top-bar h1 a, header#top-bar h2 a {
  6857. color: inherit; }
  6858. header#top-bar div.line {
  6859. bottom: 0;
  6860. height: 1px;
  6861. content: " ";
  6862. border-bottom: 1px solid #e30613; }
  6863. /*
  6864. _____ _
  6865. / ____| | |
  6866. | | ___ _ __ | |_ ___ _ __
  6867. | | / _ \ '_ \| __/ _ \ '__|
  6868. | |___| __/ | | | || __/ |
  6869. \_____\___|_| |_|\__\___|_|
  6870. */
  6871. div#center {
  6872. padding-top: 11.3em;
  6873. padding-bottom: 6em;
  6874. /*
  6875. * LIST PROJET
  6876. */
  6877. /*
  6878. * PAGE PROJET
  6879. */
  6880. /*
  6881. * Catégories
  6882. */ }
  6883. div#center .columns {
  6884. padding: 0; }
  6885. div#center p {
  6886. line-height: 1.5;
  6887. position: relative;
  6888. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6889. font-size: 0.8em;
  6890. font-weight: 300;
  6891. font-variant: normal; }
  6892. div#center p span.stab {
  6893. display: inline-block;
  6894. position: relative;
  6895. font-weight: bold; }
  6896. div#center p a {
  6897. text-decoration: underline; }
  6898. div#center .projet-block {
  6899. padding: 0.7em 0.7em 2em;
  6900. text-align: left; }
  6901. div#center .projet-block nav.categories {
  6902. margin: 0; }
  6903. div#center .projet-block nav.categories ul {
  6904. margin: 0;
  6905. line-height: 1.2; }
  6906. div#center .projet-block nav.categories ul li {
  6907. position: relative;
  6908. display: inline-block;
  6909. min-width: 12px;
  6910. margin-right: -0.2em; }
  6911. div#center .projet-block nav.categories ul li a {
  6912. display: block;
  6913. overflow: hidden;
  6914. white-space: nowrap;
  6915. font-size: 0;
  6916. max-width: 15px;
  6917. transition: max-width 0.3s ease-in-out; }
  6918. div#center .projet-block nav.categories ul li a:not(.active):before {
  6919. content: "";
  6920. opacity: 1;
  6921. position: relative;
  6922. display: inline-block;
  6923. vertical-align: middle;
  6924. border-width: 3px;
  6925. border-style: solid;
  6926. width: 12px;
  6927. height: 12px;
  6928. border-radius: 6px; }
  6929. div#center .projet-block nav.categories ul li a.active:before {
  6930. content: "\d7";
  6931. /* use the hex value here... \274c */
  6932. font-size: 35px;
  6933. line-height: 0.4;
  6934. width: 12px;
  6935. height: 12px;
  6936. position: relative;
  6937. display: inline-block;
  6938. vertical-align: middle;
  6939. color: #000; }
  6940. div#center .projet-block nav.categories ul li a.tag-1:before {
  6941. border-color: #e30613;
  6942. color: #e30613; }
  6943. div#center .projet-block nav.categories ul li a.tag-2:before {
  6944. border-color: #00acba;
  6945. color: #00acba; }
  6946. div#center .projet-block nav.categories ul li a.tag-3:before {
  6947. border-color: #5b2d87;
  6948. color: #5b2d87; }
  6949. div#center .projet-block nav.categories ul li a.tag-4:before {
  6950. border-color: #f7a939;
  6951. color: #f7a939; }
  6952. div#center .projet-block nav.categories ul li a.tag-5:before {
  6953. border-color: #95c11f;
  6954. color: #95c11f; }
  6955. div#center .projet-block nav.categories ul li a.tag-6:before {
  6956. border-color: #e5007d;
  6957. color: #e5007d; }
  6958. div#center .projet-block nav.categories ul li a.tag-7:before {
  6959. border-color: #009641;
  6960. color: #009641; }
  6961. div#center .projet-block nav.categories ul li a.tag-8:before {
  6962. border-color: #009fe3;
  6963. color: #009fe3; }
  6964. div#center .projet-block nav.categories ul li a span {
  6965. display: inline-block;
  6966. vertical-align: middle;
  6967. letter-spacing: normal;
  6968. font-size: 11px;
  6969. font-weight: 300;
  6970. background-color: #fff;
  6971. white-space: nowrap;
  6972. opacity: 0;
  6973. transition: opacity 0.3s ease-in-out;
  6974. padding: 1px 5px 0 1px; }
  6975. div#center .projet-block a.image-link {
  6976. display: block;
  6977. overflow: hidden; }
  6978. div#center .projet-block a.image-link img {
  6979. transition: transform 0.4s ease-out; }
  6980. div#center .projet-block header {
  6981. position: relative;
  6982. margin-top: -3em;
  6983. padding-top: 3.5em;
  6984. padding-bottom: 0.7em; }
  6985. div#center .projet-block header > * {
  6986. font-family: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6987. padding: 0;
  6988. margin: 0; }
  6989. div#center .projet-block h1 {
  6990. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6991. font-size: 0.95em;
  6992. font-weight: 500;
  6993. font-variant: normal;
  6994. color: #5b2d87;
  6995. transition: color 0.4s ease-out;
  6996. margin: 0.4em 0 0.5em 0;
  6997. line-height: 1.6;
  6998. height: auto; }
  6999. div#center .projet-block h1 span.date {
  7000. font-weight: 200;
  7001. border-left: 1px solid #5b2d87;
  7002. transition: border-left-color 0.4s ease-out;
  7003. padding: 0.2em 0 0 0.5em;
  7004. margin-left: 0.2em; }
  7005. div#center .projet-block h2 {
  7006. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7007. font-size: 0.8em;
  7008. font-weight: 300;
  7009. font-variant: normal;
  7010. margin: 0.4em 0 0;
  7011. line-height: 1; }
  7012. div#center .projet-block h2 a {
  7013. color: #5b2d87; }
  7014. div#center .projet-block.projet-block-text {
  7015. text-align: left; }
  7016. div#center .projet-block.projet-block-text h1 {
  7017. margin-bottom: 0.3em; }
  7018. div#center .projet-block.projet-block-text h2 {
  7019. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7020. font-size: 0.95em;
  7021. font-weight: 500;
  7022. font-variant: normal;
  7023. margin-bottom: 0.3em; }
  7024. div#center .projet-block:hover nav.categories a {
  7025. max-width: 300px; }
  7026. div#center .projet-block:hover nav.categories a span {
  7027. opacity: 1; }
  7028. div#center .projet-block:hover a.image-link img {
  7029. transition: transform 0.3s ease-out;
  7030. transform-origin: center;
  7031. transform: scale(1.2); }
  7032. div#center .projet-block:hover header h1, div#center .projet-block:hover header h2 a {
  7033. color: #e30613;
  7034. transition: color 0.2s ease-in-out; }
  7035. div#center .projet-block:hover header h1 span.date {
  7036. border-left-color: #e30613;
  7037. transition: border-left-color 0.2s ease-in-out; }
  7038. div#center .projet .row {
  7039. margin: 0; }
  7040. div#center .projet nav.categories {
  7041. margin: 0;
  7042. padding: 0.7em 0.7em 0; }
  7043. div#center .projet nav.categories ul {
  7044. margin: 0;
  7045. line-height: 1.2; }
  7046. div#center .projet nav.categories ul li {
  7047. position: relative;
  7048. display: inline-block;
  7049. min-width: 12px;
  7050. margin-right: -0.2em; }
  7051. div#center .projet nav.categories ul li a {
  7052. display: block;
  7053. overflow: hidden;
  7054. white-space: nowrap;
  7055. font-size: 0;
  7056. max-width: 15px;
  7057. transition: max-width 0.3s ease-in-out; }
  7058. div#center .projet nav.categories ul li a:not(.active):before {
  7059. content: "";
  7060. opacity: 1;
  7061. position: relative;
  7062. display: inline-block;
  7063. vertical-align: middle;
  7064. border-width: 3px;
  7065. border-style: solid;
  7066. width: 12px;
  7067. height: 12px;
  7068. border-radius: 6px; }
  7069. div#center .projet nav.categories ul li a.active:before {
  7070. content: "\d7";
  7071. /* use the hex value here... \274c */
  7072. font-size: 35px;
  7073. line-height: 0.4;
  7074. width: 12px;
  7075. height: 12px;
  7076. position: relative;
  7077. display: inline-block;
  7078. vertical-align: middle;
  7079. color: #000; }
  7080. div#center .projet nav.categories ul li a.tag-1:before {
  7081. border-color: #e30613;
  7082. color: #e30613; }
  7083. div#center .projet nav.categories ul li a.tag-2:before {
  7084. border-color: #00acba;
  7085. color: #00acba; }
  7086. div#center .projet nav.categories ul li a.tag-3:before {
  7087. border-color: #5b2d87;
  7088. color: #5b2d87; }
  7089. div#center .projet nav.categories ul li a.tag-4:before {
  7090. border-color: #f7a939;
  7091. color: #f7a939; }
  7092. div#center .projet nav.categories ul li a.tag-5:before {
  7093. border-color: #95c11f;
  7094. color: #95c11f; }
  7095. div#center .projet nav.categories ul li a.tag-6:before {
  7096. border-color: #e5007d;
  7097. color: #e5007d; }
  7098. div#center .projet nav.categories ul li a.tag-7:before {
  7099. border-color: #009641;
  7100. color: #009641; }
  7101. div#center .projet nav.categories ul li a.tag-8:before {
  7102. border-color: #009fe3;
  7103. color: #009fe3; }
  7104. div#center .projet nav.categories ul li a span {
  7105. display: inline-block;
  7106. vertical-align: middle;
  7107. letter-spacing: normal;
  7108. font-size: 11px;
  7109. font-weight: 300;
  7110. background-color: #fff;
  7111. white-space: nowrap;
  7112. opacity: 0;
  7113. transition: opacity 0.3s ease-in-out;
  7114. padding: 1px 5px 0 1px; }
  7115. div#center .projet nav.categories ul li a {
  7116. max-width: 500px; }
  7117. div#center .projet nav.categories ul li a span {
  7118. opacity: 1; }
  7119. div#center .projet h1 {
  7120. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7121. font-size: 0.95em;
  7122. font-weight: 500;
  7123. font-variant: normal;
  7124. color: #5b2d87;
  7125. margin: 0.4em 0 0.5em 0;
  7126. padding: 0 0.7em;
  7127. line-height: 1.6;
  7128. height: auto; }
  7129. div#center .projet h1 span.date {
  7130. font-weight: 200;
  7131. border-left: 1px solid #5b2d87;
  7132. padding: 0.2em 0 0 0.5em;
  7133. margin-left: 0.2em; }
  7134. div#center .projet h2 {
  7135. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7136. font-size: 0.8em;
  7137. font-weight: 300;
  7138. font-variant: normal;
  7139. margin: 0.3em 0 0.7em;
  7140. padding: 0 0.7em;
  7141. line-height: 1;
  7142. color: #5b2d87; }
  7143. div#center .projet h2 a {
  7144. color: #5b2d87; }
  7145. div#center .projet p {
  7146. padding: 0 0.7em 0.7em;
  7147. margin: 0; }
  7148. div#center .projet #images {
  7149. max-width: 100%;
  7150. letter-spacing: 0px; }
  7151. div#center .projet #images a {
  7152. max-width: calc(100% - 1em);
  7153. letter-spacing: normal;
  7154. display: inline-block;
  7155. margin: 0.4em 0 0 0.5em;
  7156. overflow: hidden; }
  7157. div#center .projet #images a:hover img {
  7158. transition: transform 0.4s ease-out;
  7159. transform-origin: center;
  7160. transform: scale(1.2); }
  7161. div#center .projet img {
  7162. height: 300px;
  7163. transition: transform 0.4s ease-out; }
  7164. @media only screen and (max-width: 40em) {
  7165. div#center .projet img {
  7166. max-width: 100%;
  7167. height: auto; } }
  7168. div#center .default > * {
  7169. padding-left: 0.7em;
  7170. padding-right: 0.7em; }
  7171. div#center nav.categories {
  7172. margin: 1em 0 0; }
  7173. div#center nav.categories ul.tags {
  7174. margin: 0;
  7175. padding: 0;
  7176. text-align: center; }
  7177. div#center nav.categories ul.tags li {
  7178. list-style: none;
  7179. display: inline-block;
  7180. margin: 0 0.3em; }
  7181. div#center nav.categories ul.tags li a {
  7182. display: block; }
  7183. div#center nav.categories ul.tags li a:not(.active):before {
  7184. content: "";
  7185. opacity: 1;
  7186. position: relative;
  7187. display: inline-block;
  7188. vertical-align: middle;
  7189. border-width: 3px;
  7190. border-style: solid;
  7191. width: 12px;
  7192. height: 12px;
  7193. border-radius: 6px; }
  7194. div#center nav.categories ul.tags li a.active:before {
  7195. content: "\d7";
  7196. /* use the hex value here... \274c */
  7197. font-size: 35px;
  7198. line-height: 0.4;
  7199. width: 12px;
  7200. height: 12px;
  7201. position: relative;
  7202. display: inline-block;
  7203. vertical-align: middle;
  7204. color: #000; }
  7205. div#center nav.categories ul.tags li a.tag-1:before {
  7206. border-color: #e30613;
  7207. color: #e30613; }
  7208. div#center nav.categories ul.tags li a.tag-2:before {
  7209. border-color: #00acba;
  7210. color: #00acba; }
  7211. div#center nav.categories ul.tags li a.tag-3:before {
  7212. border-color: #5b2d87;
  7213. color: #5b2d87; }
  7214. div#center nav.categories ul.tags li a.tag-4:before {
  7215. border-color: #f7a939;
  7216. color: #f7a939; }
  7217. div#center nav.categories ul.tags li a.tag-5:before {
  7218. border-color: #95c11f;
  7219. color: #95c11f; }
  7220. div#center nav.categories ul.tags li a.tag-6:before {
  7221. border-color: #e5007d;
  7222. color: #e5007d; }
  7223. div#center nav.categories ul.tags li a.tag-7:before {
  7224. border-color: #009641;
  7225. color: #009641; }
  7226. div#center nav.categories ul.tags li a.tag-8:before {
  7227. border-color: #009fe3;
  7228. color: #009fe3; }
  7229. div#center nav.categories ul.tags li span {
  7230. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7231. font-size: 0.8em;
  7232. font-weight: 300;
  7233. font-variant: normal;
  7234. display: inline-block;
  7235. vertical-align: middle;
  7236. padding: 1px 5px 0 1px; }
  7237. /*
  7238. _ _ _
  7239. (_) | | | |
  7240. _ __ ___ ___ _ __ ___ _ __ ___ ___ _____ | | __ _ _ _ ___ _ _| |_
  7241. | '__/ _ \/ __| '_ \ / _ \| '_ \/ __| \ \ / / _ \ | |/ _` | | | |/ _ \| | | | __|
  7242. | | | __/\__ \ |_) | (_) | | | \__ \ |\ V / __/ | | (_| | |_| | (_) | |_| | |_
  7243. |_| \___||___/ .__/ \___/|_| |_|___/_| \_/ \___| |_|\__,_|\__, |\___/ \__,_|\__|
  7244. | | __/ |
  7245. |_| |___/
  7246. */
  7247. @media only screen and (max-width: 40em) {
  7248. header#top-bar:before {
  7249. padding-bottom: 0.27em; }
  7250. header#top-bar #title-area {
  7251. height: 7.1em; }
  7252. header#top-bar #title-area h1 {
  7253. height: 100%;
  7254. min-height: 2.48em; }
  7255. header#top-bar #title-area h1 a {
  7256. display: block;
  7257. height: 6.3em; }
  7258. header#top-bar #title-area h1 a:before {
  7259. width: 60px;
  7260. height: 60px;
  7261. border-radius: 30px;
  7262. border-width: 10.90909px; }
  7263. header#top-bar.reduced #title-area {
  7264. height: 4.9em; }
  7265. header#top-bar.reduced #title-area h1 {
  7266. font-size: 0.65em; }
  7267. header#top-bar.reduced #title-area h1 a:before {
  7268. width: 30px;
  7269. height: 30px;
  7270. border-radius: 15px;
  7271. border-width: 5.45455px; }
  7272. div#center {
  7273. padding-top: 8.2em;
  7274. padding-bottom: 6em; }
  7275. body.categories a.projet-img {
  7276. display: none; } }
  7277. /*
  7278. __ _
  7279. / _| | |
  7280. | |_ ___ ___ | |_ ___ _ __
  7281. | _/ _ \ / _ \| __/ _ \ '__|
  7282. | || (_) | (_) | || __/ |
  7283. |_| \___/ \___/ \__\___|_|
  7284. */
  7285. footer#bottom-bar {
  7286. position: absolute;
  7287. bottom: 0;
  7288. width: 100%;
  7289. height: 5em;
  7290. background-color: #5b2d87;
  7291. transition: background-color 0.4s ease-out;
  7292. color: white;
  7293. text-align: center;
  7294. padding: 0.5em 0; }
  7295. footer#bottom-bar:hover {
  7296. background-color: #e30613;
  7297. transition: background-color 0.2s ease-in-out; }
  7298. footer#bottom-bar h1 {
  7299. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7300. font-size: 0.95em;
  7301. font-weight: 500;
  7302. font-variant: normal;
  7303. height: auto;
  7304. display: inline-block;
  7305. position: relative;
  7306. margin: 0;
  7307. color: inherit;
  7308. font-size: 0.75em; }
  7309. footer#bottom-bar h1 a {
  7310. font-weight: inherit;
  7311. color: inherit; }
  7312. footer#bottom-bar address {
  7313. font: "cocogoose", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7314. font-size: 0.8em;
  7315. font-weight: 300;
  7316. font-variant: normal;
  7317. font-size: 0.6em;
  7318. margin: -0.7em 0 0;
  7319. line-height: 1.1;
  7320. font-style: normal; }
  7321. footer#bottom-bar address a {
  7322. text-decoration: underline; }
  7323. footer#bottom-bar ul.footer-menu {
  7324. text-align: center; }
  7325. footer#bottom-bar ul.footer-menu li {
  7326. display: inline-block; }
  7327. footer#bottom-bar ul.footer-menu li a {
  7328. font-size: 0.6em; }
  7329. div.featherlight:last-of-type {
  7330. background-color: rgba(255, 255, 255, 0.9); }
  7331. div.featherlight:last-of-type div.featherlight-content {
  7332. background: none; }
  7333. div.featherlight:last-of-type div.featherlight-content span.featherlight-next:hover, div.featherlight:last-of-type div.featherlight-content span.featherlight-previous:hover {
  7334. background: none; }
  7335. div.featherlight:last-of-type div.featherlight-content span.featherlight-next span, div.featherlight:last-of-type div.featherlight-content span.featherlight-previous span {
  7336. color: #5b2d87;
  7337. text-shadow: none;
  7338. visibility: hidden;
  7339. position: relative;
  7340. left: 0;
  7341. right: 0;
  7342. width: 100%; }
  7343. div.featherlight:last-of-type div.featherlight-content span.featherlight-next span:after, div.featherlight:last-of-type div.featherlight-content span.featherlight-previous span:after {
  7344. content: ">";
  7345. display: block;
  7346. visibility: visible;
  7347. position: absolute;
  7348. top: 0;
  7349. width: 100%;
  7350. text-align: right;
  7351. padding: 0 0.5em;
  7352. font-weight: 500;
  7353. font-size: 1.2em; }
  7354. div.featherlight:last-of-type div.featherlight-content span.featherlight-previous span:after {
  7355. content: "<";
  7356. text-align: left; }