Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

foundation.css 203KB

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