styles.css 237 KB

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