styles.css 232 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545
  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: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6759. letter-spacing: 1px; }
  6760. h1, h2, h3, h4, h5, h6 {
  6761. font-family: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; }
  6762. a, a:hover {
  6763. color: inherit; }
  6764. ul, li {
  6765. padding: 0;
  6766. margin: 0;
  6767. list-style: none; }
  6768. #container {
  6769. display: block;
  6770. position: relative;
  6771. min-height: 100vh; }
  6772. @media only screen and (min-width: 40.0625em) {
  6773. .row {
  6774. width: 41rem; } }
  6775. @media only screen and (min-width: 64.0625em) {
  6776. .row {
  6777. width: 62rem; } }
  6778. @media only screen and (min-width: 90.0625em) {
  6779. .row {
  6780. width: 83rem;
  6781. max-width: 83rem; } }
  6782. /*
  6783. _ _ _
  6784. | | | | | |
  6785. | |__| | ___ __ _ __| | ___ _ __
  6786. | __ |/ _ \/ _` |/ _` |/ _ \ '__|
  6787. | | | | __/ (_| | (_| | __/ |
  6788. |_| |_|\___|\__,_|\__,_|\___|_|
  6789. */
  6790. header#top-bar {
  6791. position: fixed;
  6792. top: 0;
  6793. width: 100%;
  6794. z-index: 9; }
  6795. header#top-bar:before {
  6796. content: "";
  6797. background: transparent !important;
  6798. border-top: 0.3em solid lime;
  6799. display: block;
  6800. padding-bottom: 0.9em; }
  6801. header#top-bar > .bg {
  6802. background-color: rgba(255, 255, 255, 0.95); }
  6803. header#top-bar > .bg > .row {
  6804. position: relative;
  6805. display: block; }
  6806. header#top-bar #title-area {
  6807. position: relative;
  6808. height: 10.1em;
  6809. transition: height 0.4s ease-in-out; }
  6810. header#top-bar #title-area h1 {
  6811. font-size: 1em;
  6812. margin: 0;
  6813. height: 100%;
  6814. min-height: 8.08em;
  6815. overflow: hidden;
  6816. position: relative; }
  6817. header#top-bar #title-area h1 a {
  6818. display: block;
  6819. height: 9.3em;
  6820. margin: 0.3em 0 0.5em;
  6821. background: transparent url("../images/logo.png") no-repeat center center;
  6822. background-size: contain; }
  6823. header#top-bar #title-area h1 span, header#top-bar #title-area h2 {
  6824. position: absolute;
  6825. margin-top: -3000px;
  6826. height: 0; }
  6827. header#top-bar.reduced #title-area {
  6828. height: 7.63055em; }
  6829. header#top-bar h1, header#top-bar h2 {
  6830. text-align: center; }
  6831. header#top-bar h1 a, header#top-bar h2 a {
  6832. color: #000; }
  6833. header#top-bar .nav {
  6834. padding: 0 0.7em;
  6835. position: relative;
  6836. height: 100%; }
  6837. header#top-bar .nav ul {
  6838. padding: 0;
  6839. margin: 0; }
  6840. header#top-bar .nav li {
  6841. list-style: none; }
  6842. @media screen and (min-width: 40em) {
  6843. header#top-bar .nav .wrapper {
  6844. padding-top: 4.55em; } }
  6845. header#top-bar #left-nav {
  6846. line-height: 0.5; }
  6847. header#top-bar #left-nav a {
  6848. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6849. font-size: 0.87em;
  6850. font-weight: bold; }
  6851. header#top-bar #left-nav a:hover {
  6852. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6853. font-size: 0.87em;
  6854. font-weight: bold;
  6855. text-decoration: underline; }
  6856. header#top-bar #right-nav {
  6857. text-align: right; }
  6858. header#top-bar #right-nav h4 {
  6859. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6860. font-size: 0.87em;
  6861. font-weight: bold;
  6862. margin: 0;
  6863. line-height: 1.9; }
  6864. header#top-bar #right-nav h4 a:hover {
  6865. text-decoration: underline; }
  6866. header#top-bar #right-nav ul {
  6867. background-color: transparent; }
  6868. header#top-bar #right-nav li {
  6869. line-height: 1;
  6870. overflow: hidden;
  6871. height: 0.01px;
  6872. transition: height 0.3s ease-in; }
  6873. header#top-bar #right-nav li a {
  6874. display: block;
  6875. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6876. font-size: 0.8em;
  6877. font-weight: normal; }
  6878. @media only screen and (min-width: 40.0625em) {
  6879. header#top-bar #right-nav:hover li {
  6880. height: 1.1em;
  6881. transition: height 0.5s ease-out; }
  6882. header#top-bar #right-nav:hover li:hover span {
  6883. text-decoration: underline; } }
  6884. /*
  6885. _____ _
  6886. / ____| | |
  6887. | | ___ _ __ | |_ ___ _ __
  6888. | | / _ \ '_ \| __/ _ \ '__|
  6889. | |___| __/ | | | || __/ |
  6890. \_____\___|_| |_|\__\___|_|
  6891. */
  6892. div#center {
  6893. padding-top: 12.3em;
  6894. padding-bottom: 6em;
  6895. /*
  6896. * LIST PROJET
  6897. */
  6898. /*
  6899. * PAGE PROJET
  6900. */
  6901. /*
  6902. * Catégories
  6903. */ }
  6904. div#center .columns {
  6905. padding: 0; }
  6906. div#center p {
  6907. line-height: 1.5;
  6908. position: relative;
  6909. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6910. font-size: 0.8em;
  6911. font-weight: normal; }
  6912. div#center p span.stab {
  6913. display: inline-block;
  6914. position: relative;
  6915. font-weight: bold; }
  6916. div#center p span.stab:after {
  6917. content: "";
  6918. height: 0;
  6919. display: block;
  6920. margin-top: -1em;
  6921. border-top: 0.5em solid lime; }
  6922. div#center p a {
  6923. text-decoration: underline; }
  6924. div#center .projet-block {
  6925. padding: 0.7em;
  6926. text-align: center; }
  6927. div#center .projet-block a {
  6928. display: block; }
  6929. div#center .projet-block header {
  6930. position: relative;
  6931. margin-top: -3em;
  6932. padding-top: 3.5em;
  6933. padding-bottom: 0.7em;
  6934. transition: background-color 0.3s ease-in; }
  6935. div#center .projet-block header > * {
  6936. font-family: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6937. text-align: center;
  6938. padding: 0;
  6939. margin: 0; }
  6940. div#center .projet-block h1 {
  6941. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6942. font-size: 0.87em;
  6943. font-weight: bold;
  6944. margin: 0;
  6945. line-height: 1;
  6946. height: auto;
  6947. display: inline-block;
  6948. position: relative; }
  6949. div#center .projet-block h1:after {
  6950. content: "";
  6951. height: 0;
  6952. display: block;
  6953. margin-top: -.7em;
  6954. margin-bottom: .7em;
  6955. border-top: 0.5em solid lime;
  6956. transition: border-color 0.3s ease-in; }
  6957. div#center .projet-block h2 {
  6958. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6959. font-size: 0.8em;
  6960. font-weight: normal;
  6961. margin: -0.4em 0 0;
  6962. line-height: 1; }
  6963. div#center .projet-block.projet-block-text {
  6964. text-align: left; }
  6965. div#center .projet-block.projet-block-text h1 {
  6966. margin-bottom: 0.3em; }
  6967. div#center .projet-block.projet-block-text h2 {
  6968. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6969. font-size: 0.87em;
  6970. font-weight: bold;
  6971. margin-bottom: 0.3em; }
  6972. div#center .projet-block:hover header {
  6973. background-color: rgba(0, 255, 0, 0.7);
  6974. transition-timing-function: ease-out; }
  6975. div#center .projet-block:hover header h1:after {
  6976. border-top: 0.5em solid #FFF;
  6977. transition-timing-function: ease-out; }
  6978. div#center .projet .row {
  6979. margin: 0; }
  6980. div#center .projet h1 {
  6981. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6982. font-size: 0.87em;
  6983. font-weight: bold;
  6984. margin: 0;
  6985. padding: 0 0.7em;
  6986. line-height: 1;
  6987. display: inline-block; }
  6988. div#center .projet h1:after {
  6989. content: "";
  6990. display: block;
  6991. margin-top: -.7em;
  6992. margin-bottom: .7em;
  6993. border-top: 0.5em solid lime;
  6994. transition: border-color 0.3s ease-in; }
  6995. div#center .projet h2 {
  6996. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6997. font-size: 0.8em;
  6998. font-weight: normal;
  6999. margin: -0.2em 0 0.7em;
  7000. line-height: 1;
  7001. padding: 0 0.7em; }
  7002. div#center .projet p {
  7003. padding: 0 0.7em 0.7em;
  7004. margin: 0; }
  7005. div#center .projet #images .block {
  7006. padding: 0.7em; }
  7007. div#center .projet img {
  7008. width: 100%;
  7009. max-width: 100%; }
  7010. div#center .default > * {
  7011. padding-left: 0.7em;
  7012. padding-right: 0.7em; }
  7013. div#center body.projet nav.categories ul.tags li a:hover span {
  7014. text-decoration: underline; }
  7015. div#center nav.categories {
  7016. margin: 1em 0; }
  7017. div#center nav.categories ul.tags {
  7018. margin: 0;
  7019. padding: 0;
  7020. text-align: center; }
  7021. div#center nav.categories ul.tags li {
  7022. list-style: none;
  7023. display: inline-block;
  7024. margin: 0 1em; }
  7025. div#center nav.categories ul.tags li a {
  7026. display: block; }
  7027. div#center nav.categories ul.tags li span {
  7028. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7029. font-size: 0.8em;
  7030. font-weight: normal; }
  7031. div#center nav.categories ul.tags li.active span {
  7032. display: inline-block;
  7033. position: relative;
  7034. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7035. font-size: 0.87em;
  7036. font-weight: bold;
  7037. border-bottom: 1px solid #000;
  7038. line-height: 0.2; }
  7039. div#center nav.categories ul.tags li.active span:after {
  7040. content: "";
  7041. height: 0;
  7042. display: block;
  7043. margin-top: -0.2em;
  7044. margin-bottom: 0.2em;
  7045. border-top: 0.5em solid lime; }
  7046. div#center #diaporama {
  7047. position: relative;
  7048. height: 20vw;
  7049. margin: 0 0 1.5em; }
  7050. div#center #diaporama > * {
  7051. position: absolute;
  7052. top: 0;
  7053. left: 0;
  7054. height: 100%;
  7055. width: 100%;
  7056. text-align: center;
  7057. opacity: 0;
  7058. transition: opacity 0.2s ease-in; }
  7059. div#center #diaporama > *.visible {
  7060. opacity: 1; }
  7061. div#center #diaporama > * img {
  7062. height: 100%; }
  7063. div#center .client-block {
  7064. margin: 0 0 1em;
  7065. padding: 0.7em; }
  7066. div#center .client-block h3 {
  7067. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7068. font-size: 0.87em;
  7069. font-weight: bold;
  7070. line-height: 0.6;
  7071. display: inline-block;
  7072. position: relative;
  7073. margin: 0;
  7074. padding: 0; }
  7075. div#center .client-block h3:after {
  7076. content: "";
  7077. display: block;
  7078. margin-top: -.5em;
  7079. margin-bottom: .5em;
  7080. border-top: 0.5em solid lime;
  7081. transition: border-color 0.3s ease-in; }
  7082. div#center .client-block h4 {
  7083. margin: 0;
  7084. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7085. font-size: 0.8em;
  7086. font-weight: normal; }
  7087. div#center .client-block h4 a:hover {
  7088. text-decoration: underline; }
  7089. /*
  7090. _ _ _
  7091. (_) | | | |
  7092. _ __ ___ ___ _ __ ___ _ __ ___ ___ _____ | | __ _ _ _ ___ _ _| |_
  7093. | '__/ _ \/ __| '_ \ / _ \| '_ \/ __| \ \ / / _ \ | |/ _` | | | |/ _ \| | | | __|
  7094. | | | __/\__ \ |_) | (_) | | | \__ \ |\ V / __/ | | (_| | |_| | (_) | |_| | |_
  7095. |_| \___||___/ .__/ \___/|_| |_|___/_| \_/ \___| |_|\__,_|\__, |\___/ \__,_|\__|
  7096. | | __/ |
  7097. |_| |___/
  7098. */
  7099. @media only screen and (max-width: 40em) {
  7100. header#top-bar:before {
  7101. padding-bottom: 0.45em; }
  7102. header#top-bar #title-area {
  7103. height: 10.1em -3.1em; }
  7104. header#top-bar #title-area h1 {
  7105. height: 100%;
  7106. min-height: 5.6em; }
  7107. header#top-bar #title-area h1 a {
  7108. display: block;
  7109. height: 6.3em; }
  7110. header#top-bar.reduced #title-area {
  7111. height: 5.2885em; }
  7112. header#top-bar .nav {
  7113. position: absolute;
  7114. top: 0.75em;
  7115. height: auto; }
  7116. header#top-bar #left-nav {
  7117. left: 0; }
  7118. header#top-bar #right-nav {
  7119. right: 0; }
  7120. div#center {
  7121. padding-top: 11.2em;
  7122. padding-bottom: 6em; }
  7123. body.categories a.projet-img {
  7124. display: none; } }
  7125. /*
  7126. __ _
  7127. / _| | |
  7128. | |_ ___ ___ | |_ ___ _ __
  7129. | _/ _ \ / _ \| __/ _ \ '__|
  7130. | || (_) | (_) | || __/ |
  7131. |_| \___/ \___/ \__\___|_|
  7132. */
  7133. footer#bottom-bar {
  7134. position: absolute;
  7135. bottom: 0;
  7136. width: 100%;
  7137. height: 5em;
  7138. background-color: lime;
  7139. text-align: center;
  7140. padding: 1em 0; }
  7141. footer#bottom-bar h1 {
  7142. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7143. font-size: 0.87em;
  7144. font-weight: bold;
  7145. height: auto;
  7146. display: inline-block;
  7147. position: relative;
  7148. margin: 0; }
  7149. footer#bottom-bar h1 a {
  7150. font-weight: inherit; }
  7151. footer#bottom-bar h1:after {
  7152. content: "";
  7153. height: 0;
  7154. display: block;
  7155. margin-top: -.9em;
  7156. margin-bottom: 1em;
  7157. border-top: 0.5em solid #fff;
  7158. transition: border-color 0.3s ease-in; }
  7159. footer#bottom-bar address {
  7160. font: "CiutadellaRounded", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7161. font-size: 0.8em;
  7162. font-weight: normal;
  7163. margin: -0.7em 0 0;
  7164. line-height: 1.1;
  7165. font-style: normal; }
  7166. footer#bottom-bar address a {
  7167. text-decoration: underline; }