styles.css 239 KB

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