styles.css 551 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362153631536415365153661536715368153691537015371153721537315374153751537615377153781537915380153811538215383153841538515386153871538815389153901539115392153931539415395153961539715398153991540015401154021540315404154051540615407154081540915410154111541215413154141541515416154171541815419154201542115422154231542415425154261542715428154291543015431154321543315434154351543615437154381543915440154411544215443154441544515446154471544815449154501545115452154531545415455154561545715458154591546015461154621546315464154651546615467154681546915470154711547215473154741547515476154771547815479154801548115482154831548415485154861548715488154891549015491154921549315494154951549615497154981549915500155011550215503155041550515506155071550815509155101551115512155131551415515155161551715518155191552015521155221552315524155251552615527155281552915530155311553215533155341553515536155371553815539155401554115542155431554415545155461554715548155491555015551155521555315554155551555615557155581555915560155611556215563155641556515566155671556815569155701557115572155731557415575155761557715578155791558015581155821558315584155851558615587155881558915590155911559215593155941559515596155971559815599156001560115602156031560415605156061560715608156091561015611156121561315614156151561615617156181561915620156211562215623156241562515626156271562815629156301563115632156331563415635156361563715638156391564015641156421564315644156451564615647156481564915650156511565215653156541565515656156571565815659156601566115662156631566415665156661566715668156691567015671156721567315674156751567615677156781567915680156811568215683156841568515686156871568815689156901569115692
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. @import url(../fonts/icon/foundation-icons.css);
  6. /* line 348, ../bower_components/foundation/scss/foundation/components/_global.scss */
  7. meta.foundation-version {
  8. font-family: "/5.5.1/";
  9. }
  10. /* line 352, ../bower_components/foundation/scss/foundation/components/_global.scss */
  11. meta.foundation-mq-small {
  12. font-family: "/only screen/";
  13. width: 0;
  14. }
  15. /* line 357, ../bower_components/foundation/scss/foundation/components/_global.scss */
  16. meta.foundation-mq-small-only {
  17. font-family: "/only screen and (max-width: 40em)/";
  18. width: 0;
  19. }
  20. /* line 362, ../bower_components/foundation/scss/foundation/components/_global.scss */
  21. meta.foundation-mq-medium {
  22. font-family: "/only screen and (min-width:40.063em)/";
  23. width: 40.063em;
  24. }
  25. /* line 367, ../bower_components/foundation/scss/foundation/components/_global.scss */
  26. meta.foundation-mq-medium-only {
  27. font-family: "/only screen and (min-width:40.063em) and (max-width:64em)/";
  28. width: 40.063em;
  29. }
  30. /* line 372, ../bower_components/foundation/scss/foundation/components/_global.scss */
  31. meta.foundation-mq-large {
  32. font-family: "/only screen and (min-width:64.063em)/";
  33. width: 64.063em;
  34. }
  35. /* line 377, ../bower_components/foundation/scss/foundation/components/_global.scss */
  36. meta.foundation-mq-large-only {
  37. font-family: "/only screen and (min-width:64.063em) and (max-width:90em)/";
  38. width: 64.063em;
  39. }
  40. /* line 382, ../bower_components/foundation/scss/foundation/components/_global.scss */
  41. meta.foundation-mq-xlarge {
  42. font-family: "/only screen and (min-width:90.063em)/";
  43. width: 90.063em;
  44. }
  45. /* line 387, ../bower_components/foundation/scss/foundation/components/_global.scss */
  46. meta.foundation-mq-xlarge-only {
  47. font-family: "/only screen and (min-width:90.063em) and (max-width:120em)/";
  48. width: 90.063em;
  49. }
  50. /* line 392, ../bower_components/foundation/scss/foundation/components/_global.scss */
  51. meta.foundation-mq-xxlarge {
  52. font-family: "/only screen and (min-width:120.063em)/";
  53. width: 120.063em;
  54. }
  55. /* line 397, ../bower_components/foundation/scss/foundation/components/_global.scss */
  56. meta.foundation-data-attribute-namespace {
  57. font-family: false;
  58. }
  59. /* line 404, ../bower_components/foundation/scss/foundation/components/_global.scss */
  60. html, body {
  61. height: 100%;
  62. }
  63. /* line 407, ../bower_components/foundation/scss/foundation/components/_global.scss */
  64. *,
  65. *:before,
  66. *:after {
  67. box-sizing: border-box;
  68. }
  69. /* line 413, ../bower_components/foundation/scss/foundation/components/_global.scss */
  70. html,
  71. body {
  72. font-size: 100%;
  73. }
  74. /* line 417, ../bower_components/foundation/scss/foundation/components/_global.scss */
  75. body {
  76. background: #fff;
  77. color: #222;
  78. padding: 0;
  79. margin: 0;
  80. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  81. font-weight: normal;
  82. font-style: normal;
  83. line-height: 1.5;
  84. position: relative;
  85. cursor: auto;
  86. }
  87. /* line 430, ../bower_components/foundation/scss/foundation/components/_global.scss */
  88. a:hover {
  89. cursor: pointer;
  90. }
  91. /* line 433, ../bower_components/foundation/scss/foundation/components/_global.scss */
  92. img {
  93. max-width: 100%;
  94. height: auto;
  95. }
  96. /* line 435, ../bower_components/foundation/scss/foundation/components/_global.scss */
  97. img {
  98. -ms-interpolation-mode: bicubic;
  99. }
  100. /* line 439, ../bower_components/foundation/scss/foundation/components/_global.scss */
  101. #map_canvas img,
  102. #map_canvas embed,
  103. #map_canvas object,
  104. .map_canvas img,
  105. .map_canvas embed,
  106. .map_canvas object {
  107. max-width: none !important;
  108. }
  109. /* line 446, ../bower_components/foundation/scss/foundation/components/_global.scss */
  110. .left {
  111. float: left !important;
  112. }
  113. /* line 447, ../bower_components/foundation/scss/foundation/components/_global.scss */
  114. .right {
  115. float: right !important;
  116. }
  117. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  118. .clearfix:before, .clearfix:after {
  119. content: " ";
  120. display: table;
  121. }
  122. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  123. .clearfix:after {
  124. clear: both;
  125. }
  126. /* line 451, ../bower_components/foundation/scss/foundation/components/_global.scss */
  127. .hide {
  128. display: none;
  129. }
  130. /* line 456, ../bower_components/foundation/scss/foundation/components/_global.scss */
  131. .invisible {
  132. visibility: hidden;
  133. }
  134. /* line 462, ../bower_components/foundation/scss/foundation/components/_global.scss */
  135. .antialiased {
  136. -webkit-font-smoothing: antialiased;
  137. -moz-osx-font-smoothing: grayscale;
  138. }
  139. /* line 465, ../bower_components/foundation/scss/foundation/components/_global.scss */
  140. img {
  141. display: inline-block;
  142. vertical-align: middle;
  143. }
  144. /* line 475, ../bower_components/foundation/scss/foundation/components/_global.scss */
  145. textarea {
  146. height: auto;
  147. min-height: 50px;
  148. }
  149. /* line 478, ../bower_components/foundation/scss/foundation/components/_global.scss */
  150. select {
  151. width: 100%;
  152. }
  153. /* line 232, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  154. .row {
  155. width: 100%;
  156. margin-left: auto;
  157. margin-right: auto;
  158. margin-top: 0;
  159. margin-bottom: 0;
  160. max-width: 62.5rem;
  161. }
  162. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  163. .row:before, .row:after {
  164. content: " ";
  165. display: table;
  166. }
  167. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  168. .row:after {
  169. clear: both;
  170. }
  171. /* line 236, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  172. .row.collapse > .column,
  173. .row.collapse > .columns {
  174. padding-left: 0;
  175. padding-right: 0;
  176. }
  177. /* line 239, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  178. .row.collapse .row {
  179. margin-left: 0;
  180. margin-right: 0;
  181. }
  182. /* line 242, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  183. .row .row {
  184. width: auto;
  185. margin-left: -0.9375rem;
  186. margin-right: -0.9375rem;
  187. margin-top: 0;
  188. margin-bottom: 0;
  189. max-width: none;
  190. }
  191. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  192. .row .row:before, .row .row:after {
  193. content: " ";
  194. display: table;
  195. }
  196. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  197. .row .row:after {
  198. clear: both;
  199. }
  200. /* line 243, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  201. .row .row.collapse {
  202. width: auto;
  203. margin: 0;
  204. max-width: none;
  205. }
  206. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  207. .row .row.collapse:before, .row .row.collapse:after {
  208. content: " ";
  209. display: table;
  210. }
  211. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  212. .row .row.collapse:after {
  213. clear: both;
  214. }
  215. /* line 247, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  216. .column,
  217. .columns {
  218. padding-left: 0.9375rem;
  219. padding-right: 0.9375rem;
  220. width: 100%;
  221. float: left;
  222. }
  223. /* line 250, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  224. [class*="column"] + [class*="column"]:last-child {
  225. float: right;
  226. }
  227. /* line 251, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  228. [class*="column"] + [class*="column"].end {
  229. float: left;
  230. }
  231. @media only screen {
  232. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  233. .small-push-0 {
  234. position: relative;
  235. left: 0%;
  236. right: auto;
  237. }
  238. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  239. .small-pull-0 {
  240. position: relative;
  241. right: 0%;
  242. left: auto;
  243. }
  244. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  245. .small-push-1 {
  246. position: relative;
  247. left: 8.33333%;
  248. right: auto;
  249. }
  250. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  251. .small-pull-1 {
  252. position: relative;
  253. right: 8.33333%;
  254. left: auto;
  255. }
  256. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  257. .small-push-2 {
  258. position: relative;
  259. left: 16.66667%;
  260. right: auto;
  261. }
  262. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  263. .small-pull-2 {
  264. position: relative;
  265. right: 16.66667%;
  266. left: auto;
  267. }
  268. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  269. .small-push-3 {
  270. position: relative;
  271. left: 25%;
  272. right: auto;
  273. }
  274. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  275. .small-pull-3 {
  276. position: relative;
  277. right: 25%;
  278. left: auto;
  279. }
  280. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  281. .small-push-4 {
  282. position: relative;
  283. left: 33.33333%;
  284. right: auto;
  285. }
  286. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  287. .small-pull-4 {
  288. position: relative;
  289. right: 33.33333%;
  290. left: auto;
  291. }
  292. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  293. .small-push-5 {
  294. position: relative;
  295. left: 41.66667%;
  296. right: auto;
  297. }
  298. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  299. .small-pull-5 {
  300. position: relative;
  301. right: 41.66667%;
  302. left: auto;
  303. }
  304. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  305. .small-push-6 {
  306. position: relative;
  307. left: 50%;
  308. right: auto;
  309. }
  310. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  311. .small-pull-6 {
  312. position: relative;
  313. right: 50%;
  314. left: auto;
  315. }
  316. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  317. .small-push-7 {
  318. position: relative;
  319. left: 58.33333%;
  320. right: auto;
  321. }
  322. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  323. .small-pull-7 {
  324. position: relative;
  325. right: 58.33333%;
  326. left: auto;
  327. }
  328. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  329. .small-push-8 {
  330. position: relative;
  331. left: 66.66667%;
  332. right: auto;
  333. }
  334. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  335. .small-pull-8 {
  336. position: relative;
  337. right: 66.66667%;
  338. left: auto;
  339. }
  340. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  341. .small-push-9 {
  342. position: relative;
  343. left: 75%;
  344. right: auto;
  345. }
  346. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  347. .small-pull-9 {
  348. position: relative;
  349. right: 75%;
  350. left: auto;
  351. }
  352. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  353. .small-push-10 {
  354. position: relative;
  355. left: 83.33333%;
  356. right: auto;
  357. }
  358. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  359. .small-pull-10 {
  360. position: relative;
  361. right: 83.33333%;
  362. left: auto;
  363. }
  364. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  365. .small-push-11 {
  366. position: relative;
  367. left: 91.66667%;
  368. right: auto;
  369. }
  370. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  371. .small-pull-11 {
  372. position: relative;
  373. right: 91.66667%;
  374. left: auto;
  375. }
  376. /* line 167, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  377. .column,
  378. .columns {
  379. position: relative;
  380. padding-left: 0.9375rem;
  381. padding-right: 0.9375rem;
  382. float: left;
  383. }
  384. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  385. .small-1 {
  386. width: 8.33333%;
  387. }
  388. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  389. .small-2 {
  390. width: 16.66667%;
  391. }
  392. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  393. .small-3 {
  394. width: 25%;
  395. }
  396. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  397. .small-4 {
  398. width: 33.33333%;
  399. }
  400. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  401. .small-5 {
  402. width: 41.66667%;
  403. }
  404. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  405. .small-6 {
  406. width: 50%;
  407. }
  408. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  409. .small-7 {
  410. width: 58.33333%;
  411. }
  412. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  413. .small-8 {
  414. width: 66.66667%;
  415. }
  416. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  417. .small-9 {
  418. width: 75%;
  419. }
  420. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  421. .small-10 {
  422. width: 83.33333%;
  423. }
  424. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  425. .small-11 {
  426. width: 91.66667%;
  427. }
  428. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  429. .small-12 {
  430. width: 100%;
  431. }
  432. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  433. .small-offset-0 {
  434. margin-left: 0% !important;
  435. }
  436. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  437. .small-offset-1 {
  438. margin-left: 8.33333% !important;
  439. }
  440. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  441. .small-offset-2 {
  442. margin-left: 16.66667% !important;
  443. }
  444. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  445. .small-offset-3 {
  446. margin-left: 25% !important;
  447. }
  448. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  449. .small-offset-4 {
  450. margin-left: 33.33333% !important;
  451. }
  452. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  453. .small-offset-5 {
  454. margin-left: 41.66667% !important;
  455. }
  456. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  457. .small-offset-6 {
  458. margin-left: 50% !important;
  459. }
  460. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  461. .small-offset-7 {
  462. margin-left: 58.33333% !important;
  463. }
  464. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  465. .small-offset-8 {
  466. margin-left: 66.66667% !important;
  467. }
  468. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  469. .small-offset-9 {
  470. margin-left: 75% !important;
  471. }
  472. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  473. .small-offset-10 {
  474. margin-left: 83.33333% !important;
  475. }
  476. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  477. .small-offset-11 {
  478. margin-left: 91.66667% !important;
  479. }
  480. /* line 179, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  481. .small-reset-order {
  482. margin-left: 0;
  483. margin-right: 0;
  484. left: auto;
  485. right: auto;
  486. float: left;
  487. }
  488. /* line 187, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  489. .column.small-centered,
  490. .columns.small-centered {
  491. margin-left: auto;
  492. margin-right: auto;
  493. float: none;
  494. }
  495. /* line 190, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  496. .column.small-uncentered,
  497. .columns.small-uncentered {
  498. margin-left: 0;
  499. margin-right: 0;
  500. float: left;
  501. }
  502. /* line 198, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  503. .column.small-centered:last-child,
  504. .columns.small-centered:last-child {
  505. float: none;
  506. }
  507. /* line 204, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  508. .column.small-uncentered:last-child,
  509. .columns.small-uncentered:last-child {
  510. float: left;
  511. }
  512. /* line 209, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  513. .column.small-uncentered.opposite,
  514. .columns.small-uncentered.opposite {
  515. float: right;
  516. }
  517. /* line 216, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  518. .row.small-collapse > .column,
  519. .row.small-collapse > .columns {
  520. padding-left: 0;
  521. padding-right: 0;
  522. }
  523. /* line 219, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  524. .row.small-collapse .row {
  525. margin-left: 0;
  526. margin-right: 0;
  527. }
  528. /* line 222, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  529. .row.small-uncollapse > .column,
  530. .row.small-uncollapse > .columns {
  531. padding-left: 0.9375rem;
  532. padding-right: 0.9375rem;
  533. float: left;
  534. }
  535. }
  536. @media only screen and (min-width: 40.063em) {
  537. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  538. .medium-push-0 {
  539. position: relative;
  540. left: 0%;
  541. right: auto;
  542. }
  543. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  544. .medium-pull-0 {
  545. position: relative;
  546. right: 0%;
  547. left: auto;
  548. }
  549. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  550. .medium-push-1 {
  551. position: relative;
  552. left: 8.33333%;
  553. right: auto;
  554. }
  555. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  556. .medium-pull-1 {
  557. position: relative;
  558. right: 8.33333%;
  559. left: auto;
  560. }
  561. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  562. .medium-push-2 {
  563. position: relative;
  564. left: 16.66667%;
  565. right: auto;
  566. }
  567. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  568. .medium-pull-2 {
  569. position: relative;
  570. right: 16.66667%;
  571. left: auto;
  572. }
  573. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  574. .medium-push-3 {
  575. position: relative;
  576. left: 25%;
  577. right: auto;
  578. }
  579. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  580. .medium-pull-3 {
  581. position: relative;
  582. right: 25%;
  583. left: auto;
  584. }
  585. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  586. .medium-push-4 {
  587. position: relative;
  588. left: 33.33333%;
  589. right: auto;
  590. }
  591. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  592. .medium-pull-4 {
  593. position: relative;
  594. right: 33.33333%;
  595. left: auto;
  596. }
  597. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  598. .medium-push-5 {
  599. position: relative;
  600. left: 41.66667%;
  601. right: auto;
  602. }
  603. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  604. .medium-pull-5 {
  605. position: relative;
  606. right: 41.66667%;
  607. left: auto;
  608. }
  609. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  610. .medium-push-6 {
  611. position: relative;
  612. left: 50%;
  613. right: auto;
  614. }
  615. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  616. .medium-pull-6 {
  617. position: relative;
  618. right: 50%;
  619. left: auto;
  620. }
  621. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  622. .medium-push-7 {
  623. position: relative;
  624. left: 58.33333%;
  625. right: auto;
  626. }
  627. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  628. .medium-pull-7 {
  629. position: relative;
  630. right: 58.33333%;
  631. left: auto;
  632. }
  633. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  634. .medium-push-8 {
  635. position: relative;
  636. left: 66.66667%;
  637. right: auto;
  638. }
  639. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  640. .medium-pull-8 {
  641. position: relative;
  642. right: 66.66667%;
  643. left: auto;
  644. }
  645. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  646. .medium-push-9 {
  647. position: relative;
  648. left: 75%;
  649. right: auto;
  650. }
  651. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  652. .medium-pull-9 {
  653. position: relative;
  654. right: 75%;
  655. left: auto;
  656. }
  657. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  658. .medium-push-10 {
  659. position: relative;
  660. left: 83.33333%;
  661. right: auto;
  662. }
  663. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  664. .medium-pull-10 {
  665. position: relative;
  666. right: 83.33333%;
  667. left: auto;
  668. }
  669. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  670. .medium-push-11 {
  671. position: relative;
  672. left: 91.66667%;
  673. right: auto;
  674. }
  675. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  676. .medium-pull-11 {
  677. position: relative;
  678. right: 91.66667%;
  679. left: auto;
  680. }
  681. /* line 167, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  682. .column,
  683. .columns {
  684. position: relative;
  685. padding-left: 0.9375rem;
  686. padding-right: 0.9375rem;
  687. float: left;
  688. }
  689. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  690. .medium-1 {
  691. width: 8.33333%;
  692. }
  693. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  694. .medium-2 {
  695. width: 16.66667%;
  696. }
  697. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  698. .medium-3 {
  699. width: 25%;
  700. }
  701. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  702. .medium-4 {
  703. width: 33.33333%;
  704. }
  705. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  706. .medium-5 {
  707. width: 41.66667%;
  708. }
  709. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  710. .medium-6 {
  711. width: 50%;
  712. }
  713. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  714. .medium-7 {
  715. width: 58.33333%;
  716. }
  717. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  718. .medium-8 {
  719. width: 66.66667%;
  720. }
  721. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  722. .medium-9 {
  723. width: 75%;
  724. }
  725. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  726. .medium-10 {
  727. width: 83.33333%;
  728. }
  729. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  730. .medium-11 {
  731. width: 91.66667%;
  732. }
  733. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  734. .medium-12 {
  735. width: 100%;
  736. }
  737. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  738. .medium-offset-0 {
  739. margin-left: 0% !important;
  740. }
  741. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  742. .medium-offset-1 {
  743. margin-left: 8.33333% !important;
  744. }
  745. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  746. .medium-offset-2 {
  747. margin-left: 16.66667% !important;
  748. }
  749. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  750. .medium-offset-3 {
  751. margin-left: 25% !important;
  752. }
  753. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  754. .medium-offset-4 {
  755. margin-left: 33.33333% !important;
  756. }
  757. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  758. .medium-offset-5 {
  759. margin-left: 41.66667% !important;
  760. }
  761. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  762. .medium-offset-6 {
  763. margin-left: 50% !important;
  764. }
  765. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  766. .medium-offset-7 {
  767. margin-left: 58.33333% !important;
  768. }
  769. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  770. .medium-offset-8 {
  771. margin-left: 66.66667% !important;
  772. }
  773. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  774. .medium-offset-9 {
  775. margin-left: 75% !important;
  776. }
  777. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  778. .medium-offset-10 {
  779. margin-left: 83.33333% !important;
  780. }
  781. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  782. .medium-offset-11 {
  783. margin-left: 91.66667% !important;
  784. }
  785. /* line 179, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  786. .medium-reset-order {
  787. margin-left: 0;
  788. margin-right: 0;
  789. left: auto;
  790. right: auto;
  791. float: left;
  792. }
  793. /* line 187, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  794. .column.medium-centered,
  795. .columns.medium-centered {
  796. margin-left: auto;
  797. margin-right: auto;
  798. float: none;
  799. }
  800. /* line 190, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  801. .column.medium-uncentered,
  802. .columns.medium-uncentered {
  803. margin-left: 0;
  804. margin-right: 0;
  805. float: left;
  806. }
  807. /* line 198, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  808. .column.medium-centered:last-child,
  809. .columns.medium-centered:last-child {
  810. float: none;
  811. }
  812. /* line 204, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  813. .column.medium-uncentered:last-child,
  814. .columns.medium-uncentered:last-child {
  815. float: left;
  816. }
  817. /* line 209, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  818. .column.medium-uncentered.opposite,
  819. .columns.medium-uncentered.opposite {
  820. float: right;
  821. }
  822. /* line 216, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  823. .row.medium-collapse > .column,
  824. .row.medium-collapse > .columns {
  825. padding-left: 0;
  826. padding-right: 0;
  827. }
  828. /* line 219, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  829. .row.medium-collapse .row {
  830. margin-left: 0;
  831. margin-right: 0;
  832. }
  833. /* line 222, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  834. .row.medium-uncollapse > .column,
  835. .row.medium-uncollapse > .columns {
  836. padding-left: 0.9375rem;
  837. padding-right: 0.9375rem;
  838. float: left;
  839. }
  840. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  841. .push-0 {
  842. position: relative;
  843. left: 0%;
  844. right: auto;
  845. }
  846. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  847. .pull-0 {
  848. position: relative;
  849. right: 0%;
  850. left: auto;
  851. }
  852. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  853. .push-1 {
  854. position: relative;
  855. left: 8.33333%;
  856. right: auto;
  857. }
  858. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  859. .pull-1 {
  860. position: relative;
  861. right: 8.33333%;
  862. left: auto;
  863. }
  864. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  865. .push-2 {
  866. position: relative;
  867. left: 16.66667%;
  868. right: auto;
  869. }
  870. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  871. .pull-2 {
  872. position: relative;
  873. right: 16.66667%;
  874. left: auto;
  875. }
  876. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  877. .push-3 {
  878. position: relative;
  879. left: 25%;
  880. right: auto;
  881. }
  882. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  883. .pull-3 {
  884. position: relative;
  885. right: 25%;
  886. left: auto;
  887. }
  888. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  889. .push-4 {
  890. position: relative;
  891. left: 33.33333%;
  892. right: auto;
  893. }
  894. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  895. .pull-4 {
  896. position: relative;
  897. right: 33.33333%;
  898. left: auto;
  899. }
  900. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  901. .push-5 {
  902. position: relative;
  903. left: 41.66667%;
  904. right: auto;
  905. }
  906. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  907. .pull-5 {
  908. position: relative;
  909. right: 41.66667%;
  910. left: auto;
  911. }
  912. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  913. .push-6 {
  914. position: relative;
  915. left: 50%;
  916. right: auto;
  917. }
  918. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  919. .pull-6 {
  920. position: relative;
  921. right: 50%;
  922. left: auto;
  923. }
  924. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  925. .push-7 {
  926. position: relative;
  927. left: 58.33333%;
  928. right: auto;
  929. }
  930. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  931. .pull-7 {
  932. position: relative;
  933. right: 58.33333%;
  934. left: auto;
  935. }
  936. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  937. .push-8 {
  938. position: relative;
  939. left: 66.66667%;
  940. right: auto;
  941. }
  942. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  943. .pull-8 {
  944. position: relative;
  945. right: 66.66667%;
  946. left: auto;
  947. }
  948. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  949. .push-9 {
  950. position: relative;
  951. left: 75%;
  952. right: auto;
  953. }
  954. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  955. .pull-9 {
  956. position: relative;
  957. right: 75%;
  958. left: auto;
  959. }
  960. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  961. .push-10 {
  962. position: relative;
  963. left: 83.33333%;
  964. right: auto;
  965. }
  966. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  967. .pull-10 {
  968. position: relative;
  969. right: 83.33333%;
  970. left: auto;
  971. }
  972. /* line 261, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  973. .push-11 {
  974. position: relative;
  975. left: 91.66667%;
  976. right: auto;
  977. }
  978. /* line 264, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  979. .pull-11 {
  980. position: relative;
  981. right: 91.66667%;
  982. left: auto;
  983. }
  984. }
  985. @media only screen and (min-width: 64.063em) {
  986. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  987. .large-push-0 {
  988. position: relative;
  989. left: 0%;
  990. right: auto;
  991. }
  992. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  993. .large-pull-0 {
  994. position: relative;
  995. right: 0%;
  996. left: auto;
  997. }
  998. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  999. .large-push-1 {
  1000. position: relative;
  1001. left: 8.33333%;
  1002. right: auto;
  1003. }
  1004. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1005. .large-pull-1 {
  1006. position: relative;
  1007. right: 8.33333%;
  1008. left: auto;
  1009. }
  1010. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1011. .large-push-2 {
  1012. position: relative;
  1013. left: 16.66667%;
  1014. right: auto;
  1015. }
  1016. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1017. .large-pull-2 {
  1018. position: relative;
  1019. right: 16.66667%;
  1020. left: auto;
  1021. }
  1022. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1023. .large-push-3 {
  1024. position: relative;
  1025. left: 25%;
  1026. right: auto;
  1027. }
  1028. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1029. .large-pull-3 {
  1030. position: relative;
  1031. right: 25%;
  1032. left: auto;
  1033. }
  1034. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1035. .large-push-4 {
  1036. position: relative;
  1037. left: 33.33333%;
  1038. right: auto;
  1039. }
  1040. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1041. .large-pull-4 {
  1042. position: relative;
  1043. right: 33.33333%;
  1044. left: auto;
  1045. }
  1046. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1047. .large-push-5 {
  1048. position: relative;
  1049. left: 41.66667%;
  1050. right: auto;
  1051. }
  1052. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1053. .large-pull-5 {
  1054. position: relative;
  1055. right: 41.66667%;
  1056. left: auto;
  1057. }
  1058. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1059. .large-push-6 {
  1060. position: relative;
  1061. left: 50%;
  1062. right: auto;
  1063. }
  1064. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1065. .large-pull-6 {
  1066. position: relative;
  1067. right: 50%;
  1068. left: auto;
  1069. }
  1070. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1071. .large-push-7 {
  1072. position: relative;
  1073. left: 58.33333%;
  1074. right: auto;
  1075. }
  1076. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1077. .large-pull-7 {
  1078. position: relative;
  1079. right: 58.33333%;
  1080. left: auto;
  1081. }
  1082. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1083. .large-push-8 {
  1084. position: relative;
  1085. left: 66.66667%;
  1086. right: auto;
  1087. }
  1088. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1089. .large-pull-8 {
  1090. position: relative;
  1091. right: 66.66667%;
  1092. left: auto;
  1093. }
  1094. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1095. .large-push-9 {
  1096. position: relative;
  1097. left: 75%;
  1098. right: auto;
  1099. }
  1100. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1101. .large-pull-9 {
  1102. position: relative;
  1103. right: 75%;
  1104. left: auto;
  1105. }
  1106. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1107. .large-push-10 {
  1108. position: relative;
  1109. left: 83.33333%;
  1110. right: auto;
  1111. }
  1112. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1113. .large-pull-10 {
  1114. position: relative;
  1115. right: 83.33333%;
  1116. left: auto;
  1117. }
  1118. /* line 159, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1119. .large-push-11 {
  1120. position: relative;
  1121. left: 91.66667%;
  1122. right: auto;
  1123. }
  1124. /* line 162, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1125. .large-pull-11 {
  1126. position: relative;
  1127. right: 91.66667%;
  1128. left: auto;
  1129. }
  1130. /* line 167, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1131. .column,
  1132. .columns {
  1133. position: relative;
  1134. padding-left: 0.9375rem;
  1135. padding-right: 0.9375rem;
  1136. float: left;
  1137. }
  1138. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1139. .large-1 {
  1140. width: 8.33333%;
  1141. }
  1142. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1143. .large-2 {
  1144. width: 16.66667%;
  1145. }
  1146. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1147. .large-3 {
  1148. width: 25%;
  1149. }
  1150. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1151. .large-4 {
  1152. width: 33.33333%;
  1153. }
  1154. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1155. .large-5 {
  1156. width: 41.66667%;
  1157. }
  1158. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1159. .large-6 {
  1160. width: 50%;
  1161. }
  1162. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1163. .large-7 {
  1164. width: 58.33333%;
  1165. }
  1166. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1167. .large-8 {
  1168. width: 66.66667%;
  1169. }
  1170. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1171. .large-9 {
  1172. width: 75%;
  1173. }
  1174. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1175. .large-10 {
  1176. width: 83.33333%;
  1177. }
  1178. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1179. .large-11 {
  1180. width: 91.66667%;
  1181. }
  1182. /* line 172, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1183. .large-12 {
  1184. width: 100%;
  1185. }
  1186. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1187. .large-offset-0 {
  1188. margin-left: 0% !important;
  1189. }
  1190. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1191. .large-offset-1 {
  1192. margin-left: 8.33333% !important;
  1193. }
  1194. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1195. .large-offset-2 {
  1196. margin-left: 16.66667% !important;
  1197. }
  1198. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1199. .large-offset-3 {
  1200. margin-left: 25% !important;
  1201. }
  1202. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1203. .large-offset-4 {
  1204. margin-left: 33.33333% !important;
  1205. }
  1206. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1207. .large-offset-5 {
  1208. margin-left: 41.66667% !important;
  1209. }
  1210. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1211. .large-offset-6 {
  1212. margin-left: 50% !important;
  1213. }
  1214. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1215. .large-offset-7 {
  1216. margin-left: 58.33333% !important;
  1217. }
  1218. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1219. .large-offset-8 {
  1220. margin-left: 66.66667% !important;
  1221. }
  1222. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1223. .large-offset-9 {
  1224. margin-left: 75% !important;
  1225. }
  1226. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1227. .large-offset-10 {
  1228. margin-left: 83.33333% !important;
  1229. }
  1230. /* line 176, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1231. .large-offset-11 {
  1232. margin-left: 91.66667% !important;
  1233. }
  1234. /* line 179, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1235. .large-reset-order {
  1236. margin-left: 0;
  1237. margin-right: 0;
  1238. left: auto;
  1239. right: auto;
  1240. float: left;
  1241. }
  1242. /* line 187, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1243. .column.large-centered,
  1244. .columns.large-centered {
  1245. margin-left: auto;
  1246. margin-right: auto;
  1247. float: none;
  1248. }
  1249. /* line 190, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1250. .column.large-uncentered,
  1251. .columns.large-uncentered {
  1252. margin-left: 0;
  1253. margin-right: 0;
  1254. float: left;
  1255. }
  1256. /* line 198, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1257. .column.large-centered:last-child,
  1258. .columns.large-centered:last-child {
  1259. float: none;
  1260. }
  1261. /* line 204, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1262. .column.large-uncentered:last-child,
  1263. .columns.large-uncentered:last-child {
  1264. float: left;
  1265. }
  1266. /* line 209, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1267. .column.large-uncentered.opposite,
  1268. .columns.large-uncentered.opposite {
  1269. float: right;
  1270. }
  1271. /* line 216, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1272. .row.large-collapse > .column,
  1273. .row.large-collapse > .columns {
  1274. padding-left: 0;
  1275. padding-right: 0;
  1276. }
  1277. /* line 219, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1278. .row.large-collapse .row {
  1279. margin-left: 0;
  1280. margin-right: 0;
  1281. }
  1282. /* line 222, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1283. .row.large-uncollapse > .column,
  1284. .row.large-uncollapse > .columns {
  1285. padding-left: 0.9375rem;
  1286. padding-right: 0.9375rem;
  1287. float: left;
  1288. }
  1289. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1290. .push-0 {
  1291. position: relative;
  1292. left: 0%;
  1293. right: auto;
  1294. }
  1295. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1296. .pull-0 {
  1297. position: relative;
  1298. right: 0%;
  1299. left: auto;
  1300. }
  1301. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1302. .push-1 {
  1303. position: relative;
  1304. left: 8.33333%;
  1305. right: auto;
  1306. }
  1307. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1308. .pull-1 {
  1309. position: relative;
  1310. right: 8.33333%;
  1311. left: auto;
  1312. }
  1313. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1314. .push-2 {
  1315. position: relative;
  1316. left: 16.66667%;
  1317. right: auto;
  1318. }
  1319. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1320. .pull-2 {
  1321. position: relative;
  1322. right: 16.66667%;
  1323. left: auto;
  1324. }
  1325. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1326. .push-3 {
  1327. position: relative;
  1328. left: 25%;
  1329. right: auto;
  1330. }
  1331. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1332. .pull-3 {
  1333. position: relative;
  1334. right: 25%;
  1335. left: auto;
  1336. }
  1337. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1338. .push-4 {
  1339. position: relative;
  1340. left: 33.33333%;
  1341. right: auto;
  1342. }
  1343. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1344. .pull-4 {
  1345. position: relative;
  1346. right: 33.33333%;
  1347. left: auto;
  1348. }
  1349. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1350. .push-5 {
  1351. position: relative;
  1352. left: 41.66667%;
  1353. right: auto;
  1354. }
  1355. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1356. .pull-5 {
  1357. position: relative;
  1358. right: 41.66667%;
  1359. left: auto;
  1360. }
  1361. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1362. .push-6 {
  1363. position: relative;
  1364. left: 50%;
  1365. right: auto;
  1366. }
  1367. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1368. .pull-6 {
  1369. position: relative;
  1370. right: 50%;
  1371. left: auto;
  1372. }
  1373. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1374. .push-7 {
  1375. position: relative;
  1376. left: 58.33333%;
  1377. right: auto;
  1378. }
  1379. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1380. .pull-7 {
  1381. position: relative;
  1382. right: 58.33333%;
  1383. left: auto;
  1384. }
  1385. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1386. .push-8 {
  1387. position: relative;
  1388. left: 66.66667%;
  1389. right: auto;
  1390. }
  1391. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1392. .pull-8 {
  1393. position: relative;
  1394. right: 66.66667%;
  1395. left: auto;
  1396. }
  1397. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1398. .push-9 {
  1399. position: relative;
  1400. left: 75%;
  1401. right: auto;
  1402. }
  1403. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1404. .pull-9 {
  1405. position: relative;
  1406. right: 75%;
  1407. left: auto;
  1408. }
  1409. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1410. .push-10 {
  1411. position: relative;
  1412. left: 83.33333%;
  1413. right: auto;
  1414. }
  1415. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1416. .pull-10 {
  1417. position: relative;
  1418. right: 83.33333%;
  1419. left: auto;
  1420. }
  1421. /* line 272, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1422. .push-11 {
  1423. position: relative;
  1424. left: 91.66667%;
  1425. right: auto;
  1426. }
  1427. /* line 275, ../bower_components/foundation/scss/foundation/components/_grid.scss */
  1428. .pull-11 {
  1429. position: relative;
  1430. right: 91.66667%;
  1431. left: auto;
  1432. }
  1433. }
  1434. /* line 129, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
  1435. .accordion {
  1436. margin-bottom: 0;
  1437. }
  1438. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  1439. .accordion:before, .accordion:after {
  1440. content: " ";
  1441. display: table;
  1442. }
  1443. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  1444. .accordion:after {
  1445. clear: both;
  1446. }
  1447. /* line 132, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
  1448. .accordion .accordion-navigation, .accordion dd {
  1449. display: block;
  1450. margin-bottom: 0 !important;
  1451. }
  1452. /* line 135, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
  1453. .accordion .accordion-navigation.active > a, .accordion dd.active > a {
  1454. background: #e8e8e8;
  1455. }
  1456. /* line 136, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
  1457. .accordion .accordion-navigation > a, .accordion dd > a {
  1458. background: #EFEFEF;
  1459. color: #222222;
  1460. padding: 1rem;
  1461. display: block;
  1462. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  1463. font-size: 1rem;
  1464. }
  1465. /* line 143, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
  1466. .accordion .accordion-navigation > a:hover, .accordion dd > a:hover {
  1467. background: #e3e3e3;
  1468. }
  1469. /* line 146, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
  1470. .accordion .accordion-navigation > .content, .accordion dd > .content {
  1471. display: none;
  1472. padding: 0.9375rem;
  1473. }
  1474. /* line 149, ../bower_components/foundation/scss/foundation/components/_accordion.scss */
  1475. .accordion .accordion-navigation > .content.active, .accordion dd > .content.active {
  1476. display: block;
  1477. background: #FFFFFF;
  1478. }
  1479. /* line 112, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1480. .alert-box {
  1481. border-style: solid;
  1482. border-width: 1px;
  1483. display: block;
  1484. font-weight: normal;
  1485. margin-bottom: 1.25rem;
  1486. position: relative;
  1487. padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  1488. font-size: 0.8125rem;
  1489. -webkit-transition: opacity 300ms ease-out;
  1490. transition: opacity 300ms ease-out;
  1491. background-color: #008CBA;
  1492. border-color: #0078a0;
  1493. color: #FFFFFF;
  1494. }
  1495. /* line 115, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1496. .alert-box .close {
  1497. font-size: 1.375rem;
  1498. padding: 0 6px 4px;
  1499. line-height: .9;
  1500. position: absolute;
  1501. top: 50%;
  1502. margin-top: -0.6875rem;
  1503. right: 0.25rem;
  1504. color: #333333;
  1505. opacity: 0.3;
  1506. background: inherit;
  1507. }
  1508. /* line 96, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1509. .alert-box .close:hover, .alert-box .close:focus {
  1510. opacity: 0.5;
  1511. }
  1512. /* line 117, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1513. .alert-box.radius {
  1514. border-radius: 3px;
  1515. }
  1516. /* line 118, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1517. .alert-box.round {
  1518. border-radius: 1000px;
  1519. }
  1520. /* line 120, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1521. .alert-box.success {
  1522. background-color: #43AC6A;
  1523. border-color: #3a945b;
  1524. color: #FFFFFF;
  1525. }
  1526. /* line 121, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1527. .alert-box.alert {
  1528. background-color: #f04124;
  1529. border-color: #de2d0f;
  1530. color: #FFFFFF;
  1531. }
  1532. /* line 122, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1533. .alert-box.secondary {
  1534. background-color: #e7e7e7;
  1535. border-color: #c7c7c7;
  1536. color: #4f4f4f;
  1537. }
  1538. /* line 123, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1539. .alert-box.warning {
  1540. background-color: #f08a24;
  1541. border-color: #de770f;
  1542. color: #FFFFFF;
  1543. }
  1544. /* line 124, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1545. .alert-box.info {
  1546. background-color: #a0d3e8;
  1547. border-color: #74bfdd;
  1548. color: #4f4f4f;
  1549. }
  1550. /* line 125, ../bower_components/foundation/scss/foundation/components/_alert-boxes.scss */
  1551. .alert-box.alert-close {
  1552. opacity: 0;
  1553. }
  1554. /* line 107, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1555. [class*="block-grid-"] {
  1556. display: block;
  1557. padding: 0;
  1558. margin: 0 -0.625rem;
  1559. }
  1560. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  1561. [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  1562. content: " ";
  1563. display: table;
  1564. }
  1565. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  1566. [class*="block-grid-"]:after {
  1567. clear: both;
  1568. }
  1569. /* line 51, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1570. [class*="block-grid-"] > li {
  1571. display: block;
  1572. height: auto;
  1573. float: left;
  1574. padding: 0 0.625rem 1.25rem;
  1575. }
  1576. @media only screen {
  1577. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1578. .small-block-grid-1 > li {
  1579. width: 100%;
  1580. list-style: none;
  1581. }
  1582. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1583. .small-block-grid-1 > li:nth-of-type(1n) {
  1584. clear: none;
  1585. }
  1586. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1587. .small-block-grid-1 > li:nth-of-type(1n+1) {
  1588. clear: both;
  1589. }
  1590. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1591. .small-block-grid-2 > li {
  1592. width: 50%;
  1593. list-style: none;
  1594. }
  1595. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1596. .small-block-grid-2 > li:nth-of-type(1n) {
  1597. clear: none;
  1598. }
  1599. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1600. .small-block-grid-2 > li:nth-of-type(2n+1) {
  1601. clear: both;
  1602. }
  1603. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1604. .small-block-grid-3 > li {
  1605. width: 33.33333%;
  1606. list-style: none;
  1607. }
  1608. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1609. .small-block-grid-3 > li:nth-of-type(1n) {
  1610. clear: none;
  1611. }
  1612. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1613. .small-block-grid-3 > li:nth-of-type(3n+1) {
  1614. clear: both;
  1615. }
  1616. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1617. .small-block-grid-4 > li {
  1618. width: 25%;
  1619. list-style: none;
  1620. }
  1621. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1622. .small-block-grid-4 > li:nth-of-type(1n) {
  1623. clear: none;
  1624. }
  1625. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1626. .small-block-grid-4 > li:nth-of-type(4n+1) {
  1627. clear: both;
  1628. }
  1629. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1630. .small-block-grid-5 > li {
  1631. width: 20%;
  1632. list-style: none;
  1633. }
  1634. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1635. .small-block-grid-5 > li:nth-of-type(1n) {
  1636. clear: none;
  1637. }
  1638. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1639. .small-block-grid-5 > li:nth-of-type(5n+1) {
  1640. clear: both;
  1641. }
  1642. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1643. .small-block-grid-6 > li {
  1644. width: 16.66667%;
  1645. list-style: none;
  1646. }
  1647. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1648. .small-block-grid-6 > li:nth-of-type(1n) {
  1649. clear: none;
  1650. }
  1651. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1652. .small-block-grid-6 > li:nth-of-type(6n+1) {
  1653. clear: both;
  1654. }
  1655. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1656. .small-block-grid-7 > li {
  1657. width: 14.28571%;
  1658. list-style: none;
  1659. }
  1660. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1661. .small-block-grid-7 > li:nth-of-type(1n) {
  1662. clear: none;
  1663. }
  1664. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1665. .small-block-grid-7 > li:nth-of-type(7n+1) {
  1666. clear: both;
  1667. }
  1668. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1669. .small-block-grid-8 > li {
  1670. width: 12.5%;
  1671. list-style: none;
  1672. }
  1673. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1674. .small-block-grid-8 > li:nth-of-type(1n) {
  1675. clear: none;
  1676. }
  1677. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1678. .small-block-grid-8 > li:nth-of-type(8n+1) {
  1679. clear: both;
  1680. }
  1681. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1682. .small-block-grid-9 > li {
  1683. width: 11.11111%;
  1684. list-style: none;
  1685. }
  1686. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1687. .small-block-grid-9 > li:nth-of-type(1n) {
  1688. clear: none;
  1689. }
  1690. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1691. .small-block-grid-9 > li:nth-of-type(9n+1) {
  1692. clear: both;
  1693. }
  1694. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1695. .small-block-grid-10 > li {
  1696. width: 10%;
  1697. list-style: none;
  1698. }
  1699. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1700. .small-block-grid-10 > li:nth-of-type(1n) {
  1701. clear: none;
  1702. }
  1703. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1704. .small-block-grid-10 > li:nth-of-type(10n+1) {
  1705. clear: both;
  1706. }
  1707. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1708. .small-block-grid-11 > li {
  1709. width: 9.09091%;
  1710. list-style: none;
  1711. }
  1712. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1713. .small-block-grid-11 > li:nth-of-type(1n) {
  1714. clear: none;
  1715. }
  1716. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1717. .small-block-grid-11 > li:nth-of-type(11n+1) {
  1718. clear: both;
  1719. }
  1720. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1721. .small-block-grid-12 > li {
  1722. width: 8.33333%;
  1723. list-style: none;
  1724. }
  1725. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1726. .small-block-grid-12 > li:nth-of-type(1n) {
  1727. clear: none;
  1728. }
  1729. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1730. .small-block-grid-12 > li:nth-of-type(12n+1) {
  1731. clear: both;
  1732. }
  1733. }
  1734. @media only screen and (min-width: 40.063em) {
  1735. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1736. .medium-block-grid-1 > li {
  1737. width: 100%;
  1738. list-style: none;
  1739. }
  1740. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1741. .medium-block-grid-1 > li:nth-of-type(1n) {
  1742. clear: none;
  1743. }
  1744. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1745. .medium-block-grid-1 > li:nth-of-type(1n+1) {
  1746. clear: both;
  1747. }
  1748. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1749. .medium-block-grid-2 > li {
  1750. width: 50%;
  1751. list-style: none;
  1752. }
  1753. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1754. .medium-block-grid-2 > li:nth-of-type(1n) {
  1755. clear: none;
  1756. }
  1757. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1758. .medium-block-grid-2 > li:nth-of-type(2n+1) {
  1759. clear: both;
  1760. }
  1761. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1762. .medium-block-grid-3 > li {
  1763. width: 33.33333%;
  1764. list-style: none;
  1765. }
  1766. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1767. .medium-block-grid-3 > li:nth-of-type(1n) {
  1768. clear: none;
  1769. }
  1770. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1771. .medium-block-grid-3 > li:nth-of-type(3n+1) {
  1772. clear: both;
  1773. }
  1774. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1775. .medium-block-grid-4 > li {
  1776. width: 25%;
  1777. list-style: none;
  1778. }
  1779. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1780. .medium-block-grid-4 > li:nth-of-type(1n) {
  1781. clear: none;
  1782. }
  1783. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1784. .medium-block-grid-4 > li:nth-of-type(4n+1) {
  1785. clear: both;
  1786. }
  1787. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1788. .medium-block-grid-5 > li {
  1789. width: 20%;
  1790. list-style: none;
  1791. }
  1792. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1793. .medium-block-grid-5 > li:nth-of-type(1n) {
  1794. clear: none;
  1795. }
  1796. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1797. .medium-block-grid-5 > li:nth-of-type(5n+1) {
  1798. clear: both;
  1799. }
  1800. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1801. .medium-block-grid-6 > li {
  1802. width: 16.66667%;
  1803. list-style: none;
  1804. }
  1805. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1806. .medium-block-grid-6 > li:nth-of-type(1n) {
  1807. clear: none;
  1808. }
  1809. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1810. .medium-block-grid-6 > li:nth-of-type(6n+1) {
  1811. clear: both;
  1812. }
  1813. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1814. .medium-block-grid-7 > li {
  1815. width: 14.28571%;
  1816. list-style: none;
  1817. }
  1818. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1819. .medium-block-grid-7 > li:nth-of-type(1n) {
  1820. clear: none;
  1821. }
  1822. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1823. .medium-block-grid-7 > li:nth-of-type(7n+1) {
  1824. clear: both;
  1825. }
  1826. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1827. .medium-block-grid-8 > li {
  1828. width: 12.5%;
  1829. list-style: none;
  1830. }
  1831. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1832. .medium-block-grid-8 > li:nth-of-type(1n) {
  1833. clear: none;
  1834. }
  1835. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1836. .medium-block-grid-8 > li:nth-of-type(8n+1) {
  1837. clear: both;
  1838. }
  1839. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1840. .medium-block-grid-9 > li {
  1841. width: 11.11111%;
  1842. list-style: none;
  1843. }
  1844. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1845. .medium-block-grid-9 > li:nth-of-type(1n) {
  1846. clear: none;
  1847. }
  1848. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1849. .medium-block-grid-9 > li:nth-of-type(9n+1) {
  1850. clear: both;
  1851. }
  1852. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1853. .medium-block-grid-10 > li {
  1854. width: 10%;
  1855. list-style: none;
  1856. }
  1857. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1858. .medium-block-grid-10 > li:nth-of-type(1n) {
  1859. clear: none;
  1860. }
  1861. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1862. .medium-block-grid-10 > li:nth-of-type(10n+1) {
  1863. clear: both;
  1864. }
  1865. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1866. .medium-block-grid-11 > li {
  1867. width: 9.09091%;
  1868. list-style: none;
  1869. }
  1870. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1871. .medium-block-grid-11 > li:nth-of-type(1n) {
  1872. clear: none;
  1873. }
  1874. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1875. .medium-block-grid-11 > li:nth-of-type(11n+1) {
  1876. clear: both;
  1877. }
  1878. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1879. .medium-block-grid-12 > li {
  1880. width: 8.33333%;
  1881. list-style: none;
  1882. }
  1883. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1884. .medium-block-grid-12 > li:nth-of-type(1n) {
  1885. clear: none;
  1886. }
  1887. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1888. .medium-block-grid-12 > li:nth-of-type(12n+1) {
  1889. clear: both;
  1890. }
  1891. }
  1892. @media only screen and (min-width: 64.063em) {
  1893. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1894. .large-block-grid-1 > li {
  1895. width: 100%;
  1896. list-style: none;
  1897. }
  1898. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1899. .large-block-grid-1 > li:nth-of-type(1n) {
  1900. clear: none;
  1901. }
  1902. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1903. .large-block-grid-1 > li:nth-of-type(1n+1) {
  1904. clear: both;
  1905. }
  1906. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1907. .large-block-grid-2 > li {
  1908. width: 50%;
  1909. list-style: none;
  1910. }
  1911. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1912. .large-block-grid-2 > li:nth-of-type(1n) {
  1913. clear: none;
  1914. }
  1915. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1916. .large-block-grid-2 > li:nth-of-type(2n+1) {
  1917. clear: both;
  1918. }
  1919. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1920. .large-block-grid-3 > li {
  1921. width: 33.33333%;
  1922. list-style: none;
  1923. }
  1924. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1925. .large-block-grid-3 > li:nth-of-type(1n) {
  1926. clear: none;
  1927. }
  1928. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1929. .large-block-grid-3 > li:nth-of-type(3n+1) {
  1930. clear: both;
  1931. }
  1932. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1933. .large-block-grid-4 > li {
  1934. width: 25%;
  1935. list-style: none;
  1936. }
  1937. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1938. .large-block-grid-4 > li:nth-of-type(1n) {
  1939. clear: none;
  1940. }
  1941. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1942. .large-block-grid-4 > li:nth-of-type(4n+1) {
  1943. clear: both;
  1944. }
  1945. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1946. .large-block-grid-5 > li {
  1947. width: 20%;
  1948. list-style: none;
  1949. }
  1950. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1951. .large-block-grid-5 > li:nth-of-type(1n) {
  1952. clear: none;
  1953. }
  1954. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1955. .large-block-grid-5 > li:nth-of-type(5n+1) {
  1956. clear: both;
  1957. }
  1958. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1959. .large-block-grid-6 > li {
  1960. width: 16.66667%;
  1961. list-style: none;
  1962. }
  1963. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1964. .large-block-grid-6 > li:nth-of-type(1n) {
  1965. clear: none;
  1966. }
  1967. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1968. .large-block-grid-6 > li:nth-of-type(6n+1) {
  1969. clear: both;
  1970. }
  1971. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1972. .large-block-grid-7 > li {
  1973. width: 14.28571%;
  1974. list-style: none;
  1975. }
  1976. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1977. .large-block-grid-7 > li:nth-of-type(1n) {
  1978. clear: none;
  1979. }
  1980. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1981. .large-block-grid-7 > li:nth-of-type(7n+1) {
  1982. clear: both;
  1983. }
  1984. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1985. .large-block-grid-8 > li {
  1986. width: 12.5%;
  1987. list-style: none;
  1988. }
  1989. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1990. .large-block-grid-8 > li:nth-of-type(1n) {
  1991. clear: none;
  1992. }
  1993. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1994. .large-block-grid-8 > li:nth-of-type(8n+1) {
  1995. clear: both;
  1996. }
  1997. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  1998. .large-block-grid-9 > li {
  1999. width: 11.11111%;
  2000. list-style: none;
  2001. }
  2002. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2003. .large-block-grid-9 > li:nth-of-type(1n) {
  2004. clear: none;
  2005. }
  2006. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2007. .large-block-grid-9 > li:nth-of-type(9n+1) {
  2008. clear: both;
  2009. }
  2010. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2011. .large-block-grid-10 > li {
  2012. width: 10%;
  2013. list-style: none;
  2014. }
  2015. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2016. .large-block-grid-10 > li:nth-of-type(1n) {
  2017. clear: none;
  2018. }
  2019. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2020. .large-block-grid-10 > li:nth-of-type(10n+1) {
  2021. clear: both;
  2022. }
  2023. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2024. .large-block-grid-11 > li {
  2025. width: 9.09091%;
  2026. list-style: none;
  2027. }
  2028. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2029. .large-block-grid-11 > li:nth-of-type(1n) {
  2030. clear: none;
  2031. }
  2032. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2033. .large-block-grid-11 > li:nth-of-type(11n+1) {
  2034. clear: both;
  2035. }
  2036. /* line 62, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2037. .large-block-grid-12 > li {
  2038. width: 8.33333%;
  2039. list-style: none;
  2040. }
  2041. /* line 69, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2042. .large-block-grid-12 > li:nth-of-type(1n) {
  2043. clear: none;
  2044. }
  2045. /* line 70, ../bower_components/foundation/scss/foundation/components/_block-grid.scss */
  2046. .large-block-grid-12 > li:nth-of-type(12n+1) {
  2047. clear: both;
  2048. }
  2049. }
  2050. /* line 118, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2051. .breadcrumbs {
  2052. display: block;
  2053. padding: 0.5625rem 0.875rem 0.5625rem;
  2054. overflow: hidden;
  2055. margin-left: 0;
  2056. list-style: none;
  2057. border-style: solid;
  2058. border-width: 1px;
  2059. background-color: #f4f4f4;
  2060. border-color: gainsboro;
  2061. border-radius: 3px;
  2062. }
  2063. /* line 122, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2064. .breadcrumbs > * {
  2065. margin: 0;
  2066. float: left;
  2067. font-size: 0.6875rem;
  2068. line-height: 0.6875rem;
  2069. text-transform: uppercase;
  2070. color: #008CBA;
  2071. }
  2072. /* line 68, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2073. .breadcrumbs > *:hover a, .breadcrumbs > *:focus a {
  2074. text-decoration: underline;
  2075. }
  2076. /* line 70, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2077. .breadcrumbs > * a {
  2078. color: #008CBA;
  2079. }
  2080. /* line 75, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2081. .breadcrumbs > *.current {
  2082. cursor: default;
  2083. color: #333333;
  2084. }
  2085. /* line 78, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2086. .breadcrumbs > *.current a {
  2087. cursor: default;
  2088. color: #333333;
  2089. }
  2090. /* line 83, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2091. .breadcrumbs > *.current:hover, .breadcrumbs > *.current:hover a, .breadcrumbs > *.current:focus, .breadcrumbs > *.current:focus a {
  2092. text-decoration: none;
  2093. }
  2094. /* line 88, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2095. .breadcrumbs > *.unavailable {
  2096. color: #999999;
  2097. }
  2098. /* line 90, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2099. .breadcrumbs > *.unavailable a {
  2100. color: #999999;
  2101. }
  2102. /* line 92, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2103. .breadcrumbs > *.unavailable:hover, .breadcrumbs > *.unavailable:hover a, .breadcrumbs > *.unavailable:focus,
  2104. .breadcrumbs > *.unavailable a:focus {
  2105. text-decoration: none;
  2106. color: #999999;
  2107. cursor: not-allowed;
  2108. }
  2109. /* line 102, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2110. .breadcrumbs > *:before {
  2111. content: "/";
  2112. color: #AAAAAA;
  2113. margin: 0 0.75rem;
  2114. position: relative;
  2115. top: 1px;
  2116. }
  2117. /* line 110, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2118. .breadcrumbs > *:first-child:before {
  2119. content: " ";
  2120. margin: 0;
  2121. }
  2122. /* Accessibility - hides the forward slash */
  2123. /* line 130, ../bower_components/foundation/scss/foundation/components/_breadcrumbs.scss */
  2124. [aria-label="breadcrumbs"] [aria-hidden="true"]:after {
  2125. content: "/";
  2126. }
  2127. /* line 217, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2128. button, .button {
  2129. border-style: solid;
  2130. border-width: 0;
  2131. cursor: pointer;
  2132. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  2133. font-weight: normal;
  2134. line-height: normal;
  2135. margin: 0 0 1.25rem;
  2136. position: relative;
  2137. text-decoration: none;
  2138. text-align: center;
  2139. -webkit-appearance: none;
  2140. -moz-appearance: none;
  2141. border-radius: 0;
  2142. display: inline-block;
  2143. padding-top: 1rem;
  2144. padding-right: 2rem;
  2145. padding-bottom: 1.0625rem;
  2146. padding-left: 2rem;
  2147. font-size: 1rem;
  2148. background-color: #008CBA;
  2149. border-color: #007095;
  2150. color: #FFFFFF;
  2151. -webkit-transition: background-color 300ms ease-out;
  2152. transition: background-color 300ms ease-out;
  2153. }
  2154. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2155. button:hover, button:focus, .button:hover, .button:focus {
  2156. background-color: #007095;
  2157. }
  2158. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2159. button:hover, button:focus, .button:hover, .button:focus {
  2160. color: #FFFFFF;
  2161. }
  2162. /* line 224, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2163. button.secondary, .button.secondary {
  2164. background-color: #e7e7e7;
  2165. border-color: #b9b9b9;
  2166. color: #333333;
  2167. }
  2168. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2169. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  2170. background-color: #b9b9b9;
  2171. }
  2172. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2173. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  2174. color: #333333;
  2175. }
  2176. /* line 225, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2177. button.success, .button.success {
  2178. background-color: #43AC6A;
  2179. border-color: #368a55;
  2180. color: #FFFFFF;
  2181. }
  2182. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2183. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  2184. background-color: #368a55;
  2185. }
  2186. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2187. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  2188. color: #FFFFFF;
  2189. }
  2190. /* line 226, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2191. button.alert, .button.alert {
  2192. background-color: #f04124;
  2193. border-color: #cf2a0e;
  2194. color: #FFFFFF;
  2195. }
  2196. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2197. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  2198. background-color: #cf2a0e;
  2199. }
  2200. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2201. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  2202. color: #FFFFFF;
  2203. }
  2204. /* line 227, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2205. button.warning, .button.warning {
  2206. background-color: #f08a24;
  2207. border-color: #cf6e0e;
  2208. color: #FFFFFF;
  2209. }
  2210. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2211. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  2212. background-color: #cf6e0e;
  2213. }
  2214. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2215. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  2216. color: #FFFFFF;
  2217. }
  2218. /* line 228, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2219. button.info, .button.info {
  2220. background-color: #a0d3e8;
  2221. border-color: #61b6d9;
  2222. color: #333333;
  2223. }
  2224. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2225. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  2226. background-color: #61b6d9;
  2227. }
  2228. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2229. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  2230. color: #FFFFFF;
  2231. }
  2232. /* line 230, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2233. button.large, .button.large {
  2234. padding-top: 1.125rem;
  2235. padding-right: 2.25rem;
  2236. padding-bottom: 1.1875rem;
  2237. padding-left: 2.25rem;
  2238. font-size: 1.25rem;
  2239. }
  2240. /* line 231, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2241. button.small, .button.small {
  2242. padding-top: 0.875rem;
  2243. padding-right: 1.75rem;
  2244. padding-bottom: 0.9375rem;
  2245. padding-left: 1.75rem;
  2246. font-size: 0.8125rem;
  2247. }
  2248. /* line 232, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2249. button.tiny, .button.tiny {
  2250. padding-top: 0.625rem;
  2251. padding-right: 1.25rem;
  2252. padding-bottom: 0.6875rem;
  2253. padding-left: 1.25rem;
  2254. font-size: 0.6875rem;
  2255. }
  2256. /* line 233, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2257. button.expand, .button.expand {
  2258. padding-right: 0;
  2259. padding-left: 0;
  2260. width: 100%;
  2261. }
  2262. /* line 235, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2263. button.left-align, .button.left-align {
  2264. text-align: left;
  2265. text-indent: 0.75rem;
  2266. }
  2267. /* line 236, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2268. button.right-align, .button.right-align {
  2269. text-align: right;
  2270. padding-right: 0.75rem;
  2271. }
  2272. /* line 238, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2273. button.radius, .button.radius {
  2274. border-radius: 3px;
  2275. }
  2276. /* line 239, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2277. button.round, .button.round {
  2278. border-radius: 1000px;
  2279. }
  2280. /* line 241, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2281. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  2282. background-color: #008CBA;
  2283. border-color: #007095;
  2284. color: #FFFFFF;
  2285. cursor: default;
  2286. opacity: 0.7;
  2287. box-shadow: none;
  2288. }
  2289. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2290. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  2291. background-color: #007095;
  2292. }
  2293. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2294. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  2295. color: #FFFFFF;
  2296. }
  2297. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2298. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  2299. background-color: #008CBA;
  2300. }
  2301. /* line 242, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2302. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  2303. background-color: #e7e7e7;
  2304. border-color: #b9b9b9;
  2305. color: #333333;
  2306. cursor: default;
  2307. opacity: 0.7;
  2308. box-shadow: none;
  2309. }
  2310. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2311. 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 {
  2312. background-color: #b9b9b9;
  2313. }
  2314. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2315. 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 {
  2316. color: #333333;
  2317. }
  2318. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2319. 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 {
  2320. background-color: #e7e7e7;
  2321. }
  2322. /* line 243, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2323. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  2324. background-color: #43AC6A;
  2325. border-color: #368a55;
  2326. color: #FFFFFF;
  2327. cursor: default;
  2328. opacity: 0.7;
  2329. box-shadow: none;
  2330. }
  2331. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2332. 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 {
  2333. background-color: #368a55;
  2334. }
  2335. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2336. 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 {
  2337. color: #FFFFFF;
  2338. }
  2339. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2340. 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 {
  2341. background-color: #43AC6A;
  2342. }
  2343. /* line 244, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2344. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  2345. background-color: #f04124;
  2346. border-color: #cf2a0e;
  2347. color: #FFFFFF;
  2348. cursor: default;
  2349. opacity: 0.7;
  2350. box-shadow: none;
  2351. }
  2352. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2353. 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 {
  2354. background-color: #cf2a0e;
  2355. }
  2356. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2357. 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 {
  2358. color: #FFFFFF;
  2359. }
  2360. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2361. 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 {
  2362. background-color: #f04124;
  2363. }
  2364. /* line 245, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2365. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  2366. background-color: #f08a24;
  2367. border-color: #cf6e0e;
  2368. color: #FFFFFF;
  2369. cursor: default;
  2370. opacity: 0.7;
  2371. box-shadow: none;
  2372. }
  2373. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2374. 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 {
  2375. background-color: #cf6e0e;
  2376. }
  2377. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2378. 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 {
  2379. color: #FFFFFF;
  2380. }
  2381. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2382. 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 {
  2383. background-color: #f08a24;
  2384. }
  2385. /* line 246, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2386. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  2387. background-color: #a0d3e8;
  2388. border-color: #61b6d9;
  2389. color: #333333;
  2390. cursor: default;
  2391. opacity: 0.7;
  2392. box-shadow: none;
  2393. }
  2394. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2395. 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 {
  2396. background-color: #61b6d9;
  2397. }
  2398. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2399. 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 {
  2400. color: #FFFFFF;
  2401. }
  2402. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2403. 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 {
  2404. background-color: #a0d3e8;
  2405. }
  2406. /* line 251, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2407. button::-moz-focus-inner {
  2408. border: 0;
  2409. padding: 0;
  2410. }
  2411. @media only screen and (min-width: 40.063em) {
  2412. /* line 254, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  2413. button, .button {
  2414. display: inline-block;
  2415. }
  2416. }
  2417. /* line 151, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2418. .button-group {
  2419. list-style: none;
  2420. margin: 0;
  2421. left: 0;
  2422. }
  2423. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  2424. .button-group:before, .button-group:after {
  2425. content: " ";
  2426. display: table;
  2427. }
  2428. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  2429. .button-group:after {
  2430. clear: both;
  2431. }
  2432. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2433. .button-group.even-2 li {
  2434. margin: 0 -2px;
  2435. display: inline-block;
  2436. width: 50%;
  2437. }
  2438. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2439. .button-group.even-2 li > button, .button-group.even-2 li .button {
  2440. border-left: 1px solid;
  2441. border-color: rgba(255, 255, 255, 0.5);
  2442. }
  2443. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2444. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  2445. border-left: 0;
  2446. }
  2447. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2448. .button-group.even-2 li button, .button-group.even-2 li .button {
  2449. width: 100%;
  2450. }
  2451. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2452. .button-group.even-3 li {
  2453. margin: 0 -2px;
  2454. display: inline-block;
  2455. width: 33.33333%;
  2456. }
  2457. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2458. .button-group.even-3 li > button, .button-group.even-3 li .button {
  2459. border-left: 1px solid;
  2460. border-color: rgba(255, 255, 255, 0.5);
  2461. }
  2462. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2463. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  2464. border-left: 0;
  2465. }
  2466. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2467. .button-group.even-3 li button, .button-group.even-3 li .button {
  2468. width: 100%;
  2469. }
  2470. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2471. .button-group.even-4 li {
  2472. margin: 0 -2px;
  2473. display: inline-block;
  2474. width: 25%;
  2475. }
  2476. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2477. .button-group.even-4 li > button, .button-group.even-4 li .button {
  2478. border-left: 1px solid;
  2479. border-color: rgba(255, 255, 255, 0.5);
  2480. }
  2481. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2482. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  2483. border-left: 0;
  2484. }
  2485. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2486. .button-group.even-4 li button, .button-group.even-4 li .button {
  2487. width: 100%;
  2488. }
  2489. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2490. .button-group.even-5 li {
  2491. margin: 0 -2px;
  2492. display: inline-block;
  2493. width: 20%;
  2494. }
  2495. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2496. .button-group.even-5 li > button, .button-group.even-5 li .button {
  2497. border-left: 1px solid;
  2498. border-color: rgba(255, 255, 255, 0.5);
  2499. }
  2500. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2501. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  2502. border-left: 0;
  2503. }
  2504. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2505. .button-group.even-5 li button, .button-group.even-5 li .button {
  2506. width: 100%;
  2507. }
  2508. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2509. .button-group.even-6 li {
  2510. margin: 0 -2px;
  2511. display: inline-block;
  2512. width: 16.66667%;
  2513. }
  2514. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2515. .button-group.even-6 li > button, .button-group.even-6 li .button {
  2516. border-left: 1px solid;
  2517. border-color: rgba(255, 255, 255, 0.5);
  2518. }
  2519. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2520. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  2521. border-left: 0;
  2522. }
  2523. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2524. .button-group.even-6 li button, .button-group.even-6 li .button {
  2525. width: 100%;
  2526. }
  2527. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2528. .button-group.even-7 li {
  2529. margin: 0 -2px;
  2530. display: inline-block;
  2531. width: 14.28571%;
  2532. }
  2533. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2534. .button-group.even-7 li > button, .button-group.even-7 li .button {
  2535. border-left: 1px solid;
  2536. border-color: rgba(255, 255, 255, 0.5);
  2537. }
  2538. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2539. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  2540. border-left: 0;
  2541. }
  2542. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2543. .button-group.even-7 li button, .button-group.even-7 li .button {
  2544. width: 100%;
  2545. }
  2546. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2547. .button-group.even-8 li {
  2548. margin: 0 -2px;
  2549. display: inline-block;
  2550. width: 12.5%;
  2551. }
  2552. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2553. .button-group.even-8 li > button, .button-group.even-8 li .button {
  2554. border-left: 1px solid;
  2555. border-color: rgba(255, 255, 255, 0.5);
  2556. }
  2557. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2558. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  2559. border-left: 0;
  2560. }
  2561. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2562. .button-group.even-8 li button, .button-group.even-8 li .button {
  2563. width: 100%;
  2564. }
  2565. /* line 157, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2566. .button-group > li {
  2567. margin: 0 -2px;
  2568. display: inline-block;
  2569. }
  2570. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2571. .button-group > li > button, .button-group > li .button {
  2572. border-left: 1px solid;
  2573. border-color: rgba(255, 255, 255, 0.5);
  2574. }
  2575. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2576. .button-group > li:first-child button, .button-group > li:first-child .button {
  2577. border-left: 0;
  2578. }
  2579. /* line 160, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2580. .button-group.stack > li {
  2581. margin: 0 -2px;
  2582. display: inline-block;
  2583. display: block;
  2584. margin: 0;
  2585. float: none;
  2586. }
  2587. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2588. .button-group.stack > li > button, .button-group.stack > li .button {
  2589. border-left: 1px solid;
  2590. border-color: rgba(255, 255, 255, 0.5);
  2591. }
  2592. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2593. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  2594. border-left: 0;
  2595. }
  2596. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2597. .button-group.stack > li > button, .button-group.stack > li .button {
  2598. border-top: 1px solid;
  2599. border-color: rgba(255, 255, 255, 0.5);
  2600. border-left-width: 0;
  2601. margin: 0;
  2602. display: block;
  2603. }
  2604. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2605. .button-group.stack > li > button {
  2606. width: 100%;
  2607. }
  2608. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2609. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  2610. border-top: 0;
  2611. }
  2612. /* line 164, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2613. .button-group.stack-for-small > li {
  2614. margin: 0 -2px;
  2615. display: inline-block;
  2616. }
  2617. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2618. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  2619. border-left: 1px solid;
  2620. border-color: rgba(255, 255, 255, 0.5);
  2621. }
  2622. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2623. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  2624. border-left: 0;
  2625. }
  2626. @media only screen and (max-width: 40em) {
  2627. /* line 164, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2628. .button-group.stack-for-small > li {
  2629. margin: 0 -2px;
  2630. display: inline-block;
  2631. display: block;
  2632. margin: 0;
  2633. }
  2634. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2635. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  2636. border-left: 1px solid;
  2637. border-color: rgba(255, 255, 255, 0.5);
  2638. }
  2639. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2640. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  2641. border-left: 0;
  2642. }
  2643. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2644. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  2645. border-top: 1px solid;
  2646. border-color: rgba(255, 255, 255, 0.5);
  2647. border-left-width: 0;
  2648. margin: 0;
  2649. display: block;
  2650. }
  2651. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2652. .button-group.stack-for-small > li > button {
  2653. width: 100%;
  2654. }
  2655. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2656. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  2657. border-top: 0;
  2658. }
  2659. }
  2660. /* line 172, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2661. .button-group.radius > * {
  2662. margin: 0 -2px;
  2663. display: inline-block;
  2664. }
  2665. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2666. .button-group.radius > * > button, .button-group.radius > * .button {
  2667. border-left: 1px solid;
  2668. border-color: rgba(255, 255, 255, 0.5);
  2669. }
  2670. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2671. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  2672. border-left: 0;
  2673. }
  2674. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2675. .button-group.radius > *, .button-group.radius > * > a, .button-group.radius > * > button, .button-group.radius > * > .button {
  2676. border-radius: 0;
  2677. }
  2678. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2679. .button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button {
  2680. -webkit-border-bottom-left-radius: 3px;
  2681. -webkit-border-top-left-radius: 3px;
  2682. border-bottom-left-radius: 3px;
  2683. border-top-left-radius: 3px;
  2684. }
  2685. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2686. .button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button {
  2687. -webkit-border-bottom-right-radius: 3px;
  2688. -webkit-border-top-right-radius: 3px;
  2689. border-bottom-right-radius: 3px;
  2690. border-top-right-radius: 3px;
  2691. }
  2692. /* line 173, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2693. .button-group.radius.stack > * {
  2694. margin: 0 -2px;
  2695. display: inline-block;
  2696. display: block;
  2697. margin: 0;
  2698. }
  2699. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2700. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  2701. border-left: 1px solid;
  2702. border-color: rgba(255, 255, 255, 0.5);
  2703. }
  2704. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2705. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  2706. border-left: 0;
  2707. }
  2708. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2709. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  2710. border-top: 1px solid;
  2711. border-color: rgba(255, 255, 255, 0.5);
  2712. border-left-width: 0;
  2713. margin: 0;
  2714. display: block;
  2715. }
  2716. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2717. .button-group.radius.stack > * > button {
  2718. width: 100%;
  2719. }
  2720. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2721. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  2722. border-top: 0;
  2723. }
  2724. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2725. .button-group.radius.stack > *, .button-group.radius.stack > * > a, .button-group.radius.stack > * > button, .button-group.radius.stack > * > .button {
  2726. border-radius: 0;
  2727. }
  2728. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2729. .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 {
  2730. -webkit-top-left-radius: 3px;
  2731. -webkit-top-right-radius: 3px;
  2732. border-top-left-radius: 3px;
  2733. border-top-right-radius: 3px;
  2734. }
  2735. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2736. .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 {
  2737. -webkit-bottom-left-radius: 3px;
  2738. -webkit-bottom-right-radius: 3px;
  2739. border-bottom-left-radius: 3px;
  2740. border-bottom-right-radius: 3px;
  2741. }
  2742. @media only screen and (min-width: 40.063em) {
  2743. /* line 174, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2744. .button-group.radius.stack-for-small > * {
  2745. margin: 0 -2px;
  2746. display: inline-block;
  2747. }
  2748. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2749. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  2750. border-left: 1px solid;
  2751. border-color: rgba(255, 255, 255, 0.5);
  2752. }
  2753. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2754. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  2755. border-left: 0;
  2756. }
  2757. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2758. .button-group.radius.stack-for-small > *, .button-group.radius.stack-for-small > * > a, .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * > .button {
  2759. border-radius: 0;
  2760. }
  2761. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2762. .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 {
  2763. -webkit-border-bottom-left-radius: 3px;
  2764. -webkit-border-top-left-radius: 3px;
  2765. border-bottom-left-radius: 3px;
  2766. border-top-left-radius: 3px;
  2767. }
  2768. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2769. .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 {
  2770. -webkit-border-bottom-right-radius: 3px;
  2771. -webkit-border-top-right-radius: 3px;
  2772. border-bottom-right-radius: 3px;
  2773. border-top-right-radius: 3px;
  2774. }
  2775. }
  2776. @media only screen and (max-width: 40em) {
  2777. /* line 174, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2778. .button-group.radius.stack-for-small > * {
  2779. margin: 0 -2px;
  2780. display: inline-block;
  2781. display: block;
  2782. margin: 0;
  2783. }
  2784. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2785. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  2786. border-left: 1px solid;
  2787. border-color: rgba(255, 255, 255, 0.5);
  2788. }
  2789. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2790. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  2791. border-left: 0;
  2792. }
  2793. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2794. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  2795. border-top: 1px solid;
  2796. border-color: rgba(255, 255, 255, 0.5);
  2797. border-left-width: 0;
  2798. margin: 0;
  2799. display: block;
  2800. }
  2801. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2802. .button-group.radius.stack-for-small > * > button {
  2803. width: 100%;
  2804. }
  2805. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2806. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  2807. border-top: 0;
  2808. }
  2809. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2810. .button-group.radius.stack-for-small > *, .button-group.radius.stack-for-small > * > a, .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * > .button {
  2811. border-radius: 0;
  2812. }
  2813. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2814. .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 {
  2815. -webkit-top-left-radius: 3px;
  2816. -webkit-top-right-radius: 3px;
  2817. border-top-left-radius: 3px;
  2818. border-top-right-radius: 3px;
  2819. }
  2820. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2821. .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 {
  2822. -webkit-bottom-left-radius: 3px;
  2823. -webkit-bottom-right-radius: 3px;
  2824. border-bottom-left-radius: 3px;
  2825. border-bottom-right-radius: 3px;
  2826. }
  2827. }
  2828. /* line 183, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2829. .button-group.round > * {
  2830. margin: 0 -2px;
  2831. display: inline-block;
  2832. }
  2833. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2834. .button-group.round > * > button, .button-group.round > * .button {
  2835. border-left: 1px solid;
  2836. border-color: rgba(255, 255, 255, 0.5);
  2837. }
  2838. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2839. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  2840. border-left: 0;
  2841. }
  2842. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2843. .button-group.round > *, .button-group.round > * > a, .button-group.round > * > button, .button-group.round > * > .button {
  2844. border-radius: 0;
  2845. }
  2846. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2847. .button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button {
  2848. -webkit-border-bottom-left-radius: 1000px;
  2849. -webkit-border-top-left-radius: 1000px;
  2850. border-bottom-left-radius: 1000px;
  2851. border-top-left-radius: 1000px;
  2852. }
  2853. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2854. .button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button {
  2855. -webkit-border-bottom-right-radius: 1000px;
  2856. -webkit-border-top-right-radius: 1000px;
  2857. border-bottom-right-radius: 1000px;
  2858. border-top-right-radius: 1000px;
  2859. }
  2860. /* line 184, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2861. .button-group.round.stack > * {
  2862. margin: 0 -2px;
  2863. display: inline-block;
  2864. display: block;
  2865. margin: 0;
  2866. }
  2867. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2868. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  2869. border-left: 1px solid;
  2870. border-color: rgba(255, 255, 255, 0.5);
  2871. }
  2872. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2873. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  2874. border-left: 0;
  2875. }
  2876. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2877. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  2878. border-top: 1px solid;
  2879. border-color: rgba(255, 255, 255, 0.5);
  2880. border-left-width: 0;
  2881. margin: 0;
  2882. display: block;
  2883. }
  2884. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2885. .button-group.round.stack > * > button {
  2886. width: 100%;
  2887. }
  2888. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2889. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  2890. border-top: 0;
  2891. }
  2892. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2893. .button-group.round.stack > *, .button-group.round.stack > * > a, .button-group.round.stack > * > button, .button-group.round.stack > * > .button {
  2894. border-radius: 0;
  2895. }
  2896. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2897. .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 {
  2898. -webkit-top-left-radius: 1rem;
  2899. -webkit-top-right-radius: 1rem;
  2900. border-top-left-radius: 1rem;
  2901. border-top-right-radius: 1rem;
  2902. }
  2903. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2904. .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 {
  2905. -webkit-bottom-left-radius: 1rem;
  2906. -webkit-bottom-right-radius: 1rem;
  2907. border-bottom-left-radius: 1rem;
  2908. border-bottom-right-radius: 1rem;
  2909. }
  2910. @media only screen and (min-width: 40.063em) {
  2911. /* line 185, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2912. .button-group.round.stack-for-small > * {
  2913. margin: 0 -2px;
  2914. display: inline-block;
  2915. }
  2916. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2917. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2918. border-left: 1px solid;
  2919. border-color: rgba(255, 255, 255, 0.5);
  2920. }
  2921. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2922. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2923. border-left: 0;
  2924. }
  2925. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2926. .button-group.round.stack-for-small > *, .button-group.round.stack-for-small > * > a, .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * > .button {
  2927. border-radius: 0;
  2928. }
  2929. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2930. .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 {
  2931. -webkit-border-bottom-left-radius: 1000px;
  2932. -webkit-border-top-left-radius: 1000px;
  2933. border-bottom-left-radius: 1000px;
  2934. border-top-left-radius: 1000px;
  2935. }
  2936. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2937. .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 {
  2938. -webkit-border-bottom-right-radius: 1000px;
  2939. -webkit-border-top-right-radius: 1000px;
  2940. border-bottom-right-radius: 1000px;
  2941. border-top-right-radius: 1000px;
  2942. }
  2943. }
  2944. @media only screen and (max-width: 40em) {
  2945. /* line 185, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2946. .button-group.round.stack-for-small > * {
  2947. margin: 0 -2px;
  2948. display: inline-block;
  2949. display: block;
  2950. margin: 0;
  2951. }
  2952. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2953. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2954. border-left: 1px solid;
  2955. border-color: rgba(255, 255, 255, 0.5);
  2956. }
  2957. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2958. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2959. border-left: 0;
  2960. }
  2961. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2962. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2963. border-top: 1px solid;
  2964. border-color: rgba(255, 255, 255, 0.5);
  2965. border-left-width: 0;
  2966. margin: 0;
  2967. display: block;
  2968. }
  2969. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2970. .button-group.round.stack-for-small > * > button {
  2971. width: 100%;
  2972. }
  2973. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2974. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2975. border-top: 0;
  2976. }
  2977. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2978. .button-group.round.stack-for-small > *, .button-group.round.stack-for-small > * > a, .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * > .button {
  2979. border-radius: 0;
  2980. }
  2981. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2982. .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 {
  2983. -webkit-top-left-radius: 1rem;
  2984. -webkit-top-right-radius: 1rem;
  2985. border-top-left-radius: 1rem;
  2986. border-top-right-radius: 1rem;
  2987. }
  2988. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2989. .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 {
  2990. -webkit-bottom-left-radius: 1rem;
  2991. -webkit-bottom-right-radius: 1rem;
  2992. border-bottom-left-radius: 1rem;
  2993. border-bottom-right-radius: 1rem;
  2994. }
  2995. }
  2996. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  2997. .button-bar:before, .button-bar:after {
  2998. content: " ";
  2999. display: table;
  3000. }
  3001. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  3002. .button-bar:after {
  3003. clear: both;
  3004. }
  3005. /* line 197, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  3006. .button-bar .button-group {
  3007. float: left;
  3008. margin-right: 0.625rem;
  3009. }
  3010. /* line 32, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  3011. .button-bar .button-group div {
  3012. overflow: hidden;
  3013. }
  3014. /* Clearing Styles */
  3015. /* line 44, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3016. .clearing-thumbs, [data-clearing] {
  3017. margin-bottom: 0;
  3018. margin-left: 0;
  3019. list-style: none;
  3020. }
  3021. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  3022. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  3023. content: " ";
  3024. display: table;
  3025. }
  3026. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  3027. .clearing-thumbs:after, [data-clearing]:after {
  3028. clear: both;
  3029. }
  3030. /* line 50, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3031. .clearing-thumbs li, [data-clearing] li {
  3032. float: left;
  3033. margin-right: 10px;
  3034. }
  3035. /* line 55, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3036. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  3037. margin-right: 0;
  3038. }
  3039. /* line 60, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3040. .clearing-blackout {
  3041. background: #333333;
  3042. position: fixed;
  3043. width: 100%;
  3044. height: 100%;
  3045. top: 0;
  3046. left: 0;
  3047. z-index: 998;
  3048. }
  3049. /* line 69, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3050. .clearing-blackout .clearing-close {
  3051. display: block;
  3052. }
  3053. /* line 72, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3054. .clearing-container {
  3055. position: relative;
  3056. z-index: 998;
  3057. height: 100%;
  3058. overflow: hidden;
  3059. margin: 0;
  3060. }
  3061. /* line 80, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3062. .clearing-touch-label {
  3063. position: absolute;
  3064. top: 50%;
  3065. left: 50%;
  3066. color: #AAAAAA;
  3067. font-size: 0.6em;
  3068. }
  3069. /* line 88, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3070. .visible-img {
  3071. height: 95%;
  3072. position: relative;
  3073. }
  3074. /* line 92, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3075. .visible-img img {
  3076. position: absolute;
  3077. left: 50%;
  3078. top: 50%;
  3079. transform: translateY(-50%) translateX(-50%);
  3080. -webkit-transform: translateY(-50%) translateX(-50%);
  3081. -ms-transform: translateY(-50%) translateX(-50%);
  3082. max-height: 100%;
  3083. max-width: 100%;
  3084. }
  3085. /* line 111, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3086. .clearing-caption {
  3087. color: #CCCCCC;
  3088. font-size: 0.875em;
  3089. line-height: 1.3;
  3090. margin-bottom: 0;
  3091. text-align: center;
  3092. bottom: 0;
  3093. background: #333333;
  3094. width: 100%;
  3095. padding: 10px 30px 20px;
  3096. position: absolute;
  3097. left: 0;
  3098. }
  3099. /* line 125, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3100. .clearing-close {
  3101. z-index: 999;
  3102. padding-left: 20px;
  3103. padding-top: 10px;
  3104. font-size: 30px;
  3105. line-height: 1;
  3106. color: #CCCCCC;
  3107. display: none;
  3108. }
  3109. /* line 134, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3110. .clearing-close:hover, .clearing-close:focus {
  3111. color: #CCCCCC;
  3112. }
  3113. /* line 138, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3114. .clearing-assembled .clearing-container {
  3115. height: 100%;
  3116. }
  3117. /* line 139, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3118. .clearing-assembled .clearing-container .carousel > ul {
  3119. display: none;
  3120. }
  3121. /* line 143, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3122. .clearing-feature li {
  3123. display: none;
  3124. }
  3125. /* line 145, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3126. .clearing-feature li.clearing-featured-img {
  3127. display: block;
  3128. }
  3129. @media only screen and (min-width: 40.063em) {
  3130. /* line 152, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3131. .clearing-main-prev,
  3132. .clearing-main-next {
  3133. position: absolute;
  3134. height: 100%;
  3135. width: 40px;
  3136. top: 0;
  3137. }
  3138. /* line 158, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3139. .clearing-main-prev > span,
  3140. .clearing-main-next > span {
  3141. position: absolute;
  3142. top: 50%;
  3143. display: block;
  3144. width: 0;
  3145. height: 0;
  3146. border: solid 12px;
  3147. }
  3148. /* line 165, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3149. .clearing-main-prev > span:hover,
  3150. .clearing-main-next > span:hover {
  3151. opacity: 0.8;
  3152. }
  3153. /* line 168, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3154. .clearing-main-prev {
  3155. left: 0;
  3156. }
  3157. /* line 170, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3158. .clearing-main-prev > span {
  3159. left: 5px;
  3160. border-color: transparent;
  3161. border-right-color: #CCCCCC;
  3162. }
  3163. /* line 176, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3164. .clearing-main-next {
  3165. right: 0;
  3166. }
  3167. /* line 178, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3168. .clearing-main-next > span {
  3169. border-color: transparent;
  3170. border-left-color: #CCCCCC;
  3171. }
  3172. /* line 184, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3173. .clearing-main-prev.disabled,
  3174. .clearing-main-next.disabled {
  3175. opacity: 0.3;
  3176. }
  3177. /* line 189, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3178. .clearing-assembled .clearing-container .carousel {
  3179. background: rgba(51, 51, 51, 0.8);
  3180. height: 120px;
  3181. margin-top: 10px;
  3182. text-align: center;
  3183. }
  3184. /* line 195, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3185. .clearing-assembled .clearing-container .carousel > ul {
  3186. display: inline-block;
  3187. z-index: 999;
  3188. height: 100%;
  3189. position: relative;
  3190. float: none;
  3191. }
  3192. /* line 202, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3193. .clearing-assembled .clearing-container .carousel > ul li {
  3194. display: block;
  3195. width: 120px;
  3196. min-height: inherit;
  3197. float: left;
  3198. overflow: hidden;
  3199. margin-right: 0;
  3200. padding: 0;
  3201. position: relative;
  3202. cursor: pointer;
  3203. opacity: 0.4;
  3204. clear: none;
  3205. }
  3206. /* line 216, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3207. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  3208. height: 100%;
  3209. max-width: none;
  3210. }
  3211. /* line 222, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3212. .clearing-assembled .clearing-container .carousel > ul li a.th {
  3213. border: none;
  3214. box-shadow: none;
  3215. display: block;
  3216. }
  3217. /* line 228, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3218. .clearing-assembled .clearing-container .carousel > ul li img {
  3219. cursor: pointer !important;
  3220. width: 100% !important;
  3221. }
  3222. /* line 233, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3223. .clearing-assembled .clearing-container .carousel > ul li.visible {
  3224. opacity: 1;
  3225. }
  3226. /* line 234, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3227. .clearing-assembled .clearing-container .carousel > ul li:hover {
  3228. opacity: 0.8;
  3229. }
  3230. /* line 239, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3231. .clearing-assembled .clearing-container .visible-img {
  3232. background: #333333;
  3233. overflow: hidden;
  3234. height: 85%;
  3235. }
  3236. /* line 246, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  3237. .clearing-close {
  3238. position: absolute;
  3239. top: 10px;
  3240. right: 20px;
  3241. padding-left: 0;
  3242. padding-top: 0;
  3243. }
  3244. }
  3245. /* Foundation Dropdowns */
  3246. /* line 225, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3247. .f-dropdown {
  3248. position: absolute;
  3249. left: -9999px;
  3250. list-style: none;
  3251. margin-left: 0;
  3252. outline: none;
  3253. width: 100%;
  3254. max-height: none;
  3255. height: auto;
  3256. background: #FFFFFF;
  3257. border: solid 1px #cccccc;
  3258. font-size: 0.875rem;
  3259. z-index: 89;
  3260. margin-top: 2px;
  3261. max-width: 200px;
  3262. }
  3263. /* line 73, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3264. .f-dropdown > *:first-child {
  3265. margin-top: 0;
  3266. }
  3267. /* line 74, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3268. .f-dropdown > *:last-child {
  3269. margin-bottom: 0;
  3270. }
  3271. /* line 99, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3272. .f-dropdown:before {
  3273. content: "";
  3274. display: block;
  3275. width: 0;
  3276. height: 0;
  3277. border: inset 6px;
  3278. border-color: transparent transparent #FFFFFF transparent;
  3279. border-bottom-style: solid;
  3280. position: absolute;
  3281. top: -12px;
  3282. left: 10px;
  3283. z-index: 89;
  3284. }
  3285. /* line 106, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3286. .f-dropdown:after {
  3287. content: "";
  3288. display: block;
  3289. width: 0;
  3290. height: 0;
  3291. border: inset 7px;
  3292. border-color: transparent transparent #cccccc transparent;
  3293. border-bottom-style: solid;
  3294. position: absolute;
  3295. top: -14px;
  3296. left: 9px;
  3297. z-index: 88;
  3298. }
  3299. /* line 114, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3300. .f-dropdown.right:before {
  3301. left: auto;
  3302. right: 10px;
  3303. }
  3304. /* line 118, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3305. .f-dropdown.right:after {
  3306. left: auto;
  3307. right: 9px;
  3308. }
  3309. /* line 228, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3310. .f-dropdown.drop-right {
  3311. position: absolute;
  3312. left: -9999px;
  3313. list-style: none;
  3314. margin-left: 0;
  3315. outline: none;
  3316. width: 100%;
  3317. max-height: none;
  3318. height: auto;
  3319. background: #FFFFFF;
  3320. border: solid 1px #cccccc;
  3321. font-size: 0.875rem;
  3322. z-index: 89;
  3323. margin-top: 0;
  3324. margin-left: 2px;
  3325. max-width: 200px;
  3326. }
  3327. /* line 73, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3328. .f-dropdown.drop-right > *:first-child {
  3329. margin-top: 0;
  3330. }
  3331. /* line 74, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3332. .f-dropdown.drop-right > *:last-child {
  3333. margin-bottom: 0;
  3334. }
  3335. /* line 128, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3336. .f-dropdown.drop-right:before {
  3337. content: "";
  3338. display: block;
  3339. width: 0;
  3340. height: 0;
  3341. border: inset 6px;
  3342. border-color: transparent #FFFFFF transparent transparent;
  3343. border-right-style: solid;
  3344. position: absolute;
  3345. top: 10px;
  3346. left: -12px;
  3347. z-index: 89;
  3348. }
  3349. /* line 135, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3350. .f-dropdown.drop-right:after {
  3351. content: "";
  3352. display: block;
  3353. width: 0;
  3354. height: 0;
  3355. border: inset 7px;
  3356. border-color: transparent #cccccc transparent transparent;
  3357. border-right-style: solid;
  3358. position: absolute;
  3359. top: 9px;
  3360. left: -14px;
  3361. z-index: 88;
  3362. }
  3363. /* line 232, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3364. .f-dropdown.drop-left {
  3365. position: absolute;
  3366. left: -9999px;
  3367. list-style: none;
  3368. margin-left: 0;
  3369. outline: none;
  3370. width: 100%;
  3371. max-height: none;
  3372. height: auto;
  3373. background: #FFFFFF;
  3374. border: solid 1px #cccccc;
  3375. font-size: 0.875rem;
  3376. z-index: 89;
  3377. margin-top: 0;
  3378. margin-left: -2px;
  3379. max-width: 200px;
  3380. }
  3381. /* line 73, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3382. .f-dropdown.drop-left > *:first-child {
  3383. margin-top: 0;
  3384. }
  3385. /* line 74, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3386. .f-dropdown.drop-left > *:last-child {
  3387. margin-bottom: 0;
  3388. }
  3389. /* line 149, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3390. .f-dropdown.drop-left:before {
  3391. content: "";
  3392. display: block;
  3393. width: 0;
  3394. height: 0;
  3395. border: inset 6px;
  3396. border-color: transparent transparent transparent #FFFFFF;
  3397. border-left-style: solid;
  3398. position: absolute;
  3399. top: 10px;
  3400. right: -12px;
  3401. left: auto;
  3402. z-index: 89;
  3403. }
  3404. /* line 157, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3405. .f-dropdown.drop-left:after {
  3406. content: "";
  3407. display: block;
  3408. width: 0;
  3409. height: 0;
  3410. border: inset 7px;
  3411. border-color: transparent transparent transparent #cccccc;
  3412. border-left-style: solid;
  3413. position: absolute;
  3414. top: 9px;
  3415. right: -14px;
  3416. left: auto;
  3417. z-index: 88;
  3418. }
  3419. /* line 236, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3420. .f-dropdown.drop-top {
  3421. position: absolute;
  3422. left: -9999px;
  3423. list-style: none;
  3424. margin-left: 0;
  3425. outline: none;
  3426. width: 100%;
  3427. max-height: none;
  3428. height: auto;
  3429. background: #FFFFFF;
  3430. border: solid 1px #cccccc;
  3431. font-size: 0.875rem;
  3432. z-index: 89;
  3433. margin-top: -2px;
  3434. margin-left: 0;
  3435. max-width: 200px;
  3436. }
  3437. /* line 73, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3438. .f-dropdown.drop-top > *:first-child {
  3439. margin-top: 0;
  3440. }
  3441. /* line 74, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3442. .f-dropdown.drop-top > *:last-child {
  3443. margin-bottom: 0;
  3444. }
  3445. /* line 172, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3446. .f-dropdown.drop-top:before {
  3447. content: "";
  3448. display: block;
  3449. width: 0;
  3450. height: 0;
  3451. border: inset 6px;
  3452. border-color: #FFFFFF transparent transparent transparent;
  3453. border-top-style: solid;
  3454. position: absolute;
  3455. top: auto;
  3456. bottom: -12px;
  3457. left: 10px;
  3458. right: auto;
  3459. z-index: 89;
  3460. }
  3461. /* line 181, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3462. .f-dropdown.drop-top:after {
  3463. content: "";
  3464. display: block;
  3465. width: 0;
  3466. height: 0;
  3467. border: inset 7px;
  3468. border-color: #cccccc transparent transparent transparent;
  3469. border-top-style: solid;
  3470. position: absolute;
  3471. top: auto;
  3472. bottom: -14px;
  3473. left: 9px;
  3474. right: auto;
  3475. z-index: 88;
  3476. }
  3477. /* line 241, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3478. .f-dropdown li {
  3479. font-size: 0.875rem;
  3480. cursor: pointer;
  3481. line-height: 1.125rem;
  3482. margin: 0;
  3483. }
  3484. /* line 209, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3485. .f-dropdown li:hover, .f-dropdown li:focus {
  3486. background: #EEEEEE;
  3487. }
  3488. /* line 212, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3489. .f-dropdown li.radius {
  3490. border-radius: 3px;
  3491. }
  3492. /* line 214, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3493. .f-dropdown li a {
  3494. display: block;
  3495. padding: 0.5rem;
  3496. color: #555555;
  3497. }
  3498. /* line 244, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3499. .f-dropdown.content {
  3500. position: absolute;
  3501. left: -9999px;
  3502. list-style: none;
  3503. margin-left: 0;
  3504. outline: none;
  3505. padding: 1.25rem;
  3506. width: 100%;
  3507. height: auto;
  3508. max-height: none;
  3509. background: #FFFFFF;
  3510. border: solid 1px #cccccc;
  3511. font-size: 0.875rem;
  3512. z-index: 89;
  3513. max-width: 200px;
  3514. }
  3515. /* line 73, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3516. .f-dropdown.content > *:first-child {
  3517. margin-top: 0;
  3518. }
  3519. /* line 74, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3520. .f-dropdown.content > *:last-child {
  3521. margin-bottom: 0;
  3522. }
  3523. /* line 247, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3524. .f-dropdown.tiny {
  3525. max-width: 200px;
  3526. }
  3527. /* line 248, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3528. .f-dropdown.small {
  3529. max-width: 300px;
  3530. }
  3531. /* line 249, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3532. .f-dropdown.medium {
  3533. max-width: 500px;
  3534. }
  3535. /* line 250, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3536. .f-dropdown.large {
  3537. max-width: 800px;
  3538. }
  3539. /* line 251, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3540. .f-dropdown.mega {
  3541. width: 100% !important;
  3542. max-width: 100% !important;
  3543. }
  3544. /* line 255, ../bower_components/foundation/scss/foundation/components/_dropdown.scss */
  3545. .f-dropdown.mega.open {
  3546. left: 0 !important;
  3547. }
  3548. /* line 124, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3549. .dropdown.button, button.dropdown {
  3550. position: relative;
  3551. outline: none;
  3552. padding-right: 3.5625rem;
  3553. }
  3554. /* line 64, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3555. .dropdown.button::after, button.dropdown::after {
  3556. position: absolute;
  3557. content: "";
  3558. width: 0;
  3559. height: 0;
  3560. display: block;
  3561. border-style: solid;
  3562. border-color: #FFFFFF transparent transparent transparent;
  3563. top: 50%;
  3564. }
  3565. /* line 99, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3566. .dropdown.button::after, button.dropdown::after {
  3567. border-width: 0.375rem;
  3568. right: 1.40625rem;
  3569. margin-top: -0.15625rem;
  3570. }
  3571. /* line 118, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3572. .dropdown.button::after, button.dropdown::after {
  3573. border-color: #FFFFFF transparent transparent transparent;
  3574. }
  3575. /* line 125, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3576. .dropdown.button.tiny, button.dropdown.tiny {
  3577. padding-right: 2.625rem;
  3578. }
  3579. /* line 79, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3580. .dropdown.button.tiny:after, button.dropdown.tiny:after {
  3581. border-width: 0.375rem;
  3582. right: 1.125rem;
  3583. margin-top: -0.125rem;
  3584. }
  3585. /* line 118, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3586. .dropdown.button.tiny::after, button.dropdown.tiny::after {
  3587. border-color: #FFFFFF transparent transparent transparent;
  3588. }
  3589. /* line 126, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3590. .dropdown.button.small, button.dropdown.small {
  3591. padding-right: 3.0625rem;
  3592. }
  3593. /* line 89, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3594. .dropdown.button.small::after, button.dropdown.small::after {
  3595. border-width: 0.4375rem;
  3596. right: 1.3125rem;
  3597. margin-top: -0.15625rem;
  3598. }
  3599. /* line 118, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3600. .dropdown.button.small::after, button.dropdown.small::after {
  3601. border-color: #FFFFFF transparent transparent transparent;
  3602. }
  3603. /* line 127, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3604. .dropdown.button.large, button.dropdown.large {
  3605. padding-right: 3.625rem;
  3606. }
  3607. /* line 109, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3608. .dropdown.button.large::after, button.dropdown.large::after {
  3609. border-width: 0.3125rem;
  3610. right: 1.71875rem;
  3611. margin-top: -0.15625rem;
  3612. }
  3613. /* line 118, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3614. .dropdown.button.large::after, button.dropdown.large::after {
  3615. border-color: #FFFFFF transparent transparent transparent;
  3616. }
  3617. /* line 128, ../bower_components/foundation/scss/foundation/components/_dropdown-buttons.scss */
  3618. .dropdown.button.secondary:after, button.dropdown.secondary:after {
  3619. border-color: #333333 transparent transparent transparent;
  3620. }
  3621. /* line 49, ../bower_components/foundation/scss/foundation/components/_flex-video.scss */
  3622. .flex-video {
  3623. position: relative;
  3624. padding-top: 1.5625rem;
  3625. padding-bottom: 67.5%;
  3626. height: 0;
  3627. margin-bottom: 1rem;
  3628. overflow: hidden;
  3629. }
  3630. /* line 32, ../bower_components/foundation/scss/foundation/components/_flex-video.scss */
  3631. .flex-video.widescreen {
  3632. padding-bottom: 56.34%;
  3633. }
  3634. /* line 33, ../bower_components/foundation/scss/foundation/components/_flex-video.scss */
  3635. .flex-video.vimeo {
  3636. padding-top: 0;
  3637. }
  3638. /* line 35, ../bower_components/foundation/scss/foundation/components/_flex-video.scss */
  3639. .flex-video iframe,
  3640. .flex-video object,
  3641. .flex-video embed,
  3642. .flex-video video {
  3643. position: absolute;
  3644. top: 0;
  3645. left: 0;
  3646. width: 100%;
  3647. height: 100%;
  3648. }
  3649. /* Standard Forms */
  3650. /* line 379, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3651. form {
  3652. margin: 0 0 1rem;
  3653. }
  3654. /* Using forms within rows, we need to set some defaults */
  3655. /* line 87, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3656. form .row .row {
  3657. margin: 0 -0.5rem;
  3658. }
  3659. /* line 89, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3660. form .row .row .column,
  3661. form .row .row .columns {
  3662. padding: 0 0.5rem;
  3663. }
  3664. /* line 93, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3665. form .row .row.collapse {
  3666. margin: 0;
  3667. }
  3668. /* line 95, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3669. form .row .row.collapse .column,
  3670. form .row .row.collapse .columns {
  3671. padding: 0;
  3672. }
  3673. /* line 97, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3674. form .row .row.collapse input {
  3675. -webkit-border-bottom-right-radius: 0;
  3676. -webkit-border-top-right-radius: 0;
  3677. border-bottom-right-radius: 0;
  3678. border-top-right-radius: 0;
  3679. }
  3680. /* line 103, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3681. form .row input.column,
  3682. form .row input.columns,
  3683. form .row textarea.column,
  3684. form .row textarea.columns {
  3685. padding-left: 0.5rem;
  3686. }
  3687. /* Label Styles */
  3688. /* line 385, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3689. label {
  3690. font-size: 0.875rem;
  3691. color: #4d4d4d;
  3692. cursor: pointer;
  3693. display: block;
  3694. font-weight: normal;
  3695. line-height: 1.5;
  3696. margin-bottom: 0;
  3697. /* Styles for required inputs */
  3698. }
  3699. /* line 386, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3700. label.right {
  3701. float: none !important;
  3702. text-align: right;
  3703. }
  3704. /* line 387, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3705. label.inline {
  3706. margin: 0 0 1rem 0;
  3707. padding: 0.5625rem 0;
  3708. }
  3709. /* line 389, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3710. label small {
  3711. text-transform: capitalize;
  3712. color: #676767;
  3713. }
  3714. /* Attach elements to the beginning or end of an input */
  3715. /* line 396, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3716. .prefix,
  3717. .postfix {
  3718. display: block;
  3719. position: relative;
  3720. z-index: 2;
  3721. text-align: center;
  3722. width: 100%;
  3723. padding-top: 0;
  3724. padding-bottom: 0;
  3725. border-style: solid;
  3726. border-width: 1px;
  3727. overflow: visible;
  3728. font-size: 0.875rem;
  3729. height: 2.3125rem;
  3730. line-height: 2.3125rem;
  3731. }
  3732. /* Adjust padding, alignment and radius if pre/post element is a button */
  3733. /* line 400, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3734. .postfix.button {
  3735. padding-left: 0;
  3736. padding-right: 0;
  3737. padding-top: 0;
  3738. padding-bottom: 0;
  3739. text-align: center;
  3740. border: none;
  3741. }
  3742. /* line 401, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3743. .prefix.button {
  3744. padding-left: 0;
  3745. padding-right: 0;
  3746. padding-top: 0;
  3747. padding-bottom: 0;
  3748. text-align: center;
  3749. border: none;
  3750. }
  3751. /* line 403, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3752. .prefix.button.radius {
  3753. border-radius: 0;
  3754. -webkit-border-bottom-left-radius: 3px;
  3755. -webkit-border-top-left-radius: 3px;
  3756. border-bottom-left-radius: 3px;
  3757. border-top-left-radius: 3px;
  3758. }
  3759. /* line 404, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3760. .postfix.button.radius {
  3761. border-radius: 0;
  3762. -webkit-border-bottom-right-radius: 3px;
  3763. -webkit-border-top-right-radius: 3px;
  3764. border-bottom-right-radius: 3px;
  3765. border-top-right-radius: 3px;
  3766. }
  3767. /* line 405, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3768. .prefix.button.round {
  3769. border-radius: 0;
  3770. -webkit-border-bottom-left-radius: 1000px;
  3771. -webkit-border-top-left-radius: 1000px;
  3772. border-bottom-left-radius: 1000px;
  3773. border-top-left-radius: 1000px;
  3774. }
  3775. /* line 406, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3776. .postfix.button.round {
  3777. border-radius: 0;
  3778. -webkit-border-bottom-right-radius: 1000px;
  3779. -webkit-border-top-right-radius: 1000px;
  3780. border-bottom-right-radius: 1000px;
  3781. border-top-right-radius: 1000px;
  3782. }
  3783. /* Separate prefix and postfix styles when on span or label so buttons keep their own */
  3784. /* line 409, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3785. span.prefix, label.prefix {
  3786. background: #f2f2f2;
  3787. border-right: none;
  3788. color: #333333;
  3789. border-color: #cccccc;
  3790. }
  3791. /* line 410, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3792. span.postfix, label.postfix {
  3793. background: #f2f2f2;
  3794. border-left: none;
  3795. color: #333333;
  3796. border-color: #cccccc;
  3797. }
  3798. /* We use this to get basic styling on all basic form elements */
  3799. /* line 413, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3800. 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 {
  3801. -webkit-appearance: none;
  3802. border-radius: 0;
  3803. background-color: #FFFFFF;
  3804. font-family: inherit;
  3805. border-style: solid;
  3806. border-width: 1px;
  3807. border-color: #cccccc;
  3808. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  3809. color: rgba(0, 0, 0, 0.75);
  3810. display: block;
  3811. font-size: 0.875rem;
  3812. margin: 0 0 1rem 0;
  3813. padding: 0.5rem;
  3814. height: 2.3125rem;
  3815. width: 100%;
  3816. box-sizing: border-box;
  3817. -webkit-transition: all 0.15s linear;
  3818. transition: all 0.15s linear;
  3819. }
  3820. /* line 133, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3821. 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 {
  3822. background: #fafafa;
  3823. border-color: #999999;
  3824. outline: none;
  3825. }
  3826. /* line 139, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3827. 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 {
  3828. background-color: #DDDDDD;
  3829. cursor: default;
  3830. }
  3831. /* line 145, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3832. 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 {
  3833. background-color: #DDDDDD;
  3834. cursor: default;
  3835. }
  3836. /* line 420, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3837. 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 {
  3838. border-radius: 3px;
  3839. }
  3840. /* line 428, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3841. form .row .prefix-radius.row.collapse input,
  3842. form .row .prefix-radius.row.collapse textarea,
  3843. form .row .prefix-radius.row.collapse select,
  3844. form .row .prefix-radius.row.collapse button {
  3845. border-radius: 0;
  3846. -webkit-border-bottom-right-radius: 3px;
  3847. -webkit-border-top-right-radius: 3px;
  3848. border-bottom-right-radius: 3px;
  3849. border-top-right-radius: 3px;
  3850. }
  3851. /* line 432, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3852. form .row .prefix-radius.row.collapse .prefix {
  3853. border-radius: 0;
  3854. -webkit-border-bottom-left-radius: 3px;
  3855. -webkit-border-top-left-radius: 3px;
  3856. border-bottom-left-radius: 3px;
  3857. border-top-left-radius: 3px;
  3858. }
  3859. /* line 435, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3860. form .row .postfix-radius.row.collapse input,
  3861. form .row .postfix-radius.row.collapse textarea,
  3862. form .row .postfix-radius.row.collapse select,
  3863. form .row .postfix-radius.row.collapse button {
  3864. border-radius: 0;
  3865. -webkit-border-bottom-left-radius: 3px;
  3866. -webkit-border-top-left-radius: 3px;
  3867. border-bottom-left-radius: 3px;
  3868. border-top-left-radius: 3px;
  3869. }
  3870. /* line 439, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3871. form .row .postfix-radius.row.collapse .postfix {
  3872. border-radius: 0;
  3873. -webkit-border-bottom-right-radius: 3px;
  3874. -webkit-border-top-right-radius: 3px;
  3875. border-bottom-right-radius: 3px;
  3876. border-top-right-radius: 3px;
  3877. }
  3878. /* line 442, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3879. form .row .prefix-round.row.collapse input,
  3880. form .row .prefix-round.row.collapse textarea,
  3881. form .row .prefix-round.row.collapse select,
  3882. form .row .prefix-round.row.collapse button {
  3883. border-radius: 0;
  3884. -webkit-border-bottom-right-radius: 1000px;
  3885. -webkit-border-top-right-radius: 1000px;
  3886. border-bottom-right-radius: 1000px;
  3887. border-top-right-radius: 1000px;
  3888. }
  3889. /* line 446, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3890. form .row .prefix-round.row.collapse .prefix {
  3891. border-radius: 0;
  3892. -webkit-border-bottom-left-radius: 1000px;
  3893. -webkit-border-top-left-radius: 1000px;
  3894. border-bottom-left-radius: 1000px;
  3895. border-top-left-radius: 1000px;
  3896. }
  3897. /* line 449, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3898. form .row .postfix-round.row.collapse input,
  3899. form .row .postfix-round.row.collapse textarea,
  3900. form .row .postfix-round.row.collapse select,
  3901. form .row .postfix-round.row.collapse button {
  3902. border-radius: 0;
  3903. -webkit-border-bottom-left-radius: 1000px;
  3904. -webkit-border-top-left-radius: 1000px;
  3905. border-bottom-left-radius: 1000px;
  3906. border-top-left-radius: 1000px;
  3907. }
  3908. /* line 453, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3909. form .row .postfix-round.row.collapse .postfix {
  3910. border-radius: 0;
  3911. -webkit-border-bottom-right-radius: 1000px;
  3912. -webkit-border-top-right-radius: 1000px;
  3913. border-bottom-right-radius: 1000px;
  3914. border-top-right-radius: 1000px;
  3915. }
  3916. /* line 458, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3917. input[type="submit"] {
  3918. -webkit-appearance: none;
  3919. border-radius: 0;
  3920. }
  3921. /* Respect enforced amount of rows for textarea */
  3922. /* line 464, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3923. textarea[rows] {
  3924. height: auto;
  3925. }
  3926. /* Not allow resize out of parent */
  3927. /* line 469, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3928. textarea {
  3929. max-width: 100%;
  3930. }
  3931. /* Add height value for select elements to match text input height */
  3932. /* line 474, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3933. select {
  3934. -webkit-appearance: none !important;
  3935. border-radius: 0;
  3936. background-color: #FAFAFA;
  3937. background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  3938. background-position: 100% center;
  3939. background-repeat: no-repeat;
  3940. border-style: solid;
  3941. border-width: 1px;
  3942. border-color: #cccccc;
  3943. padding: 0.5rem;
  3944. font-size: 0.875rem;
  3945. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  3946. color: rgba(0, 0, 0, 0.75);
  3947. line-height: normal;
  3948. border-radius: 0;
  3949. height: 2.3125rem;
  3950. }
  3951. /* line 329, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3952. select::-ms-expand {
  3953. display: none;
  3954. }
  3955. /* line 352, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3956. select.radius {
  3957. border-radius: 3px;
  3958. }
  3959. /* line 353, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3960. select:hover {
  3961. background-color: #f3f3f3;
  3962. border-color: #999999;
  3963. }
  3964. /* line 358, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3965. select:disabled {
  3966. background-color: #DDDDDD;
  3967. cursor: default;
  3968. }
  3969. /* line 477, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3970. select[multiple] {
  3971. height: auto;
  3972. }
  3973. /* Adjust margin for form elements below */
  3974. /* line 483, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3975. input[type="file"],
  3976. input[type="checkbox"],
  3977. input[type="radio"],
  3978. select {
  3979. margin: 0 0 1rem 0;
  3980. }
  3981. /* line 490, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3982. input[type="checkbox"] + label,
  3983. input[type="radio"] + label {
  3984. display: inline-block;
  3985. margin-left: 0.5rem;
  3986. margin-right: 1rem;
  3987. margin-bottom: 0;
  3988. vertical-align: baseline;
  3989. }
  3990. /* Normalize file input width */
  3991. /* line 500, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3992. input[type="file"] {
  3993. width: 100%;
  3994. }
  3995. /* HTML5 Number spinners settings */
  3996. /* We add basic fieldset styling */
  3997. /* line 514, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  3998. fieldset {
  3999. border: 1px solid #DDDDDD;
  4000. padding: 1.25rem;
  4001. margin: 1.125rem 0;
  4002. }
  4003. /* line 272, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4004. fieldset legend {
  4005. font-weight: bold;
  4006. background: #FFFFFF;
  4007. padding: 0 0.1875rem;
  4008. margin: 0;
  4009. margin-left: -0.1875rem;
  4010. }
  4011. /* Error Handling */
  4012. /* line 521, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4013. [data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
  4014. display: block;
  4015. padding: 0.375rem 0.5625rem 0.5625rem;
  4016. margin-top: -1px;
  4017. margin-bottom: 1rem;
  4018. font-size: 0.75rem;
  4019. font-weight: normal;
  4020. font-style: italic;
  4021. background: #f04124;
  4022. color: #FFFFFF;
  4023. }
  4024. /* line 524, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4025. [data-abide] span.error, [data-abide] small.error {
  4026. display: none;
  4027. }
  4028. /* line 527, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4029. span.error, small.error {
  4030. display: block;
  4031. padding: 0.375rem 0.5625rem 0.5625rem;
  4032. margin-top: -1px;
  4033. margin-bottom: 1rem;
  4034. font-size: 0.75rem;
  4035. font-weight: normal;
  4036. font-style: italic;
  4037. background: #f04124;
  4038. color: #FFFFFF;
  4039. }
  4040. /* line 532, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4041. .error input,
  4042. .error textarea,
  4043. .error select {
  4044. margin-bottom: 0;
  4045. }
  4046. /* line 538, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4047. .error input[type="checkbox"],
  4048. .error input[type="radio"] {
  4049. margin-bottom: 1rem;
  4050. }
  4051. /* line 543, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4052. .error label,
  4053. .error label.error {
  4054. color: #f04124;
  4055. }
  4056. /* line 548, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4057. .error small.error {
  4058. display: block;
  4059. padding: 0.375rem 0.5625rem 0.5625rem;
  4060. margin-top: -1px;
  4061. margin-bottom: 1rem;
  4062. font-size: 0.75rem;
  4063. font-weight: normal;
  4064. font-style: italic;
  4065. background: #f04124;
  4066. color: #FFFFFF;
  4067. }
  4068. /* line 553, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4069. .error > label > small {
  4070. color: #676767;
  4071. background: transparent;
  4072. padding: 0;
  4073. text-transform: capitalize;
  4074. font-style: normal;
  4075. font-size: 60%;
  4076. margin: 0;
  4077. display: inline;
  4078. }
  4079. /* line 565, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4080. .error span.error-message {
  4081. display: block;
  4082. }
  4083. /* line 570, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4084. input.error,
  4085. textarea.error,
  4086. select.error {
  4087. margin-bottom: 0;
  4088. }
  4089. /* line 575, ../bower_components/foundation/scss/foundation/components/_forms.scss */
  4090. label.error {
  4091. color: #f04124;
  4092. }
  4093. /* line 246, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4094. .icon-bar {
  4095. width: 100%;
  4096. font-size: 0;
  4097. display: inline-block;
  4098. background: #333333;
  4099. }
  4100. /* line 46, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4101. .icon-bar > * {
  4102. text-align: center;
  4103. font-size: 1rem;
  4104. width: 25%;
  4105. margin: 0 auto;
  4106. display: block;
  4107. padding: 1.25rem;
  4108. float: left;
  4109. }
  4110. /* line 55, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4111. .icon-bar > * i, .icon-bar > * img {
  4112. display: block;
  4113. margin: 0 auto;
  4114. }
  4115. /* line 59, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4116. .icon-bar > * i + label, .icon-bar > * img + label {
  4117. margin-top: .0625rem;
  4118. }
  4119. /* line 64, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4120. .icon-bar > * i {
  4121. font-size: 1.875rem;
  4122. vertical-align: middle;
  4123. }
  4124. /* line 69, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4125. .icon-bar > * img {
  4126. width: 1.875rem;
  4127. height: 1.875rem;
  4128. }
  4129. /* line 77, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4130. .icon-bar.label-right > * i, .icon-bar.label-right > * img {
  4131. margin: 0 .0625rem 0 0;
  4132. display: inline-block;
  4133. }
  4134. /* line 81, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4135. .icon-bar.label-right > * i + label, .icon-bar.label-right > * img + label {
  4136. margin-top: 0;
  4137. }
  4138. /* line 86, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4139. .icon-bar.label-right > * label {
  4140. display: inline-block;
  4141. }
  4142. /* line 89, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4143. .icon-bar.vertical.label-right > * {
  4144. text-align: left;
  4145. }
  4146. /* line 93, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4147. .icon-bar.vertical, .icon-bar.small-vertical {
  4148. height: 100%;
  4149. width: auto;
  4150. }
  4151. /* line 97, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4152. .icon-bar.vertical .item, .icon-bar.small-vertical .item {
  4153. width: auto;
  4154. margin: auto;
  4155. float: none;
  4156. }
  4157. @media only screen and (min-width: 40.063em) {
  4158. /* line 104, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4159. .icon-bar.medium-vertical {
  4160. height: 100%;
  4161. width: auto;
  4162. }
  4163. /* line 109, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4164. .icon-bar.medium-vertical .item {
  4165. width: auto;
  4166. margin: auto;
  4167. float: none;
  4168. }
  4169. }
  4170. @media only screen and (min-width: 64.063em) {
  4171. /* line 116, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4172. .icon-bar.large-vertical {
  4173. height: 100%;
  4174. width: auto;
  4175. }
  4176. /* line 121, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4177. .icon-bar.large-vertical .item {
  4178. width: auto;
  4179. margin: auto;
  4180. float: none;
  4181. }
  4182. }
  4183. /* line 138, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4184. .icon-bar > * {
  4185. font-size: 1rem;
  4186. padding: 1.25rem;
  4187. }
  4188. /* line 144, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4189. .icon-bar > * i + label, .icon-bar > * img + label {
  4190. margin-top: .0625rem;
  4191. }
  4192. /* line 149, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4193. .icon-bar > * i {
  4194. font-size: 1.875rem;
  4195. }
  4196. /* line 153, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4197. .icon-bar > * img {
  4198. width: 1.875rem;
  4199. height: 1.875rem;
  4200. }
  4201. /* line 177, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4202. .icon-bar > * label {
  4203. color: #FFFFFF;
  4204. }
  4205. /* line 179, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4206. .icon-bar > * i {
  4207. color: #FFFFFF;
  4208. }
  4209. /* line 182, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4210. .icon-bar > a:hover {
  4211. background: #008CBA;
  4212. }
  4213. /* line 186, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4214. .icon-bar > a:hover label {
  4215. color: #FFFFFF;
  4216. }
  4217. /* line 188, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4218. .icon-bar > a:hover i {
  4219. color: #FFFFFF;
  4220. }
  4221. /* line 191, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4222. .icon-bar > a.active {
  4223. background: #008CBA;
  4224. }
  4225. /* line 195, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4226. .icon-bar > a.active label {
  4227. color: #FFFFFF;
  4228. }
  4229. /* line 197, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4230. .icon-bar > a.active i {
  4231. color: #FFFFFF;
  4232. }
  4233. /* line 201, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4234. .icon-bar .item.disabled {
  4235. opacity: 0.7;
  4236. cursor: not-allowed;
  4237. pointer-events: none;
  4238. }
  4239. /* line 205, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4240. .icon-bar .item.disabled > * {
  4241. opacity: 0.7;
  4242. cursor: not-allowed;
  4243. }
  4244. /* line 261, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4245. .icon-bar.two-up .item {
  4246. width: 50%;
  4247. }
  4248. /* line 262, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4249. .icon-bar.two-up.vertical .item, .icon-bar.two-up.small-vertical .item {
  4250. width: auto;
  4251. }
  4252. @media only screen and (min-width: 40.063em) {
  4253. /* line 263, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4254. .icon-bar.two-up.medium-vertical .item {
  4255. width: auto;
  4256. }
  4257. }
  4258. @media only screen and (min-width: 64.063em) {
  4259. /* line 268, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4260. .icon-bar.two-up.large-vertical .item {
  4261. width: auto;
  4262. }
  4263. }
  4264. /* line 275, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4265. .icon-bar.three-up .item {
  4266. width: 33.3333%;
  4267. }
  4268. /* line 276, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4269. .icon-bar.three-up.vertical .item, .icon-bar.three-up.small-vertical .item {
  4270. width: auto;
  4271. }
  4272. @media only screen and (min-width: 40.063em) {
  4273. /* line 277, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4274. .icon-bar.three-up.medium-vertical .item {
  4275. width: auto;
  4276. }
  4277. }
  4278. @media only screen and (min-width: 64.063em) {
  4279. /* line 282, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4280. .icon-bar.three-up.large-vertical .item {
  4281. width: auto;
  4282. }
  4283. }
  4284. /* line 289, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4285. .icon-bar.four-up .item {
  4286. width: 25%;
  4287. }
  4288. /* line 290, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4289. .icon-bar.four-up.vertical .item, .icon-bar.four-up.small-vertical .item {
  4290. width: auto;
  4291. }
  4292. @media only screen and (min-width: 40.063em) {
  4293. /* line 291, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4294. .icon-bar.four-up.medium-vertical .item {
  4295. width: auto;
  4296. }
  4297. }
  4298. @media only screen and (min-width: 64.063em) {
  4299. /* line 296, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4300. .icon-bar.four-up.large-vertical .item {
  4301. width: auto;
  4302. }
  4303. }
  4304. /* line 303, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4305. .icon-bar.five-up .item {
  4306. width: 20%;
  4307. }
  4308. /* line 304, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4309. .icon-bar.five-up.vertical .item, .icon-bar.five-up.small-vertical .item {
  4310. width: auto;
  4311. }
  4312. @media only screen and (min-width: 40.063em) {
  4313. /* line 305, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4314. .icon-bar.five-up.medium-vertical .item {
  4315. width: auto;
  4316. }
  4317. }
  4318. @media only screen and (min-width: 64.063em) {
  4319. /* line 310, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4320. .icon-bar.five-up.large-vertical .item {
  4321. width: auto;
  4322. }
  4323. }
  4324. /* line 317, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4325. .icon-bar.six-up .item {
  4326. width: 16.66667%;
  4327. }
  4328. /* line 318, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4329. .icon-bar.six-up.vertical .item, .icon-bar.six-up.small-vertical .item {
  4330. width: auto;
  4331. }
  4332. @media only screen and (min-width: 40.063em) {
  4333. /* line 319, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4334. .icon-bar.six-up.medium-vertical .item {
  4335. width: auto;
  4336. }
  4337. }
  4338. @media only screen and (min-width: 64.063em) {
  4339. /* line 324, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4340. .icon-bar.six-up.large-vertical .item {
  4341. width: auto;
  4342. }
  4343. }
  4344. /* line 331, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4345. .icon-bar.seven-up .item {
  4346. width: 14.28571%;
  4347. }
  4348. /* line 332, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4349. .icon-bar.seven-up.vertical .item, .icon-bar.seven-up.small-vertical .item {
  4350. width: auto;
  4351. }
  4352. @media only screen and (min-width: 40.063em) {
  4353. /* line 333, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4354. .icon-bar.seven-up.medium-vertical .item {
  4355. width: auto;
  4356. }
  4357. }
  4358. @media only screen and (min-width: 64.063em) {
  4359. /* line 338, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4360. .icon-bar.seven-up.large-vertical .item {
  4361. width: auto;
  4362. }
  4363. }
  4364. /* line 345, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4365. .icon-bar.eight-up .item {
  4366. width: 12.5%;
  4367. }
  4368. /* line 346, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4369. .icon-bar.eight-up.vertical .item, .icon-bar.eight-up.small-vertical .item {
  4370. width: auto;
  4371. }
  4372. @media only screen and (min-width: 40.063em) {
  4373. /* line 347, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4374. .icon-bar.eight-up.medium-vertical .item {
  4375. width: auto;
  4376. }
  4377. }
  4378. @media only screen and (min-width: 64.063em) {
  4379. /* line 352, ../bower_components/foundation/scss/foundation/components/_icon-bar.scss */
  4380. .icon-bar.eight-up.large-vertical .item {
  4381. width: auto;
  4382. }
  4383. }
  4384. /* line 53, ../bower_components/foundation/scss/foundation/components/_inline-lists.scss */
  4385. .inline-list {
  4386. margin: 0 auto 1.0625rem auto;
  4387. margin-left: -1.375rem;
  4388. margin-right: 0;
  4389. padding: 0;
  4390. list-style: none;
  4391. overflow: hidden;
  4392. }
  4393. /* line 42, ../bower_components/foundation/scss/foundation/components/_inline-lists.scss */
  4394. .inline-list > li {
  4395. list-style: none;
  4396. float: left;
  4397. margin-left: 1.375rem;
  4398. display: block;
  4399. }
  4400. /* line 47, ../bower_components/foundation/scss/foundation/components/_inline-lists.scss */
  4401. .inline-list > li > * {
  4402. display: block;
  4403. }
  4404. /* Foundation Joyride */
  4405. /* line 48, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4406. .joyride-list {
  4407. display: none;
  4408. }
  4409. /* Default styles for the container */
  4410. /* line 51, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4411. .joyride-tip-guide {
  4412. display: none;
  4413. position: absolute;
  4414. background: #333333;
  4415. color: #FFFFFF;
  4416. z-index: 101;
  4417. top: 0;
  4418. left: 2.5%;
  4419. font-family: inherit;
  4420. font-weight: normal;
  4421. width: 95%;
  4422. }
  4423. /* line 64, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4424. .lt-ie9 .joyride-tip-guide {
  4425. max-width: 800px;
  4426. left: 50%;
  4427. margin-left: -400px;
  4428. }
  4429. /* line 70, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4430. .joyride-content-wrapper {
  4431. width: 100%;
  4432. padding: 1.125rem 1.25rem 1.5rem;
  4433. }
  4434. /* line 75, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4435. .joyride-content-wrapper .button {
  4436. margin-bottom: 0 !important;
  4437. }
  4438. /* line 77, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4439. .joyride-content-wrapper .joyride-prev-tip {
  4440. margin-right: 10px;
  4441. }
  4442. /* Add a little css triangle pip, older browser just miss out on the fanciness of it */
  4443. /* line 82, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4444. .joyride-tip-guide .joyride-nub {
  4445. display: block;
  4446. position: absolute;
  4447. left: 22px;
  4448. width: 0;
  4449. height: 0;
  4450. border: 10px solid #333333;
  4451. }
  4452. /* line 90, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4453. .joyride-tip-guide .joyride-nub.top {
  4454. border-top-style: solid;
  4455. border-color: #333333;
  4456. border-top-color: transparent !important;
  4457. border-left-color: transparent !important;
  4458. border-right-color: transparent !important;
  4459. top: -20px;
  4460. }
  4461. /* line 98, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4462. .joyride-tip-guide .joyride-nub.bottom {
  4463. border-bottom-style: solid;
  4464. border-color: #333333 !important;
  4465. border-bottom-color: transparent !important;
  4466. border-left-color: transparent !important;
  4467. border-right-color: transparent !important;
  4468. bottom: -20px;
  4469. }
  4470. /* line 107, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4471. .joyride-tip-guide .joyride-nub.right {
  4472. right: -20px;
  4473. }
  4474. /* line 108, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4475. .joyride-tip-guide .joyride-nub.left {
  4476. left: -20px;
  4477. }
  4478. /* Typography */
  4479. /* line 113, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4480. .joyride-tip-guide h1,
  4481. .joyride-tip-guide h2,
  4482. .joyride-tip-guide h3,
  4483. .joyride-tip-guide h4,
  4484. .joyride-tip-guide h5,
  4485. .joyride-tip-guide h6 {
  4486. line-height: 1.25;
  4487. margin: 0;
  4488. font-weight: bold;
  4489. color: #FFFFFF;
  4490. }
  4491. /* line 124, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4492. .joyride-tip-guide p {
  4493. margin: 0 0 1.125rem 0;
  4494. font-size: 0.875rem;
  4495. line-height: 1.3;
  4496. }
  4497. /* line 130, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4498. .joyride-timer-indicator-wrap {
  4499. width: 50px;
  4500. height: 3px;
  4501. border: solid 1px #555555;
  4502. position: absolute;
  4503. right: 1.0625rem;
  4504. bottom: 1rem;
  4505. }
  4506. /* line 138, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4507. .joyride-timer-indicator {
  4508. display: block;
  4509. width: 0;
  4510. height: inherit;
  4511. background: #666666;
  4512. }
  4513. /* line 145, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4514. .joyride-close-tip {
  4515. position: absolute;
  4516. right: 12px;
  4517. top: 10px;
  4518. color: #777777 !important;
  4519. text-decoration: none;
  4520. font-size: 24px;
  4521. font-weight: normal;
  4522. line-height: .5 !important;
  4523. }
  4524. /* line 155, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4525. .joyride-close-tip:hover, .joyride-close-tip:focus {
  4526. color: #EEEEEE !important;
  4527. }
  4528. /* line 159, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4529. .joyride-modal-bg {
  4530. position: fixed;
  4531. height: 100%;
  4532. width: 100%;
  4533. background: transparent;
  4534. background: rgba(0, 0, 0, 0.5);
  4535. z-index: 100;
  4536. display: none;
  4537. top: 0;
  4538. left: 0;
  4539. cursor: pointer;
  4540. }
  4541. /* line 172, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4542. .joyride-expose-wrapper {
  4543. background-color: #FFFFFF;
  4544. position: absolute;
  4545. border-radius: 3px;
  4546. z-index: 102;
  4547. box-shadow: 0 0 15px #FFFFFF;
  4548. }
  4549. /* line 180, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4550. .joyride-expose-cover {
  4551. background: transparent;
  4552. border-radius: 3px;
  4553. position: absolute;
  4554. z-index: 9999;
  4555. top: 0;
  4556. left: 0;
  4557. }
  4558. /* Styles for screens that are at least 768px; */
  4559. @media only screen and (min-width: 40.063em) {
  4560. /* line 192, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4561. .joyride-tip-guide {
  4562. width: 300px;
  4563. left: inherit;
  4564. }
  4565. /* line 194, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4566. .joyride-tip-guide .joyride-nub.bottom {
  4567. border-color: #333333 !important;
  4568. border-bottom-color: transparent !important;
  4569. border-left-color: transparent !important;
  4570. border-right-color: transparent !important;
  4571. bottom: -20px;
  4572. }
  4573. /* line 201, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4574. .joyride-tip-guide .joyride-nub.right {
  4575. border-color: #333333 !important;
  4576. border-top-color: transparent !important;
  4577. border-right-color: transparent !important;
  4578. border-bottom-color: transparent !important;
  4579. top: 22px;
  4580. left: auto;
  4581. right: -20px;
  4582. }
  4583. /* line 209, ../bower_components/foundation/scss/foundation/components/_joyride.scss */
  4584. .joyride-tip-guide .joyride-nub.left {
  4585. border-color: #333333 !important;
  4586. border-top-color: transparent !important;
  4587. border-left-color: transparent !important;
  4588. border-bottom-color: transparent !important;
  4589. top: 22px;
  4590. left: -20px;
  4591. right: auto;
  4592. }
  4593. }
  4594. /* line 55, ../bower_components/foundation/scss/foundation/components/_keystrokes.scss */
  4595. .keystroke,
  4596. kbd {
  4597. background-color: #ededed;
  4598. border-color: #dddddd;
  4599. color: #222222;
  4600. border-style: solid;
  4601. border-width: 1px;
  4602. margin: 0;
  4603. font-family: "Consolas", "Menlo", "Courier", monospace;
  4604. font-size: inherit;
  4605. padding: 0.125rem 0.25rem 0;
  4606. border-radius: 3px;
  4607. }
  4608. /* line 91, ../bower_components/foundation/scss/foundation/components/_labels.scss */
  4609. .label {
  4610. font-weight: normal;
  4611. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  4612. text-align: center;
  4613. text-decoration: none;
  4614. line-height: 1;
  4615. white-space: nowrap;
  4616. display: inline-block;
  4617. position: relative;
  4618. margin-bottom: auto;
  4619. padding: 0.25rem 0.5rem 0.25rem;
  4620. font-size: 0.6875rem;
  4621. background-color: #008CBA;
  4622. color: #FFFFFF;
  4623. }
  4624. /* line 96, ../bower_components/foundation/scss/foundation/components/_labels.scss */
  4625. .label.radius {
  4626. border-radius: 3px;
  4627. }
  4628. /* line 97, ../bower_components/foundation/scss/foundation/components/_labels.scss */
  4629. .label.round {
  4630. border-radius: 1000px;
  4631. }
  4632. /* line 99, ../bower_components/foundation/scss/foundation/components/_labels.scss */
  4633. .label.alert {
  4634. background-color: #f04124;
  4635. color: #FFFFFF;
  4636. }
  4637. /* line 100, ../bower_components/foundation/scss/foundation/components/_labels.scss */
  4638. .label.warning {
  4639. background-color: #f08a24;
  4640. color: #FFFFFF;
  4641. }
  4642. /* line 101, ../bower_components/foundation/scss/foundation/components/_labels.scss */
  4643. .label.success {
  4644. background-color: #43AC6A;
  4645. color: #FFFFFF;
  4646. }
  4647. /* line 102, ../bower_components/foundation/scss/foundation/components/_labels.scss */
  4648. .label.secondary {
  4649. background-color: #e7e7e7;
  4650. color: #333333;
  4651. }
  4652. /* line 103, ../bower_components/foundation/scss/foundation/components/_labels.scss */
  4653. .label.info {
  4654. background-color: #a0d3e8;
  4655. color: #333333;
  4656. }
  4657. /* line 18, ../bower_components/foundation/scss/foundation/components/_magellan.scss */
  4658. [data-magellan-expedition], [data-magellan-expedition-clone] {
  4659. background: #FFFFFF;
  4660. z-index: 50;
  4661. min-width: 100%;
  4662. padding: 10px;
  4663. }
  4664. /* line 24, ../bower_components/foundation/scss/foundation/components/_magellan.scss */
  4665. [data-magellan-expedition] .sub-nav, [data-magellan-expedition-clone] .sub-nav {
  4666. margin-bottom: 0;
  4667. }
  4668. /* line 26, ../bower_components/foundation/scss/foundation/components/_magellan.scss */
  4669. [data-magellan-expedition] .sub-nav dd, [data-magellan-expedition-clone] .sub-nav dd {
  4670. margin-bottom: 0;
  4671. }
  4672. /* line 27, ../bower_components/foundation/scss/foundation/components/_magellan.scss */
  4673. [data-magellan-expedition] .sub-nav a, [data-magellan-expedition-clone] .sub-nav a {
  4674. line-height: 1.8em;
  4675. }
  4676. @-webkit-keyframes rotate {
  4677. from {
  4678. -webkit-transform: rotate(0deg);
  4679. }
  4680. to {
  4681. -webkit-transform: rotate(360deg);
  4682. }
  4683. }
  4684. @keyframes rotate {
  4685. from {
  4686. -webkit-transform: rotate(0deg);
  4687. transform: rotate(0deg);
  4688. }
  4689. to {
  4690. -webkit-transform: rotate(360deg);
  4691. transform: rotate(360deg);
  4692. }
  4693. }
  4694. /* Orbit Graceful Loading */
  4695. /* line 71, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4696. .slideshow-wrapper {
  4697. position: relative;
  4698. }
  4699. /* line 74, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4700. .slideshow-wrapper ul {
  4701. list-style-type: none;
  4702. margin: 0;
  4703. }
  4704. /* line 80, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4705. .slideshow-wrapper ul li,
  4706. .slideshow-wrapper ul li .orbit-caption {
  4707. display: none;
  4708. }
  4709. /* line 84, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4710. .slideshow-wrapper ul li:first-child {
  4711. display: block;
  4712. }
  4713. /* line 87, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4714. .slideshow-wrapper .orbit-container {
  4715. background-color: transparent;
  4716. }
  4717. /* line 90, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4718. .slideshow-wrapper .orbit-container li {
  4719. display: block;
  4720. }
  4721. /* line 92, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4722. .slideshow-wrapper .orbit-container li .orbit-caption {
  4723. display: block;
  4724. }
  4725. /* line 94, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4726. .slideshow-wrapper .orbit-container .orbit-bullets li {
  4727. display: inline-block;
  4728. }
  4729. /* line 100, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4730. .slideshow-wrapper .preloader {
  4731. display: block;
  4732. width: 40px;
  4733. height: 40px;
  4734. position: absolute;
  4735. top: 50%;
  4736. left: 50%;
  4737. margin-top: -20px;
  4738. margin-left: -20px;
  4739. border: solid 3px;
  4740. border-color: #555555 #FFFFFF;
  4741. border-radius: 1000px;
  4742. -webkit-animation-name: rotate;
  4743. animation-name: rotate;
  4744. -webkit-animation-duration: 1.5s;
  4745. animation-duration: 1.5s;
  4746. -webkit-animation-iteration-count: infinite;
  4747. animation-iteration-count: infinite;
  4748. -webkit-animation-timing-function: linear;
  4749. animation-timing-function: linear;
  4750. }
  4751. /* line 120, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4752. .orbit-container {
  4753. overflow: hidden;
  4754. width: 100%;
  4755. position: relative;
  4756. background: none;
  4757. }
  4758. /* line 126, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4759. .orbit-container .orbit-slides-container {
  4760. list-style: none;
  4761. margin: 0;
  4762. padding: 0;
  4763. position: relative;
  4764. -webkit-transform: translateZ(0);
  4765. }
  4766. /* line 135, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4767. .orbit-container .orbit-slides-container img {
  4768. display: block;
  4769. max-width: 100%;
  4770. }
  4771. /* line 137, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4772. .orbit-container .orbit-slides-container > * {
  4773. position: absolute;
  4774. top: 0;
  4775. width: 100%;
  4776. margin-left: 100%;
  4777. }
  4778. /* line 148, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4779. .orbit-container .orbit-slides-container > *:first-child {
  4780. margin-left: 0;
  4781. }
  4782. /* line 157, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4783. .orbit-container .orbit-slides-container > * .orbit-caption {
  4784. position: absolute;
  4785. bottom: 0;
  4786. background-color: rgba(51, 51, 51, 0.8);
  4787. color: #FFFFFF;
  4788. width: 100%;
  4789. padding: 0.625rem 0.875rem;
  4790. font-size: 0.875rem;
  4791. }
  4792. /* line 174, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4793. .orbit-container .orbit-slide-number {
  4794. position: absolute;
  4795. top: 10px;
  4796. left: 10px;
  4797. font-size: 12px;
  4798. color: #FFFFFF;
  4799. background: transparent;
  4800. z-index: 10;
  4801. }
  4802. /* line 179, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4803. .orbit-container .orbit-slide-number span {
  4804. font-weight: 700;
  4805. padding: 0.3125rem;
  4806. }
  4807. /* line 185, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4808. .orbit-container .orbit-timer {
  4809. position: absolute;
  4810. top: 12px;
  4811. right: 10px;
  4812. height: 6px;
  4813. width: 100px;
  4814. z-index: 10;
  4815. }
  4816. /* line 192, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4817. .orbit-container .orbit-timer .orbit-progress {
  4818. height: 3px;
  4819. background-color: rgba(255, 255, 255, 0.3);
  4820. display: block;
  4821. width: 0;
  4822. position: relative;
  4823. right: 20px;
  4824. top: 5px;
  4825. }
  4826. /* line 205, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4827. .orbit-container .orbit-timer > span {
  4828. display: none;
  4829. position: absolute;
  4830. top: 0;
  4831. right: 0;
  4832. width: 11px;
  4833. height: 14px;
  4834. border: solid 4px #FFFFFF;
  4835. border-top: none;
  4836. border-bottom: none;
  4837. }
  4838. /* line 219, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4839. .orbit-container .orbit-timer.paused > span {
  4840. right: -4px;
  4841. top: 0;
  4842. width: 11px;
  4843. height: 14px;
  4844. border: inset 8px;
  4845. border-left-style: solid;
  4846. border-color: transparent;
  4847. border-left-color: #FFFFFF;
  4848. }
  4849. /* line 228, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4850. .orbit-container .orbit-timer.paused > span.dark {
  4851. border-left-color: #333333;
  4852. }
  4853. /* line 237, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4854. .orbit-container:hover .orbit-timer > span {
  4855. display: block;
  4856. }
  4857. /* line 240, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4858. .orbit-container .orbit-prev,
  4859. .orbit-container .orbit-next {
  4860. position: absolute;
  4861. top: 45%;
  4862. margin-top: -25px;
  4863. width: 36px;
  4864. height: 60px;
  4865. line-height: 50px;
  4866. color: white;
  4867. background-color: transparent;
  4868. text-indent: -9999px !important;
  4869. z-index: 10;
  4870. }
  4871. /* line 253, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4872. .orbit-container .orbit-prev:hover,
  4873. .orbit-container .orbit-next:hover {
  4874. background-color: rgba(0, 0, 0, 0.3);
  4875. }
  4876. /* line 257, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4877. .orbit-container .orbit-prev > span,
  4878. .orbit-container .orbit-next > span {
  4879. position: absolute;
  4880. top: 50%;
  4881. margin-top: -10px;
  4882. display: block;
  4883. width: 0;
  4884. height: 0;
  4885. border: inset 10px;
  4886. }
  4887. /* line 267, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4888. .orbit-container .orbit-prev {
  4889. left: 0;
  4890. }
  4891. /* line 268, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4892. .orbit-container .orbit-prev > span {
  4893. border-right-style: solid;
  4894. border-color: transparent;
  4895. border-right-color: #FFFFFF;
  4896. }
  4897. /* line 273, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4898. .orbit-container .orbit-prev:hover > span {
  4899. border-right-color: #FFFFFF;
  4900. }
  4901. /* line 277, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4902. .orbit-container .orbit-next {
  4903. right: 0;
  4904. }
  4905. /* line 278, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4906. .orbit-container .orbit-next > span {
  4907. border-color: transparent;
  4908. border-left-style: solid;
  4909. border-left-color: #FFFFFF;
  4910. left: 50%;
  4911. margin-left: -4px;
  4912. }
  4913. /* line 285, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4914. .orbit-container .orbit-next:hover > span {
  4915. border-left-color: #FFFFFF;
  4916. }
  4917. /* line 291, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4918. .orbit-bullets-container {
  4919. text-align: center;
  4920. }
  4921. /* line 292, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4922. .orbit-bullets {
  4923. margin: 0 auto 30px auto;
  4924. overflow: hidden;
  4925. position: relative;
  4926. top: 10px;
  4927. float: none;
  4928. text-align: center;
  4929. display: block;
  4930. }
  4931. /* line 301, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4932. .orbit-bullets li {
  4933. cursor: pointer;
  4934. display: inline-block;
  4935. width: 0.5625rem;
  4936. height: 0.5625rem;
  4937. background: #CCCCCC;
  4938. float: none;
  4939. margin-right: 6px;
  4940. border-radius: 1000px;
  4941. }
  4942. /* line 312, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4943. .orbit-bullets li.active {
  4944. background: #999999;
  4945. }
  4946. /* line 316, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4947. .orbit-bullets li:last-child {
  4948. margin-right: 0;
  4949. }
  4950. /* line 322, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4951. .touch .orbit-container .orbit-prev,
  4952. .touch .orbit-container .orbit-next {
  4953. display: none;
  4954. }
  4955. /* line 326, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4956. .touch .orbit-bullets {
  4957. display: none;
  4958. }
  4959. @media only screen and (min-width: 40.063em) {
  4960. /* line 334, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4961. .touch .orbit-container .orbit-prev,
  4962. .touch .orbit-container .orbit-next {
  4963. display: inherit;
  4964. }
  4965. /* line 338, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4966. .touch .orbit-bullets {
  4967. display: block;
  4968. }
  4969. }
  4970. @media only screen and (max-width: 40em) {
  4971. /* line 345, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4972. .orbit-stack-on-small .orbit-slides-container {
  4973. height: auto !important;
  4974. }
  4975. /* line 346, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4976. .orbit-stack-on-small .orbit-slides-container > * {
  4977. position: relative;
  4978. margin: 0 !important;
  4979. opacity: 1 !important;
  4980. }
  4981. /* line 352, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4982. .orbit-stack-on-small .orbit-slide-number {
  4983. display: none;
  4984. }
  4985. /* line 358, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4986. .orbit-timer {
  4987. display: none;
  4988. }
  4989. /* line 361, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4990. .orbit-next, .orbit-prev {
  4991. display: none;
  4992. }
  4993. /* line 364, ../bower_components/foundation/scss/foundation/components/_orbit.scss */
  4994. .orbit-bullets {
  4995. display: none;
  4996. }
  4997. }
  4998. /* line 149, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  4999. ul.pagination {
  5000. display: block;
  5001. min-height: 1.5rem;
  5002. margin-left: -0.3125rem;
  5003. }
  5004. /* line 104, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5005. ul.pagination li {
  5006. height: 1.5rem;
  5007. color: #222222;
  5008. font-size: 0.875rem;
  5009. margin-left: 0.3125rem;
  5010. }
  5011. /* line 110, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5012. ul.pagination li a, ul.pagination li button {
  5013. display: block;
  5014. padding: 0.0625rem 0.625rem 0.0625rem;
  5015. color: #999999;
  5016. background: none;
  5017. border-radius: 3px;
  5018. font-weight: normal;
  5019. font-size: 1em;
  5020. line-height: inherit;
  5021. -webkit-transition: background-color 300ms ease-out;
  5022. transition: background-color 300ms ease-out;
  5023. }
  5024. /* line 122, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5025. ul.pagination li:hover a,
  5026. ul.pagination li a:focus, ul.pagination li:hover button,
  5027. ul.pagination li button:focus {
  5028. background: #e6e6e6;
  5029. }
  5030. /* line 51, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5031. ul.pagination li.unavailable a, ul.pagination li.unavailable button {
  5032. cursor: default;
  5033. color: #999999;
  5034. }
  5035. /* line 55, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5036. ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus, ul.pagination li.unavailable:hover button, ul.pagination li.unavailable button:focus {
  5037. background: transparent;
  5038. }
  5039. /* line 68, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5040. ul.pagination li.current a, ul.pagination li.current button {
  5041. background: #008CBA;
  5042. color: #FFFFFF;
  5043. font-weight: bold;
  5044. cursor: default;
  5045. }
  5046. /* line 74, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5047. ul.pagination li.current a:hover, ul.pagination li.current a:focus, ul.pagination li.current button:hover, ul.pagination li.current button:focus {
  5048. background: #008CBA;
  5049. }
  5050. /* line 136, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5051. ul.pagination li {
  5052. float: left;
  5053. display: block;
  5054. }
  5055. /* Pagination centred wrapper */
  5056. /* line 154, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5057. .pagination-centered {
  5058. text-align: center;
  5059. }
  5060. /* line 136, ../bower_components/foundation/scss/foundation/components/_pagination.scss */
  5061. .pagination-centered ul.pagination li {
  5062. float: none;
  5063. display: inline-block;
  5064. }
  5065. /* Panels */
  5066. /* line 80, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5067. .panel {
  5068. border-style: solid;
  5069. border-width: 1px;
  5070. border-color: #d8d8d8;
  5071. margin-bottom: 1.25rem;
  5072. padding: 1.25rem;
  5073. background: #f2f2f2;
  5074. color: #333333;
  5075. }
  5076. /* line 55, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5077. .panel > :first-child {
  5078. margin-top: 0;
  5079. }
  5080. /* line 56, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5081. .panel > :last-child {
  5082. margin-bottom: 0;
  5083. }
  5084. /* line 61, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5085. .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6, .panel p, .panel li, .panel dl {
  5086. color: #333333;
  5087. }
  5088. /* line 68, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5089. .panel h1, .panel h2, .panel h3, .panel h4, .panel h5, .panel h6 {
  5090. line-height: 1;
  5091. margin-bottom: 0.625rem;
  5092. }
  5093. /* line 70, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5094. .panel h1.subheader, .panel h2.subheader, .panel h3.subheader, .panel h4.subheader, .panel h5.subheader, .panel h6.subheader {
  5095. line-height: 1.4;
  5096. }
  5097. /* line 82, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5098. .panel.callout {
  5099. border-style: solid;
  5100. border-width: 1px;
  5101. border-color: #b6edff;
  5102. margin-bottom: 1.25rem;
  5103. padding: 1.25rem;
  5104. background: #ecfaff;
  5105. color: #333333;
  5106. }
  5107. /* line 55, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5108. .panel.callout > :first-child {
  5109. margin-top: 0;
  5110. }
  5111. /* line 56, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5112. .panel.callout > :last-child {
  5113. margin-bottom: 0;
  5114. }
  5115. /* line 61, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5116. .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 {
  5117. color: #333333;
  5118. }
  5119. /* line 68, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5120. .panel.callout h1, .panel.callout h2, .panel.callout h3, .panel.callout h4, .panel.callout h5, .panel.callout h6 {
  5121. line-height: 1;
  5122. margin-bottom: 0.625rem;
  5123. }
  5124. /* line 70, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5125. .panel.callout h1.subheader, .panel.callout h2.subheader, .panel.callout h3.subheader, .panel.callout h4.subheader, .panel.callout h5.subheader, .panel.callout h6.subheader {
  5126. line-height: 1.4;
  5127. }
  5128. /* line 84, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5129. .panel.callout a:not(.button) {
  5130. color: #008CBA;
  5131. }
  5132. /* line 87, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5133. .panel.callout a:not(.button):hover, .panel.callout a:not(.button):focus {
  5134. color: #0078a0;
  5135. }
  5136. /* line 94, ../bower_components/foundation/scss/foundation/components/_panels.scss */
  5137. .panel.radius {
  5138. border-radius: 3px;
  5139. }
  5140. /* Pricing Tables */
  5141. /* line 139, ../bower_components/foundation/scss/foundation/components/_pricing-tables.scss */
  5142. .pricing-table {
  5143. border: solid 1px #DDDDDD;
  5144. margin-left: 0;
  5145. margin-bottom: 1.25rem;
  5146. }
  5147. /* line 68, ../bower_components/foundation/scss/foundation/components/_pricing-tables.scss */
  5148. .pricing-table * {
  5149. list-style: none;
  5150. line-height: 1;
  5151. }
  5152. /* line 142, ../bower_components/foundation/scss/foundation/components/_pricing-tables.scss */
  5153. .pricing-table .title {
  5154. background-color: #333333;
  5155. padding: 0.9375rem 1.25rem;
  5156. text-align: center;
  5157. color: #EEEEEE;
  5158. font-weight: normal;
  5159. font-size: 1rem;
  5160. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5161. }
  5162. /* line 143, ../bower_components/foundation/scss/foundation/components/_pricing-tables.scss */
  5163. .pricing-table .price {
  5164. background-color: #F6F6F6;
  5165. padding: 0.9375rem 1.25rem;
  5166. text-align: center;
  5167. color: #333333;
  5168. font-weight: normal;
  5169. font-size: 2rem;
  5170. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5171. }
  5172. /* line 144, ../bower_components/foundation/scss/foundation/components/_pricing-tables.scss */
  5173. .pricing-table .description {
  5174. background-color: #FFFFFF;
  5175. padding: 0.9375rem;
  5176. text-align: center;
  5177. color: #777777;
  5178. font-size: 0.75rem;
  5179. font-weight: normal;
  5180. line-height: 1.4;
  5181. border-bottom: dotted 1px #DDDDDD;
  5182. }
  5183. /* line 145, ../bower_components/foundation/scss/foundation/components/_pricing-tables.scss */
  5184. .pricing-table .bullet-item {
  5185. background-color: #FFFFFF;
  5186. padding: 0.9375rem;
  5187. text-align: center;
  5188. color: #333333;
  5189. font-size: 0.875rem;
  5190. font-weight: normal;
  5191. border-bottom: dotted 1px #DDDDDD;
  5192. }
  5193. /* line 146, ../bower_components/foundation/scss/foundation/components/_pricing-tables.scss */
  5194. .pricing-table .cta-button {
  5195. background-color: #FFFFFF;
  5196. text-align: center;
  5197. padding: 1.25rem 1.25rem 0;
  5198. }
  5199. /* Progress Bar */
  5200. /* line 57, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5201. .progress {
  5202. background-color: #F6F6F6;
  5203. height: 1.5625rem;
  5204. border: 1px solid white;
  5205. padding: 0.125rem;
  5206. margin-bottom: 0.625rem;
  5207. }
  5208. /* line 61, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5209. .progress .meter {
  5210. background: #008CBA;
  5211. height: 100%;
  5212. display: block;
  5213. }
  5214. /* line 64, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5215. .progress.secondary .meter {
  5216. background: #e7e7e7;
  5217. height: 100%;
  5218. display: block;
  5219. }
  5220. /* line 65, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5221. .progress.success .meter {
  5222. background: #43AC6A;
  5223. height: 100%;
  5224. display: block;
  5225. }
  5226. /* line 66, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5227. .progress.alert .meter {
  5228. background: #f04124;
  5229. height: 100%;
  5230. display: block;
  5231. }
  5232. /* line 68, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5233. .progress.radius {
  5234. border-radius: 3px;
  5235. }
  5236. /* line 69, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5237. .progress.radius .meter {
  5238. border-radius: 2px;
  5239. }
  5240. /* line 72, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5241. .progress.round {
  5242. border-radius: 1000px;
  5243. }
  5244. /* line 73, ../bower_components/foundation/scss/foundation/components/_progress-bars.scss */
  5245. .progress.round .meter {
  5246. border-radius: 999px;
  5247. }
  5248. /* line 129, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5249. .range-slider {
  5250. position: relative;
  5251. border: 1px solid #DDDDDD;
  5252. margin: 1.25rem 0;
  5253. -ms-touch-action: none;
  5254. touch-action: none;
  5255. display: block;
  5256. width: 100%;
  5257. height: 1rem;
  5258. background: #FAFAFA;
  5259. }
  5260. /* line 132, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5261. .range-slider.vertical-range {
  5262. position: relative;
  5263. border: 1px solid #DDDDDD;
  5264. margin: 1.25rem 0;
  5265. -ms-touch-action: none;
  5266. touch-action: none;
  5267. display: inline-block;
  5268. width: 1rem;
  5269. height: 12.5rem;
  5270. }
  5271. /* line 134, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5272. .range-slider.vertical-range .range-slider-handle {
  5273. margin-top: 0;
  5274. margin-left: -0.5rem;
  5275. position: absolute;
  5276. bottom: -10.5rem;
  5277. }
  5278. /* line 140, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5279. .range-slider.vertical-range .range-slider-active-segment {
  5280. width: 0.875rem;
  5281. height: auto;
  5282. bottom: 0;
  5283. }
  5284. /* line 146, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5285. .range-slider.radius {
  5286. background: #FAFAFA;
  5287. border-radius: 3px;
  5288. }
  5289. /* line 148, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5290. .range-slider.radius .range-slider-handle {
  5291. background: #008CBA;
  5292. border-radius: 3px;
  5293. }
  5294. /* line 117, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5295. .range-slider.radius .range-slider-handle:hover {
  5296. background: #007ba4;
  5297. }
  5298. /* line 150, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5299. .range-slider.round {
  5300. background: #FAFAFA;
  5301. border-radius: 1000px;
  5302. }
  5303. /* line 152, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5304. .range-slider.round .range-slider-handle {
  5305. background: #008CBA;
  5306. border-radius: 1000px;
  5307. }
  5308. /* line 117, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5309. .range-slider.round .range-slider-handle:hover {
  5310. background: #007ba4;
  5311. }
  5312. /* line 154, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5313. .range-slider.disabled, .range-slider[disabled] {
  5314. background: #FAFAFA;
  5315. cursor: not-allowed;
  5316. opacity: 0.7;
  5317. }
  5318. /* line 156, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5319. .range-slider.disabled .range-slider-handle, .range-slider[disabled] .range-slider-handle {
  5320. background: #008CBA;
  5321. cursor: default;
  5322. opacity: 0.7;
  5323. }
  5324. /* line 117, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5325. .range-slider.disabled .range-slider-handle:hover, .range-slider[disabled] .range-slider-handle:hover {
  5326. background: #007ba4;
  5327. }
  5328. /* line 159, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5329. .range-slider-active-segment {
  5330. display: inline-block;
  5331. position: absolute;
  5332. height: 0.875rem;
  5333. background: #e5e5e5;
  5334. }
  5335. /* line 165, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5336. .range-slider-handle {
  5337. display: inline-block;
  5338. position: absolute;
  5339. z-index: 1;
  5340. top: -0.3125rem;
  5341. width: 2rem;
  5342. height: 1.375rem;
  5343. border: 1px solid none;
  5344. cursor: pointer;
  5345. -ms-touch-action: manipulation;
  5346. touch-action: manipulation;
  5347. background: #008CBA;
  5348. }
  5349. /* line 117, ../bower_components/foundation/scss/foundation/components/_range-slider.scss */
  5350. .range-slider-handle:hover {
  5351. background: #007ba4;
  5352. }
  5353. /* line 169, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5354. .reveal-modal-bg {
  5355. position: fixed;
  5356. top: 0;
  5357. bottom: 0;
  5358. left: 0;
  5359. right: 0;
  5360. background: #000000;
  5361. background: rgba(0, 0, 0, 0.45);
  5362. z-index: 1004;
  5363. display: none;
  5364. left: 0;
  5365. }
  5366. /* line 171, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5367. .reveal-modal {
  5368. visibility: hidden;
  5369. display: none;
  5370. position: absolute;
  5371. z-index: 1005;
  5372. width: 100%;
  5373. top: 0;
  5374. border-radius: 3px;
  5375. left: 0;
  5376. background-color: #FFFFFF;
  5377. padding: 1.875rem;
  5378. border: solid 1px #666666;
  5379. box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  5380. }
  5381. @media only screen and (max-width: 40em) {
  5382. /* line 171, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5383. .reveal-modal {
  5384. min-height: 100vh;
  5385. }
  5386. }
  5387. /* line 89, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5388. .reveal-modal .column, .reveal-modal .columns {
  5389. min-width: 0;
  5390. }
  5391. /* line 92, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5392. .reveal-modal > :first-child {
  5393. margin-top: 0;
  5394. }
  5395. /* line 94, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5396. .reveal-modal > :last-child {
  5397. margin-bottom: 0;
  5398. }
  5399. @media only screen and (min-width: 40.063em) {
  5400. /* line 171, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5401. .reveal-modal {
  5402. width: 80%;
  5403. max-width: 62.5rem;
  5404. left: 0;
  5405. right: 0;
  5406. margin: 0 auto;
  5407. }
  5408. }
  5409. @media only screen and (min-width: 40.063em) {
  5410. /* line 171, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5411. .reveal-modal {
  5412. top: 6.25rem;
  5413. }
  5414. }
  5415. /* line 182, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5416. .reveal-modal.radius {
  5417. border-radius: 3px;
  5418. }
  5419. /* line 183, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5420. .reveal-modal.round {
  5421. border-radius: 1000px;
  5422. }
  5423. /* line 184, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5424. .reveal-modal.collapse {
  5425. padding: 0;
  5426. }
  5427. @media only screen and (min-width: 40.063em) {
  5428. /* line 185, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5429. .reveal-modal.tiny {
  5430. width: 30%;
  5431. max-width: 62.5rem;
  5432. left: 0;
  5433. right: 0;
  5434. margin: 0 auto;
  5435. }
  5436. }
  5437. @media only screen and (min-width: 40.063em) {
  5438. /* line 186, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5439. .reveal-modal.small {
  5440. width: 40%;
  5441. max-width: 62.5rem;
  5442. left: 0;
  5443. right: 0;
  5444. margin: 0 auto;
  5445. }
  5446. }
  5447. @media only screen and (min-width: 40.063em) {
  5448. /* line 187, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5449. .reveal-modal.medium {
  5450. width: 60%;
  5451. max-width: 62.5rem;
  5452. left: 0;
  5453. right: 0;
  5454. margin: 0 auto;
  5455. }
  5456. }
  5457. @media only screen and (min-width: 40.063em) {
  5458. /* line 188, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5459. .reveal-modal.large {
  5460. width: 70%;
  5461. max-width: 62.5rem;
  5462. left: 0;
  5463. right: 0;
  5464. margin: 0 auto;
  5465. }
  5466. }
  5467. @media only screen and (min-width: 40.063em) {
  5468. /* line 189, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5469. .reveal-modal.xlarge {
  5470. width: 95%;
  5471. max-width: 62.5rem;
  5472. left: 0;
  5473. right: 0;
  5474. margin: 0 auto;
  5475. }
  5476. }
  5477. /* line 190, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5478. .reveal-modal.full {
  5479. top: 0;
  5480. left: 0;
  5481. height: 100%;
  5482. height: 100vh;
  5483. min-height: 100vh;
  5484. max-width: none !important;
  5485. margin-left: 0 !important;
  5486. }
  5487. @media only screen and (min-width: 40.063em) {
  5488. /* line 190, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5489. .reveal-modal.full {
  5490. width: 100%;
  5491. max-width: 62.5rem;
  5492. left: 0;
  5493. right: 0;
  5494. margin: 0 auto;
  5495. }
  5496. }
  5497. /* line 202, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5498. .reveal-modal.toback {
  5499. z-index: 1003;
  5500. }
  5501. /* line 206, ../bower_components/foundation/scss/foundation/components/_reveal.scss */
  5502. .reveal-modal .close-reveal-modal {
  5503. font-size: 2.5rem;
  5504. line-height: 1;
  5505. position: absolute;
  5506. top: 0.625rem;
  5507. right: 1.375rem;
  5508. color: #AAAAAA;
  5509. font-weight: bold;
  5510. cursor: pointer;
  5511. }
  5512. /* line 114, ../bower_components/foundation/scss/foundation/components/_side-nav.scss */
  5513. .side-nav {
  5514. display: block;
  5515. margin: 0;
  5516. padding: 0.875rem 0;
  5517. list-style-type: none;
  5518. list-style-position: outside;
  5519. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5520. }
  5521. /* line 70, ../bower_components/foundation/scss/foundation/components/_side-nav.scss */
  5522. .side-nav li {
  5523. margin: 0 0 0.4375rem 0;
  5524. font-size: 0.875rem;
  5525. font-weight: normal;
  5526. }
  5527. /* line 75, ../bower_components/foundation/scss/foundation/components/_side-nav.scss */
  5528. .side-nav li a:not(.button) {
  5529. display: block;
  5530. color: #008CBA;
  5531. margin: 0;
  5532. padding: 0.4375rem 0.875rem;
  5533. }
  5534. /* line 80, ../bower_components/foundation/scss/foundation/components/_side-nav.scss */
  5535. .side-nav li a:not(.button):hover, .side-nav li a:not(.button):focus {
  5536. background: rgba(0, 0, 0, 0.025);
  5537. color: #1cc7ff;
  5538. }
  5539. /* line 87, ../bower_components/foundation/scss/foundation/components/_side-nav.scss */
  5540. .side-nav li.active > a:first-child:not(.button) {
  5541. color: #1cc7ff;
  5542. font-weight: normal;
  5543. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5544. }
  5545. /* line 93, ../bower_components/foundation/scss/foundation/components/_side-nav.scss */
  5546. .side-nav li.divider {
  5547. border-top: 1px solid;
  5548. height: 0;
  5549. padding: 0;
  5550. list-style: none;
  5551. border-top-color: white;
  5552. }
  5553. /* line 101, ../bower_components/foundation/scss/foundation/components/_side-nav.scss */
  5554. .side-nav li.heading {
  5555. color: #008CBA;
  5556. font-size: 0.875rem;
  5557. font-weight: bold;
  5558. text-transform: uppercase;
  5559. }
  5560. /* line 173, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5561. .split.button {
  5562. position: relative;
  5563. padding-right: 5.0625rem;
  5564. }
  5565. /* line 76, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5566. .split.button span {
  5567. display: block;
  5568. height: 100%;
  5569. position: absolute;
  5570. right: 0;
  5571. top: 0;
  5572. border-left: solid 1px;
  5573. }
  5574. /* line 85, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5575. .split.button span:after {
  5576. position: absolute;
  5577. content: "";
  5578. width: 0;
  5579. height: 0;
  5580. display: block;
  5581. border-style: inset;
  5582. top: 50%;
  5583. left: 50%;
  5584. }
  5585. /* line 97, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5586. .split.button span:active {
  5587. background-color: rgba(0, 0, 0, 0.1);
  5588. }
  5589. /* line 103, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5590. .split.button span {
  5591. border-left-color: rgba(255, 255, 255, 0.5);
  5592. }
  5593. /* line 140, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5594. .split.button span {
  5595. width: 3.09375rem;
  5596. }
  5597. /* line 141, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5598. .split.button span:after {
  5599. border-top-style: solid;
  5600. border-width: 0.375rem;
  5601. top: 48%;
  5602. margin-left: -0.375rem;
  5603. }
  5604. /* line 166, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5605. .split.button span:after {
  5606. border-color: #FFFFFF transparent transparent transparent;
  5607. }
  5608. /* line 103, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5609. .split.button.secondary span {
  5610. border-left-color: rgba(255, 255, 255, 0.5);
  5611. }
  5612. /* line 166, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5613. .split.button.secondary span:after {
  5614. border-color: #FFFFFF transparent transparent transparent;
  5615. }
  5616. /* line 103, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5617. .split.button.alert span {
  5618. border-left-color: rgba(255, 255, 255, 0.5);
  5619. }
  5620. /* line 103, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5621. .split.button.success span {
  5622. border-left-color: rgba(255, 255, 255, 0.5);
  5623. }
  5624. /* line 179, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5625. .split.button.tiny {
  5626. padding-right: 3.75rem;
  5627. }
  5628. /* line 112, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5629. .split.button.tiny span {
  5630. width: 2.25rem;
  5631. }
  5632. /* line 113, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5633. .split.button.tiny span:after {
  5634. border-top-style: solid;
  5635. border-width: 0.375rem;
  5636. top: 48%;
  5637. margin-left: -0.375rem;
  5638. }
  5639. /* line 180, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5640. .split.button.small {
  5641. padding-right: 4.375rem;
  5642. }
  5643. /* line 126, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5644. .split.button.small span {
  5645. width: 2.625rem;
  5646. }
  5647. /* line 127, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5648. .split.button.small span:after {
  5649. border-top-style: solid;
  5650. border-width: 0.4375rem;
  5651. top: 48%;
  5652. margin-left: -0.375rem;
  5653. }
  5654. /* line 181, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5655. .split.button.large {
  5656. padding-right: 5.5rem;
  5657. }
  5658. /* line 154, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5659. .split.button.large span {
  5660. width: 3.4375rem;
  5661. }
  5662. /* line 155, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5663. .split.button.large span:after {
  5664. border-top-style: solid;
  5665. border-width: 0.3125rem;
  5666. top: 48%;
  5667. margin-left: -0.375rem;
  5668. }
  5669. /* line 182, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5670. .split.button.expand {
  5671. padding-left: 2rem;
  5672. }
  5673. /* line 166, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5674. .split.button.secondary span:after {
  5675. border-color: #333333 transparent transparent transparent;
  5676. }
  5677. /* line 186, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5678. .split.button.radius span {
  5679. -webkit-border-bottom-right-radius: 3px;
  5680. -webkit-border-top-right-radius: 3px;
  5681. border-bottom-right-radius: 3px;
  5682. border-top-right-radius: 3px;
  5683. }
  5684. /* line 187, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5685. .split.button.round span {
  5686. -webkit-border-bottom-right-radius: 1000px;
  5687. -webkit-border-top-right-radius: 1000px;
  5688. border-bottom-right-radius: 1000px;
  5689. border-top-right-radius: 1000px;
  5690. }
  5691. /* line 189, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5692. .split.button.no-pip span:before {
  5693. border-style: none;
  5694. }
  5695. /* line 190, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5696. .split.button.no-pip span:after {
  5697. border-style: none;
  5698. }
  5699. /* line 191, ../bower_components/foundation/scss/foundation/components/_split-buttons.scss */
  5700. .split.button.no-pip span > i {
  5701. top: 50%;
  5702. display: block;
  5703. position: absolute;
  5704. left: 50%;
  5705. margin-left: -0.28889em;
  5706. margin-top: -0.48889em;
  5707. }
  5708. /* line 120, ../bower_components/foundation/scss/foundation/components/_sub-nav.scss */
  5709. .sub-nav {
  5710. display: block;
  5711. width: auto;
  5712. overflow: hidden;
  5713. margin-bottom: -0.25rem 0 1.125rem;
  5714. padding-top: 0.25rem;
  5715. }
  5716. /* line 67, ../bower_components/foundation/scss/foundation/components/_sub-nav.scss */
  5717. .sub-nav dt {
  5718. text-transform: uppercase;
  5719. }
  5720. /* line 71, ../bower_components/foundation/scss/foundation/components/_sub-nav.scss */
  5721. .sub-nav dt,
  5722. .sub-nav dd,
  5723. .sub-nav li {
  5724. float: left;
  5725. margin-left: 1rem;
  5726. margin-bottom: 0;
  5727. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5728. font-weight: normal;
  5729. font-size: 0.875rem;
  5730. color: #999999;
  5731. }
  5732. /* line 82, ../bower_components/foundation/scss/foundation/components/_sub-nav.scss */
  5733. .sub-nav dt a,
  5734. .sub-nav dd a,
  5735. .sub-nav li a {
  5736. text-decoration: none;
  5737. color: #999999;
  5738. padding: 0.1875rem 1rem;
  5739. }
  5740. /* line 86, ../bower_components/foundation/scss/foundation/components/_sub-nav.scss */
  5741. .sub-nav dt a:hover,
  5742. .sub-nav dd a:hover,
  5743. .sub-nav li a:hover {
  5744. color: #737373;
  5745. }
  5746. /* line 91, ../bower_components/foundation/scss/foundation/components/_sub-nav.scss */
  5747. .sub-nav dt.active a,
  5748. .sub-nav dd.active a,
  5749. .sub-nav li.active a {
  5750. border-radius: 3px;
  5751. font-weight: normal;
  5752. background: #008CBA;
  5753. padding: 0.1875rem 1rem;
  5754. cursor: default;
  5755. color: #FFFFFF;
  5756. }
  5757. /* line 98, ../bower_components/foundation/scss/foundation/components/_sub-nav.scss */
  5758. .sub-nav dt.active a:hover,
  5759. .sub-nav dd.active a:hover,
  5760. .sub-nav li.active a:hover {
  5761. background: #0078a0;
  5762. }
  5763. /* line 212, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5764. .switch {
  5765. padding: 0;
  5766. border: none;
  5767. position: relative;
  5768. outline: 0;
  5769. -webkit-user-select: none;
  5770. -moz-user-select: none;
  5771. -ms-user-select: none;
  5772. user-select: none;
  5773. }
  5774. /* line 56, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5775. .switch label {
  5776. display: block;
  5777. margin-bottom: 1rem;
  5778. position: relative;
  5779. color: transparent;
  5780. background: #DDDDDD;
  5781. text-indent: 100%;
  5782. width: 4rem;
  5783. height: 2rem;
  5784. cursor: pointer;
  5785. -webkit-transition: left 0.15s ease-out;
  5786. transition: left 0.15s ease-out;
  5787. }
  5788. /* line 72, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5789. .switch input {
  5790. opacity: 0;
  5791. position: absolute;
  5792. top: 9px;
  5793. left: 10px;
  5794. padding: 0;
  5795. }
  5796. /* line 79, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5797. .switch input + label {
  5798. margin-left: 0;
  5799. margin-right: 0;
  5800. }
  5801. /* line 86, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5802. .switch label:after {
  5803. content: "";
  5804. display: block;
  5805. background: #FFFFFF;
  5806. position: absolute;
  5807. top: .25rem;
  5808. left: .25rem;
  5809. width: 1.5rem;
  5810. height: 1.5rem;
  5811. -webkit-transition: left 0.15s ease-out;
  5812. transition: left 0.15s ease-out;
  5813. -webkit-transform: translate3d(0, 0, 0);
  5814. transform: translate3d(0, 0, 0);
  5815. }
  5816. /* line 107, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5817. .switch input:checked + label {
  5818. background: #008CBA;
  5819. }
  5820. /* line 111, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5821. .switch input:checked + label:after {
  5822. left: 2.25rem;
  5823. }
  5824. /* line 123, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5825. .switch label {
  5826. width: 4rem;
  5827. height: 2rem;
  5828. }
  5829. /* line 128, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5830. .switch label:after {
  5831. width: 1.5rem;
  5832. height: 1.5rem;
  5833. }
  5834. /* line 133, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5835. .switch input:checked + label:after {
  5836. left: 2.25rem;
  5837. }
  5838. /* line 154, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5839. .switch label {
  5840. color: transparent;
  5841. background: #DDDDDD;
  5842. }
  5843. /* line 159, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5844. .switch label:after {
  5845. background: #FFFFFF;
  5846. }
  5847. /* line 163, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5848. .switch input:checked + label {
  5849. background: #008CBA;
  5850. }
  5851. /* line 123, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5852. .switch.large label {
  5853. width: 5rem;
  5854. height: 2.5rem;
  5855. }
  5856. /* line 128, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5857. .switch.large label:after {
  5858. width: 2rem;
  5859. height: 2rem;
  5860. }
  5861. /* line 133, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5862. .switch.large input:checked + label:after {
  5863. left: 2.75rem;
  5864. }
  5865. /* line 123, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5866. .switch.small label {
  5867. width: 3.5rem;
  5868. height: 1.75rem;
  5869. }
  5870. /* line 128, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5871. .switch.small label:after {
  5872. width: 1.25rem;
  5873. height: 1.25rem;
  5874. }
  5875. /* line 133, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5876. .switch.small input:checked + label:after {
  5877. left: 2rem;
  5878. }
  5879. /* line 123, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5880. .switch.tiny label {
  5881. width: 3rem;
  5882. height: 1.5rem;
  5883. }
  5884. /* line 128, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5885. .switch.tiny label:after {
  5886. width: 1rem;
  5887. height: 1rem;
  5888. }
  5889. /* line 133, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5890. .switch.tiny input:checked + label:after {
  5891. left: 1.75rem;
  5892. }
  5893. /* line 226, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5894. .switch.radius label {
  5895. border-radius: 4px;
  5896. }
  5897. /* line 227, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5898. .switch.radius label:after {
  5899. border-radius: 3px;
  5900. }
  5901. /* line 231, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5902. .switch.round {
  5903. border-radius: 1000px;
  5904. }
  5905. /* line 232, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5906. .switch.round label {
  5907. border-radius: 2rem;
  5908. }
  5909. /* line 233, ../bower_components/foundation/scss/foundation/components/_switches.scss */
  5910. .switch.round label:after {
  5911. border-radius: 2rem;
  5912. }
  5913. /* line 131, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5914. table {
  5915. background: #FFFFFF;
  5916. margin-bottom: 1.25rem;
  5917. border: solid 1px #DDDDDD;
  5918. table-layout: auto;
  5919. }
  5920. /* line 69, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5921. table caption {
  5922. background: transparent;
  5923. color: #222222;
  5924. font-size: 1rem;
  5925. font-weight: bold;
  5926. }
  5927. /* line 78, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5928. table thead {
  5929. background: #F5F5F5;
  5930. }
  5931. /* line 82, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5932. table thead tr th,
  5933. table thead tr td {
  5934. padding: 0.5rem 0.625rem 0.625rem;
  5935. font-size: 0.875rem;
  5936. font-weight: bold;
  5937. color: #222222;
  5938. }
  5939. /* line 92, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5940. table tfoot {
  5941. background: #F5F5F5;
  5942. }
  5943. /* line 96, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5944. table tfoot tr th,
  5945. table tfoot tr td {
  5946. padding: 0.5rem 0.625rem 0.625rem;
  5947. font-size: 0.875rem;
  5948. font-weight: bold;
  5949. color: #222222;
  5950. }
  5951. /* line 107, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5952. table tr th,
  5953. table tr td {
  5954. padding: 0.5625rem 0.625rem;
  5955. font-size: 0.875rem;
  5956. color: #222222;
  5957. text-align: left;
  5958. }
  5959. /* line 115, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5960. table tr.even, table tr.alt, table tr:nth-of-type(even) {
  5961. background: #F9F9F9;
  5962. }
  5963. /* line 120, ../bower_components/foundation/scss/foundation/components/_tables.scss */
  5964. table thead tr th,
  5965. table tfoot tr th,
  5966. table tfoot tr td,
  5967. table tbody tr th,
  5968. table tbody tr td,
  5969. table tr td {
  5970. display: table-cell;
  5971. line-height: 1.125rem;
  5972. }
  5973. /* line 30, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  5974. .tabs {
  5975. margin-bottom: 0 !important;
  5976. margin-left: 0;
  5977. }
  5978. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  5979. .tabs:before, .tabs:after {
  5980. content: " ";
  5981. display: table;
  5982. }
  5983. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  5984. .tabs:after {
  5985. clear: both;
  5986. }
  5987. /* line 34, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  5988. .tabs dd, .tabs .tab-title {
  5989. position: relative;
  5990. margin-bottom: 0 !important;
  5991. list-style: none;
  5992. float: left;
  5993. }
  5994. /* line 39, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  5995. .tabs dd > a, .tabs .tab-title > a {
  5996. display: block;
  5997. background-color: #EFEFEF;
  5998. color: #222222;
  5999. padding: 1rem 2rem;
  6000. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6001. font-size: 1rem;
  6002. }
  6003. /* line 48, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6004. .tabs dd > a:hover, .tabs .tab-title > a:hover {
  6005. background-color: #e1e1e1;
  6006. }
  6007. /* line 53, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6008. .tabs dd > a:focus, .tabs .tab-title > a:focus {
  6009. outline: none;
  6010. }
  6011. /* line 57, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6012. .tabs dd.active a, .tabs .tab-title.active a {
  6013. background-color: #FFFFFF;
  6014. color: #222222;
  6015. }
  6016. /* line 66, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6017. .tabs.radius dd:first-child a, .tabs.radius .tab:first-child a {
  6018. -webkit-border-bottom-left-radius: 3px;
  6019. -webkit-border-top-left-radius: 3px;
  6020. border-bottom-left-radius: 3px;
  6021. border-top-left-radius: 3px;
  6022. }
  6023. /* line 69, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6024. .tabs.radius dd:last-child a, .tabs.radius .tab:last-child a {
  6025. -webkit-border-bottom-right-radius: 3px;
  6026. -webkit-border-top-right-radius: 3px;
  6027. border-bottom-right-radius: 3px;
  6028. border-top-right-radius: 3px;
  6029. }
  6030. /* line 73, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6031. .tabs.vertical dd, .tabs.vertical .tab-title {
  6032. position: inherit;
  6033. float: none;
  6034. display: block;
  6035. top: auto;
  6036. }
  6037. /* line 82, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6038. .tabs-content {
  6039. margin-bottom: 1.5rem;
  6040. width: 100%;
  6041. }
  6042. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  6043. .tabs-content:before, .tabs-content:after {
  6044. content: " ";
  6045. display: table;
  6046. }
  6047. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  6048. .tabs-content:after {
  6049. clear: both;
  6050. }
  6051. /* line 86, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6052. .tabs-content > .content {
  6053. display: none;
  6054. float: left;
  6055. padding: 0.9375rem 0;
  6056. width: 100%;
  6057. }
  6058. /* line 91, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6059. .tabs-content > .content.active {
  6060. display: block;
  6061. float: none;
  6062. }
  6063. /* line 92, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6064. .tabs-content > .content.contained {
  6065. padding: 0.9375rem;
  6066. }
  6067. /* line 94, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6068. .tabs-content.vertical {
  6069. display: block;
  6070. }
  6071. /* line 96, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6072. .tabs-content.vertical > .content {
  6073. padding: 0 0.9375rem;
  6074. }
  6075. @media only screen and (min-width: 40.063em) {
  6076. /* line 101, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6077. .tabs.vertical {
  6078. width: 20%;
  6079. max-width: 20%;
  6080. float: left;
  6081. margin: 0 0 1.25rem;
  6082. }
  6083. /* line 109, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6084. .tabs-content.vertical {
  6085. width: 80%;
  6086. max-width: 80%;
  6087. float: left;
  6088. margin-left: -1px;
  6089. padding-left: 1rem;
  6090. }
  6091. }
  6092. /* line 119, ../bower_components/foundation/scss/foundation/components/_tabs.scss */
  6093. .no-js .tabs-content > .content {
  6094. display: block;
  6095. float: none;
  6096. }
  6097. /* Image Thumbnails */
  6098. /* line 59, ../bower_components/foundation/scss/foundation/components/_thumbs.scss */
  6099. .th {
  6100. line-height: 0;
  6101. display: inline-block;
  6102. border: solid 4px #FFFFFF;
  6103. max-width: 100%;
  6104. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  6105. -webkit-transition: all 200ms ease-out;
  6106. transition: all 200ms ease-out;
  6107. }
  6108. /* line 48, ../bower_components/foundation/scss/foundation/components/_thumbs.scss */
  6109. .th:hover, .th:focus {
  6110. box-shadow: 0 0 6px 1px rgba(0, 140, 186, 0.5);
  6111. }
  6112. /* line 63, ../bower_components/foundation/scss/foundation/components/_thumbs.scss */
  6113. .th.radius {
  6114. border-radius: 3px;
  6115. }
  6116. /* Tooltips */
  6117. /* line 38, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6118. .has-tip {
  6119. border-bottom: dotted 1px #CCCCCC;
  6120. cursor: help;
  6121. font-weight: bold;
  6122. color: #333333;
  6123. }
  6124. /* line 44, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6125. .has-tip:hover, .has-tip:focus {
  6126. border-bottom: dotted 1px #003f54;
  6127. color: #008CBA;
  6128. }
  6129. /* line 50, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6130. .has-tip.tip-left, .has-tip.tip-right {
  6131. float: none !important;
  6132. }
  6133. /* line 54, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6134. .tooltip {
  6135. display: none;
  6136. position: absolute;
  6137. z-index: 1006;
  6138. font-weight: normal;
  6139. font-size: 0.875rem;
  6140. line-height: 1.3;
  6141. padding: 0.75rem;
  6142. max-width: 300px;
  6143. left: 50%;
  6144. width: 100%;
  6145. color: #FFFFFF;
  6146. background: #333333;
  6147. }
  6148. /* line 68, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6149. .tooltip > .nub {
  6150. display: block;
  6151. left: 5px;
  6152. position: absolute;
  6153. width: 0;
  6154. height: 0;
  6155. border: solid 5px;
  6156. border-color: transparent transparent #333333 transparent;
  6157. top: -10px;
  6158. pointer-events: none;
  6159. }
  6160. /* line 79, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6161. .tooltip > .nub.rtl {
  6162. left: auto;
  6163. right: 5px;
  6164. }
  6165. /* line 85, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6166. .tooltip.radius {
  6167. border-radius: 3px;
  6168. }
  6169. /* line 88, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6170. .tooltip.round {
  6171. border-radius: 1000px;
  6172. }
  6173. /* line 90, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6174. .tooltip.round > .nub {
  6175. left: 2rem;
  6176. }
  6177. /* line 95, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6178. .tooltip.opened {
  6179. color: #008CBA !important;
  6180. border-bottom: dotted 1px #003f54 !important;
  6181. }
  6182. /* line 101, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6183. .tap-to-close {
  6184. display: block;
  6185. font-size: 0.625rem;
  6186. color: #777777;
  6187. font-weight: normal;
  6188. }
  6189. @media only screen and (min-width: 40.063em) {
  6190. /* line 110, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6191. .tooltip > .nub {
  6192. border-color: transparent transparent #333333 transparent;
  6193. top: -10px;
  6194. }
  6195. /* line 114, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6196. .tooltip.tip-top > .nub {
  6197. border-color: #333333 transparent transparent transparent;
  6198. top: auto;
  6199. bottom: -10px;
  6200. }
  6201. /* line 120, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6202. .tooltip.tip-left, .tooltip.tip-right {
  6203. float: none !important;
  6204. }
  6205. /* line 123, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6206. .tooltip.tip-left > .nub {
  6207. border-color: transparent transparent transparent #333333;
  6208. right: -10px;
  6209. left: auto;
  6210. top: 50%;
  6211. margin-top: -5px;
  6212. }
  6213. /* line 130, ../bower_components/foundation/scss/foundation/components/_tooltips.scss */
  6214. .tooltip.tip-right > .nub {
  6215. border-color: transparent #333333 transparent transparent;
  6216. right: auto;
  6217. left: -10px;
  6218. top: 50%;
  6219. margin-top: -5px;
  6220. }
  6221. }
  6222. /* line 113, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6223. meta.foundation-mq-topbar {
  6224. font-family: "/only screen and (min-width:40.063em)/";
  6225. width: 40.063em;
  6226. }
  6227. /* Wrapped around .top-bar to contain to grid width */
  6228. /* line 119, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6229. .contain-to-grid {
  6230. width: 100%;
  6231. background: #333333;
  6232. }
  6233. /* line 123, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6234. .contain-to-grid .top-bar {
  6235. margin-bottom: 0;
  6236. }
  6237. /* line 127, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6238. .fixed {
  6239. width: 100%;
  6240. left: 0;
  6241. position: fixed;
  6242. top: 0;
  6243. z-index: 99;
  6244. }
  6245. /* line 134, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6246. .fixed.expanded:not(.top-bar) {
  6247. overflow-y: auto;
  6248. height: auto;
  6249. width: 100%;
  6250. max-height: 100%;
  6251. }
  6252. /* line 140, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6253. .fixed.expanded:not(.top-bar) .title-area {
  6254. position: fixed;
  6255. width: 100%;
  6256. z-index: 99;
  6257. }
  6258. /* line 146, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6259. .fixed.expanded:not(.top-bar) .top-bar-section {
  6260. z-index: 98;
  6261. margin-top: 2.8125rem;
  6262. }
  6263. /* line 153, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6264. .top-bar {
  6265. overflow: hidden;
  6266. height: 2.8125rem;
  6267. line-height: 2.8125rem;
  6268. position: relative;
  6269. background: #333333;
  6270. margin-bottom: 0;
  6271. }
  6272. /* line 162, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6273. .top-bar ul {
  6274. margin-bottom: 0;
  6275. list-style: none;
  6276. }
  6277. /* line 167, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6278. .top-bar .row {
  6279. max-width: none;
  6280. }
  6281. /* line 169, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6282. .top-bar form,
  6283. .top-bar input {
  6284. margin-bottom: 0;
  6285. }
  6286. /* line 172, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6287. .top-bar input {
  6288. height: 1.75rem;
  6289. padding-top: .35rem;
  6290. padding-bottom: .35rem;
  6291. font-size: 0.75rem;
  6292. }
  6293. /* line 179, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6294. .top-bar .button, .top-bar button {
  6295. padding-top: 0.4125rem;
  6296. padding-bottom: 0.4125rem;
  6297. margin-bottom: 0;
  6298. font-size: 0.75rem;
  6299. }
  6300. @media only screen and (max-width: 40em) {
  6301. /* line 179, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6302. .top-bar .button, .top-bar button {
  6303. position: relative;
  6304. top: -1px;
  6305. }
  6306. }
  6307. /* line 195, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6308. .top-bar .title-area {
  6309. position: relative;
  6310. margin: 0;
  6311. }
  6312. /* line 200, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6313. .top-bar .name {
  6314. height: 2.8125rem;
  6315. margin: 0;
  6316. font-size: 16px;
  6317. }
  6318. /* line 206, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6319. .top-bar .name h1, .top-bar .name h2, .top-bar .name h3, .top-bar .name h4, .top-bar .name p, .top-bar .name span {
  6320. line-height: 2.8125rem;
  6321. font-size: 1.0625rem;
  6322. margin: 0;
  6323. }
  6324. /* line 210, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6325. .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 {
  6326. font-weight: normal;
  6327. color: #FFFFFF;
  6328. width: 75%;
  6329. display: block;
  6330. padding: 0 0.9375rem;
  6331. }
  6332. /* line 221, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6333. .top-bar .toggle-topbar {
  6334. position: absolute;
  6335. right: 0;
  6336. top: 0;
  6337. }
  6338. /* line 226, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6339. .top-bar .toggle-topbar a {
  6340. color: #FFFFFF;
  6341. text-transform: uppercase;
  6342. font-size: 0.8125rem;
  6343. font-weight: bold;
  6344. position: relative;
  6345. display: block;
  6346. padding: 0 0.9375rem;
  6347. height: 2.8125rem;
  6348. line-height: 2.8125rem;
  6349. }
  6350. /* line 239, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6351. .top-bar .toggle-topbar.menu-icon {
  6352. top: 50%;
  6353. margin-top: -16px;
  6354. }
  6355. /* line 243, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6356. .top-bar .toggle-topbar.menu-icon a {
  6357. height: 34px;
  6358. line-height: 33px;
  6359. padding: 0 2.5rem 0 0.9375rem;
  6360. color: #FFFFFF;
  6361. position: relative;
  6362. }
  6363. /* line 129, ../bower_components/foundation/scss/foundation/components/_global.scss */
  6364. .top-bar .toggle-topbar.menu-icon a span::after {
  6365. content: "";
  6366. position: absolute;
  6367. display: block;
  6368. height: 0;
  6369. top: 50%;
  6370. margin-top: -8px;
  6371. right: 0.9375rem;
  6372. box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  6373. width: 16px;
  6374. }
  6375. /* line 162, ../bower_components/foundation/scss/foundation/components/_global.scss */
  6376. .top-bar .toggle-topbar.menu-icon a span:hover:after {
  6377. box-shadow: 0 0 0 1px "", 0 7px 0 1px "", 0 14px 0 1px "";
  6378. }
  6379. /* line 272, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6380. .top-bar.expanded {
  6381. height: auto;
  6382. background: transparent;
  6383. }
  6384. /* line 276, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6385. .top-bar.expanded .title-area {
  6386. background: #333333;
  6387. }
  6388. /* line 279, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6389. .top-bar.expanded .toggle-topbar a {
  6390. color: #888888;
  6391. }
  6392. /* line 280, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6393. .top-bar.expanded .toggle-topbar a span::after {
  6394. box-shadow: 0 0 0 1px #888888, 0 7px 0 1px #888888, 0 14px 0 1px #888888;
  6395. }
  6396. /* line 293, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6397. .top-bar-section {
  6398. left: 0;
  6399. position: relative;
  6400. width: auto;
  6401. -webkit-transition: left 300ms ease-out;
  6402. transition: left 300ms ease-out;
  6403. }
  6404. /* line 299, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6405. .top-bar-section ul {
  6406. padding: 0;
  6407. width: 100%;
  6408. height: auto;
  6409. display: block;
  6410. font-size: 16px;
  6411. margin: 0;
  6412. }
  6413. /* line 308, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6414. .top-bar-section .divider,
  6415. .top-bar-section [role="separator"] {
  6416. border-top: solid 1px #1a1a1a;
  6417. clear: both;
  6418. height: 1px;
  6419. width: 100%;
  6420. }
  6421. /* line 316, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6422. .top-bar-section ul li {
  6423. background: #333333;
  6424. }
  6425. /* line 318, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6426. .top-bar-section ul li > a {
  6427. display: block;
  6428. width: 100%;
  6429. color: #FFFFFF;
  6430. padding: 12px 0 12px 0;
  6431. padding-left: 0.9375rem;
  6432. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6433. font-size: 0.8125rem;
  6434. font-weight: normal;
  6435. text-transform: none;
  6436. }
  6437. /* line 329, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6438. .top-bar-section ul li > a.button {
  6439. font-size: 0.8125rem;
  6440. padding-right: 0.9375rem;
  6441. padding-left: 0.9375rem;
  6442. background-color: #008CBA;
  6443. border-color: #007095;
  6444. color: #FFFFFF;
  6445. }
  6446. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6447. .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  6448. background-color: #007095;
  6449. }
  6450. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6451. .top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  6452. color: #FFFFFF;
  6453. }
  6454. /* line 335, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6455. .top-bar-section ul li > a.button.secondary {
  6456. background-color: #e7e7e7;
  6457. border-color: #b9b9b9;
  6458. color: #333333;
  6459. }
  6460. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6461. .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  6462. background-color: #b9b9b9;
  6463. }
  6464. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6465. .top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  6466. color: #333333;
  6467. }
  6468. /* line 336, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6469. .top-bar-section ul li > a.button.success {
  6470. background-color: #43AC6A;
  6471. border-color: #368a55;
  6472. color: #FFFFFF;
  6473. }
  6474. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6475. .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  6476. background-color: #368a55;
  6477. }
  6478. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6479. .top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  6480. color: #FFFFFF;
  6481. }
  6482. /* line 337, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6483. .top-bar-section ul li > a.button.alert {
  6484. background-color: #f04124;
  6485. border-color: #cf2a0e;
  6486. color: #FFFFFF;
  6487. }
  6488. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6489. .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  6490. background-color: #cf2a0e;
  6491. }
  6492. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6493. .top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  6494. color: #FFFFFF;
  6495. }
  6496. /* line 338, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6497. .top-bar-section ul li > a.button.warning {
  6498. background-color: #f08a24;
  6499. border-color: #cf6e0e;
  6500. color: #FFFFFF;
  6501. }
  6502. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6503. .top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  6504. background-color: #cf6e0e;
  6505. }
  6506. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6507. .top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  6508. color: #FFFFFF;
  6509. }
  6510. /* line 341, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6511. .top-bar-section ul li > button {
  6512. font-size: 0.8125rem;
  6513. padding-right: 0.9375rem;
  6514. padding-left: 0.9375rem;
  6515. background-color: #008CBA;
  6516. border-color: #007095;
  6517. color: #FFFFFF;
  6518. }
  6519. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6520. .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  6521. background-color: #007095;
  6522. }
  6523. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6524. .top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  6525. color: #FFFFFF;
  6526. }
  6527. /* line 347, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6528. .top-bar-section ul li > button.secondary {
  6529. background-color: #e7e7e7;
  6530. border-color: #b9b9b9;
  6531. color: #333333;
  6532. }
  6533. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6534. .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  6535. background-color: #b9b9b9;
  6536. }
  6537. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6538. .top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  6539. color: #333333;
  6540. }
  6541. /* line 348, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6542. .top-bar-section ul li > button.success {
  6543. background-color: #43AC6A;
  6544. border-color: #368a55;
  6545. color: #FFFFFF;
  6546. }
  6547. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6548. .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  6549. background-color: #368a55;
  6550. }
  6551. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6552. .top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  6553. color: #FFFFFF;
  6554. }
  6555. /* line 349, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6556. .top-bar-section ul li > button.alert {
  6557. background-color: #f04124;
  6558. border-color: #cf2a0e;
  6559. color: #FFFFFF;
  6560. }
  6561. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6562. .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  6563. background-color: #cf2a0e;
  6564. }
  6565. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6566. .top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  6567. color: #FFFFFF;
  6568. }
  6569. /* line 350, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6570. .top-bar-section ul li > button.warning {
  6571. background-color: #f08a24;
  6572. border-color: #cf6e0e;
  6573. color: #FFFFFF;
  6574. }
  6575. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6576. .top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  6577. background-color: #cf6e0e;
  6578. }
  6579. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6580. .top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  6581. color: #FFFFFF;
  6582. }
  6583. /* line 354, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6584. .top-bar-section ul li:hover:not(.has-form) > a {
  6585. background-color: #555555;
  6586. background: #333333;
  6587. color: #FFFFFF;
  6588. }
  6589. /* line 363, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6590. .top-bar-section ul li.active > a {
  6591. background: #008CBA;
  6592. color: #FFFFFF;
  6593. }
  6594. /* line 366, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6595. .top-bar-section ul li.active > a:hover {
  6596. background: #0078a0;
  6597. color: #FFFFFF;
  6598. }
  6599. /* line 374, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6600. .top-bar-section .has-form {
  6601. padding: 0.9375rem;
  6602. }
  6603. /* line 377, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6604. .top-bar-section .has-dropdown {
  6605. position: relative;
  6606. }
  6607. /* line 381, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6608. .top-bar-section .has-dropdown > a:after {
  6609. content: "";
  6610. display: block;
  6611. width: 0;
  6612. height: 0;
  6613. border: inset 5px;
  6614. border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  6615. border-left-style: solid;
  6616. margin-right: 0.9375rem;
  6617. margin-top: -4.5px;
  6618. position: absolute;
  6619. top: 50%;
  6620. right: 0;
  6621. }
  6622. /* line 393, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6623. .top-bar-section .has-dropdown.moved {
  6624. position: static;
  6625. }
  6626. /* line 394, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6627. .top-bar-section .has-dropdown.moved > .dropdown {
  6628. display: block;
  6629. position: static !important;
  6630. height: auto;
  6631. width: auto;
  6632. overflow: visible;
  6633. clip: auto;
  6634. position: absolute !important;
  6635. width: 100%;
  6636. }
  6637. /* line 398, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6638. .top-bar-section .has-dropdown.moved > a:after {
  6639. display: none;
  6640. }
  6641. /* line 405, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6642. .top-bar-section .dropdown {
  6643. padding: 0;
  6644. position: absolute;
  6645. left: 100%;
  6646. top: 0;
  6647. z-index: 99;
  6648. display: block;
  6649. position: absolute !important;
  6650. height: 1px;
  6651. width: 1px;
  6652. overflow: hidden;
  6653. clip: rect(1px, 1px, 1px, 1px);
  6654. }
  6655. /* line 413, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6656. .top-bar-section .dropdown li {
  6657. width: 100%;
  6658. height: auto;
  6659. }
  6660. /* line 417, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6661. .top-bar-section .dropdown li a {
  6662. font-weight: normal;
  6663. padding: 8px 0.9375rem;
  6664. }
  6665. /* line 420, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6666. .top-bar-section .dropdown li a.parent-link {
  6667. font-weight: normal;
  6668. }
  6669. /* line 425, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6670. .top-bar-section .dropdown li.title h5, .top-bar-section .dropdown li.parent-link {
  6671. margin-bottom: 0;
  6672. margin-top: 0;
  6673. font-size: 1.125rem;
  6674. }
  6675. /* line 430, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6676. .top-bar-section .dropdown li.title h5 a, .top-bar-section .dropdown li.parent-link a {
  6677. color: #FFFFFF;
  6678. display: block;
  6679. }
  6680. /* line 434, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6681. .top-bar-section .dropdown li.title h5 a:hover, .top-bar-section .dropdown li.parent-link a:hover {
  6682. background: none;
  6683. }
  6684. /* line 437, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6685. .top-bar-section .dropdown li.has-form {
  6686. padding: 8px 0.9375rem;
  6687. }
  6688. /* line 438, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6689. .top-bar-section .dropdown li .button, .top-bar-section .dropdown li button {
  6690. top: auto;
  6691. }
  6692. /* line 441, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6693. .top-bar-section .dropdown label {
  6694. padding: 8px 0.9375rem 2px;
  6695. margin-bottom: 0;
  6696. text-transform: uppercase;
  6697. color: #777777;
  6698. font-weight: bold;
  6699. font-size: 0.625rem;
  6700. }
  6701. /* line 452, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6702. .js-generated {
  6703. display: block;
  6704. }
  6705. @media only screen and (min-width: 40.063em) {
  6706. /* line 457, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6707. .top-bar {
  6708. background: #333333;
  6709. overflow: visible;
  6710. }
  6711. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  6712. .top-bar:before, .top-bar:after {
  6713. content: " ";
  6714. display: table;
  6715. }
  6716. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  6717. .top-bar:after {
  6718. clear: both;
  6719. }
  6720. /* line 462, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6721. .top-bar .toggle-topbar {
  6722. display: none;
  6723. }
  6724. /* line 464, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6725. .top-bar .title-area {
  6726. float: left;
  6727. }
  6728. /* line 465, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6729. .top-bar .name h1 a,
  6730. .top-bar .name h2 a,
  6731. .top-bar .name h3 a,
  6732. .top-bar .name h4 a,
  6733. .top-bar .name h5 a,
  6734. .top-bar .name h6 a {
  6735. width: auto;
  6736. }
  6737. /* line 472, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6738. .top-bar input,
  6739. .top-bar .button,
  6740. .top-bar button {
  6741. font-size: 0.875rem;
  6742. position: relative;
  6743. height: 1.75rem;
  6744. top: 0.53125rem;
  6745. }
  6746. /* line 481, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6747. .top-bar.expanded {
  6748. background: #333333;
  6749. }
  6750. /* line 484, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6751. .contain-to-grid .top-bar {
  6752. max-width: 62.5rem;
  6753. margin: 0 auto;
  6754. margin-bottom: 0;
  6755. }
  6756. /* line 490, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6757. .top-bar-section {
  6758. -webkit-transition: none 0 0;
  6759. transition: none 0 0;
  6760. left: 0 !important;
  6761. }
  6762. /* line 494, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6763. .top-bar-section ul {
  6764. width: auto;
  6765. height: auto !important;
  6766. display: inline;
  6767. }
  6768. /* line 499, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6769. .top-bar-section ul li {
  6770. float: left;
  6771. }
  6772. /* line 501, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6773. .top-bar-section ul li .js-generated {
  6774. display: none;
  6775. }
  6776. /* line 507, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6777. .top-bar-section li.hover > a:not(.button) {
  6778. background-color: #555555;
  6779. background: #333333;
  6780. color: #FFFFFF;
  6781. }
  6782. /* line 516, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6783. .top-bar-section li:not(.has-form) a:not(.button) {
  6784. padding: 0 0.9375rem;
  6785. line-height: 2.8125rem;
  6786. background: #333333;
  6787. }
  6788. /* line 520, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6789. .top-bar-section li:not(.has-form) a:not(.button):hover {
  6790. background-color: #555555;
  6791. background: #333333;
  6792. }
  6793. /* line 529, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6794. .top-bar-section li.active:not(.has-form) a:not(.button) {
  6795. padding: 0 0.9375rem;
  6796. line-height: 2.8125rem;
  6797. color: #FFFFFF;
  6798. background: #008CBA;
  6799. }
  6800. /* line 534, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6801. .top-bar-section li.active:not(.has-form) a:not(.button):hover {
  6802. background: #0078a0;
  6803. color: #FFFFFF;
  6804. }
  6805. /* line 544, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6806. .top-bar-section .has-dropdown > a {
  6807. padding-right: 2.1875rem !important;
  6808. }
  6809. /* line 546, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6810. .top-bar-section .has-dropdown > a:after {
  6811. content: "";
  6812. display: block;
  6813. width: 0;
  6814. height: 0;
  6815. border: inset 5px;
  6816. border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
  6817. border-top-style: solid;
  6818. margin-top: -2.5px;
  6819. top: 1.40625rem;
  6820. }
  6821. /* line 554, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6822. .top-bar-section .has-dropdown.moved {
  6823. position: relative;
  6824. }
  6825. /* line 555, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6826. .top-bar-section .has-dropdown.moved > .dropdown {
  6827. display: block;
  6828. position: absolute !important;
  6829. height: 1px;
  6830. width: 1px;
  6831. overflow: hidden;
  6832. clip: rect(1px, 1px, 1px, 1px);
  6833. }
  6834. /* line 561, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6835. .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
  6836. display: block;
  6837. position: static !important;
  6838. height: auto;
  6839. width: auto;
  6840. overflow: visible;
  6841. clip: auto;
  6842. position: absolute !important;
  6843. }
  6844. /* line 565, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6845. .top-bar-section .has-dropdown > a:focus + .dropdown {
  6846. display: block;
  6847. position: static !important;
  6848. height: auto;
  6849. width: auto;
  6850. overflow: visible;
  6851. clip: auto;
  6852. position: absolute !important;
  6853. }
  6854. /* line 572, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6855. .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
  6856. border: none;
  6857. content: "\00bb";
  6858. top: 1rem;
  6859. margin-top: -1px;
  6860. right: 5px;
  6861. line-height: 1.2;
  6862. }
  6863. /* line 585, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6864. .top-bar-section .dropdown {
  6865. left: 0;
  6866. top: auto;
  6867. background: transparent;
  6868. min-width: 100%;
  6869. }
  6870. /* line 592, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6871. .top-bar-section .dropdown li a {
  6872. color: #FFFFFF;
  6873. line-height: 2.8125rem;
  6874. white-space: nowrap;
  6875. padding: 12px 0.9375rem;
  6876. background: #333333;
  6877. }
  6878. /* line 601, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6879. .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
  6880. color: #FFFFFF;
  6881. background: #333333;
  6882. }
  6883. /* line 606, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6884. .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
  6885. color: #FFFFFF;
  6886. background-color: #555555;
  6887. background: #333333;
  6888. }
  6889. /* line 615, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6890. .top-bar-section .dropdown li label {
  6891. white-space: nowrap;
  6892. background: #333333;
  6893. }
  6894. /* line 621, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6895. .top-bar-section .dropdown li .dropdown {
  6896. left: 100%;
  6897. top: 0;
  6898. }
  6899. /* line 628, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6900. .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
  6901. border-bottom: none;
  6902. border-top: none;
  6903. border-right: solid 1px #4e4e4e;
  6904. clear: none;
  6905. height: 2.8125rem;
  6906. width: 0;
  6907. }
  6908. /* line 638, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6909. .top-bar-section .has-form {
  6910. background: #333333;
  6911. padding: 0 0.9375rem;
  6912. height: 2.8125rem;
  6913. }
  6914. /* line 646, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6915. .top-bar-section .right li .dropdown {
  6916. left: auto;
  6917. right: 0;
  6918. }
  6919. /* line 650, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6920. .top-bar-section .right li .dropdown li .dropdown {
  6921. right: 100%;
  6922. }
  6923. /* line 654, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6924. .top-bar-section .left li .dropdown {
  6925. right: auto;
  6926. left: 0;
  6927. }
  6928. /* line 658, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6929. .top-bar-section .left li .dropdown li .dropdown {
  6930. left: 100%;
  6931. }
  6932. /* line 668, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6933. .no-js .top-bar-section ul li:hover > a {
  6934. background-color: #555555;
  6935. background: #333333;
  6936. color: #FFFFFF;
  6937. }
  6938. /* line 677, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6939. .no-js .top-bar-section ul li:active > a {
  6940. background: #008CBA;
  6941. color: #FFFFFF;
  6942. }
  6943. /* line 685, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6944. .no-js .top-bar-section .has-dropdown:hover > .dropdown {
  6945. display: block;
  6946. position: static !important;
  6947. height: auto;
  6948. width: auto;
  6949. overflow: visible;
  6950. clip: auto;
  6951. position: absolute !important;
  6952. }
  6953. /* line 689, ../bower_components/foundation/scss/foundation/components/_top-bar.scss */
  6954. .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
  6955. display: block;
  6956. position: static !important;
  6957. height: auto;
  6958. width: auto;
  6959. overflow: visible;
  6960. clip: auto;
  6961. position: absolute !important;
  6962. }
  6963. }
  6964. /* line 155, ../bower_components/foundation/scss/foundation/components/_type.scss */
  6965. .text-left {
  6966. text-align: left !important;
  6967. }
  6968. /* line 156, ../bower_components/foundation/scss/foundation/components/_type.scss */
  6969. .text-right {
  6970. text-align: right !important;
  6971. }
  6972. /* line 157, ../bower_components/foundation/scss/foundation/components/_type.scss */
  6973. .text-center {
  6974. text-align: center !important;
  6975. }
  6976. /* line 158, ../bower_components/foundation/scss/foundation/components/_type.scss */
  6977. .text-justify {
  6978. text-align: justify !important;
  6979. }
  6980. @media only screen and (max-width: 40em) {
  6981. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  6982. .small-only-text-left {
  6983. text-align: left !important;
  6984. }
  6985. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  6986. .small-only-text-right {
  6987. text-align: right !important;
  6988. }
  6989. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  6990. .small-only-text-center {
  6991. text-align: center !important;
  6992. }
  6993. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  6994. .small-only-text-justify {
  6995. text-align: justify !important;
  6996. }
  6997. }
  6998. @media only screen {
  6999. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7000. .small-text-left {
  7001. text-align: left !important;
  7002. }
  7003. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7004. .small-text-right {
  7005. text-align: right !important;
  7006. }
  7007. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7008. .small-text-center {
  7009. text-align: center !important;
  7010. }
  7011. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7012. .small-text-justify {
  7013. text-align: justify !important;
  7014. }
  7015. }
  7016. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7017. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7018. .medium-only-text-left {
  7019. text-align: left !important;
  7020. }
  7021. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7022. .medium-only-text-right {
  7023. text-align: right !important;
  7024. }
  7025. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7026. .medium-only-text-center {
  7027. text-align: center !important;
  7028. }
  7029. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7030. .medium-only-text-justify {
  7031. text-align: justify !important;
  7032. }
  7033. }
  7034. @media only screen and (min-width: 40.063em) {
  7035. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7036. .medium-text-left {
  7037. text-align: left !important;
  7038. }
  7039. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7040. .medium-text-right {
  7041. text-align: right !important;
  7042. }
  7043. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7044. .medium-text-center {
  7045. text-align: center !important;
  7046. }
  7047. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7048. .medium-text-justify {
  7049. text-align: justify !important;
  7050. }
  7051. }
  7052. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  7053. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7054. .large-only-text-left {
  7055. text-align: left !important;
  7056. }
  7057. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7058. .large-only-text-right {
  7059. text-align: right !important;
  7060. }
  7061. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7062. .large-only-text-center {
  7063. text-align: center !important;
  7064. }
  7065. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7066. .large-only-text-justify {
  7067. text-align: justify !important;
  7068. }
  7069. }
  7070. @media only screen and (min-width: 64.063em) {
  7071. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7072. .large-text-left {
  7073. text-align: left !important;
  7074. }
  7075. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7076. .large-text-right {
  7077. text-align: right !important;
  7078. }
  7079. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7080. .large-text-center {
  7081. text-align: center !important;
  7082. }
  7083. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7084. .large-text-justify {
  7085. text-align: justify !important;
  7086. }
  7087. }
  7088. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  7089. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7090. .xlarge-only-text-left {
  7091. text-align: left !important;
  7092. }
  7093. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7094. .xlarge-only-text-right {
  7095. text-align: right !important;
  7096. }
  7097. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7098. .xlarge-only-text-center {
  7099. text-align: center !important;
  7100. }
  7101. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7102. .xlarge-only-text-justify {
  7103. text-align: justify !important;
  7104. }
  7105. }
  7106. @media only screen and (min-width: 90.063em) {
  7107. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7108. .xlarge-text-left {
  7109. text-align: left !important;
  7110. }
  7111. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7112. .xlarge-text-right {
  7113. text-align: right !important;
  7114. }
  7115. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7116. .xlarge-text-center {
  7117. text-align: center !important;
  7118. }
  7119. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7120. .xlarge-text-justify {
  7121. text-align: justify !important;
  7122. }
  7123. }
  7124. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  7125. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7126. .xxlarge-only-text-left {
  7127. text-align: left !important;
  7128. }
  7129. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7130. .xxlarge-only-text-right {
  7131. text-align: right !important;
  7132. }
  7133. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7134. .xxlarge-only-text-center {
  7135. text-align: center !important;
  7136. }
  7137. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7138. .xxlarge-only-text-justify {
  7139. text-align: justify !important;
  7140. }
  7141. }
  7142. @media only screen and (min-width: 120.063em) {
  7143. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7144. .xxlarge-text-left {
  7145. text-align: left !important;
  7146. }
  7147. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7148. .xxlarge-text-right {
  7149. text-align: right !important;
  7150. }
  7151. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7152. .xxlarge-text-center {
  7153. text-align: center !important;
  7154. }
  7155. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7156. .xxlarge-text-justify {
  7157. text-align: justify !important;
  7158. }
  7159. }
  7160. /* Typography resets */
  7161. /* line 193, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7162. div,
  7163. dl,
  7164. dt,
  7165. dd,
  7166. ul,
  7167. ol,
  7168. li,
  7169. h1,
  7170. h2,
  7171. h3,
  7172. h4,
  7173. h5,
  7174. h6,
  7175. pre,
  7176. form,
  7177. p,
  7178. blockquote,
  7179. th,
  7180. td {
  7181. margin: 0;
  7182. padding: 0;
  7183. }
  7184. /* Default Link Styles */
  7185. /* line 217, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7186. a {
  7187. color: #008CBA;
  7188. text-decoration: none;
  7189. line-height: inherit;
  7190. }
  7191. /* line 222, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7192. a:hover, a:focus {
  7193. color: #0078a0;
  7194. }
  7195. /* line 230, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7196. a img {
  7197. border: none;
  7198. }
  7199. /* Default paragraph styles */
  7200. /* line 234, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7201. p {
  7202. font-family: inherit;
  7203. font-weight: normal;
  7204. font-size: 1rem;
  7205. line-height: 1.6;
  7206. margin-bottom: 1.25rem;
  7207. text-rendering: optimizeLegibility;
  7208. }
  7209. /* line 242, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7210. p.lead {
  7211. font-size: 1.21875rem;
  7212. line-height: 1.6;
  7213. }
  7214. /* line 244, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7215. p aside {
  7216. font-size: 0.875rem;
  7217. line-height: 1.35;
  7218. font-style: italic;
  7219. }
  7220. /* Default header styles */
  7221. /* line 252, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7222. h1, h2, h3, h4, h5, h6 {
  7223. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  7224. font-weight: normal;
  7225. font-style: normal;
  7226. color: #222222;
  7227. text-rendering: optimizeLegibility;
  7228. margin-top: 0.2rem;
  7229. margin-bottom: 0.5rem;
  7230. line-height: 1.4;
  7231. }
  7232. /* line 262, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7233. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  7234. font-size: 60%;
  7235. color: #6f6f6f;
  7236. line-height: 0;
  7237. }
  7238. /* line 269, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7239. h1 {
  7240. font-size: 2.125rem;
  7241. }
  7242. /* line 270, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7243. h2 {
  7244. font-size: 1.6875rem;
  7245. }
  7246. /* line 271, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7247. h3 {
  7248. font-size: 1.375rem;
  7249. }
  7250. /* line 272, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7251. h4 {
  7252. font-size: 1.125rem;
  7253. }
  7254. /* line 273, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7255. h5 {
  7256. font-size: 1.125rem;
  7257. }
  7258. /* line 274, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7259. h6 {
  7260. font-size: 1rem;
  7261. }
  7262. /* line 276, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7263. .subheader {
  7264. line-height: 1.4;
  7265. color: #6f6f6f;
  7266. font-weight: normal;
  7267. margin-top: 0.2rem;
  7268. margin-bottom: 0.5rem;
  7269. }
  7270. /* line 278, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7271. hr {
  7272. border: solid #DDDDDD;
  7273. border-width: 1px 0 0;
  7274. clear: both;
  7275. margin: 1.25rem 0 1.1875rem;
  7276. height: 0;
  7277. }
  7278. /* Helpful Typography Defaults */
  7279. /* line 287, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7280. em,
  7281. i {
  7282. font-style: italic;
  7283. line-height: inherit;
  7284. }
  7285. /* line 293, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7286. strong,
  7287. b {
  7288. font-weight: bold;
  7289. line-height: inherit;
  7290. }
  7291. /* line 299, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7292. small {
  7293. font-size: 60%;
  7294. line-height: inherit;
  7295. }
  7296. /* line 304, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7297. code {
  7298. font-family: Consolas, "Liberation Mono", Courier, monospace;
  7299. font-weight: normal;
  7300. color: #333333;
  7301. background-color: #f8f8f8;
  7302. border-width: 1px;
  7303. border-style: solid;
  7304. border-color: #dfdfdf;
  7305. padding: 0.125rem 0.3125rem 0.0625rem;
  7306. }
  7307. /* Lists */
  7308. /* line 316, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7309. ul,
  7310. ol,
  7311. dl {
  7312. font-size: 1rem;
  7313. line-height: 1.6;
  7314. margin-bottom: 1.25rem;
  7315. list-style-position: outside;
  7316. font-family: inherit;
  7317. }
  7318. /* line 326, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7319. ul {
  7320. margin-left: 1.1rem;
  7321. }
  7322. /* line 328, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7323. ul.no-bullet {
  7324. margin-left: 0;
  7325. }
  7326. /* line 331, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7327. ul.no-bullet li ul,
  7328. ul.no-bullet li ol {
  7329. margin-left: 1.25rem;
  7330. margin-bottom: 0;
  7331. list-style: none;
  7332. }
  7333. /* Unordered Lists */
  7334. /* line 344, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7335. ul li ul,
  7336. ul li ol {
  7337. margin-left: 1.25rem;
  7338. margin-bottom: 0;
  7339. }
  7340. /* line 353, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7341. ul.square li ul, ul.circle li ul, ul.disc li ul {
  7342. list-style: inherit;
  7343. }
  7344. /* line 356, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7345. ul.square {
  7346. list-style-type: square;
  7347. margin-left: 1.1rem;
  7348. }
  7349. /* line 357, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7350. ul.circle {
  7351. list-style-type: circle;
  7352. margin-left: 1.1rem;
  7353. }
  7354. /* line 358, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7355. ul.disc {
  7356. list-style-type: disc;
  7357. margin-left: 1.1rem;
  7358. }
  7359. /* line 359, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7360. ul.no-bullet {
  7361. list-style: none;
  7362. }
  7363. /* Ordered Lists */
  7364. /* line 363, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7365. ol {
  7366. margin-left: 1.4rem;
  7367. }
  7368. /* line 366, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7369. ol li ul,
  7370. ol li ol {
  7371. margin-left: 1.25rem;
  7372. margin-bottom: 0;
  7373. }
  7374. /* Definition Lists */
  7375. /* line 376, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7376. dl dt {
  7377. margin-bottom: 0.3rem;
  7378. font-weight: bold;
  7379. }
  7380. /* line 380, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7381. dl dd {
  7382. margin-bottom: 0.75rem;
  7383. }
  7384. /* Abbreviations */
  7385. /* line 384, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7386. abbr,
  7387. acronym {
  7388. text-transform: uppercase;
  7389. font-size: 90%;
  7390. color: #222;
  7391. cursor: help;
  7392. }
  7393. /* line 391, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7394. abbr {
  7395. text-transform: none;
  7396. }
  7397. /* line 393, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7398. abbr[title] {
  7399. border-bottom: 1px dotted #DDDDDD;
  7400. }
  7401. /* Blockquotes */
  7402. /* line 399, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7403. blockquote {
  7404. margin: 0 0 1.25rem;
  7405. padding: 0.5625rem 1.25rem 0 1.1875rem;
  7406. border-left: 1px solid #DDDDDD;
  7407. }
  7408. /* line 404, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7409. blockquote cite {
  7410. display: block;
  7411. font-size: 0.8125rem;
  7412. color: #555555;
  7413. }
  7414. /* line 408, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7415. blockquote cite:before {
  7416. content: "\2014 \0020";
  7417. }
  7418. /* line 412, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7419. blockquote cite a,
  7420. blockquote cite a:visited {
  7421. color: #555555;
  7422. }
  7423. /* line 418, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7424. blockquote,
  7425. blockquote p {
  7426. line-height: 1.6;
  7427. color: #6f6f6f;
  7428. }
  7429. /* Microformats */
  7430. /* line 425, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7431. .vcard {
  7432. display: inline-block;
  7433. margin: 0 0 1.25rem 0;
  7434. border: 1px solid #DDDDDD;
  7435. padding: 0.625rem 0.75rem;
  7436. }
  7437. /* line 431, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7438. .vcard li {
  7439. margin: 0;
  7440. display: block;
  7441. }
  7442. /* line 435, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7443. .vcard .fn {
  7444. font-weight: bold;
  7445. font-size: 0.9375rem;
  7446. }
  7447. /* line 442, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7448. .vevent .summary {
  7449. font-weight: bold;
  7450. }
  7451. /* line 444, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7452. .vevent abbr {
  7453. cursor: default;
  7454. text-decoration: none;
  7455. font-weight: bold;
  7456. border: none;
  7457. padding: 0 0.0625rem;
  7458. }
  7459. @media only screen and (min-width: 40.063em) {
  7460. /* line 455, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7461. h1, h2, h3, h4, h5, h6 {
  7462. line-height: 1.4;
  7463. }
  7464. /* line 456, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7465. h1 {
  7466. font-size: 2.75rem;
  7467. }
  7468. /* line 457, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7469. h2 {
  7470. font-size: 2.3125rem;
  7471. }
  7472. /* line 458, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7473. h3 {
  7474. font-size: 1.6875rem;
  7475. }
  7476. /* line 459, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7477. h4 {
  7478. font-size: 1.4375rem;
  7479. }
  7480. /* line 460, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7481. h5 {
  7482. font-size: 1.125rem;
  7483. }
  7484. /* line 461, ../bower_components/foundation/scss/foundation/components/_type.scss */
  7485. h6 {
  7486. font-size: 1rem;
  7487. }
  7488. }
  7489. /* line 290, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7490. .off-canvas-wrap {
  7491. -webkit-backface-visibility: hidden;
  7492. position: relative;
  7493. width: 100%;
  7494. overflow: hidden;
  7495. }
  7496. /* line 135, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7497. .off-canvas-wrap.move-right, .off-canvas-wrap.move-left {
  7498. min-height: 100%;
  7499. -webkit-overflow-scrolling: touch;
  7500. }
  7501. /* line 291, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7502. .inner-wrap {
  7503. position: relative;
  7504. width: 100%;
  7505. -webkit-transition: -webkit-transform 500ms ease;
  7506. transition: transform 500ms ease;
  7507. }
  7508. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  7509. .inner-wrap:before, .inner-wrap:after {
  7510. content: " ";
  7511. display: table;
  7512. }
  7513. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  7514. .inner-wrap:after {
  7515. clear: both;
  7516. }
  7517. /* line 293, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7518. .tab-bar {
  7519. -webkit-backface-visibility: hidden;
  7520. background: #333333;
  7521. color: #FFFFFF;
  7522. height: 2.8125rem;
  7523. line-height: 2.8125rem;
  7524. position: relative;
  7525. }
  7526. /* line 169, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7527. .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4, .tab-bar h5, .tab-bar h6 {
  7528. color: #FFFFFF;
  7529. font-weight: bold;
  7530. line-height: 2.8125rem;
  7531. margin: 0;
  7532. }
  7533. /* line 175, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7534. .tab-bar h1, .tab-bar h2, .tab-bar h3, .tab-bar h4 {
  7535. font-size: 1.125rem;
  7536. }
  7537. /* line 295, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7538. .left-small {
  7539. width: 2.8125rem;
  7540. height: 2.8125rem;
  7541. position: absolute;
  7542. top: 0;
  7543. border-right: solid 1px #1a1a1a;
  7544. left: 0;
  7545. }
  7546. /* line 296, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7547. .right-small {
  7548. width: 2.8125rem;
  7549. height: 2.8125rem;
  7550. position: absolute;
  7551. top: 0;
  7552. border-left: solid 1px #1a1a1a;
  7553. right: 0;
  7554. }
  7555. /* line 298, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7556. .tab-bar-section {
  7557. padding: 0 0.625rem;
  7558. position: absolute;
  7559. text-align: center;
  7560. height: 2.8125rem;
  7561. top: 0;
  7562. }
  7563. @media only screen and (min-width: 40.063em) {
  7564. /* line 204, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7565. .tab-bar-section.left {
  7566. text-align: left;
  7567. }
  7568. /* line 205, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7569. .tab-bar-section.right {
  7570. text-align: right;
  7571. }
  7572. }
  7573. /* line 209, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7574. .tab-bar-section.left {
  7575. left: 0;
  7576. right: 2.8125rem;
  7577. }
  7578. /* line 213, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7579. .tab-bar-section.right {
  7580. left: 2.8125rem;
  7581. right: 0;
  7582. }
  7583. /* line 217, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7584. .tab-bar-section.middle {
  7585. left: 2.8125rem;
  7586. right: 2.8125rem;
  7587. }
  7588. /* line 302, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7589. .tab-bar .menu-icon {
  7590. text-indent: 2.1875rem;
  7591. width: 2.8125rem;
  7592. height: 2.8125rem;
  7593. display: block;
  7594. padding: 0;
  7595. color: #FFFFFF;
  7596. position: relative;
  7597. -webkit-transform: translate3d(0, 0, 0);
  7598. transform: translate3d(0, 0, 0);
  7599. }
  7600. /* line 129, ../bower_components/foundation/scss/foundation/components/_global.scss */
  7601. .tab-bar .menu-icon span::after {
  7602. content: "";
  7603. position: absolute;
  7604. display: block;
  7605. height: 0;
  7606. top: 50%;
  7607. margin-top: -0.5rem;
  7608. left: 0.90625rem;
  7609. box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  7610. width: 1rem;
  7611. }
  7612. /* line 162, ../bower_components/foundation/scss/foundation/components/_global.scss */
  7613. .tab-bar .menu-icon span:hover:after {
  7614. box-shadow: 0 0 0 1px #b3b3b3, 0 7px 0 1px #b3b3b3, 0 14px 0 1px #b3b3b3;
  7615. }
  7616. /* line 326, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7617. .left-off-canvas-menu {
  7618. -webkit-backface-visibility: hidden;
  7619. width: 15.625rem;
  7620. top: 0;
  7621. bottom: 0;
  7622. position: absolute;
  7623. overflow-x: hidden;
  7624. overflow-y: auto;
  7625. background: #333333;
  7626. z-index: 1001;
  7627. box-sizing: content-box;
  7628. -webkit-transition: -webkit-transform 500ms ease 0s;
  7629. transition: transform 500ms ease 0s;
  7630. -webkit-overflow-scrolling: touch;
  7631. -ms-overflow-style: -ms-autohiding-scrollbar;
  7632. -ms-transform: translate(-100%, 0);
  7633. -webkit-transform: translate3d(-100%, 0, 0);
  7634. -ms-transform: translate3d(-100%, 0, 0);
  7635. transform: translate3d(-100%, 0, 0);
  7636. left: 0;
  7637. }
  7638. /* line 105, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7639. .left-off-canvas-menu * {
  7640. -webkit-backface-visibility: hidden;
  7641. }
  7642. /* line 327, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7643. .right-off-canvas-menu {
  7644. -webkit-backface-visibility: hidden;
  7645. width: 15.625rem;
  7646. top: 0;
  7647. bottom: 0;
  7648. position: absolute;
  7649. overflow-x: hidden;
  7650. overflow-y: auto;
  7651. background: #333333;
  7652. z-index: 1001;
  7653. box-sizing: content-box;
  7654. -webkit-transition: -webkit-transform 500ms ease 0s;
  7655. transition: transform 500ms ease 0s;
  7656. -webkit-overflow-scrolling: touch;
  7657. -ms-overflow-style: -ms-autohiding-scrollbar;
  7658. -ms-transform: translate(100%, 0);
  7659. -webkit-transform: translate3d(100%, 0, 0);
  7660. -ms-transform: translate3d(100%, 0, 0);
  7661. transform: translate3d(100%, 0, 0);
  7662. right: 0;
  7663. }
  7664. /* line 105, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7665. .right-off-canvas-menu * {
  7666. -webkit-backface-visibility: hidden;
  7667. }
  7668. /* line 329, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7669. ul.off-canvas-list {
  7670. list-style-type: none;
  7671. padding: 0;
  7672. margin: 0;
  7673. }
  7674. /* line 231, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7675. ul.off-canvas-list li label {
  7676. display: block;
  7677. padding: 0.3rem 0.9375rem;
  7678. color: #999999;
  7679. text-transform: uppercase;
  7680. font-size: 0.75rem;
  7681. font-weight: bold;
  7682. background: #444444;
  7683. border-top: 1px solid #5e5e5e;
  7684. border-bottom: none;
  7685. margin: 0;
  7686. }
  7687. /* line 243, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7688. ul.off-canvas-list li a {
  7689. display: block;
  7690. padding: 0.66667rem;
  7691. color: rgba(255, 255, 255, 0.7);
  7692. border-bottom: 1px solid #262626;
  7693. -webkit-transition: background 300ms ease;
  7694. transition: background 300ms ease;
  7695. }
  7696. /* line 249, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7697. ul.off-canvas-list li a:hover {
  7698. background: #242424;
  7699. }
  7700. /* line 335, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7701. .move-right > .inner-wrap {
  7702. -ms-transform: translate(15.625rem, 0);
  7703. -webkit-transform: translate3d(15.625rem, 0, 0);
  7704. -ms-transform: translate3d(15.625rem, 0, 0);
  7705. transform: translate3d(15.625rem, 0, 0);
  7706. }
  7707. /* line 338, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7708. .move-right .exit-off-canvas {
  7709. -webkit-backface-visibility: hidden;
  7710. -webkit-transition: background 300ms ease;
  7711. transition: background 300ms ease;
  7712. cursor: pointer;
  7713. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  7714. display: block;
  7715. position: absolute;
  7716. background: rgba(255, 255, 255, 0.2);
  7717. top: 0;
  7718. bottom: 0;
  7719. left: 0;
  7720. right: 0;
  7721. z-index: 1002;
  7722. -webkit-tap-highlight-color: transparent;
  7723. }
  7724. @media only screen and (min-width: 40.063em) {
  7725. /* line 278, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7726. .move-right .exit-off-canvas:hover {
  7727. background: rgba(255, 255, 255, 0.05);
  7728. }
  7729. }
  7730. /* line 342, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7731. .move-left > .inner-wrap {
  7732. -ms-transform: translate(-15.625rem, 0);
  7733. -webkit-transform: translate3d(-15.625rem, 0, 0);
  7734. -ms-transform: translate3d(-15.625rem, 0, 0);
  7735. transform: translate3d(-15.625rem, 0, 0);
  7736. }
  7737. /* line 346, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7738. .move-left .exit-off-canvas {
  7739. -webkit-backface-visibility: hidden;
  7740. -webkit-transition: background 300ms ease;
  7741. transition: background 300ms ease;
  7742. cursor: pointer;
  7743. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  7744. display: block;
  7745. position: absolute;
  7746. background: rgba(255, 255, 255, 0.2);
  7747. top: 0;
  7748. bottom: 0;
  7749. left: 0;
  7750. right: 0;
  7751. z-index: 1002;
  7752. -webkit-tap-highlight-color: transparent;
  7753. }
  7754. @media only screen and (min-width: 40.063em) {
  7755. /* line 278, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7756. .move-left .exit-off-canvas:hover {
  7757. background: rgba(255, 255, 255, 0.05);
  7758. }
  7759. }
  7760. /* line 349, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7761. .offcanvas-overlap .left-off-canvas-menu, .offcanvas-overlap .right-off-canvas-menu {
  7762. -ms-transform: none;
  7763. -webkit-transform: none;
  7764. transform: none;
  7765. z-index: 1003;
  7766. }
  7767. /* line 357, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7768. .offcanvas-overlap .exit-off-canvas {
  7769. -webkit-backface-visibility: hidden;
  7770. -webkit-transition: background 300ms ease;
  7771. transition: background 300ms ease;
  7772. cursor: pointer;
  7773. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  7774. display: block;
  7775. position: absolute;
  7776. background: rgba(255, 255, 255, 0.2);
  7777. top: 0;
  7778. bottom: 0;
  7779. left: 0;
  7780. right: 0;
  7781. z-index: 1002;
  7782. -webkit-tap-highlight-color: transparent;
  7783. }
  7784. @media only screen and (min-width: 40.063em) {
  7785. /* line 278, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7786. .offcanvas-overlap .exit-off-canvas:hover {
  7787. background: rgba(255, 255, 255, 0.05);
  7788. }
  7789. }
  7790. /* line 360, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7791. .offcanvas-overlap-left .right-off-canvas-menu {
  7792. -ms-transform: none;
  7793. -webkit-transform: none;
  7794. transform: none;
  7795. z-index: 1003;
  7796. }
  7797. /* line 368, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7798. .offcanvas-overlap-left .exit-off-canvas {
  7799. -webkit-backface-visibility: hidden;
  7800. -webkit-transition: background 300ms ease;
  7801. transition: background 300ms ease;
  7802. cursor: pointer;
  7803. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  7804. display: block;
  7805. position: absolute;
  7806. background: rgba(255, 255, 255, 0.2);
  7807. top: 0;
  7808. bottom: 0;
  7809. left: 0;
  7810. right: 0;
  7811. z-index: 1002;
  7812. -webkit-tap-highlight-color: transparent;
  7813. }
  7814. @media only screen and (min-width: 40.063em) {
  7815. /* line 278, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7816. .offcanvas-overlap-left .exit-off-canvas:hover {
  7817. background: rgba(255, 255, 255, 0.05);
  7818. }
  7819. }
  7820. /* line 371, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7821. .offcanvas-overlap-right .left-off-canvas-menu {
  7822. -ms-transform: none;
  7823. -webkit-transform: none;
  7824. transform: none;
  7825. z-index: 1003;
  7826. }
  7827. /* line 379, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7828. .offcanvas-overlap-right .exit-off-canvas {
  7829. -webkit-backface-visibility: hidden;
  7830. -webkit-transition: background 300ms ease;
  7831. transition: background 300ms ease;
  7832. cursor: pointer;
  7833. box-shadow: -4px 0 4px rgba(0, 0, 0, 0.5), 4px 0 4px rgba(0, 0, 0, 0.5);
  7834. display: block;
  7835. position: absolute;
  7836. background: rgba(255, 255, 255, 0.2);
  7837. top: 0;
  7838. bottom: 0;
  7839. left: 0;
  7840. right: 0;
  7841. z-index: 1002;
  7842. -webkit-tap-highlight-color: transparent;
  7843. }
  7844. @media only screen and (min-width: 40.063em) {
  7845. /* line 278, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7846. .offcanvas-overlap-right .exit-off-canvas:hover {
  7847. background: rgba(255, 255, 255, 0.05);
  7848. }
  7849. }
  7850. /* line 384, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7851. .no-csstransforms .left-off-canvas-menu {
  7852. left: -15.625rem;
  7853. }
  7854. /* line 385, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7855. .no-csstransforms .right-off-canvas-menu {
  7856. right: -15.625rem;
  7857. }
  7858. /* line 387, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7859. .no-csstransforms .move-left > .inner-wrap {
  7860. right: 15.625rem;
  7861. }
  7862. /* line 388, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7863. .no-csstransforms .move-right > .inner-wrap {
  7864. left: 15.625rem;
  7865. }
  7866. /* line 486, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7867. .left-submenu {
  7868. -webkit-backface-visibility: hidden;
  7869. width: 15.625rem;
  7870. top: 0;
  7871. bottom: 0;
  7872. position: absolute;
  7873. margin: 0;
  7874. overflow-x: hidden;
  7875. overflow-y: auto;
  7876. background: #333333;
  7877. z-index: 1002;
  7878. box-sizing: content-box;
  7879. -webkit-overflow-scrolling: touch;
  7880. -ms-transform: translate(-100%, 0);
  7881. -webkit-transform: translate3d(-100%, 0, 0);
  7882. -ms-transform: translate3d(-100%, 0, 0);
  7883. transform: translate3d(-100%, 0, 0);
  7884. left: 0;
  7885. -webkit-transition: -webkit-transform 500ms ease;
  7886. transition: transform 500ms ease;
  7887. }
  7888. /* line 399, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7889. .left-submenu * {
  7890. -webkit-backface-visibility: hidden;
  7891. }
  7892. /* line 426, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7893. .left-submenu .back > a {
  7894. padding: 0.3rem 0.9375rem;
  7895. color: #999999;
  7896. text-transform: uppercase;
  7897. font-weight: bold;
  7898. background: #444;
  7899. border-top: 1px solid #5e5e5e;
  7900. border-bottom: none;
  7901. margin: 0;
  7902. }
  7903. /* line 434, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7904. .left-submenu .back > a:hover {
  7905. background: #303030;
  7906. border-top: 1px solid #5e5e5e;
  7907. border-bottom: none;
  7908. }
  7909. /* line 457, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7910. .left-submenu .back > a:before {
  7911. content: "\AB";
  7912. margin-right: 0.5rem;
  7913. display: inline;
  7914. }
  7915. /* line 488, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7916. .left-submenu.move-right, .left-submenu.offcanvas-overlap-right, .left-submenu.offcanvas-overlap {
  7917. -ms-transform: translate(0%, 0);
  7918. -webkit-transform: translate3d(0%, 0, 0);
  7919. -ms-transform: translate3d(0%, 0, 0);
  7920. transform: translate3d(0%, 0, 0);
  7921. }
  7922. /* line 493, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7923. .right-submenu {
  7924. -webkit-backface-visibility: hidden;
  7925. width: 15.625rem;
  7926. top: 0;
  7927. bottom: 0;
  7928. position: absolute;
  7929. margin: 0;
  7930. overflow-x: hidden;
  7931. overflow-y: auto;
  7932. background: #333333;
  7933. z-index: 1002;
  7934. box-sizing: content-box;
  7935. -webkit-overflow-scrolling: touch;
  7936. -ms-transform: translate(100%, 0);
  7937. -webkit-transform: translate3d(100%, 0, 0);
  7938. -ms-transform: translate3d(100%, 0, 0);
  7939. transform: translate3d(100%, 0, 0);
  7940. right: 0;
  7941. -webkit-transition: -webkit-transform 500ms ease;
  7942. transition: transform 500ms ease;
  7943. }
  7944. /* line 399, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7945. .right-submenu * {
  7946. -webkit-backface-visibility: hidden;
  7947. }
  7948. /* line 426, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7949. .right-submenu .back > a {
  7950. padding: 0.3rem 0.9375rem;
  7951. color: #999999;
  7952. text-transform: uppercase;
  7953. font-weight: bold;
  7954. background: #444;
  7955. border-top: 1px solid #5e5e5e;
  7956. border-bottom: none;
  7957. margin: 0;
  7958. }
  7959. /* line 434, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7960. .right-submenu .back > a:hover {
  7961. background: #303030;
  7962. border-top: 1px solid #5e5e5e;
  7963. border-bottom: none;
  7964. }
  7965. /* line 446, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7966. .right-submenu .back > a:after {
  7967. content: "\BB";
  7968. margin-left: 0.5rem;
  7969. display: inline;
  7970. }
  7971. /* line 495, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7972. .right-submenu.move-left, .right-submenu.offcanvas-overlap-left, .right-submenu.offcanvas-overlap {
  7973. -ms-transform: translate(0%, 0);
  7974. -webkit-transform: translate3d(0%, 0, 0);
  7975. -ms-transform: translate3d(0%, 0, 0);
  7976. transform: translate3d(0%, 0, 0);
  7977. }
  7978. /* line 508, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7979. .left-off-canvas-menu ul.off-canvas-list li.has-submenu > a:after {
  7980. content: "\BB";
  7981. margin-left: 0.5rem;
  7982. display: inline;
  7983. }
  7984. /* line 511, ../bower_components/foundation/scss/foundation/components/_offcanvas.scss */
  7985. .right-off-canvas-menu ul.off-canvas-list li.has-submenu > a:before {
  7986. content: "\AB";
  7987. margin-right: 0.5rem;
  7988. display: inline;
  7989. }
  7990. /* small displays */
  7991. @media only screen {
  7992. /* line 244, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  7993. .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 {
  7994. display: inherit !important;
  7995. }
  7996. /* line 247, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  7997. .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 {
  7998. display: none !important;
  7999. }
  8000. /* line 251, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8001. .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 {
  8002. position: static !important;
  8003. height: auto;
  8004. width: auto;
  8005. overflow: visible;
  8006. clip: auto;
  8007. }
  8008. /* line 254, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8009. .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 {
  8010. position: absolute !important;
  8011. height: 1px;
  8012. width: 1px;
  8013. overflow: hidden;
  8014. clip: rect(1px, 1px, 1px, 1px);
  8015. }
  8016. /* line 259, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8017. 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 {
  8018. display: table !important;
  8019. }
  8020. /* line 262, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8021. 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 {
  8022. display: table-header-group !important;
  8023. }
  8024. /* line 265, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8025. 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 {
  8026. display: table-row-group !important;
  8027. }
  8028. /* line 268, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8029. 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 {
  8030. display: table-row;
  8031. }
  8032. /* line 271, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8033. 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 {
  8034. display: table-cell !important;
  8035. }
  8036. }
  8037. /* medium displays */
  8038. @media only screen and (min-width: 40.063em) {
  8039. /* line 244, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8040. .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 {
  8041. display: inherit !important;
  8042. }
  8043. /* line 247, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8044. .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 {
  8045. display: none !important;
  8046. }
  8047. /* line 251, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8048. .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 {
  8049. position: static !important;
  8050. height: auto;
  8051. width: auto;
  8052. overflow: visible;
  8053. clip: auto;
  8054. }
  8055. /* line 254, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8056. .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 {
  8057. position: absolute !important;
  8058. height: 1px;
  8059. width: 1px;
  8060. overflow: hidden;
  8061. clip: rect(1px, 1px, 1px, 1px);
  8062. }
  8063. /* line 259, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8064. 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 {
  8065. display: table !important;
  8066. }
  8067. /* line 262, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8068. 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 {
  8069. display: table-header-group !important;
  8070. }
  8071. /* line 265, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8072. 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 {
  8073. display: table-row-group !important;
  8074. }
  8075. /* line 268, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8076. 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 {
  8077. display: table-row;
  8078. }
  8079. /* line 271, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8080. 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 {
  8081. display: table-cell !important;
  8082. }
  8083. }
  8084. /* large displays */
  8085. @media only screen and (min-width: 64.063em) {
  8086. /* line 244, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8087. .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 {
  8088. display: inherit !important;
  8089. }
  8090. /* line 247, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8091. .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 {
  8092. display: none !important;
  8093. }
  8094. /* line 251, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8095. .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 {
  8096. position: static !important;
  8097. height: auto;
  8098. width: auto;
  8099. overflow: visible;
  8100. clip: auto;
  8101. }
  8102. /* line 254, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8103. .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 {
  8104. position: absolute !important;
  8105. height: 1px;
  8106. width: 1px;
  8107. overflow: hidden;
  8108. clip: rect(1px, 1px, 1px, 1px);
  8109. }
  8110. /* line 259, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8111. 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 {
  8112. display: table !important;
  8113. }
  8114. /* line 262, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8115. 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 {
  8116. display: table-header-group !important;
  8117. }
  8118. /* line 265, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8119. 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 {
  8120. display: table-row-group !important;
  8121. }
  8122. /* line 268, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8123. 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 {
  8124. display: table-row;
  8125. }
  8126. /* line 271, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8127. 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 {
  8128. display: table-cell !important;
  8129. }
  8130. }
  8131. /* xlarge displays */
  8132. @media only screen and (min-width: 90.063em) {
  8133. /* line 244, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8134. .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 {
  8135. display: inherit !important;
  8136. }
  8137. /* line 247, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8138. .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 {
  8139. display: none !important;
  8140. }
  8141. /* line 251, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8142. .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 {
  8143. position: static !important;
  8144. height: auto;
  8145. width: auto;
  8146. overflow: visible;
  8147. clip: auto;
  8148. }
  8149. /* line 254, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8150. .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 {
  8151. position: absolute !important;
  8152. height: 1px;
  8153. width: 1px;
  8154. overflow: hidden;
  8155. clip: rect(1px, 1px, 1px, 1px);
  8156. }
  8157. /* line 259, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8158. 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 {
  8159. display: table !important;
  8160. }
  8161. /* line 262, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8162. 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 {
  8163. display: table-header-group !important;
  8164. }
  8165. /* line 265, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8166. 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 {
  8167. display: table-row-group !important;
  8168. }
  8169. /* line 268, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8170. 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 {
  8171. display: table-row;
  8172. }
  8173. /* line 271, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8174. 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 {
  8175. display: table-cell !important;
  8176. }
  8177. }
  8178. /* xxlarge displays */
  8179. @media only screen and (min-width: 120.063em) {
  8180. /* line 244, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8181. .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 {
  8182. display: inherit !important;
  8183. }
  8184. /* line 247, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8185. .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 {
  8186. display: none !important;
  8187. }
  8188. /* line 251, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8189. .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 {
  8190. position: static !important;
  8191. height: auto;
  8192. width: auto;
  8193. overflow: visible;
  8194. clip: auto;
  8195. }
  8196. /* line 254, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8197. .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 {
  8198. position: absolute !important;
  8199. height: 1px;
  8200. width: 1px;
  8201. overflow: hidden;
  8202. clip: rect(1px, 1px, 1px, 1px);
  8203. }
  8204. /* line 259, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8205. 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 {
  8206. display: table !important;
  8207. }
  8208. /* line 262, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8209. 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 {
  8210. display: table-header-group !important;
  8211. }
  8212. /* line 265, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8213. 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 {
  8214. display: table-row-group !important;
  8215. }
  8216. /* line 268, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8217. 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 {
  8218. display: table-row;
  8219. }
  8220. /* line 271, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8221. 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 {
  8222. display: table-cell !important;
  8223. }
  8224. }
  8225. /* Orientation targeting */
  8226. /* line 285, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8227. .show-for-landscape,
  8228. .hide-for-portrait {
  8229. display: inherit !important;
  8230. }
  8231. /* line 287, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8232. .hide-for-landscape,
  8233. .show-for-portrait {
  8234. display: none !important;
  8235. }
  8236. /* Specific visibility for tables */
  8237. /* line 292, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8238. table.hide-for-landscape, table.show-for-portrait {
  8239. display: table !important;
  8240. }
  8241. /* line 296, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8242. thead.hide-for-landscape, thead.show-for-portrait {
  8243. display: table-header-group !important;
  8244. }
  8245. /* line 300, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8246. tbody.hide-for-landscape, tbody.show-for-portrait {
  8247. display: table-row-group !important;
  8248. }
  8249. /* line 304, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8250. tr.hide-for-landscape, tr.show-for-portrait {
  8251. display: table-row !important;
  8252. }
  8253. /* line 309, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8254. td.hide-for-landscape, td.show-for-portrait,
  8255. th.hide-for-landscape,
  8256. th.show-for-portrait {
  8257. display: table-cell !important;
  8258. }
  8259. @media only screen and (orientation: landscape) {
  8260. /* line 314, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8261. .show-for-landscape,
  8262. .hide-for-portrait {
  8263. display: inherit !important;
  8264. }
  8265. /* line 316, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8266. .hide-for-landscape,
  8267. .show-for-portrait {
  8268. display: none !important;
  8269. }
  8270. /* Specific visibility for tables */
  8271. /* line 321, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8272. table.show-for-landscape, table.hide-for-portrait {
  8273. display: table !important;
  8274. }
  8275. /* line 325, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8276. thead.show-for-landscape, thead.hide-for-portrait {
  8277. display: table-header-group !important;
  8278. }
  8279. /* line 329, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8280. tbody.show-for-landscape, tbody.hide-for-portrait {
  8281. display: table-row-group !important;
  8282. }
  8283. /* line 333, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8284. tr.show-for-landscape, tr.hide-for-portrait {
  8285. display: table-row !important;
  8286. }
  8287. /* line 338, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8288. td.show-for-landscape, td.hide-for-portrait,
  8289. th.show-for-landscape,
  8290. th.hide-for-portrait {
  8291. display: table-cell !important;
  8292. }
  8293. }
  8294. @media only screen and (orientation: portrait) {
  8295. /* line 344, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8296. .show-for-portrait,
  8297. .hide-for-landscape {
  8298. display: inherit !important;
  8299. }
  8300. /* line 346, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8301. .hide-for-portrait,
  8302. .show-for-landscape {
  8303. display: none !important;
  8304. }
  8305. /* Specific visibility for tables */
  8306. /* line 351, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8307. table.show-for-portrait, table.hide-for-landscape {
  8308. display: table !important;
  8309. }
  8310. /* line 355, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8311. thead.show-for-portrait, thead.hide-for-landscape {
  8312. display: table-header-group !important;
  8313. }
  8314. /* line 359, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8315. tbody.show-for-portrait, tbody.hide-for-landscape {
  8316. display: table-row-group !important;
  8317. }
  8318. /* line 363, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8319. tr.show-for-portrait, tr.hide-for-landscape {
  8320. display: table-row !important;
  8321. }
  8322. /* line 368, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8323. td.show-for-portrait, td.hide-for-landscape,
  8324. th.show-for-portrait,
  8325. th.hide-for-landscape {
  8326. display: table-cell !important;
  8327. }
  8328. }
  8329. /* Touch-enabled device targeting */
  8330. /* line 374, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8331. .show-for-touch {
  8332. display: none !important;
  8333. }
  8334. /* line 375, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8335. .hide-for-touch {
  8336. display: inherit !important;
  8337. }
  8338. /* line 376, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8339. .touch .show-for-touch {
  8340. display: inherit !important;
  8341. }
  8342. /* line 377, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8343. .touch .hide-for-touch {
  8344. display: none !important;
  8345. }
  8346. /* Specific visibility for tables */
  8347. /* line 380, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8348. table.hide-for-touch {
  8349. display: table !important;
  8350. }
  8351. /* line 381, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8352. .touch table.show-for-touch {
  8353. display: table !important;
  8354. }
  8355. /* line 382, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8356. thead.hide-for-touch {
  8357. display: table-header-group !important;
  8358. }
  8359. /* line 383, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8360. .touch thead.show-for-touch {
  8361. display: table-header-group !important;
  8362. }
  8363. /* line 384, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8364. tbody.hide-for-touch {
  8365. display: table-row-group !important;
  8366. }
  8367. /* line 385, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8368. .touch tbody.show-for-touch {
  8369. display: table-row-group !important;
  8370. }
  8371. /* line 386, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8372. tr.hide-for-touch {
  8373. display: table-row !important;
  8374. }
  8375. /* line 387, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8376. .touch tr.show-for-touch {
  8377. display: table-row !important;
  8378. }
  8379. /* line 388, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8380. td.hide-for-touch {
  8381. display: table-cell !important;
  8382. }
  8383. /* line 389, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8384. .touch td.show-for-touch {
  8385. display: table-cell !important;
  8386. }
  8387. /* line 390, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8388. th.hide-for-touch {
  8389. display: table-cell !important;
  8390. }
  8391. /* line 391, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8392. .touch th.show-for-touch {
  8393. display: table-cell !important;
  8394. }
  8395. /*
  8396. * Print styles.
  8397. *
  8398. * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
  8399. * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
  8400. */
  8401. /* line 401, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8402. .print-only {
  8403. display: none !important;
  8404. }
  8405. @media print {
  8406. /* line 403, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8407. * {
  8408. background: transparent !important;
  8409. color: #000000 !important;
  8410. /* Black prints faster: h5bp.com/s */
  8411. box-shadow: none !important;
  8412. text-shadow: none !important;
  8413. }
  8414. /* line 409, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8415. .show-for-print {
  8416. display: block;
  8417. }
  8418. /* line 410, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8419. .hide-for-print {
  8420. display: none;
  8421. }
  8422. /* line 412, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8423. table.show-for-print {
  8424. display: table !important;
  8425. }
  8426. /* line 413, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8427. thead.show-for-print {
  8428. display: table-header-group !important;
  8429. }
  8430. /* line 414, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8431. tbody.show-for-print {
  8432. display: table-row-group !important;
  8433. }
  8434. /* line 415, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8435. tr.show-for-print {
  8436. display: table-row !important;
  8437. }
  8438. /* line 416, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8439. td.show-for-print {
  8440. display: table-cell !important;
  8441. }
  8442. /* line 417, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8443. th.show-for-print {
  8444. display: table-cell !important;
  8445. }
  8446. /* line 419, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8447. a,
  8448. a:visited {
  8449. text-decoration: underline;
  8450. }
  8451. /* line 421, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8452. a[href]:after {
  8453. content: " (" attr(href) ")";
  8454. }
  8455. /* line 423, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8456. abbr[title]:after {
  8457. content: " (" attr(title) ")";
  8458. }
  8459. /* line 426, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8460. .ir a:after,
  8461. a[href^="javascript:"]:after,
  8462. a[href^="#"]:after {
  8463. content: "";
  8464. }
  8465. /* line 430, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8466. pre,
  8467. blockquote {
  8468. border: 1px solid #999999;
  8469. page-break-inside: avoid;
  8470. }
  8471. /* line 436, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8472. thead {
  8473. display: table-header-group;
  8474. /* h5bp.com/t */
  8475. }
  8476. /* line 438, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8477. tr,
  8478. img {
  8479. page-break-inside: avoid;
  8480. }
  8481. /* line 441, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8482. img {
  8483. max-width: 100% !important;
  8484. }
  8485. @page {
  8486. margin: 0.5cm;
  8487. }
  8488. /* line 445, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8489. p,
  8490. h2,
  8491. h3 {
  8492. orphans: 3;
  8493. widows: 3;
  8494. }
  8495. /* line 452, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8496. h2,
  8497. h3 {
  8498. page-break-after: avoid;
  8499. }
  8500. /* line 455, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8501. .hide-on-print {
  8502. display: none !important;
  8503. }
  8504. /* line 456, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8505. .print-only {
  8506. display: block !important;
  8507. }
  8508. /* line 457, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8509. .hide-for-print {
  8510. display: none !important;
  8511. }
  8512. /* line 458, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8513. .show-for-print {
  8514. display: inherit !important;
  8515. }
  8516. }
  8517. /* Print visibility */
  8518. @media print {
  8519. /* line 464, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8520. .show-for-print {
  8521. display: block;
  8522. }
  8523. /* line 465, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8524. .hide-for-print {
  8525. display: none;
  8526. }
  8527. /* line 467, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8528. table.show-for-print {
  8529. display: table !important;
  8530. }
  8531. /* line 468, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8532. thead.show-for-print {
  8533. display: table-header-group !important;
  8534. }
  8535. /* line 469, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8536. tbody.show-for-print {
  8537. display: table-row-group !important;
  8538. }
  8539. /* line 470, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8540. tr.show-for-print {
  8541. display: table-row !important;
  8542. }
  8543. /* line 471, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8544. td.show-for-print {
  8545. display: table-cell !important;
  8546. }
  8547. /* line 472, ../bower_components/foundation/scss/foundation/components/_visibility.scss */
  8548. th.show-for-print {
  8549. display: table-cell !important;
  8550. }
  8551. }
  8552. /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
  8553. /**
  8554. * 1. Set default font family to sans-serif.
  8555. * 2. Prevent iOS text size adjust after orientation change, without disabling
  8556. * user zoom.
  8557. */
  8558. /* line 9, ../bower_components/foundation/scss/normalize.scss */
  8559. html {
  8560. font-family: sans-serif;
  8561. /* 1 */
  8562. -ms-text-size-adjust: 100%;
  8563. /* 2 */
  8564. -webkit-text-size-adjust: 100%;
  8565. /* 2 */
  8566. }
  8567. /**
  8568. * Remove default margin.
  8569. */
  8570. /* line 19, ../bower_components/foundation/scss/normalize.scss */
  8571. body {
  8572. margin: 0;
  8573. }
  8574. /* HTML5 display definitions
  8575. ========================================================================== */
  8576. /**
  8577. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  8578. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  8579. * and Firefox.
  8580. * Correct `block` display not defined for `main` in IE 11.
  8581. */
  8582. /* line 33, ../bower_components/foundation/scss/normalize.scss */
  8583. article,
  8584. aside,
  8585. details,
  8586. figcaption,
  8587. figure,
  8588. footer,
  8589. header,
  8590. hgroup,
  8591. main,
  8592. menu,
  8593. nav,
  8594. section,
  8595. summary {
  8596. display: block;
  8597. }
  8598. /**
  8599. * 1. Correct `inline-block` display not defined in IE 8/9.
  8600. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  8601. */
  8602. /* line 54, ../bower_components/foundation/scss/normalize.scss */
  8603. audio,
  8604. canvas,
  8605. progress,
  8606. video {
  8607. display: inline-block;
  8608. /* 1 */
  8609. vertical-align: baseline;
  8610. /* 2 */
  8611. }
  8612. /**
  8613. * Prevent modern browsers from displaying `audio` without controls.
  8614. * Remove excess height in iOS 5 devices.
  8615. */
  8616. /* line 67, ../bower_components/foundation/scss/normalize.scss */
  8617. audio:not([controls]) {
  8618. display: none;
  8619. height: 0;
  8620. }
  8621. /**
  8622. * Address `[hidden]` styling not present in IE 8/9/10.
  8623. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
  8624. */
  8625. /* line 77, ../bower_components/foundation/scss/normalize.scss */
  8626. [hidden],
  8627. template {
  8628. display: none;
  8629. }
  8630. /* Links
  8631. ========================================================================== */
  8632. /**
  8633. * Remove the gray background color from active links in IE 10.
  8634. */
  8635. /* line 89, ../bower_components/foundation/scss/normalize.scss */
  8636. a {
  8637. background-color: transparent;
  8638. }
  8639. /**
  8640. * Improve readability when focused and also mouse hovered in all browsers.
  8641. */
  8642. /* line 97, ../bower_components/foundation/scss/normalize.scss */
  8643. a:active,
  8644. a:hover {
  8645. outline: 0;
  8646. }
  8647. /* Text-level semantics
  8648. ========================================================================== */
  8649. /**
  8650. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  8651. */
  8652. /* line 109, ../bower_components/foundation/scss/normalize.scss */
  8653. abbr[title] {
  8654. border-bottom: 1px dotted;
  8655. }
  8656. /**
  8657. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  8658. */
  8659. /* line 117, ../bower_components/foundation/scss/normalize.scss */
  8660. b,
  8661. strong {
  8662. font-weight: bold;
  8663. }
  8664. /**
  8665. * Address styling not present in Safari and Chrome.
  8666. */
  8667. /* line 126, ../bower_components/foundation/scss/normalize.scss */
  8668. dfn {
  8669. font-style: italic;
  8670. }
  8671. /**
  8672. * Address variable `h1` font-size and margin within `section` and `article`
  8673. * contexts in Firefox 4+, Safari, and Chrome.
  8674. */
  8675. /* line 135, ../bower_components/foundation/scss/normalize.scss */
  8676. h1 {
  8677. font-size: 2em;
  8678. margin: 0.67em 0;
  8679. }
  8680. /**
  8681. * Address styling not present in IE 8/9.
  8682. */
  8683. /* line 144, ../bower_components/foundation/scss/normalize.scss */
  8684. mark {
  8685. background: #ff0;
  8686. color: #000;
  8687. }
  8688. /**
  8689. * Address inconsistent and variable font size in all browsers.
  8690. */
  8691. /* line 153, ../bower_components/foundation/scss/normalize.scss */
  8692. small {
  8693. font-size: 80%;
  8694. }
  8695. /**
  8696. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  8697. */
  8698. /* line 161, ../bower_components/foundation/scss/normalize.scss */
  8699. sub,
  8700. sup {
  8701. font-size: 75%;
  8702. line-height: 0;
  8703. position: relative;
  8704. vertical-align: baseline;
  8705. }
  8706. /* line 169, ../bower_components/foundation/scss/normalize.scss */
  8707. sup {
  8708. top: -0.5em;
  8709. }
  8710. /* line 173, ../bower_components/foundation/scss/normalize.scss */
  8711. sub {
  8712. bottom: -0.25em;
  8713. }
  8714. /* Embedded content
  8715. ========================================================================== */
  8716. /**
  8717. * Remove border when inside `a` element in IE 8/9/10.
  8718. */
  8719. /* line 184, ../bower_components/foundation/scss/normalize.scss */
  8720. img {
  8721. border: 0;
  8722. }
  8723. /**
  8724. * Correct overflow not hidden in IE 9/10/11.
  8725. */
  8726. /* line 192, ../bower_components/foundation/scss/normalize.scss */
  8727. svg:not(:root) {
  8728. overflow: hidden;
  8729. }
  8730. /* Grouping content
  8731. ========================================================================== */
  8732. /**
  8733. * Address margin not present in IE 8/9 and Safari.
  8734. */
  8735. /* line 203, ../bower_components/foundation/scss/normalize.scss */
  8736. figure {
  8737. margin: 1em 40px;
  8738. }
  8739. /**
  8740. * Address differences between Firefox and other browsers.
  8741. */
  8742. /* line 211, ../bower_components/foundation/scss/normalize.scss */
  8743. hr {
  8744. box-sizing: content-box;
  8745. height: 0;
  8746. }
  8747. /**
  8748. * Contain overflow in all browsers.
  8749. */
  8750. /* line 221, ../bower_components/foundation/scss/normalize.scss */
  8751. pre {
  8752. overflow: auto;
  8753. }
  8754. /**
  8755. * Address odd `em`-unit font size rendering in all browsers.
  8756. */
  8757. /* line 229, ../bower_components/foundation/scss/normalize.scss */
  8758. code,
  8759. kbd,
  8760. pre,
  8761. samp {
  8762. font-family: monospace, monospace;
  8763. font-size: 1em;
  8764. }
  8765. /* Forms
  8766. ========================================================================== */
  8767. /**
  8768. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  8769. * styling of `select`, unless a `border` property is set.
  8770. */
  8771. /**
  8772. * 1. Correct color not being inherited.
  8773. * Known issue: affects color of disabled elements.
  8774. * 2. Correct font properties not being inherited.
  8775. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  8776. */
  8777. /* line 252, ../bower_components/foundation/scss/normalize.scss */
  8778. button,
  8779. input,
  8780. optgroup,
  8781. select,
  8782. textarea {
  8783. color: inherit;
  8784. /* 1 */
  8785. font: inherit;
  8786. /* 2 */
  8787. margin: 0;
  8788. /* 3 */
  8789. }
  8790. /**
  8791. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  8792. */
  8793. /* line 266, ../bower_components/foundation/scss/normalize.scss */
  8794. button {
  8795. overflow: visible;
  8796. }
  8797. /**
  8798. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  8799. * All other form control elements do not inherit `text-transform` values.
  8800. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  8801. * Correct `select` style inheritance in Firefox.
  8802. */
  8803. /* line 277, ../bower_components/foundation/scss/normalize.scss */
  8804. button,
  8805. select {
  8806. text-transform: none;
  8807. }
  8808. /**
  8809. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  8810. * and `video` controls.
  8811. * 2. Correct inability to style clickable `input` types in iOS.
  8812. * 3. Improve usability and consistency of cursor style between image-type
  8813. * `input` and others.
  8814. */
  8815. /* line 290, ../bower_components/foundation/scss/normalize.scss */
  8816. button,
  8817. html input[type="button"],
  8818. input[type="reset"],
  8819. input[type="submit"] {
  8820. -webkit-appearance: button;
  8821. /* 2 */
  8822. cursor: pointer;
  8823. /* 3 */
  8824. }
  8825. /**
  8826. * Re-set default cursor for disabled elements.
  8827. */
  8828. /* line 302, ../bower_components/foundation/scss/normalize.scss */
  8829. button[disabled],
  8830. html input[disabled] {
  8831. cursor: default;
  8832. }
  8833. /**
  8834. * Remove inner padding and border in Firefox 4+.
  8835. */
  8836. /* line 311, ../bower_components/foundation/scss/normalize.scss */
  8837. button::-moz-focus-inner,
  8838. input::-moz-focus-inner {
  8839. border: 0;
  8840. padding: 0;
  8841. }
  8842. /**
  8843. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  8844. * the UA stylesheet.
  8845. */
  8846. /* line 322, ../bower_components/foundation/scss/normalize.scss */
  8847. input {
  8848. line-height: normal;
  8849. }
  8850. /**
  8851. * It's recommended that you don't attempt to style these elements.
  8852. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  8853. *
  8854. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  8855. * 2. Remove excess padding in IE 8/9/10.
  8856. */
  8857. /* line 334, ../bower_components/foundation/scss/normalize.scss */
  8858. input[type="checkbox"],
  8859. input[type="radio"] {
  8860. box-sizing: border-box;
  8861. /* 1 */
  8862. padding: 0;
  8863. /* 2 */
  8864. }
  8865. /**
  8866. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  8867. * `font-size` values of the `input`, it causes the cursor style of the
  8868. * decrement button to change from `default` to `text`.
  8869. */
  8870. /* line 346, ../bower_components/foundation/scss/normalize.scss */
  8871. input[type="number"]::-webkit-inner-spin-button,
  8872. input[type="number"]::-webkit-outer-spin-button {
  8873. height: auto;
  8874. }
  8875. /**
  8876. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  8877. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
  8878. * (include `-moz` to future-proof).
  8879. */
  8880. /* line 357, ../bower_components/foundation/scss/normalize.scss */
  8881. input[type="search"] {
  8882. -webkit-appearance: textfield;
  8883. /* 1 */
  8884. /* 2 */
  8885. box-sizing: content-box;
  8886. }
  8887. /**
  8888. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  8889. * Safari (but not Chrome) clips the cancel button when the search input has
  8890. * padding (and `textfield` appearance).
  8891. */
  8892. /* line 370, ../bower_components/foundation/scss/normalize.scss */
  8893. input[type="search"]::-webkit-search-cancel-button,
  8894. input[type="search"]::-webkit-search-decoration {
  8895. -webkit-appearance: none;
  8896. }
  8897. /**
  8898. * Define consistent border, margin, and padding.
  8899. */
  8900. /* line 379, ../bower_components/foundation/scss/normalize.scss */
  8901. fieldset {
  8902. border: 1px solid #c0c0c0;
  8903. margin: 0 2px;
  8904. padding: 0.35em 0.625em 0.75em;
  8905. }
  8906. /**
  8907. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  8908. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  8909. */
  8910. /* line 390, ../bower_components/foundation/scss/normalize.scss */
  8911. legend {
  8912. border: 0;
  8913. /* 1 */
  8914. padding: 0;
  8915. /* 2 */
  8916. }
  8917. /**
  8918. * Remove default vertical scrollbar in IE 8/9/10/11.
  8919. */
  8920. /* line 399, ../bower_components/foundation/scss/normalize.scss */
  8921. textarea {
  8922. overflow: auto;
  8923. }
  8924. /**
  8925. * Don't inherit the `font-weight` (applied by a rule above).
  8926. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  8927. */
  8928. /* line 408, ../bower_components/foundation/scss/normalize.scss */
  8929. optgroup {
  8930. font-weight: bold;
  8931. }
  8932. /* Tables
  8933. ========================================================================== */
  8934. /**
  8935. * Remove most spacing between table cells.
  8936. */
  8937. /* line 419, ../bower_components/foundation/scss/normalize.scss */
  8938. table {
  8939. border-collapse: collapse;
  8940. border-spacing: 0;
  8941. }
  8942. /* line 424, ../bower_components/foundation/scss/normalize.scss */
  8943. td,
  8944. th {
  8945. padding: 0;
  8946. }
  8947. /*
  8948. * www.g-u-i.net
  8949. */
  8950. /* line 3, ../scss/fonts.scss */
  8951. body {
  8952. font-size: 16px;
  8953. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  8954. font-weight: 500;
  8955. font-style: normal;
  8956. line-height: 1.3;
  8957. }
  8958. /* line 5, ../scss/fonts.scss */
  8959. a {
  8960. color: #007BC2;
  8961. text-decoration: none;
  8962. }
  8963. /* line 7, ../scss/fonts.scss */
  8964. h1 {
  8965. font-size: 1.6em;
  8966. }
  8967. /* line 8, ../scss/fonts.scss */
  8968. h2 {
  8969. font-size: 1.5em;
  8970. }
  8971. /* line 9, ../scss/fonts.scss */
  8972. h3 {
  8973. font-size: 1.4em;
  8974. }
  8975. /* line 10, ../scss/fonts.scss */
  8976. h4 {
  8977. font-size: 1.3em;
  8978. }
  8979. /* line 11, ../scss/fonts.scss */
  8980. h5 {
  8981. font-size: 1.2em;
  8982. }
  8983. /* line 12, ../scss/fonts.scss */
  8984. h6 {
  8985. font-size: 1.1em;
  8986. }
  8987. /* line 14, ../scss/fonts.scss */
  8988. input, button, select, textarea {
  8989. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  8990. font-weight: 500;
  8991. font-style: normal;
  8992. }
  8993. /* line 21, ../scss/fonts.scss */
  8994. #footer #footer-bottom {
  8995. text-align: center;
  8996. }
  8997. /* line 22, ../scss/fonts.scss */
  8998. #footer #footer-bottom .block {
  8999. font-size: 8px;
  9000. }
  9001. /** RESPONSIVE break points */
  9002. /* 0, 480px */
  9003. /* 481px, 768px */
  9004. /* 769px, 980px */
  9005. /* 981px, 1200px */
  9006. /* 1201px, ... */
  9007. /* line 66, ../scss/layout.scss */
  9008. * {
  9009. box-sizing: content-box;
  9010. }
  9011. /* line 76, ../scss/layout.scss */
  9012. body {
  9013. overflow-y: scroll;
  9014. top: 0;
  9015. }
  9016. /* line 80, ../scss/layout.scss */
  9017. h1, h2, h3, h4, h5, h6 {
  9018. font-family: inherit;
  9019. }
  9020. /* line 84, ../scss/layout.scss */
  9021. h1 {
  9022. font-weight: bold;
  9023. }
  9024. /* line 88, ../scss/layout.scss */
  9025. figure {
  9026. margin: 0;
  9027. }
  9028. /* line 92, ../scss/layout.scss */
  9029. input[type="checkbox"] + label {
  9030. margin: 0;
  9031. }
  9032. /** NIVEAU 0 */
  9033. /* line 99, ../scss/layout.scss */
  9034. #root {
  9035. min-width: 320px;
  9036. }
  9037. /* line 102, ../scss/layout.scss */
  9038. .ie8 #root {
  9039. min-width: 1024px;
  9040. }
  9041. /** NIVEAU 1 */
  9042. /* line 106, ../scss/layout.scss */
  9043. #container {
  9044. margin: 0 auto;
  9045. position: relative;
  9046. -webkit-transition: padding-top 0.5s ease-out, 1s, ease-out;
  9047. transition: padding-top 0.5s ease-out, 1s, ease-out;
  9048. }
  9049. /** NIVEAU 2 */
  9050. /* line 115, ../scss/layout.scss */
  9051. #header {
  9052. z-index: 1000;
  9053. width: 96%;
  9054. padding-left: 2%;
  9055. padding-right: 2%;
  9056. }
  9057. @media only screen and (min-width: 40.063em) {
  9058. /* line 115, ../scss/layout.scss */
  9059. #header {
  9060. position: fixed;
  9061. top: 0;
  9062. margin: 0 auto;
  9063. background-color: #fff;
  9064. min-width: 310.4px;
  9065. }
  9066. }
  9067. /* line 121, ../scss/layout.scss */
  9068. .editmenu-enabled #header {
  9069. margin-top: 30px;
  9070. }
  9071. /* line 122, ../scss/layout.scss */
  9072. .admin-menu #header {
  9073. margin-top: 35px;
  9074. }
  9075. /* line 125, ../scss/layout.scss */
  9076. #utilities {
  9077. z-index: 999;
  9078. background-color: #fff;
  9079. width: 96%;
  9080. padding-left: 2%;
  9081. padding-right: 2%;
  9082. }
  9083. @media only screen and (min-width: 40.063em) {
  9084. /* line 127, ../scss/layout.scss */
  9085. html.no-touch #utilities {
  9086. position: fixed;
  9087. top: 0;
  9088. margin: 0 auto;
  9089. min-width: 310.4px;
  9090. margin-top: 60px;
  9091. }
  9092. /* line 131, ../scss/layout.scss */
  9093. html.no-touch .editmenu-enabled #utilities {
  9094. margin-top: 80px;
  9095. }
  9096. /* line 132, ../scss/layout.scss */
  9097. html.no-touch .admin-menu #utilities {
  9098. margin-top: 85px;
  9099. }
  9100. }
  9101. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  9102. /* line 135, ../scss/layout.scss */
  9103. #utilities > .region {
  9104. padding-top: 5px;
  9105. padding-bottom: 5px;
  9106. }
  9107. }
  9108. /* line 143, ../scss/layout.scss */
  9109. #main {
  9110. width: 96%;
  9111. padding-left: 2%;
  9112. padding-right: 2%;
  9113. overflow-x: hidden;
  9114. }
  9115. /* line 145, ../scss/layout.scss */
  9116. #footer {
  9117. width: 96%;
  9118. padding-left: 2%;
  9119. padding-right: 2%;
  9120. }
  9121. /** NIVEAU 3 */
  9122. /** NIVEAU 4 */
  9123. /* line 159, ../scss/layout.scss */
  9124. #center {
  9125. padding: 5px;
  9126. }
  9127. /** Z-INDEX */
  9128. /* line 162, ../scss/layout.scss */
  9129. #block-feedback-form {
  9130. z-index: 1001;
  9131. }
  9132. /* line 163, ../scss/layout.scss */
  9133. #admin-menu {
  9134. z-index: 1002;
  9135. }
  9136. /* line 164, ../scss/layout.scss */
  9137. #admin-toolbar {
  9138. z-index: 1003;
  9139. }
  9140. /* line 69, ../scss/styles.scss */
  9141. .op-visible {
  9142. visibility: visible;
  9143. }
  9144. /* line 71, ../scss/styles.scss */
  9145. .csstransitions .op-visible {
  9146. -webkit-opacity: 1;
  9147. -khtml-opacity: 1;
  9148. -moz-opacity: 1;
  9149. opacity: 1;
  9150. -webkit-transition: opacity 0.3s ease-out;
  9151. transition: opacity 0.3s ease-out;
  9152. }
  9153. /* line 76, ../scss/styles.scss */
  9154. .op-hidden {
  9155. visibility: hidden;
  9156. }
  9157. /* line 78, ../scss/styles.scss */
  9158. .op-hidden > * {
  9159. margin-top: -100000px;
  9160. }
  9161. /* line 81, ../scss/styles.scss */
  9162. .csstransition .op-hidden {
  9163. -webkit-opacity: 0;
  9164. -khtml-opacity: 0;
  9165. -moz-opacity: 0;
  9166. opacity: 0;
  9167. -webkit-transition: visibility 0s 0.3s;
  9168. transition: visibility 0s 0.3s;
  9169. }
  9170. /* line 84, ../scss/styles.scss */
  9171. .csstransition .op-hidden > * {
  9172. -webkit-transition: margin-top 0s 0.3s;
  9173. transition: margin-top 0s 0.3s;
  9174. }
  9175. /** colomnized() */
  9176. /** HEADER */
  9177. /* line 176, ../scss/styles.scss */
  9178. #header {
  9179. padding-top: 5px;
  9180. padding-bottom: 10px;
  9181. height: 45px;
  9182. }
  9183. /* line 183, ../scss/styles.scss */
  9184. #header a, #header a:active, #header a:visited {
  9185. color: #000;
  9186. }
  9187. /* line 187, ../scss/styles.scss */
  9188. #header .logo {
  9189. display: moz-inline-stack;
  9190. display: inline-block;
  9191. vertical-align: top;
  9192. zoom: 1;
  9193. *display: inline;
  9194. }
  9195. /* line 190, ../scss/styles.scss */
  9196. #header .logo h1 {
  9197. margin: 0;
  9198. font-size: 36px;
  9199. display: moz-inline-stack;
  9200. display: inline-block;
  9201. vertical-align: top;
  9202. zoom: 1;
  9203. *display: inline;
  9204. vertical-align: baseline;
  9205. position: relative;
  9206. line-height: 1.25;
  9207. }
  9208. /* line 194, ../scss/styles.scss */
  9209. #header .logo h1 a:hover {
  9210. text-decoration: none;
  9211. }
  9212. /* line 196, ../scss/styles.scss */
  9213. #header .logo span.beta {
  9214. line-height: 1;
  9215. letter-spacing: 0.1em;
  9216. color: #00007a;
  9217. font-size: 12px;
  9218. position: absolute;
  9219. left: 0;
  9220. padding-left: 0;
  9221. margin-left: 0;
  9222. }
  9223. /* line 202, ../scss/styles.scss */
  9224. #header .logo span.slogan {
  9225. font-size: 14px;
  9226. margin-top: -3px;
  9227. margin-left: -0.5em;
  9228. font-weight: 900;
  9229. }
  9230. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  9231. /* line 202, ../scss/styles.scss */
  9232. #header .logo span.slogan {
  9233. display: none;
  9234. }
  9235. }
  9236. /* line 208, ../scss/styles.scss */
  9237. .ie8 #header .logo span.slogan {
  9238. position: absolute;
  9239. margin-top: 22px;
  9240. }
  9241. /* line 212, ../scss/styles.scss */
  9242. #header #header-blocks {
  9243. padding-top: 17px;
  9244. float: right;
  9245. text-align: right;
  9246. text-transform: capitalize;
  9247. }
  9248. /* line 219, ../scss/styles.scss */
  9249. #header #header-blocks > .region {
  9250. display: moz-inline-stack;
  9251. display: inline-block;
  9252. vertical-align: top;
  9253. zoom: 1;
  9254. *display: inline;
  9255. vertical-align: middle;
  9256. padding-right: 1em;
  9257. margin-right: 1em;
  9258. border-right: 1px solid #707070;
  9259. }
  9260. @media only screen and (max-width: 40em) {
  9261. /* line 219, ../scss/styles.scss */
  9262. #header #header-blocks > .region {
  9263. padding-right: 0.3em;
  9264. margin-right: 0.3em;
  9265. }
  9266. }
  9267. /* line 224, ../scss/styles.scss */
  9268. #header #header-blocks > .region:last-child {
  9269. border: none;
  9270. padding: 0;
  9271. margin: 0;
  9272. }
  9273. /* line 227, ../scss/styles.scss */
  9274. #header #header-blocks .block {
  9275. display: moz-inline-stack;
  9276. display: inline-block;
  9277. vertical-align: top;
  9278. zoom: 1;
  9279. *display: inline;
  9280. vertical-align: middle;
  9281. }
  9282. /* line 229, ../scss/styles.scss */
  9283. #header #header-blocks .block h2 {
  9284. font-size: 12px;
  9285. margin: 0;
  9286. line-height: 1.2;
  9287. font-weight: normal;
  9288. }
  9289. /* line 232, ../scss/styles.scss */
  9290. #header #header-blocks .block:not(:last-child) {
  9291. padding-right: 0.8em;
  9292. }
  9293. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  9294. /* line 232, ../scss/styles.scss */
  9295. #header #header-blocks .block:not(:last-child) {
  9296. padding-right: 0.3em;
  9297. }
  9298. }
  9299. /* line 238, ../scss/styles.scss */
  9300. #header #header-blocks #block-user-login {
  9301. font-size: 12px;
  9302. text-align: left;
  9303. position: relative;
  9304. }
  9305. /* line 241, ../scss/styles.scss */
  9306. #header #header-blocks #block-user-login h2 {
  9307. padding-right: 5px;
  9308. }
  9309. /* line 244, ../scss/styles.scss */
  9310. #header #header-blocks #block-user-login h2 i {
  9311. vertical-align: text-bottom;
  9312. margin: 0 2px 2px 0;
  9313. }
  9314. /* line 246, ../scss/styles.scss */
  9315. #header #header-blocks #block-user-login form#user-login-form {
  9316. position: absolute;
  9317. overflow: hidden;
  9318. right: 0;
  9319. margin: 0;
  9320. height: 0;
  9321. -webkit-transition: height 0.3s ease-out;
  9322. transition: height 0.3s ease-out;
  9323. }
  9324. /* line 250, ../scss/styles.scss */
  9325. #header #header-blocks #block-user-login form#user-login-form > div {
  9326. padding: 5px;
  9327. margin: 5px;
  9328. background-color: #e6e6e6;
  9329. border-radius: 5px;
  9330. background-clip: padding-box;
  9331. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  9332. }
  9333. /* line 254, ../scss/styles.scss */
  9334. #header #header-blocks #block-user-login form#user-login-form .form-item {
  9335. margin: 0;
  9336. padding-bottom: 5px;
  9337. }
  9338. /* line 255, ../scss/styles.scss */
  9339. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  9340. margin: 0;
  9341. font-size: 10px;
  9342. }
  9343. /* line 260, ../scss/styles.scss */
  9344. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  9345. width: 150px;
  9346. }
  9347. /* line 262, ../scss/styles.scss */
  9348. #header #header-blocks #block-user-login form#user-login-form #edit-actions {
  9349. margin: 5px 0;
  9350. padding: 0;
  9351. background-color: transparent;
  9352. text-align: right;
  9353. }
  9354. /* line 264, ../scss/styles.scss */
  9355. #header #header-blocks #block-user-login form#user-login-form #edit-actions input.form-submit {
  9356. font-size: 12px;
  9357. padding: 10px;
  9358. }
  9359. /* line 269, ../scss/styles.scss */
  9360. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  9361. font-size: 12px;
  9362. color: #686868;
  9363. }
  9364. /* line 280, ../scss/styles.scss */
  9365. html.no-touch #header #header-blocks #block-user-login:hover form#user-login-form, #header #header-blocks #block-user-login.hovered form#user-login-form {
  9366. height: 300px;
  9367. z-index: 1000;
  9368. }
  9369. @media only screen and (max-width: 40em) {
  9370. /* line 289, ../scss/styles.scss */
  9371. #header #header-blocks #block-user-login span.login {
  9372. display: none;
  9373. }
  9374. }
  9375. /* line 293, ../scss/styles.scss */
  9376. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  9377. position: relative;
  9378. }
  9379. /* line 295, ../scss/styles.scss */
  9380. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  9381. margin: 0;
  9382. font-size: 12px;
  9383. line-height: 1.1;
  9384. }
  9385. /* line 300, ../scss/styles.scss */
  9386. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  9387. position: absolute;
  9388. z-index: 20;
  9389. background-color: white;
  9390. background-color: rgba(255, 255, 255, 0.9);
  9391. *background-color: white;
  9392. min-width: 100%;
  9393. margin: 0 0 0 -5px;
  9394. border-radius: 3px;
  9395. background-clip: padding-box;
  9396. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  9397. }
  9398. /* line 303, ../scss/styles.scss */
  9399. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  9400. background: #FFF;
  9401. }
  9402. /* line 304, ../scss/styles.scss */
  9403. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  9404. margin: 0;
  9405. }
  9406. /* line 305, ../scss/styles.scss */
  9407. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  9408. list-style: none;
  9409. font-size: 12px;
  9410. font-weight: 700;
  9411. padding: 0 10px;
  9412. text-align: left;
  9413. width: 200px;
  9414. height: 0;
  9415. overflow: hidden;
  9416. -webkit-transition: height 0.3s ease-out;
  9417. transition: height 0.3s ease-out;
  9418. }
  9419. /* line 312, ../scss/styles.scss */
  9420. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview {
  9421. white-space: nowrap;
  9422. cursor: pointer;
  9423. }
  9424. /* line 313, ../scss/styles.scss */
  9425. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  9426. max-width: 150px;
  9427. }
  9428. /* line 314, ../scss/styles.scss */
  9429. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  9430. font-weight: 300;
  9431. padding: 0 5px;
  9432. }
  9433. /* line 317, ../scss/styles.scss */
  9434. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.edit-list {
  9435. padding-right: 5px;
  9436. }
  9437. /* line 320, ../scss/styles.scss */
  9438. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  9439. visibility: hidden;
  9440. }
  9441. /* line 100, ../scss/styles.scss */
  9442. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  9443. margin-top: -100000px;
  9444. }
  9445. /* line 103, ../scss/styles.scss */
  9446. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  9447. -webkit-opacity: 0;
  9448. -khtml-opacity: 0;
  9449. -moz-opacity: 0;
  9450. opacity: 0;
  9451. -webkit-transition: visibility 0s 0.3s;
  9452. transition: visibility 0s 0.3s;
  9453. }
  9454. /* line 106, ../scss/styles.scss */
  9455. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  9456. -webkit-transition: margin-top 0s 0.3s;
  9457. transition: margin-top 0s 0.3s;
  9458. }
  9459. /* line 327, ../scss/styles.scss */
  9460. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  9461. padding-bottom: 5px;
  9462. }
  9463. /* line 329, ../scss/styles.scss */
  9464. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  9465. height: 15px;
  9466. padding: 3px 10px;
  9467. }
  9468. /* line 334, ../scss/styles.scss */
  9469. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  9470. vertical-align: text-bottom;
  9471. margin: 0 2px 2px 0;
  9472. }
  9473. @media only screen and (min-width: 90.063em) {
  9474. /* line 335, ../scss/styles.scss */
  9475. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  9476. display: none;
  9477. }
  9478. }
  9479. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  9480. /* line 336, ../scss/styles.scss */
  9481. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  9482. display: none;
  9483. }
  9484. }
  9485. /* line 340, ../scss/styles.scss */
  9486. #header #header-blocks #block-ajax-register-ajax-register-block {
  9487. font-size: 12px;
  9488. text-transform: lowercase;
  9489. }
  9490. /* line 345, ../scss/styles.scss */
  9491. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  9492. font-size: 12px;
  9493. }
  9494. /* line 347, ../scss/styles.scss */
  9495. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  9496. vertical-align: text-bottom;
  9497. margin: 0 5px 1px 0;
  9498. }
  9499. /* line 351, ../scss/styles.scss */
  9500. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  9501. text-transform: lowercase;
  9502. }
  9503. /* line 352, ../scss/styles.scss */
  9504. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  9505. display: none;
  9506. margin-left: 5px;
  9507. }
  9508. /* line 353, ../scss/styles.scss */
  9509. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  9510. margin: 0 0.5em 0 0.5em;
  9511. }
  9512. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  9513. /* line 354, ../scss/styles.scss */
  9514. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  9515. display: none;
  9516. }
  9517. }
  9518. @media only screen and (min-width: 40.063em) {
  9519. /* line 355, ../scss/styles.scss */
  9520. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  9521. display: none;
  9522. }
  9523. }
  9524. @media only screen and (max-width: 40em) {
  9525. /* line 357, ../scss/styles.scss */
  9526. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  9527. display: none;
  9528. }
  9529. }
  9530. /* line 361, ../scss/styles.scss */
  9531. #header #header-blocks #headerblock-right .block {
  9532. display: moz-inline-stack;
  9533. display: inline-block;
  9534. vertical-align: top;
  9535. zoom: 1;
  9536. *display: inline;
  9537. vertical-align: middle;
  9538. padding: 0;
  9539. }
  9540. /* line 363, ../scss/styles.scss */
  9541. #header #header-blocks #headerblock-right .block:first-child {
  9542. padding: 0;
  9543. }
  9544. /* line 367, ../scss/styles.scss */
  9545. #header #header-blocks #block-locale-language {
  9546. margin-left: 1em;
  9547. }
  9548. /* line 370, ../scss/styles.scss */
  9549. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  9550. margin: 0;
  9551. padding: 0;
  9552. list-style-type: none;
  9553. font-size: 12px;
  9554. line-height: 1;
  9555. }
  9556. /* line 374, ../scss/styles.scss */
  9557. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  9558. display: none;
  9559. }
  9560. /* line 376, ../scss/styles.scss */
  9561. .ie8 #header #header-blocks #block-locale-language {
  9562. padding-top: 5px;
  9563. }
  9564. /* line 404, ../scss/styles.scss */
  9565. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  9566. display: none;
  9567. }
  9568. /* line 405, ../scss/styles.scss */
  9569. #header #header-blocks #block-menu-menu-top-menu h2 i {
  9570. vertical-align: text-bottom;
  9571. margin: 0 0 2px 0;
  9572. }
  9573. /* line 408, ../scss/styles.scss */
  9574. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  9575. font-size: 12px;
  9576. list-style: none;
  9577. }
  9578. /* line 411, ../scss/styles.scss */
  9579. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  9580. display: inline;
  9581. }
  9582. @media only screen and (min-width: 40.063em) {
  9583. /* line 415, ../scss/styles.scss */
  9584. #header #header-blocks #block-menu-menu-top-menu h2 {
  9585. display: none;
  9586. }
  9587. /* line 416, ../scss/styles.scss */
  9588. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  9589. display: moz-inline-stack;
  9590. display: inline-block;
  9591. vertical-align: top;
  9592. zoom: 1;
  9593. *display: inline;
  9594. vertical-align: middle;
  9595. padding: 0;
  9596. margin: 0;
  9597. }
  9598. /* line 420, ../scss/styles.scss */
  9599. #header #header-blocks #block-menu-menu-top-menu a {
  9600. padding: 0 0.5em 0 0;
  9601. }
  9602. }
  9603. @media only screen and (max-width: 40em) {
  9604. /* line 402, ../scss/styles.scss */
  9605. #header #header-blocks #block-menu-menu-top-menu {
  9606. position: relative;
  9607. }
  9608. /* line 426, ../scss/styles.scss */
  9609. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  9610. display: none;
  9611. }
  9612. /* line 427, ../scss/styles.scss */
  9613. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  9614. position: absolute;
  9615. width: 150px;
  9616. display: none;
  9617. right: 0;
  9618. padding-top: 5px;
  9619. }
  9620. /* line 429, ../scss/styles.scss */
  9621. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  9622. background-color: #e6e6e6;
  9623. border-radius: 5px;
  9624. background-clip: padding-box;
  9625. padding: 0 5px 5px 5px;
  9626. margin: 0;
  9627. text-align: right;
  9628. }
  9629. /* line 432, ../scss/styles.scss */
  9630. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  9631. height: 0;
  9632. overflow: hidden;
  9633. -webkit-transition: height 0.3s ease-out;
  9634. transition: height 0.3s ease-out;
  9635. }
  9636. /* line 436, ../scss/styles.scss */
  9637. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  9638. display: block;
  9639. width: 100%;
  9640. padding: 2px 5px;
  9641. font-size: 12px;
  9642. }
  9643. /* line 442, ../scss/styles.scss */
  9644. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  9645. z-index: 1000;
  9646. }
  9647. /* line 444, ../scss/styles.scss */
  9648. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper {
  9649. display: block;
  9650. }
  9651. /* line 446, ../scss/styles.scss */
  9652. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper ul.menu li, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper ul.menu li {
  9653. height: 25px;
  9654. }
  9655. }
  9656. /* line 453, ../scss/styles.scss */
  9657. #header #header-blocks #block-materio-user-old-database-link a {
  9658. font-size: 12px;
  9659. }
  9660. /* line 459, ../scss/styles.scss */
  9661. #header #header-blocks #block-materio-user-front-link a {
  9662. font-size: 12px;
  9663. }
  9664. /* line 462, ../scss/styles.scss */
  9665. #header #header-blocks #block-materio-user-front-link i {
  9666. vertical-align: text-bottom;
  9667. margin: 0 2px 2px 0;
  9668. }
  9669. /* line 463, ../scss/styles.scss */
  9670. #header #header-blocks #block-materio-user-front-link span.text {
  9671. display: none;
  9672. }
  9673. /* line 468, ../scss/styles.scss */
  9674. #utilities {
  9675. margin-top: 60px;
  9676. }
  9677. /* line 470, ../scss/styles.scss */
  9678. .not-logged-in #utilities {
  9679. overflow: hidden;
  9680. }
  9681. /* line 472, ../scss/styles.scss */
  9682. #utilities.closed {
  9683. height: 0;
  9684. }
  9685. /* line 473, ../scss/styles.scss */
  9686. #utilities.closed .tabs, #utilities.closed .node-didactique {
  9687. display: none;
  9688. }
  9689. /* line 477, ../scss/styles.scss */
  9690. #highlighted {
  9691. border-radius: 5px;
  9692. background-clip: padding-box;
  9693. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  9694. padding: 0.5em;
  9695. position: relative;
  9696. }
  9697. @media only screen and (min-width: 40.063em) {
  9698. /* line 477, ../scss/styles.scss */
  9699. #highlighted {
  9700. margin: 20px 0 6px;
  9701. }
  9702. /* line 487, ../scss/styles.scss */
  9703. #highlighted .block {
  9704. display: moz-inline-stack;
  9705. display: inline-block;
  9706. vertical-align: top;
  9707. zoom: 1;
  9708. *display: inline;
  9709. vertical-align: top;
  9710. }
  9711. /* line 488, ../scss/styles.scss */
  9712. #highlighted .block-materio-didactique {
  9713. width: 65%;
  9714. }
  9715. /* line 490, ../scss/styles.scss */
  9716. #highlighted .block-materio-didactique .side {
  9717. display: moz-inline-stack;
  9718. display: inline-block;
  9719. vertical-align: top;
  9720. zoom: 1;
  9721. *display: inline;
  9722. vertical-align: top;
  9723. position: relative;
  9724. }
  9725. /* line 494, ../scss/styles.scss */
  9726. #highlighted .block-materio-didactique .group-sideleft {
  9727. width: 65%;
  9728. }
  9729. /* line 495, ../scss/styles.scss */
  9730. #highlighted .block-materio-didactique .group-sideright {
  9731. width: 30%;
  9732. }
  9733. /* line 497, ../scss/styles.scss */
  9734. #highlighted .block-materio-didactique .field-name-title-field {
  9735. font-size: 24px;
  9736. }
  9737. /* line 501, ../scss/styles.scss */
  9738. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  9739. width: 47%;
  9740. }
  9741. /* line 502, ../scss/styles.scss */
  9742. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  9743. margin-right: 2%;
  9744. }
  9745. /* line 507, ../scss/styles.scss */
  9746. #highlighted #block-materio-user-user-register {
  9747. width: 30%;
  9748. padding: 5px;
  9749. height: 290px;
  9750. }
  9751. }
  9752. @media only screen {
  9753. /* line 514, ../scss/styles.scss */
  9754. #highlighted .block-materio-didactique .side {
  9755. display: moz-inline-stack;
  9756. display: inline-block;
  9757. vertical-align: top;
  9758. zoom: 1;
  9759. *display: inline;
  9760. vertical-align: top;
  9761. }
  9762. }
  9763. @media only screen and (max-width: 40em) {
  9764. /* line 477, ../scss/styles.scss */
  9765. #highlighted {
  9766. margin: 10px 0 6px;
  9767. }
  9768. /* line 521, ../scss/styles.scss */
  9769. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  9770. width: 100%;
  9771. }
  9772. /* line 522, ../scss/styles.scss */
  9773. #highlighted .block-materio-didactique .field-name-title-field {
  9774. font-size: 20px;
  9775. cursor: pointer;
  9776. }
  9777. /* line 525, ../scss/styles.scss */
  9778. #highlighted .block-materio-didactique .node-didactique:not(:first-child) .field-name-title-field {
  9779. font-weight: normal;
  9780. }
  9781. /* line 525, ../scss/styles.scss */
  9782. #highlighted .block-materio-didactique .node-didactique:not(:first-child) .field-name-title-field:before {
  9783. content: "- ";
  9784. }
  9785. /* line 528, ../scss/styles.scss */
  9786. html.js #highlighted .block-materio-didactique .node-didactique {
  9787. height: auto;
  9788. height: 25px;
  9789. overflow: hidden;
  9790. }
  9791. /* line 531, ../scss/styles.scss */
  9792. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  9793. height: auto;
  9794. }
  9795. }
  9796. @media only screen and (max-width: 40em) {
  9797. /* line 539, ../scss/styles.scss */
  9798. #highlighted .block-materio-didactique .group-sideleft {
  9799. width: 50%;
  9800. }
  9801. /* line 540, ../scss/styles.scss */
  9802. #highlighted .block-materio-didactique .group-sideright {
  9803. width: 50%;
  9804. }
  9805. }
  9806. /* line 545, ../scss/styles.scss */
  9807. .oldie #highlighted .block {
  9808. display: moz-inline-stack;
  9809. display: inline-block;
  9810. vertical-align: top;
  9811. zoom: 1;
  9812. *display: inline;
  9813. }
  9814. /* line 550, ../scss/styles.scss */
  9815. #highlighted .block-materio-didactique .node-didactique {
  9816. font-size: 14px;
  9817. background-color: #fff;
  9818. margin: 0 auto;
  9819. }
  9820. /* line 556, ../scss/styles.scss */
  9821. #highlighted .block-materio-didactique .node-didactique .side {
  9822. position: relative;
  9823. }
  9824. /* line 558, ../scss/styles.scss */
  9825. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  9826. font-weight: 900;
  9827. font-style: italic;
  9828. padding: 5px 0;
  9829. }
  9830. /* line 563, ../scss/styles.scss */
  9831. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  9832. text-align: center;
  9833. }
  9834. /* line 565, ../scss/styles.scss */
  9835. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  9836. display: inline;
  9837. }
  9838. /* line 568, ../scss/styles.scss */
  9839. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  9840. display: none;
  9841. }
  9842. /* line 576, ../scss/styles.scss */
  9843. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  9844. display: none;
  9845. }
  9846. /* line 582, ../scss/styles.scss */
  9847. html.js #highlighted .block-materio-didactique {
  9848. position: relative;
  9849. overflow: hidden;
  9850. }
  9851. /* line 585, ../scss/styles.scss */
  9852. html.js #highlighted .block-materio-didactique .slides {
  9853. height: 270px;
  9854. margin: 0;
  9855. position: relative;
  9856. width: 100%;
  9857. overflow: hidden;
  9858. }
  9859. /* line 587, ../scss/styles.scss */
  9860. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  9861. position: absolute;
  9862. width: 100%;
  9863. height: 100%;
  9864. top: 0;
  9865. left: 0;
  9866. }
  9867. /* line 588, ../scss/styles.scss */
  9868. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  9869. height: 30px;
  9870. }
  9871. /* line 589, ../scss/styles.scss */
  9872. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  9873. height: 240px;
  9874. }
  9875. /* line 591, ../scss/styles.scss */
  9876. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  9877. height: 100%;
  9878. }
  9879. @media only screen and (max-width: 40em) {
  9880. /* line 592, ../scss/styles.scss */
  9881. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  9882. width: 290px;
  9883. height: 163.125px;
  9884. }
  9885. }
  9886. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  9887. /* line 592, ../scss/styles.scss */
  9888. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  9889. width: 216px;
  9890. height: 121.5px;
  9891. }
  9892. }
  9893. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  9894. /* line 592, ../scss/styles.scss */
  9895. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  9896. width: 216px;
  9897. height: 121.5px;
  9898. }
  9899. }
  9900. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  9901. /* line 592, ../scss/styles.scss */
  9902. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  9903. width: 280px;
  9904. height: 157.5px;
  9905. }
  9906. }
  9907. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  9908. /* line 592, ../scss/styles.scss */
  9909. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  9910. width: 340px;
  9911. height: 191.25px;
  9912. }
  9913. }
  9914. /* line 599, ../scss/styles.scss */
  9915. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  9916. height: 100%;
  9917. width: 100%;
  9918. }
  9919. /* line 603, ../scss/styles.scss */
  9920. html.js #highlighted .block-materio-didactique .tabs {
  9921. height: 30px;
  9922. margin: 0;
  9923. text-align: left;
  9924. }
  9925. /* line 605, ../scss/styles.scss */
  9926. html.js #highlighted .block-materio-didactique .tabs > * {
  9927. display: moz-inline-stack;
  9928. display: inline-block;
  9929. vertical-align: top;
  9930. zoom: 1;
  9931. *display: inline;
  9932. vertical-align: top;
  9933. padding: 5px 10px;
  9934. font-size: 12px;
  9935. cursor: pointer;
  9936. color: #bfbfbf;
  9937. }
  9938. /* line 607, ../scss/styles.scss */
  9939. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  9940. color: #3f3f3f;
  9941. }
  9942. /** block register */
  9943. /* line 615, ../scss/styles.scss */
  9944. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  9945. min-height: 120px;
  9946. padding: 5px;
  9947. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  9948. }
  9949. /* line 618, ../scss/styles.scss */
  9950. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  9951. max-width: 250px;
  9952. float: right;
  9953. background-image: none;
  9954. }
  9955. /* line 621, ../scss/styles.scss */
  9956. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  9957. font-weight: 900;
  9958. font-style: italic;
  9959. padding: 5px 0;
  9960. margin: 0;
  9961. line-height: 1;
  9962. background-color: #fff;
  9963. display: moz-inline-stack;
  9964. display: inline-block;
  9965. vertical-align: top;
  9966. zoom: 1;
  9967. *display: inline;
  9968. min-width: 50%;
  9969. }
  9970. /* line 622, ../scss/styles.scss */
  9971. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  9972. font-size: 24px;
  9973. }
  9974. /* line 622, ../scss/styles.scss */
  9975. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  9976. font-size: 16px;
  9977. }
  9978. /* line 624, ../scss/styles.scss */
  9979. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  9980. margin: 0;
  9981. background-color: white;
  9982. background-color: rgba(255, 255, 255, 0.7);
  9983. *background-color: white;
  9984. padding-bottom: 5px;
  9985. display: moz-inline-stack;
  9986. display: inline-block;
  9987. vertical-align: top;
  9988. zoom: 1;
  9989. *display: inline;
  9990. }
  9991. /* line 626, ../scss/styles.scss */
  9992. #block-materio-user-user-register .form-item, #block-materio-user-user-register .form-wrapper, #block-materio-user-user-createaccount .form-item, #block-materio-user-user-createaccount .form-wrapper {
  9993. margin: 0;
  9994. display: moz-inline-stack;
  9995. display: inline-block;
  9996. vertical-align: top;
  9997. zoom: 1;
  9998. *display: inline;
  9999. vertical-align: middle;
  10000. position: relative;
  10001. }
  10002. /* line 630, ../scss/styles.scss */
  10003. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  10004. margin-right: 5px;
  10005. }
  10006. /* line 632, ../scss/styles.scss */
  10007. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  10008. font-size: 12px;
  10009. border-radius: 5px;
  10010. background-clip: padding-box;
  10011. margin-bottom: 4px;
  10012. }
  10013. /* line 632, ../scss/styles.scss */
  10014. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  10015. margin-right: 5px;
  10016. }
  10017. /* line 633, ../scss/styles.scss */
  10018. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  10019. width: 11em;
  10020. }
  10021. /* line 634, ../scss/styles.scss */
  10022. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  10023. width: 7em;
  10024. }
  10025. /* line 636, ../scss/styles.scss */
  10026. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  10027. position: absolute;
  10028. bottom: 100%;
  10029. z-index: 9999;
  10030. background-image: none;
  10031. height: auto;
  10032. padding: 5px;
  10033. border-radius: 5px;
  10034. background-clip: padding-box;
  10035. margin-bottom: 10px;
  10036. font-size: 10px;
  10037. background-color: #fff;
  10038. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  10039. -webkit-transition: bottom 0.1s ease-out;
  10040. transition: bottom 0.1s ease-out;
  10041. }
  10042. /* line 644, ../scss/styles.scss */
  10043. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  10044. background-color: #f3968d;
  10045. color: #fff;
  10046. }
  10047. /* line 650, ../scss/styles.scss */
  10048. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  10049. display: none;
  10050. }
  10051. /* line 653, ../scss/styles.scss */
  10052. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  10053. font-size: 16px;
  10054. padding: 0.1em 0.6em 0.2em;
  10055. border-radius: 0.3em;
  10056. background-clip: padding-box;
  10057. font-weight: bold;
  10058. margin-bottom: 4px;
  10059. }
  10060. /* line 660, ../scss/styles.scss */
  10061. #block-materio-user-user-register .form-item-termsofservices, #block-materio-user-user-register #edit-field-newsletter, #block-materio-user-user-createaccount .form-item-termsofservices, #block-materio-user-user-createaccount #edit-field-newsletter {
  10062. margin-bottom: 0;
  10063. display: block;
  10064. line-height: 1;
  10065. }
  10066. /* line 662, ../scss/styles.scss */
  10067. #block-materio-user-user-register .form-item-termsofservices > *, #block-materio-user-user-register #edit-field-newsletter > *, #block-materio-user-user-createaccount .form-item-termsofservices > *, #block-materio-user-user-createaccount #edit-field-newsletter > * {
  10068. display: moz-inline-stack;
  10069. display: inline-block;
  10070. vertical-align: top;
  10071. zoom: 1;
  10072. *display: inline;
  10073. vertical-align: middle;
  10074. margin: 0;
  10075. }
  10076. /* line 663, ../scss/styles.scss */
  10077. #block-materio-user-user-register .form-item-termsofservices label, #block-materio-user-user-register #edit-field-newsletter label, #block-materio-user-user-createaccount .form-item-termsofservices label, #block-materio-user-user-createaccount #edit-field-newsletter label {
  10078. font-size: 10px;
  10079. background-color: #fff;
  10080. border-radius: 3px;
  10081. background-clip: padding-box;
  10082. }
  10083. /* line 667, ../scss/styles.scss */
  10084. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  10085. border: 2px solid #69CDCF;
  10086. background-color: #69CDCF;
  10087. color: #fff;
  10088. cursor: pointer;
  10089. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  10090. -webkit-transition: text-shadow 0.2s ease-out;
  10091. transition: text-shadow 0.2s ease-out;
  10092. }
  10093. /* line 48, ../scss/styles.scss */
  10094. #block-materio-user-user-register #user-register-form .form-submit:hover, #block-materio-user-user-register #user-register-form .form-submit:focus, #block-materio-user-user-createaccount #user-register-form .form-submit:hover, #block-materio-user-user-createaccount #user-register-form .form-submit:focus {
  10095. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  10096. }
  10097. /* line 51, ../scss/styles.scss */
  10098. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  10099. -webkit-transition: text-shadow 0s ease-out;
  10100. transition: text-shadow 0s ease-out;
  10101. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  10102. }
  10103. /* line 670, ../scss/styles.scss */
  10104. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  10105. background-color: #ddd;
  10106. border: 2px solid #ddd;
  10107. }
  10108. /* line 677, ../scss/styles.scss */
  10109. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  10110. border: 2px solid #E6DE1C;
  10111. background-color: #E6DE1C;
  10112. color: #fff;
  10113. cursor: pointer;
  10114. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  10115. -webkit-transition: text-shadow 0.2s ease-out;
  10116. transition: text-shadow 0.2s ease-out;
  10117. }
  10118. /* line 48, ../scss/styles.scss */
  10119. #block-materio-user-user-register #user-login .form-submit:hover, #block-materio-user-user-register #user-login .form-submit:focus, #block-materio-user-user-createaccount #user-login .form-submit:hover, #block-materio-user-user-createaccount #user-login .form-submit:focus {
  10120. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  10121. }
  10122. /* line 51, ../scss/styles.scss */
  10123. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  10124. -webkit-transition: text-shadow 0s ease-out;
  10125. transition: text-shadow 0s ease-out;
  10126. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  10127. }
  10128. /* line 683, ../scss/styles.scss */
  10129. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  10130. padding-top: 0.5em;
  10131. }
  10132. /* line 685, ../scss/styles.scss */
  10133. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  10134. font-size: 12px;
  10135. }
  10136. /* line 689, ../scss/styles.scss */
  10137. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  10138. display: block;
  10139. }
  10140. /* line 691, ../scss/styles.scss */
  10141. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  10142. font-size: 12px;
  10143. }
  10144. /* line 696, ../scss/styles.scss */
  10145. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  10146. display: block;
  10147. width: 5em;
  10148. font-size: 16px;
  10149. padding: 0.1em 0.3em 0.2em;
  10150. border-radius: 0.3em;
  10151. background-clip: padding-box;
  10152. font-weight: bold;
  10153. border: 2px solid #69CDCF;
  10154. background-color: #69CDCF;
  10155. color: #fff;
  10156. cursor: pointer;
  10157. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  10158. -webkit-transition: text-shadow 0.2s ease-out;
  10159. transition: text-shadow 0.2s ease-out;
  10160. text-align: center;
  10161. text-decoration: none;
  10162. }
  10163. /* line 48, ../scss/styles.scss */
  10164. #block-materio-user-user-register a.join:hover, #block-materio-user-user-register a.join:focus, #block-materio-user-user-createaccount a.join:hover, #block-materio-user-user-createaccount a.join:focus {
  10165. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  10166. }
  10167. /* line 51, ../scss/styles.scss */
  10168. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  10169. -webkit-transition: text-shadow 0s ease-out;
  10170. transition: text-shadow 0s ease-out;
  10171. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  10172. }
  10173. @media only screen and (max-width: 40em) {
  10174. /* line 615, ../scss/styles.scss */
  10175. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  10176. background-position: 160% 50%;
  10177. }
  10178. /* line 710, ../scss/styles.scss */
  10179. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  10180. width: 7em;
  10181. }
  10182. }
  10183. @media only screen and (max-width: 40em) {
  10184. /* line 615, ../scss/styles.scss */
  10185. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  10186. min-height: 60px;
  10187. padding: 15px 0;
  10188. }
  10189. /* line 715, ../scss/styles.scss */
  10190. #block-materio-user-user-register #user-login, #block-materio-user-user-register > h3:first-child, #block-materio-user-user-register > h3 span, #block-materio-user-user-createaccount #user-login, #block-materio-user-user-createaccount > h3:first-child, #block-materio-user-user-createaccount > h3 span {
  10191. display: none;
  10192. }
  10193. }
  10194. /* line 718, ../scss/styles.scss */
  10195. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  10196. color: #b94a48;
  10197. font-size: 12px;
  10198. }
  10199. /* line 722, ../scss/styles.scss */
  10200. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  10201. padding: 0.5em 0.5em 5em 0.5em;
  10202. width: 400px;
  10203. background-color: #fff;
  10204. padding: 5px;
  10205. border-radius: 5px;
  10206. background-clip: padding-box;
  10207. }
  10208. /* line 732, ../scss/styles.scss */
  10209. .modal-content #block-materio-user-user-register #user-register-form div.homepage-textfield, .modal-content #block-materio-user-user-createaccount #user-register-form div.homepage-textfield {
  10210. display: none;
  10211. }
  10212. /* line 734, ../scss/styles.scss */
  10213. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  10214. font-size: 12px;
  10215. }
  10216. /** content-top */
  10217. /* line 743, ../scss/styles.scss */
  10218. #content-top {
  10219. /** flag-list */
  10220. }
  10221. /* line 747, ../scss/styles.scss */
  10222. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  10223. font-size: 10px;
  10224. color: #666666;
  10225. font-weight: 300;
  10226. }
  10227. /* line 750, ../scss/styles.scss */
  10228. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  10229. margin-top: 40px;
  10230. }
  10231. /* line 752, ../scss/styles.scss */
  10232. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  10233. font-size: 12px;
  10234. font-weight: 700;
  10235. margin: 0;
  10236. line-height: 1.2;
  10237. color: #000;
  10238. }
  10239. /* line 754, ../scss/styles.scss */
  10240. #content-top #block-materio-flag-materio-flag-mybookmarks h2 a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks h2 i.fi-xicon-remove, #content-top #block-materio-flag-materio-flag-mylists h2 a.open-list, #content-top #block-materio-flag-materio-flag-mylists h2 i.fi-xicon-remove {
  10241. display: moz-inline-stack;
  10242. display: inline-block;
  10243. vertical-align: top;
  10244. zoom: 1;
  10245. *display: inline;
  10246. cursor: pointer;
  10247. color: #000;
  10248. -webkit-opacity: 0;
  10249. -khtml-opacity: 0;
  10250. -moz-opacity: 0;
  10251. opacity: 0;
  10252. -webkit-transition: opacity 0.1s ease-out;
  10253. transition: opacity 0.1s ease-out;
  10254. }
  10255. /* line 761, ../scss/styles.scss */
  10256. #content-top #block-materio-flag-materio-flag-mybookmarks:hover a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks:hover i.fi-x, #content-top #block-materio-flag-materio-flag-mylists:hover a.open-list, #content-top #block-materio-flag-materio-flag-mylists:hover i.fi-x {
  10257. -webkit-opacity: 1;
  10258. -khtml-opacity: 1;
  10259. -moz-opacity: 1;
  10260. opacity: 1;
  10261. }
  10262. /* line 766, ../scss/styles.scss */
  10263. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  10264. cursor: pointer;
  10265. }
  10266. /* line 770, ../scss/styles.scss */
  10267. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  10268. height: 0;
  10269. overflow: hidden;
  10270. }
  10271. /* line 772, ../scss/styles.scss */
  10272. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  10273. height: auto;
  10274. }
  10275. /* line 775, ../scss/styles.scss */
  10276. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks article.node.vm-bookmark, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks article.node.vm-bookmark {
  10277. overflow: hidden;
  10278. }
  10279. /* line 783, ../scss/styles.scss */
  10280. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section .flaged {
  10281. height: 0;
  10282. overflow: hidden;
  10283. }
  10284. /* line 787, ../scss/styles.scss */
  10285. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active .flaged {
  10286. height: auto;
  10287. }
  10288. /* line 799, ../scss/styles.scss */
  10289. #tool-bar {
  10290. position: relative;
  10291. }
  10292. /* line 802, ../scss/styles.scss */
  10293. #tool-bar .inner-content {
  10294. padding-top: 10px;
  10295. padding-bottom: 10px;
  10296. }
  10297. /* line 804, ../scss/styles.scss */
  10298. #tool-bar .inner-content > * {
  10299. display: moz-inline-stack;
  10300. display: inline-block;
  10301. vertical-align: top;
  10302. zoom: 1;
  10303. *display: inline;
  10304. vertical-align: middle;
  10305. }
  10306. @media only screen and (max-width: 40em) {
  10307. /* line 802, ../scss/styles.scss */
  10308. #tool-bar .inner-content {
  10309. padding: 0;
  10310. }
  10311. /* line 811, ../scss/styles.scss */
  10312. #tool-bar .inner-content h1 {
  10313. line-height: 0.5;
  10314. }
  10315. }
  10316. /* line 822, ../scss/styles.scss */
  10317. .oldie #tool-bar {
  10318. background-color: #B1ADAD;
  10319. padding: 0 10px;
  10320. }
  10321. /* line 824, ../scss/styles.scss */
  10322. #tool-bar .btn-group {
  10323. padding: 0;
  10324. border-radius: 3px;
  10325. background-clip: padding-box;
  10326. background-color: #fff;
  10327. margin: 4px;
  10328. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  10329. -webkit-transition: box-shadow 0.3s ease-out;
  10330. transition: box-shadow 0.3s ease-out;
  10331. }
  10332. /* line 22, ../scss/styles.scss */
  10333. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  10334. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  10335. }
  10336. /* line 25, ../scss/styles.scss */
  10337. #tool-bar .btn-group:active {
  10338. -webkit-transition: box-shadow 0s ease-out;
  10339. transition: box-shadow 0s ease-out;
  10340. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  10341. }
  10342. /* line 829, ../scss/styles.scss */
  10343. #tool-bar #block-materio-page-title-materio-page-title {
  10344. margin: 0 10px 0 0;
  10345. }
  10346. /* line 832, ../scss/styles.scss */
  10347. #tool-bar #block-materio-page-title-materio-page-title h1 {
  10348. margin: 0;
  10349. font-size: 24px;
  10350. text-transform: capitalize;
  10351. font-weight: 300;
  10352. line-height: 1;
  10353. }
  10354. /* line 834, ../scss/styles.scss */
  10355. #tool-bar #block-materio-page-title-materio-page-title i {
  10356. vertical-align: middle;
  10357. margin-right: 5px;
  10358. }
  10359. /* line 835, ../scss/styles.scss */
  10360. #tool-bar #block-materio-page-title-materio-page-title i.icon-materio-folder {
  10361. margin-bottom: 2px;
  10362. }
  10363. /* line 836, ../scss/styles.scss */
  10364. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  10365. visibility: hidden;
  10366. }
  10367. /* line 100, ../scss/styles.scss */
  10368. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  10369. margin-top: -100000px;
  10370. }
  10371. /* line 103, ../scss/styles.scss */
  10372. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  10373. -webkit-opacity: 0;
  10374. -khtml-opacity: 0;
  10375. -moz-opacity: 0;
  10376. opacity: 0;
  10377. -webkit-transition: visibility 0s 0.3s;
  10378. transition: visibility 0s 0.3s;
  10379. }
  10380. /* line 106, ../scss/styles.scss */
  10381. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  10382. -webkit-transition: margin-top 0s 0.3s;
  10383. transition: margin-top 0s 0.3s;
  10384. }
  10385. /* line 838, ../scss/styles.scss */
  10386. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  10387. margin: 0 0 0 5px;
  10388. }
  10389. /* line 841, ../scss/styles.scss */
  10390. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  10391. visibility: visible;
  10392. }
  10393. /* line 92, ../scss/styles.scss */
  10394. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  10395. -webkit-opacity: 1;
  10396. -khtml-opacity: 1;
  10397. -moz-opacity: 1;
  10398. opacity: 1;
  10399. -webkit-transition: opacity 0.3s ease-out;
  10400. transition: opacity 0.3s ease-out;
  10401. }
  10402. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  10403. /* line 829, ../scss/styles.scss */
  10404. #tool-bar #block-materio-page-title-materio-page-title {
  10405. display: block;
  10406. }
  10407. }
  10408. /* line 850, ../scss/styles.scss */
  10409. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  10410. display: moz-inline-stack;
  10411. display: inline-block;
  10412. vertical-align: top;
  10413. zoom: 1;
  10414. *display: inline;
  10415. margin: 0 2px;
  10416. }
  10417. /* line 852, ../scss/styles.scss */
  10418. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  10419. cursor: normal;
  10420. }
  10421. /* line 853, ../scss/styles.scss */
  10422. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  10423. display: none;
  10424. font-size: 10px;
  10425. }
  10426. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  10427. /* line 856, ../scss/styles.scss */
  10428. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  10429. display: block;
  10430. }
  10431. /* line 856, ../scss/styles.scss */
  10432. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  10433. display: none;
  10434. }
  10435. }
  10436. @media only screen and (max-width: 40em) {
  10437. /* line 859, ../scss/styles.scss */
  10438. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium {
  10439. display: block;
  10440. }
  10441. }
  10442. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  10443. /* line 863, ../scss/styles.scss */
  10444. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardbig, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardbig {
  10445. display: block;
  10446. }
  10447. }
  10448. /* line 867, ../scss/styles.scss */
  10449. #tool-bar #block-materio-search-api-materio-search-api-search {
  10450. float: right;
  10451. }
  10452. /* line 871, ../scss/styles.scss */
  10453. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  10454. display: moz-inline-stack;
  10455. display: inline-block;
  10456. vertical-align: top;
  10457. zoom: 1;
  10458. *display: inline;
  10459. margin: 0 0 0 10px;
  10460. padding: 3px 10px;
  10461. background-color: #fff;
  10462. border-radius: 3px;
  10463. background-clip: padding-box;
  10464. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  10465. -webkit-transition: box-shadow 0.3s ease-out;
  10466. transition: box-shadow 0.3s ease-out;
  10467. text-align: right;
  10468. }
  10469. /* line 22, ../scss/styles.scss */
  10470. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  10471. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  10472. }
  10473. /* line 25, ../scss/styles.scss */
  10474. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  10475. -webkit-transition: box-shadow 0s ease-out;
  10476. transition: box-shadow 0s ease-out;
  10477. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  10478. }
  10479. /* line 878, ../scss/styles.scss */
  10480. #tool-bar #materio-search-api-search-form {
  10481. text-align: right;
  10482. display: moz-inline-stack;
  10483. display: inline-block;
  10484. vertical-align: top;
  10485. zoom: 1;
  10486. *display: inline;
  10487. margin: 0;
  10488. }
  10489. /* line 882, ../scss/styles.scss */
  10490. #tool-bar #materio-search-api-search-form .form-item, #tool-bar #materio-search-api-search-form input, #tool-bar #materio-search-api-search-form .form-checkboxes {
  10491. display: moz-inline-stack;
  10492. display: inline-block;
  10493. vertical-align: top;
  10494. zoom: 1;
  10495. *display: inline;
  10496. margin: 0;
  10497. vertical-align: middle;
  10498. padding: 0;
  10499. }
  10500. /* line 884, ../scss/styles.scss */
  10501. #tool-bar #materio-search-api-search-form .form-checkboxes {
  10502. padding: 3px;
  10503. font-size: 12px;
  10504. }
  10505. /* line 886, ../scss/styles.scss */
  10506. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  10507. margin: 0 5px;
  10508. }
  10509. /* line 888, ../scss/styles.scss */
  10510. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  10511. font-size: 10px;
  10512. }
  10513. /* line 892, ../scss/styles.scss */
  10514. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  10515. border: 1px solid #ccc;
  10516. border-radius: 20px;
  10517. background-clip: padding-box;
  10518. padding: 4px 5px;
  10519. height: 25px;
  10520. font-size: 12px;
  10521. line-height: 1;
  10522. background-position: 100% 5px;
  10523. }
  10524. /* line 897, ../scss/styles.scss */
  10525. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  10526. background-position: 100% -15px;
  10527. }
  10528. /* line 901, ../scss/styles.scss */
  10529. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  10530. background-color: #1a1a1a;
  10531. }
  10532. /* line 906, ../scss/styles.scss */
  10533. #tool-bar #materio-search-api-search-form input#edit-create {
  10534. padding: 3px;
  10535. }
  10536. /* line 908, ../scss/styles.scss */
  10537. #tool-bar #materio-search-api-search-form.loading {
  10538. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  10539. }
  10540. /* line 910, ../scss/styles.scss */
  10541. #tool-bar #materio-search-api-search-form.loading input#edit-create {
  10542. visibility: hidden;
  10543. }
  10544. @media only screen and (max-width: 40em) {
  10545. /* line 914, ../scss/styles.scss */
  10546. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  10547. width: 16em;
  10548. }
  10549. /* line 915, ../scss/styles.scss */
  10550. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  10551. display: none;
  10552. }
  10553. }
  10554. /* line 921, ../scss/styles.scss */
  10555. #center {
  10556. background-color: #e6e6e6;
  10557. border-radius: 10px;
  10558. background-clip: padding-box;
  10559. }
  10560. /* line 923, ../scss/styles.scss */
  10561. .node-type-page #center {
  10562. background-color: #fff;
  10563. }
  10564. /* line 924, ../scss/styles.scss */
  10565. .ie8 #center {
  10566. height: 100%;
  10567. margin-top: 20px;
  10568. }
  10569. /* line 928, ../scss/styles.scss */
  10570. #content {
  10571. -webkit-transition: height 0.3s ease-out;
  10572. transition: height 0.3s ease-out;
  10573. }
  10574. /* line 932, ../scss/styles.scss */
  10575. #content.faded {
  10576. -webkit-opacity: 0.5;
  10577. -khtml-opacity: 0.5;
  10578. -moz-opacity: 0.5;
  10579. opacity: 0.5;
  10580. -webkit-transition: opacity 0.3s ease-out;
  10581. transition: opacity 0.3s ease-out;
  10582. }
  10583. /* line 937, ../scss/styles.scss */
  10584. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  10585. padding: 0 0 30px 0;
  10586. margin: 0 0 20px 0;
  10587. }
  10588. /* line 940, ../scss/styles.scss */
  10589. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  10590. background-image: url("../img/ajax-loader.gif");
  10591. background-position: center bottom;
  10592. background-repeat: no-repeat;
  10593. }
  10594. /* line 946, ../scss/styles.scss */
  10595. #content .materiobase-results p.search-performance, #content .materiobase-results p.flaglist-infos, #content .materiobase-results p.actualities-infos, #content .materiobase-actuality p.search-performance, #content .materiobase-actuality p.flaglist-infos, #content .materiobase-actuality p.actualities-infos, #content .materio-flags-list p.search-performance, #content .materio-flags-list p.flaglist-infos, #content .materio-flags-list p.actualities-infos {
  10596. font-size: 12px;
  10597. font-weight: 500;
  10598. margin: 0;
  10599. padding: 10px 0 5px 15px;
  10600. }
  10601. /* line 952, ../scss/styles.scss */
  10602. #content .materiobase-results .search-results, #content .materiobase-results .actuality-items, #content .materiobase-results .flaglist-items, #content .materiobase-actuality .search-results, #content .materiobase-actuality .actuality-items, #content .materiobase-actuality .flaglist-items, #content .materio-flags-list .search-results, #content .materio-flags-list .actuality-items, #content .materio-flags-list .flaglist-items {
  10603. font-size: 0;
  10604. text-align: center;
  10605. }
  10606. /* line 954, ../scss/styles.scss */
  10607. #content .materiobase-results .search-results > *, #content .materiobase-results .actuality-items > *, #content .materiobase-results .flaglist-items > *, #content .materiobase-actuality .search-results > *, #content .materiobase-actuality .actuality-items > *, #content .materiobase-actuality .flaglist-items > *, #content .materio-flags-list .search-results > *, #content .materio-flags-list .actuality-items > *, #content .materio-flags-list .flaglist-items > * {
  10608. font-size: 16px;
  10609. }
  10610. /* line 956, ../scss/styles.scss */
  10611. #content .materiobase-results .search-results > *, #content .materiobase-results .actuality-items > *, #content .materiobase-results .flaglist-items > *, #content .materiobase-actuality .search-results > *, #content .materiobase-actuality .actuality-items > *, #content .materiobase-actuality .flaglist-items > *, #content .materio-flags-list .search-results > *, #content .materio-flags-list .actuality-items > *, #content .materio-flags-list .flaglist-items > * {
  10612. text-align: left;
  10613. }
  10614. /* line 962, ../scss/styles.scss */
  10615. #content ul.pager {
  10616. padding: 1em 0;
  10617. text-align: left;
  10618. }
  10619. /* line 964, ../scss/styles.scss */
  10620. .ie8 #content ul.pager {
  10621. position: absolute;
  10622. left: 37px;
  10623. bottom: 35px;
  10624. }
  10625. /* line 966, ../scss/styles.scss */
  10626. #content ul.pager li {
  10627. margin: 0;
  10628. display: moz-inline-stack;
  10629. display: inline-block;
  10630. vertical-align: top;
  10631. zoom: 1;
  10632. *display: inline;
  10633. vertical-align: middle;
  10634. }
  10635. /* line 968, ../scss/styles.scss */
  10636. #content ul.pager .pager-current, #content ul.pager a {
  10637. color: #000;
  10638. font-size: 12px;
  10639. }
  10640. /* line 969, ../scss/styles.scss */
  10641. #content ul.pager .pager-current {
  10642. font-weight: 900;
  10643. font-size: 14px;
  10644. }
  10645. /* line 969, ../scss/styles.scss */
  10646. .ie8 #content ul.pager .pager-current {
  10647. background: #fff;
  10648. padding: 0.3em 1em 0.3em 1em;
  10649. margin-top: 0.05em;
  10650. border: 1px solid #333333;
  10651. }
  10652. /* line 970, ../scss/styles.scss */
  10653. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  10654. font-size: 24px;
  10655. font-weight: 300;
  10656. }
  10657. /** #content-bottom */
  10658. /* line 981, ../scss/styles.scss */
  10659. #content-bottom {
  10660. padding-top: 10px;
  10661. }
  10662. /** CARDS */
  10663. /** card search performance */
  10664. /* line 1160, ../scss/styles.scss */
  10665. article.search-performance .inner {
  10666. padding: 1em;
  10667. }
  10668. /* line 1164, ../scss/styles.scss */
  10669. article.search-performance p {
  10670. font-size: 14px;
  10671. }
  10672. /* line 1166, ../scss/styles.scss */
  10673. article.search-performance a.button {
  10674. display: block;
  10675. margin: 10px auto;
  10676. max-width: 10em;
  10677. font-size: 18px;
  10678. padding: 0.1em 0.6em 0.2em;
  10679. border-radius: 0.3em;
  10680. background-clip: padding-box;
  10681. font-weight: bold;
  10682. border: 2px solid #69CDCF;
  10683. background-color: #69CDCF;
  10684. color: #fff;
  10685. cursor: pointer;
  10686. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  10687. -webkit-transition: text-shadow 0.2s ease-out;
  10688. transition: text-shadow 0.2s ease-out;
  10689. text-align: center;
  10690. text-decoration: none;
  10691. }
  10692. /* line 48, ../scss/styles.scss */
  10693. article.search-performance a.button:hover, article.search-performance a.button:focus {
  10694. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  10695. }
  10696. /* line 51, ../scss/styles.scss */
  10697. article.search-performance a.button:active {
  10698. -webkit-transition: text-shadow 0s ease-out;
  10699. transition: text-shadow 0s ease-out;
  10700. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  10701. }
  10702. /* line 1174, ../scss/styles.scss */
  10703. article.search-performance.view-mode-cardsmall {
  10704. width: 327px;
  10705. height: 140px;
  10706. display: moz-inline-stack;
  10707. display: inline-block;
  10708. vertical-align: top;
  10709. zoom: 1;
  10710. *display: inline;
  10711. position: relative;
  10712. margin: 7px;
  10713. border-radius: 5px;
  10714. background-clip: padding-box;
  10715. background-color: #FFF;
  10716. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  10717. -webkit-transition: box-shadow 0.3s ease-out;
  10718. transition: box-shadow 0.3s ease-out;
  10719. }
  10720. /* line 1177, ../scss/styles.scss */
  10721. article.search-performance.view-mode-cardmedium {
  10722. width: 210px;
  10723. height: 295px;
  10724. display: moz-inline-stack;
  10725. display: inline-block;
  10726. vertical-align: top;
  10727. zoom: 1;
  10728. *display: inline;
  10729. position: relative;
  10730. margin: 7px;
  10731. border-radius: 5px;
  10732. background-clip: padding-box;
  10733. background-color: #FFF;
  10734. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  10735. -webkit-transition: box-shadow 0.3s ease-out;
  10736. transition: box-shadow 0.3s ease-out;
  10737. }
  10738. /* line 1179, ../scss/styles.scss */
  10739. article.search-performance.view-mode-cardmedium .inner {
  10740. padding: 4em 1em 0;
  10741. }
  10742. /* line 1183, ../scss/styles.scss */
  10743. article.search-performance.view-mode-cardbig {
  10744. width: 425px;
  10745. height: 115px;
  10746. display: moz-inline-stack;
  10747. display: inline-block;
  10748. vertical-align: top;
  10749. zoom: 1;
  10750. *display: inline;
  10751. position: relative;
  10752. margin: 7px;
  10753. border-radius: 5px;
  10754. background-clip: padding-box;
  10755. background-color: #FFF;
  10756. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  10757. -webkit-transition: box-shadow 0.3s ease-out;
  10758. transition: box-shadow 0.3s ease-out;
  10759. display: block;
  10760. margin: 0 auto;
  10761. }
  10762. /* line 1187, ../scss/styles.scss */
  10763. article.search-performance.view-mode-cardfull {
  10764. width: 850px;
  10765. height: 115px;
  10766. display: moz-inline-stack;
  10767. display: inline-block;
  10768. vertical-align: top;
  10769. zoom: 1;
  10770. *display: inline;
  10771. position: relative;
  10772. margin: 7px;
  10773. border-radius: 5px;
  10774. background-clip: padding-box;
  10775. background-color: #FFF;
  10776. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  10777. -webkit-transition: box-shadow 0.3s ease-out;
  10778. transition: box-shadow 0.3s ease-out;
  10779. display: block;
  10780. margin: 0 auto;
  10781. }
  10782. /* line 1189, ../scss/styles.scss */
  10783. article.search-performance.view-mode-cardfull .inner {
  10784. padding: 1em 212px;
  10785. }
  10786. /** CARD BOOKMARKS */
  10787. /* line 1197, ../scss/styles.scss */
  10788. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  10789. width: 50px;
  10790. height: 70px;
  10791. display: moz-inline-stack;
  10792. display: inline-block;
  10793. vertical-align: top;
  10794. zoom: 1;
  10795. *display: inline;
  10796. position: relative;
  10797. margin: 7px;
  10798. border-radius: 5px;
  10799. background-clip: padding-box;
  10800. background-color: #FFF;
  10801. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  10802. -webkit-transition: box-shadow 0.3s ease-out;
  10803. transition: box-shadow 0.3s ease-out;
  10804. margin: 3px;
  10805. }
  10806. /* line 1015, ../scss/styles.scss */
  10807. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  10808. border-radius: 5px;
  10809. background-clip: padding-box;
  10810. overflow: hidden;
  10811. }
  10812. /* line 1020, ../scss/styles.scss */
  10813. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  10814. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  10815. }
  10816. /* line 1022, ../scss/styles.scss */
  10817. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  10818. -webkit-opacity: 0;
  10819. -khtml-opacity: 0;
  10820. -moz-opacity: 0;
  10821. opacity: 0;
  10822. }
  10823. /* line 1024, ../scss/styles.scss */
  10824. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  10825. -webkit-transition: margin 0.3s ease-out;
  10826. transition: margin 0.3s ease-out;
  10827. }
  10828. /* line 1026, ../scss/styles.scss */
  10829. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  10830. margin-left: -50px;
  10831. margin-right: 50px;
  10832. }
  10833. /* line 1028, ../scss/styles.scss */
  10834. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  10835. position: absolute;
  10836. top: 0;
  10837. left: 0;
  10838. z-index: 999;
  10839. }
  10840. /* line 1036, ../scss/styles.scss */
  10841. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  10842. -webkit-transition: width 0.3s ease-out;
  10843. transition: width 0.3s ease-out;
  10844. width: 0;
  10845. padding-left: 0;
  10846. padding-right: 0;
  10847. margin-right: 0;
  10848. margin-left: 0;
  10849. overflow: hidden;
  10850. }
  10851. /* line 1046, ../scss/styles.scss */
  10852. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  10853. position: absolute;
  10854. top: 0;
  10855. right: 0;
  10856. z-index: 11;
  10857. padding: 5px 0;
  10858. border-radius: 0 5px 0 3px;
  10859. background-clip: padding-box;
  10860. font-size: 10px;
  10861. background-color: white;
  10862. background-color: rgba(255, 255, 255, 0.9);
  10863. *background-color: white;
  10864. color: #000;
  10865. }
  10866. /* line 1058, ../scss/styles.scss */
  10867. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  10868. color: #000;
  10869. }
  10870. /* line 1059, ../scss/styles.scss */
  10871. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  10872. background-color: white;
  10873. background-color: rgba(255, 255, 255, 0.9);
  10874. *background-color: white;
  10875. }
  10876. /* line 1060, ../scss/styles.scss */
  10877. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  10878. font-weight: 900;
  10879. font-size: 14px;
  10880. }
  10881. /* line 1062, ../scss/styles.scss */
  10882. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  10883. padding: 0;
  10884. margin: 0;
  10885. }
  10886. /* line 1064, ../scss/styles.scss */
  10887. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  10888. position: relative;
  10889. }
  10890. /* line 1067, ../scss/styles.scss */
  10891. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  10892. margin: 0 5px;
  10893. }
  10894. /* line 1067, ../scss/styles.scss */
  10895. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  10896. cursor: pointer;
  10897. }
  10898. /* line 1070, ../scss/styles.scss */
  10899. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  10900. position: absolute;
  10901. right: 0;
  10902. top: 0;
  10903. margin-right: 22px;
  10904. min-width: 80px;
  10905. padding: 0;
  10906. display: block;
  10907. border-radius: 3px;
  10908. background-clip: padding-box;
  10909. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  10910. }
  10911. /* line 1074, ../scss/styles.scss */
  10912. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  10913. padding: 0;
  10914. margin: 0;
  10915. line-height: 1;
  10916. display: block;
  10917. height: 0;
  10918. overflow: hidden;
  10919. -webkit-transition: height 0.2s ease-out;
  10920. transition: height 0.2s ease-out;
  10921. }
  10922. /* line 1078, ../scss/styles.scss */
  10923. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  10924. display: block;
  10925. }
  10926. /* line 1081, ../scss/styles.scss */
  10927. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  10928. width: 160px;
  10929. font-size: 0;
  10930. }
  10931. /* line 1084, ../scss/styles.scss */
  10932. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  10933. font-size: 11px;
  10934. }
  10935. /* line 1089, ../scss/styles.scss */
  10936. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li {
  10937. display: moz-inline-stack;
  10938. display: inline-block;
  10939. vertical-align: top;
  10940. zoom: 1;
  10941. *display: inline;
  10942. min-width: 48%;
  10943. max-width: 98%;
  10944. padding-left: 2px;
  10945. }
  10946. /* line 1091, ../scss/styles.scss */
  10947. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a {
  10948. color: #a6a6a6;
  10949. -webkit-transition: color 0.2s ease-out;
  10950. transition: color 0.2s ease-out;
  10951. }
  10952. /* line 1093, ../scss/styles.scss */
  10953. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a.unflag-action {
  10954. color: #000;
  10955. text-decoration: none;
  10956. }
  10957. /* line 1097, ../scss/styles.scss */
  10958. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  10959. display: block;
  10960. width: 100%;
  10961. }
  10962. /* line 1099, ../scss/styles.scss */
  10963. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  10964. margin-top: 1px;
  10965. padding-top: 1px;
  10966. border-top: 1px solid #e6e6e6;
  10967. }
  10968. /* line 1100, ../scss/styles.scss */
  10969. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  10970. color: #000;
  10971. }
  10972. /* line 1102, ../scss/styles.scss */
  10973. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading {
  10974. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  10975. }
  10976. /* line 1103, ../scss/styles.scss */
  10977. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading a {
  10978. visibility: hidden;
  10979. }
  10980. /* line 1108, ../scss/styles.scss */
  10981. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  10982. background: #FFF;
  10983. }
  10984. /* line 1113, ../scss/styles.scss */
  10985. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  10986. padding: 5px 5px;
  10987. }
  10988. /* line 1115, ../scss/styles.scss */
  10989. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  10990. height: 17px;
  10991. }
  10992. /* line 1128, ../scss/styles.scss */
  10993. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  10994. position: absolute;
  10995. top: 0;
  10996. left: 0;
  10997. z-index: 11;
  10998. padding: 5px;
  10999. border-radius: 5px 0 3px 0;
  11000. background-clip: padding-box;
  11001. font-size: 10px;
  11002. vertical-align: top;
  11003. background-color: white;
  11004. background-color: rgba(255, 255, 255, 0.9);
  11005. *background-color: white;
  11006. color: #000;
  11007. }
  11008. /* line 1134, ../scss/styles.scss */
  11009. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  11010. padding: 3px 0 0 4px;
  11011. display: moz-inline-stack;
  11012. display: inline-block;
  11013. vertical-align: top;
  11014. zoom: 1;
  11015. *display: inline;
  11016. }
  11017. /* line 1137, ../scss/styles.scss */
  11018. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  11019. font-size: 12px;
  11020. padding-top: 4em;
  11021. margin-top: -4.5em;
  11022. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  11023. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  11024. position: relative;
  11025. }
  11026. /* line 1145, ../scss/styles.scss */
  11027. article.node-materiau.vm-bookmark .side.oops p, article.node-materiau.vm-bookmark .side .upgrade p, article.node-breve.vm-bookmark .side.oops p, article.node-breve.vm-bookmark .side .upgrade p {
  11028. padding: 10px;
  11029. font-size: 12px;
  11030. }
  11031. /* line 1147, ../scss/styles.scss */
  11032. article.node-materiau.vm-bookmark .side.oops p a, article.node-materiau.vm-bookmark .side .upgrade p a, article.node-breve.vm-bookmark .side.oops p a, article.node-breve.vm-bookmark .side .upgrade p a {
  11033. display: block;
  11034. margin: 10px 0;
  11035. font-size: 18px;
  11036. padding: 0.1em 0.6em 0.2em;
  11037. border-radius: 0.3em;
  11038. background-clip: padding-box;
  11039. font-weight: bold;
  11040. border: 2px solid #69CDCF;
  11041. background-color: #69CDCF;
  11042. color: #fff;
  11043. cursor: pointer;
  11044. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  11045. -webkit-transition: text-shadow 0.2s ease-out;
  11046. transition: text-shadow 0.2s ease-out;
  11047. text-align: center;
  11048. text-decoration: none;
  11049. }
  11050. /* line 48, ../scss/styles.scss */
  11051. article.node-materiau.vm-bookmark .side.oops p a:hover, article.node-materiau.vm-bookmark .side.oops p a:focus, article.node-materiau.vm-bookmark .side .upgrade p a:hover, article.node-materiau.vm-bookmark .side .upgrade p a:focus, article.node-breve.vm-bookmark .side.oops p a:hover, article.node-breve.vm-bookmark .side.oops p a:focus, article.node-breve.vm-bookmark .side .upgrade p a:hover, article.node-breve.vm-bookmark .side .upgrade p a:focus {
  11052. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  11053. }
  11054. /* line 51, ../scss/styles.scss */
  11055. article.node-materiau.vm-bookmark .side.oops p a:active, article.node-materiau.vm-bookmark .side .upgrade p a:active, article.node-breve.vm-bookmark .side.oops p a:active, article.node-breve.vm-bookmark .side .upgrade p a:active {
  11056. -webkit-transition: text-shadow 0s ease-out;
  11057. transition: text-shadow 0s ease-out;
  11058. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  11059. }
  11060. /* line 1200, ../scss/styles.scss */
  11061. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  11062. display: none;
  11063. }
  11064. /* line 1204, ../scss/styles.scss */
  11065. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  11066. position: relative;
  11067. z-index: 1;
  11068. background-color: #fff;
  11069. }
  11070. /* line 59, ../scss/styles.scss */
  11071. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  11072. position: absolute;
  11073. top: 0;
  11074. left: 0;
  11075. }
  11076. /* line 61, ../scss/styles.scss */
  11077. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  11078. position: relative;
  11079. z-index: 1;
  11080. }
  11081. /* line 1206, ../scss/styles.scss */
  11082. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  11083. display: none;
  11084. }
  11085. /** CARD SMALL */
  11086. /* line 1210, ../scss/styles.scss */
  11087. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  11088. width: 100px;
  11089. height: 140px;
  11090. display: moz-inline-stack;
  11091. display: inline-block;
  11092. vertical-align: top;
  11093. zoom: 1;
  11094. *display: inline;
  11095. position: relative;
  11096. margin: 7px;
  11097. border-radius: 5px;
  11098. background-clip: padding-box;
  11099. background-color: #FFF;
  11100. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  11101. -webkit-transition: box-shadow 0.3s ease-out;
  11102. transition: box-shadow 0.3s ease-out;
  11103. }
  11104. /* line 1015, ../scss/styles.scss */
  11105. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  11106. border-radius: 5px;
  11107. background-clip: padding-box;
  11108. overflow: hidden;
  11109. }
  11110. /* line 1020, ../scss/styles.scss */
  11111. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  11112. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  11113. }
  11114. /* line 1022, ../scss/styles.scss */
  11115. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  11116. -webkit-opacity: 0;
  11117. -khtml-opacity: 0;
  11118. -moz-opacity: 0;
  11119. opacity: 0;
  11120. }
  11121. /* line 1024, ../scss/styles.scss */
  11122. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  11123. -webkit-transition: margin 0.3s ease-out;
  11124. transition: margin 0.3s ease-out;
  11125. }
  11126. /* line 1026, ../scss/styles.scss */
  11127. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  11128. margin-left: -100px;
  11129. margin-right: 100px;
  11130. }
  11131. /* line 1028, ../scss/styles.scss */
  11132. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  11133. position: absolute;
  11134. top: 0;
  11135. left: 0;
  11136. z-index: 999;
  11137. }
  11138. /* line 1036, ../scss/styles.scss */
  11139. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  11140. -webkit-transition: width 0.3s ease-out;
  11141. transition: width 0.3s ease-out;
  11142. width: 0;
  11143. padding-left: 0;
  11144. padding-right: 0;
  11145. margin-right: 0;
  11146. margin-left: 0;
  11147. overflow: hidden;
  11148. }
  11149. /* line 1046, ../scss/styles.scss */
  11150. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  11151. position: absolute;
  11152. top: 0;
  11153. right: 0;
  11154. z-index: 11;
  11155. padding: 5px 0;
  11156. border-radius: 0 5px 0 3px;
  11157. background-clip: padding-box;
  11158. font-size: 10px;
  11159. background-color: white;
  11160. background-color: rgba(255, 255, 255, 0.9);
  11161. *background-color: white;
  11162. color: #000;
  11163. }
  11164. /* line 1058, ../scss/styles.scss */
  11165. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  11166. color: #000;
  11167. }
  11168. /* line 1059, ../scss/styles.scss */
  11169. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  11170. background-color: white;
  11171. background-color: rgba(255, 255, 255, 0.9);
  11172. *background-color: white;
  11173. }
  11174. /* line 1060, ../scss/styles.scss */
  11175. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  11176. font-weight: 900;
  11177. font-size: 14px;
  11178. }
  11179. /* line 1062, ../scss/styles.scss */
  11180. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  11181. padding: 0;
  11182. margin: 0;
  11183. }
  11184. /* line 1064, ../scss/styles.scss */
  11185. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  11186. position: relative;
  11187. }
  11188. /* line 1067, ../scss/styles.scss */
  11189. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  11190. margin: 0 5px;
  11191. }
  11192. /* line 1067, ../scss/styles.scss */
  11193. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  11194. cursor: pointer;
  11195. }
  11196. /* line 1070, ../scss/styles.scss */
  11197. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  11198. position: absolute;
  11199. right: 0;
  11200. top: 0;
  11201. margin-right: 22px;
  11202. min-width: 80px;
  11203. padding: 0;
  11204. display: block;
  11205. border-radius: 3px;
  11206. background-clip: padding-box;
  11207. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  11208. }
  11209. /* line 1074, ../scss/styles.scss */
  11210. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  11211. padding: 0;
  11212. margin: 0;
  11213. line-height: 1;
  11214. display: block;
  11215. height: 0;
  11216. overflow: hidden;
  11217. -webkit-transition: height 0.2s ease-out;
  11218. transition: height 0.2s ease-out;
  11219. }
  11220. /* line 1078, ../scss/styles.scss */
  11221. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  11222. display: block;
  11223. }
  11224. /* line 1081, ../scss/styles.scss */
  11225. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  11226. width: 160px;
  11227. font-size: 0;
  11228. }
  11229. /* line 1084, ../scss/styles.scss */
  11230. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  11231. font-size: 11px;
  11232. }
  11233. /* line 1089, ../scss/styles.scss */
  11234. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li {
  11235. display: moz-inline-stack;
  11236. display: inline-block;
  11237. vertical-align: top;
  11238. zoom: 1;
  11239. *display: inline;
  11240. min-width: 48%;
  11241. max-width: 98%;
  11242. padding-left: 2px;
  11243. }
  11244. /* line 1091, ../scss/styles.scss */
  11245. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a {
  11246. color: #a6a6a6;
  11247. -webkit-transition: color 0.2s ease-out;
  11248. transition: color 0.2s ease-out;
  11249. }
  11250. /* line 1093, ../scss/styles.scss */
  11251. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a.unflag-action {
  11252. color: #000;
  11253. text-decoration: none;
  11254. }
  11255. /* line 1097, ../scss/styles.scss */
  11256. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  11257. display: block;
  11258. width: 100%;
  11259. }
  11260. /* line 1099, ../scss/styles.scss */
  11261. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  11262. margin-top: 1px;
  11263. padding-top: 1px;
  11264. border-top: 1px solid #e6e6e6;
  11265. }
  11266. /* line 1100, ../scss/styles.scss */
  11267. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  11268. color: #000;
  11269. }
  11270. /* line 1102, ../scss/styles.scss */
  11271. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading {
  11272. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  11273. }
  11274. /* line 1103, ../scss/styles.scss */
  11275. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading a {
  11276. visibility: hidden;
  11277. }
  11278. /* line 1108, ../scss/styles.scss */
  11279. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  11280. background: #FFF;
  11281. }
  11282. /* line 1113, ../scss/styles.scss */
  11283. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  11284. padding: 5px 5px;
  11285. }
  11286. /* line 1115, ../scss/styles.scss */
  11287. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  11288. height: 17px;
  11289. }
  11290. /* line 1128, ../scss/styles.scss */
  11291. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  11292. position: absolute;
  11293. top: 0;
  11294. left: 0;
  11295. z-index: 11;
  11296. padding: 5px;
  11297. border-radius: 5px 0 3px 0;
  11298. background-clip: padding-box;
  11299. font-size: 10px;
  11300. vertical-align: top;
  11301. background-color: white;
  11302. background-color: rgba(255, 255, 255, 0.9);
  11303. *background-color: white;
  11304. color: #000;
  11305. }
  11306. /* line 1134, ../scss/styles.scss */
  11307. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  11308. padding: 3px 0 0 4px;
  11309. display: moz-inline-stack;
  11310. display: inline-block;
  11311. vertical-align: top;
  11312. zoom: 1;
  11313. *display: inline;
  11314. }
  11315. /* line 1137, ../scss/styles.scss */
  11316. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  11317. font-size: 12px;
  11318. padding-top: 4em;
  11319. margin-top: -4.5em;
  11320. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  11321. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  11322. position: relative;
  11323. }
  11324. /* line 1145, ../scss/styles.scss */
  11325. article.node-materiau.vm-cardsmall .side.oops p, article.node-materiau.vm-cardsmall .side .upgrade p, article.node-breve.vm-cardsmall .side.oops p, article.node-breve.vm-cardsmall .side .upgrade p {
  11326. padding: 10px;
  11327. font-size: 12px;
  11328. }
  11329. /* line 1147, ../scss/styles.scss */
  11330. article.node-materiau.vm-cardsmall .side.oops p a, article.node-materiau.vm-cardsmall .side .upgrade p a, article.node-breve.vm-cardsmall .side.oops p a, article.node-breve.vm-cardsmall .side .upgrade p a {
  11331. display: block;
  11332. margin: 10px 0;
  11333. font-size: 18px;
  11334. padding: 0.1em 0.6em 0.2em;
  11335. border-radius: 0.3em;
  11336. background-clip: padding-box;
  11337. font-weight: bold;
  11338. border: 2px solid #69CDCF;
  11339. background-color: #69CDCF;
  11340. color: #fff;
  11341. cursor: pointer;
  11342. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  11343. -webkit-transition: text-shadow 0.2s ease-out;
  11344. transition: text-shadow 0.2s ease-out;
  11345. text-align: center;
  11346. text-decoration: none;
  11347. }
  11348. /* line 48, ../scss/styles.scss */
  11349. article.node-materiau.vm-cardsmall .side.oops p a:hover, article.node-materiau.vm-cardsmall .side.oops p a:focus, article.node-materiau.vm-cardsmall .side .upgrade p a:hover, article.node-materiau.vm-cardsmall .side .upgrade p a:focus, article.node-breve.vm-cardsmall .side.oops p a:hover, article.node-breve.vm-cardsmall .side.oops p a:focus, article.node-breve.vm-cardsmall .side .upgrade p a:hover, article.node-breve.vm-cardsmall .side .upgrade p a:focus {
  11350. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  11351. }
  11352. /* line 51, ../scss/styles.scss */
  11353. article.node-materiau.vm-cardsmall .side.oops p a:active, article.node-materiau.vm-cardsmall .side .upgrade p a:active, article.node-breve.vm-cardsmall .side.oops p a:active, article.node-breve.vm-cardsmall .side .upgrade p a:active {
  11354. -webkit-transition: text-shadow 0s ease-out;
  11355. transition: text-shadow 0s ease-out;
  11356. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  11357. }
  11358. /* line 1212, ../scss/styles.scss */
  11359. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  11360. display: none;
  11361. position: absolute;
  11362. font-size: 14px;
  11363. font-weight: 500;
  11364. }
  11365. /* line 1215, ../scss/styles.scss */
  11366. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  11367. font-weight: 700;
  11368. }
  11369. /* line 1216, ../scss/styles.scss */
  11370. article.node-materiau.vm-cardsmall .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-reference-materio, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  11371. display: moz-inline-stack;
  11372. display: inline-block;
  11373. vertical-align: top;
  11374. zoom: 1;
  11375. *display: inline;
  11376. font-size: 12px;
  11377. }
  11378. /* line 1217, ../scss/styles.scss */
  11379. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  11380. float: right;
  11381. }
  11382. /* line 1219, ../scss/styles.scss */
  11383. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  11384. position: relative;
  11385. z-index: 1;
  11386. background-color: #fff;
  11387. border-radius: 5px;
  11388. background-clip: padding-box;
  11389. overflow: hidden;
  11390. }
  11391. /* line 59, ../scss/styles.scss */
  11392. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  11393. position: absolute;
  11394. top: 0;
  11395. left: 0;
  11396. }
  11397. /* line 61, ../scss/styles.scss */
  11398. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  11399. position: relative;
  11400. z-index: 1;
  11401. }
  11402. /* line 1222, ../scss/styles.scss */
  11403. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  11404. width: 75px;
  11405. min-width: 75px;
  11406. }
  11407. /* line 1224, ../scss/styles.scss */
  11408. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li {
  11409. width: 98%;
  11410. }
  11411. /* line 1226, ../scss/styles.scss */
  11412. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  11413. background: #FFF;
  11414. }
  11415. /* line 1228, ../scss/styles.scss */
  11416. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  11417. visibility: hidden;
  11418. }
  11419. /* line 100, ../scss/styles.scss */
  11420. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  11421. margin-top: -100000px;
  11422. }
  11423. /* line 103, ../scss/styles.scss */
  11424. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  11425. -webkit-opacity: 0;
  11426. -khtml-opacity: 0;
  11427. -moz-opacity: 0;
  11428. opacity: 0;
  11429. -webkit-transition: visibility 0s 0.3s;
  11430. transition: visibility 0s 0.3s;
  11431. }
  11432. /* line 106, ../scss/styles.scss */
  11433. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  11434. -webkit-transition: margin-top 0s 0.3s;
  11435. transition: margin-top 0s 0.3s;
  11436. }
  11437. /* line 1230, ../scss/styles.scss */
  11438. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  11439. visibility: hidden;
  11440. }
  11441. /* line 100, ../scss/styles.scss */
  11442. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  11443. margin-top: -100000px;
  11444. }
  11445. /* line 103, ../scss/styles.scss */
  11446. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  11447. -webkit-opacity: 0;
  11448. -khtml-opacity: 0;
  11449. -moz-opacity: 0;
  11450. opacity: 0;
  11451. -webkit-transition: visibility 0s 0.3s;
  11452. transition: visibility 0s 0.3s;
  11453. }
  11454. /* line 106, ../scss/styles.scss */
  11455. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  11456. -webkit-transition: margin-top 0s 0.3s;
  11457. transition: margin-top 0s 0.3s;
  11458. }
  11459. /** TOOLTIP SMALL CARD */
  11460. /* line 1235, ../scss/styles.scss */
  11461. #tooltip .group-header.smallcard {
  11462. font-size: 14px;
  11463. font-weight: 500;
  11464. }
  11465. /* line 1237, ../scss/styles.scss */
  11466. #tooltip .group-header.smallcard .field-name-title-field {
  11467. font-weight: 700;
  11468. }
  11469. /* line 1238, ../scss/styles.scss */
  11470. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  11471. display: moz-inline-stack;
  11472. display: inline-block;
  11473. vertical-align: top;
  11474. zoom: 1;
  11475. *display: inline;
  11476. font-size: 12px;
  11477. }
  11478. /* line 1239, ../scss/styles.scss */
  11479. #tooltip .group-header.smallcard .field-name-field-localisation {
  11480. float: right;
  11481. }
  11482. /** CARD MEDIUM */
  11483. /* line 1244, ../scss/styles.scss */
  11484. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  11485. width: 210px;
  11486. height: 295px;
  11487. display: moz-inline-stack;
  11488. display: inline-block;
  11489. vertical-align: top;
  11490. zoom: 1;
  11491. *display: inline;
  11492. position: relative;
  11493. margin: 7px;
  11494. border-radius: 5px;
  11495. background-clip: padding-box;
  11496. background-color: #FFF;
  11497. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  11498. -webkit-transition: box-shadow 0.3s ease-out;
  11499. transition: box-shadow 0.3s ease-out;
  11500. }
  11501. /* line 1015, ../scss/styles.scss */
  11502. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  11503. border-radius: 5px;
  11504. background-clip: padding-box;
  11505. overflow: hidden;
  11506. }
  11507. /* line 1020, ../scss/styles.scss */
  11508. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  11509. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  11510. }
  11511. /* line 1022, ../scss/styles.scss */
  11512. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  11513. -webkit-opacity: 0;
  11514. -khtml-opacity: 0;
  11515. -moz-opacity: 0;
  11516. opacity: 0;
  11517. }
  11518. /* line 1024, ../scss/styles.scss */
  11519. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  11520. -webkit-transition: margin 0.3s ease-out;
  11521. transition: margin 0.3s ease-out;
  11522. }
  11523. /* line 1026, ../scss/styles.scss */
  11524. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  11525. margin-left: -210px;
  11526. margin-right: 210px;
  11527. }
  11528. /* line 1028, ../scss/styles.scss */
  11529. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  11530. position: absolute;
  11531. top: 0;
  11532. left: 0;
  11533. z-index: 999;
  11534. }
  11535. /* line 1036, ../scss/styles.scss */
  11536. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  11537. -webkit-transition: width 0.3s ease-out;
  11538. transition: width 0.3s ease-out;
  11539. width: 0;
  11540. padding-left: 0;
  11541. padding-right: 0;
  11542. margin-right: 0;
  11543. margin-left: 0;
  11544. overflow: hidden;
  11545. }
  11546. /* line 1046, ../scss/styles.scss */
  11547. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  11548. position: absolute;
  11549. top: 0;
  11550. right: 0;
  11551. z-index: 11;
  11552. padding: 5px 0;
  11553. border-radius: 0 5px 0 3px;
  11554. background-clip: padding-box;
  11555. font-size: 10px;
  11556. background-color: white;
  11557. background-color: rgba(255, 255, 255, 0.9);
  11558. *background-color: white;
  11559. color: #000;
  11560. }
  11561. /* line 1058, ../scss/styles.scss */
  11562. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  11563. color: #000;
  11564. }
  11565. /* line 1059, ../scss/styles.scss */
  11566. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  11567. background-color: white;
  11568. background-color: rgba(255, 255, 255, 0.9);
  11569. *background-color: white;
  11570. }
  11571. /* line 1060, ../scss/styles.scss */
  11572. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  11573. font-weight: 900;
  11574. font-size: 14px;
  11575. }
  11576. /* line 1062, ../scss/styles.scss */
  11577. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  11578. padding: 0;
  11579. margin: 0;
  11580. }
  11581. /* line 1064, ../scss/styles.scss */
  11582. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  11583. position: relative;
  11584. }
  11585. /* line 1067, ../scss/styles.scss */
  11586. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  11587. margin: 0 5px;
  11588. }
  11589. /* line 1067, ../scss/styles.scss */
  11590. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  11591. cursor: pointer;
  11592. }
  11593. /* line 1070, ../scss/styles.scss */
  11594. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  11595. position: absolute;
  11596. right: 0;
  11597. top: 0;
  11598. margin-right: 22px;
  11599. min-width: 80px;
  11600. padding: 0;
  11601. display: block;
  11602. border-radius: 3px;
  11603. background-clip: padding-box;
  11604. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  11605. }
  11606. /* line 1074, ../scss/styles.scss */
  11607. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  11608. padding: 0;
  11609. margin: 0;
  11610. line-height: 1;
  11611. display: block;
  11612. height: 0;
  11613. overflow: hidden;
  11614. -webkit-transition: height 0.2s ease-out;
  11615. transition: height 0.2s ease-out;
  11616. }
  11617. /* line 1078, ../scss/styles.scss */
  11618. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  11619. display: block;
  11620. }
  11621. /* line 1081, ../scss/styles.scss */
  11622. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  11623. width: 160px;
  11624. font-size: 0;
  11625. }
  11626. /* line 1084, ../scss/styles.scss */
  11627. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  11628. font-size: 11px;
  11629. }
  11630. /* line 1089, ../scss/styles.scss */
  11631. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li {
  11632. display: moz-inline-stack;
  11633. display: inline-block;
  11634. vertical-align: top;
  11635. zoom: 1;
  11636. *display: inline;
  11637. min-width: 48%;
  11638. max-width: 98%;
  11639. padding-left: 2px;
  11640. }
  11641. /* line 1091, ../scss/styles.scss */
  11642. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a {
  11643. color: #a6a6a6;
  11644. -webkit-transition: color 0.2s ease-out;
  11645. transition: color 0.2s ease-out;
  11646. }
  11647. /* line 1093, ../scss/styles.scss */
  11648. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a.unflag-action {
  11649. color: #000;
  11650. text-decoration: none;
  11651. }
  11652. /* line 1097, ../scss/styles.scss */
  11653. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  11654. display: block;
  11655. width: 100%;
  11656. }
  11657. /* line 1099, ../scss/styles.scss */
  11658. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  11659. margin-top: 1px;
  11660. padding-top: 1px;
  11661. border-top: 1px solid #e6e6e6;
  11662. }
  11663. /* line 1100, ../scss/styles.scss */
  11664. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  11665. color: #000;
  11666. }
  11667. /* line 1102, ../scss/styles.scss */
  11668. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading {
  11669. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  11670. }
  11671. /* line 1103, ../scss/styles.scss */
  11672. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading a {
  11673. visibility: hidden;
  11674. }
  11675. /* line 1108, ../scss/styles.scss */
  11676. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  11677. background: #FFF;
  11678. }
  11679. /* line 1113, ../scss/styles.scss */
  11680. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  11681. padding: 5px 5px;
  11682. }
  11683. /* line 1115, ../scss/styles.scss */
  11684. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  11685. height: 17px;
  11686. }
  11687. /* line 1128, ../scss/styles.scss */
  11688. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  11689. position: absolute;
  11690. top: 0;
  11691. left: 0;
  11692. z-index: 11;
  11693. padding: 5px;
  11694. border-radius: 5px 0 3px 0;
  11695. background-clip: padding-box;
  11696. font-size: 10px;
  11697. vertical-align: top;
  11698. background-color: white;
  11699. background-color: rgba(255, 255, 255, 0.9);
  11700. *background-color: white;
  11701. color: #000;
  11702. }
  11703. /* line 1134, ../scss/styles.scss */
  11704. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  11705. padding: 3px 0 0 4px;
  11706. display: moz-inline-stack;
  11707. display: inline-block;
  11708. vertical-align: top;
  11709. zoom: 1;
  11710. *display: inline;
  11711. }
  11712. /* line 1137, ../scss/styles.scss */
  11713. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  11714. font-size: 12px;
  11715. padding-top: 4em;
  11716. margin-top: -4.5em;
  11717. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  11718. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  11719. position: relative;
  11720. }
  11721. /* line 1145, ../scss/styles.scss */
  11722. article.node-materiau.vm-cardmedium .side.oops p, article.node-materiau.vm-cardmedium .side .upgrade p, article.node-breve.vm-cardmedium .side.oops p, article.node-breve.vm-cardmedium .side .upgrade p {
  11723. padding: 10px;
  11724. font-size: 12px;
  11725. }
  11726. /* line 1147, ../scss/styles.scss */
  11727. article.node-materiau.vm-cardmedium .side.oops p a, article.node-materiau.vm-cardmedium .side .upgrade p a, article.node-breve.vm-cardmedium .side.oops p a, article.node-breve.vm-cardmedium .side .upgrade p a {
  11728. display: block;
  11729. margin: 10px 0;
  11730. font-size: 18px;
  11731. padding: 0.1em 0.6em 0.2em;
  11732. border-radius: 0.3em;
  11733. background-clip: padding-box;
  11734. font-weight: bold;
  11735. border: 2px solid #69CDCF;
  11736. background-color: #69CDCF;
  11737. color: #fff;
  11738. cursor: pointer;
  11739. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  11740. -webkit-transition: text-shadow 0.2s ease-out;
  11741. transition: text-shadow 0.2s ease-out;
  11742. text-align: center;
  11743. text-decoration: none;
  11744. }
  11745. /* line 48, ../scss/styles.scss */
  11746. article.node-materiau.vm-cardmedium .side.oops p a:hover, article.node-materiau.vm-cardmedium .side.oops p a:focus, article.node-materiau.vm-cardmedium .side .upgrade p a:hover, article.node-materiau.vm-cardmedium .side .upgrade p a:focus, article.node-breve.vm-cardmedium .side.oops p a:hover, article.node-breve.vm-cardmedium .side.oops p a:focus, article.node-breve.vm-cardmedium .side .upgrade p a:hover, article.node-breve.vm-cardmedium .side .upgrade p a:focus {
  11747. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  11748. }
  11749. /* line 51, ../scss/styles.scss */
  11750. article.node-materiau.vm-cardmedium .side.oops p a:active, article.node-materiau.vm-cardmedium .side .upgrade p a:active, article.node-breve.vm-cardmedium .side.oops p a:active, article.node-breve.vm-cardmedium .side .upgrade p a:active {
  11751. -webkit-transition: text-shadow 0s ease-out;
  11752. transition: text-shadow 0s ease-out;
  11753. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  11754. }
  11755. /* line 1247, ../scss/styles.scss */
  11756. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  11757. position: absolute;
  11758. width: 100%;
  11759. height: 100%;
  11760. top: 0;
  11761. left: 0;
  11762. background-color: #fff;
  11763. cursor: pointer;
  11764. }
  11765. /* line 1249, ../scss/styles.scss */
  11766. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  11767. z-index: 1;
  11768. }
  11769. /* line 1252, ../scss/styles.scss */
  11770. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  11771. position: absolute;
  11772. bottom: 0;
  11773. z-index: 2;
  11774. width: 190px;
  11775. padding: 5px 15px 5px 5px;
  11776. min-height: 55px;
  11777. font-size: 20px;
  11778. font-weight: 300;
  11779. line-height: 1;
  11780. background-color: white;
  11781. background-color: rgba(255, 255, 255, 0.8);
  11782. *background-color: white;
  11783. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  11784. -webkit-transition: background-color 0.2s ease-out;
  11785. transition: background-color 0.2s ease-out;
  11786. border-radius: 0 0 4px 4px;
  11787. background-clip: padding-box;
  11788. overflow: hidden;
  11789. }
  11790. /* line 1256, ../scss/styles.scss */
  11791. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  11792. font-weight: 700;
  11793. }
  11794. /* line 1257, ../scss/styles.scss */
  11795. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  11796. font-size: 14px;
  11797. }
  11798. /* line 1262, ../scss/styles.scss */
  11799. article.node-materiau.vm-cardmedium .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-materiau.vm-cardmedium .group-header .field-name-field-authored-on, article.node-breve.vm-cardmedium .group-header .field-name-field-reference-materio, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-authored-on {
  11800. display: moz-inline-stack;
  11801. display: inline-block;
  11802. vertical-align: top;
  11803. zoom: 1;
  11804. *display: inline;
  11805. font-size: 12px;
  11806. vertical-align: bottom;
  11807. width: 48%;
  11808. }
  11809. /* line 1263, ../scss/styles.scss */
  11810. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  11811. text-align: right;
  11812. }
  11813. /* line 1264, ../scss/styles.scss */
  11814. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  11815. background: #fff;
  11816. font-color: #000;
  11817. line-height: 1em;
  11818. padding: 10px;
  11819. }
  11820. /* line 1268, ../scss/styles.scss */
  11821. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  11822. color: #fff;
  11823. background-color: black;
  11824. background-color: rgba(0, 0, 0, 0.7);
  11825. *background-color: black;
  11826. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  11827. -webkit-transition: background-color 0.2s ease-out;
  11828. transition: background-color 0.2s ease-out;
  11829. }
  11830. /* line 1271, ../scss/styles.scss */
  11831. article.node-materiau.vm-cardmedium.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardmedium.node-breve .group-header .field-name-field-authored-on {
  11832. font-size: 12px;
  11833. font-weight: 500;
  11834. }
  11835. /* line 1272, ../scss/styles.scss */
  11836. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  11837. background: #000;
  11838. font-size: 15px;
  11839. line-height: 1.2em;
  11840. }
  11841. /* line 1279, ../scss/styles.scss */
  11842. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  11843. position: relative;
  11844. z-index: 1;
  11845. background-color: #fff;
  11846. }
  11847. /* line 59, ../scss/styles.scss */
  11848. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  11849. position: absolute;
  11850. top: 0;
  11851. left: 0;
  11852. }
  11853. /* line 61, ../scss/styles.scss */
  11854. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  11855. position: relative;
  11856. z-index: 1;
  11857. }
  11858. /* line 1282, ../scss/styles.scss */
  11859. article.node-materiau.vm-cardmedium .field-name-field-description, article.node-materiau.vm-cardmedium .field-name-body, article.node-breve.vm-cardmedium .field-name-field-description, article.node-breve.vm-cardmedium .field-name-body {
  11860. font-size: 12px;
  11861. font-weight: 300;
  11862. overflow: hidden;
  11863. z-index: -1;
  11864. padding: 5px;
  11865. }
  11866. /* line 137, ../scss/styles.scss */
  11867. article.node-materiau.vm-cardmedium .field-name-field-description.columnized, article.node-materiau.vm-cardmedium .field-name-body.columnized, article.node-breve.vm-cardmedium .field-name-field-description.columnized, article.node-breve.vm-cardmedium .field-name-body.columnized {
  11868. padding: 0;
  11869. -webkit-transition: margin-left 0.3s ease-out;
  11870. transition: margin-left 0.3s ease-out;
  11871. }
  11872. /* line 139, ../scss/styles.scss */
  11873. article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column > *, article.node-materiau.vm-cardmedium .field-name-body.columnized .column > *, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column > *, article.node-breve.vm-cardmedium .field-name-body.columnized .column > * {
  11874. padding: 5px;
  11875. }
  11876. /* line 141, ../scss/styles.scss */
  11877. article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column-switcher, article.node-materiau.vm-cardmedium .field-name-body.columnized .column-switcher, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column-switcher, article.node-breve.vm-cardmedium .field-name-body.columnized .column-switcher {
  11878. display: inline-block;
  11879. border-radius: 3px;
  11880. background-clip: padding-box;
  11881. color: #fff;
  11882. background-color: #3e3e3e;
  11883. vertical-align: middle;
  11884. font-weight: 700;
  11885. font-size: 22px;
  11886. padding: 0.05em 0.15em 0.2em 0.2em;
  11887. line-height: 0.5;
  11888. font-weight: normal;
  11889. }
  11890. /* line 146, ../scss/styles.scss */
  11891. article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column-switcher.prev-column, article.node-materiau.vm-cardmedium .field-name-body.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .field-name-body.columnized .column-switcher.prev-column {
  11892. cursor: w-resize;
  11893. }
  11894. /* line 147, ../scss/styles.scss */
  11895. article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column-switcher.next-column, article.node-materiau.vm-cardmedium .field-name-body.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .field-name-body.columnized .column-switcher.next-column {
  11896. cursor: e-resize;
  11897. }
  11898. /* line 1284, ../scss/styles.scss */
  11899. article.node-materiau.vm-cardmedium .field-name-field-description .column > *, article.node-materiau.vm-cardmedium .field-name-body .column > *, article.node-breve.vm-cardmedium .field-name-field-description .column > *, article.node-breve.vm-cardmedium .field-name-body .column > * {
  11900. padding-right: 25px;
  11901. }
  11902. /* line 1288, ../scss/styles.scss */
  11903. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  11904. padding: 5px;
  11905. }
  11906. /* line 137, ../scss/styles.scss */
  11907. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  11908. padding: 0;
  11909. -webkit-transition: margin-left 0.3s ease-out;
  11910. transition: margin-left 0.3s ease-out;
  11911. }
  11912. /* line 139, ../scss/styles.scss */
  11913. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  11914. padding: 5px;
  11915. }
  11916. /* line 141, ../scss/styles.scss */
  11917. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  11918. display: inline-block;
  11919. border-radius: 3px;
  11920. background-clip: padding-box;
  11921. color: #fff;
  11922. background-color: #3e3e3e;
  11923. vertical-align: middle;
  11924. font-weight: 700;
  11925. font-size: 22px;
  11926. padding: 0.05em 0.15em 0.2em 0.2em;
  11927. line-height: 0.5;
  11928. font-weight: normal;
  11929. }
  11930. /* line 146, ../scss/styles.scss */
  11931. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  11932. cursor: w-resize;
  11933. }
  11934. /* line 147, ../scss/styles.scss */
  11935. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  11936. cursor: e-resize;
  11937. }
  11938. /* line 1291, ../scss/styles.scss */
  11939. article.node-materiau.vm-cardmedium .field-name-field-company-fab, article.node-materiau.vm-cardmedium .field-name-field-company-distrib, article.node-breve.vm-cardmedium .field-name-field-company-fab, article.node-breve.vm-cardmedium .field-name-field-company-distrib {
  11940. font-size: 12px;
  11941. padding: 5px;
  11942. font-weight: 300;
  11943. }
  11944. /* line 1293, ../scss/styles.scss */
  11945. article.node-materiau.vm-cardmedium .field-name-field-company-fab .field-label, article.node-materiau.vm-cardmedium .field-name-field-company-distrib .field-label, article.node-breve.vm-cardmedium .field-name-field-company-fab .field-label, article.node-breve.vm-cardmedium .field-name-field-company-distrib .field-label {
  11946. font-size: 10px;
  11947. text-transform: lowercase;
  11948. margin: 0;
  11949. }
  11950. /* line 1294, ../scss/styles.scss */
  11951. article.node-materiau.vm-cardmedium .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardmedium .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardmedium .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardmedium .field-name-field-company-distrib .field-name-field-tode-company {
  11952. font-size: 14px;
  11953. }
  11954. /* line 1298, ../scss/styles.scss */
  11955. article.node-materiau.vm-cardmedium .field-name-field-materiau-ref, article.node-materiau.vm-cardmedium .field-name-field-source, article.node-materiau.vm-cardmedium .field-name-field-attachments, article.node-breve.vm-cardmedium .field-name-field-materiau-ref, article.node-breve.vm-cardmedium .field-name-field-source, article.node-breve.vm-cardmedium .field-name-field-attachments {
  11956. font-size: 12px;
  11957. padding: 5px;
  11958. font-weight: 300;
  11959. }
  11960. /* line 1300, ../scss/styles.scss */
  11961. article.node-materiau.vm-cardmedium .field-name-field-materiau-ref a, article.node-materiau.vm-cardmedium .field-name-field-source a, article.node-materiau.vm-cardmedium .field-name-field-attachments a, article.node-breve.vm-cardmedium .field-name-field-materiau-ref a, article.node-breve.vm-cardmedium .field-name-field-source a, article.node-breve.vm-cardmedium .field-name-field-attachments a {
  11962. color: #000;
  11963. }
  11964. /* line 1302, ../scss/styles.scss */
  11965. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  11966. font-weight: 900;
  11967. margin: 1em 0 0.5em;
  11968. }
  11969. /* line 1304, ../scss/styles.scss */
  11970. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  11971. visibility: hidden;
  11972. }
  11973. /* line 100, ../scss/styles.scss */
  11974. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  11975. margin-top: -100000px;
  11976. }
  11977. /* line 103, ../scss/styles.scss */
  11978. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  11979. -webkit-opacity: 0;
  11980. -khtml-opacity: 0;
  11981. -moz-opacity: 0;
  11982. opacity: 0;
  11983. -webkit-transition: visibility 0s 0.3s;
  11984. transition: visibility 0s 0.3s;
  11985. }
  11986. /* line 106, ../scss/styles.scss */
  11987. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  11988. -webkit-transition: margin-top 0s 0.3s;
  11989. transition: margin-top 0s 0.3s;
  11990. }
  11991. /* line 1306, ../scss/styles.scss */
  11992. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  11993. visibility: hidden;
  11994. }
  11995. /* line 100, ../scss/styles.scss */
  11996. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  11997. margin-top: -100000px;
  11998. }
  11999. /* line 103, ../scss/styles.scss */
  12000. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  12001. -webkit-opacity: 0;
  12002. -khtml-opacity: 0;
  12003. -moz-opacity: 0;
  12004. opacity: 0;
  12005. -webkit-transition: visibility 0s 0.3s;
  12006. transition: visibility 0s 0.3s;
  12007. }
  12008. /* line 106, ../scss/styles.scss */
  12009. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  12010. -webkit-transition: margin-top 0s 0.3s;
  12011. transition: margin-top 0s 0.3s;
  12012. }
  12013. /* line 1308, ../scss/styles.scss */
  12014. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  12015. background: #FFF;
  12016. }
  12017. /** CARD BIG */
  12018. /* line 1312, ../scss/styles.scss */
  12019. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  12020. width: 425px;
  12021. height: 610px;
  12022. display: moz-inline-stack;
  12023. display: inline-block;
  12024. vertical-align: top;
  12025. zoom: 1;
  12026. *display: inline;
  12027. position: relative;
  12028. margin: 7px;
  12029. border-radius: 5px;
  12030. background-clip: padding-box;
  12031. background-color: #FFF;
  12032. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  12033. -webkit-transition: box-shadow 0.3s ease-out;
  12034. transition: box-shadow 0.3s ease-out;
  12035. }
  12036. /* line 1015, ../scss/styles.scss */
  12037. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  12038. border-radius: 5px;
  12039. background-clip: padding-box;
  12040. overflow: hidden;
  12041. }
  12042. /* line 1020, ../scss/styles.scss */
  12043. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  12044. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  12045. }
  12046. /* line 1022, ../scss/styles.scss */
  12047. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  12048. -webkit-opacity: 0;
  12049. -khtml-opacity: 0;
  12050. -moz-opacity: 0;
  12051. opacity: 0;
  12052. }
  12053. /* line 1024, ../scss/styles.scss */
  12054. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  12055. -webkit-transition: margin 0.3s ease-out;
  12056. transition: margin 0.3s ease-out;
  12057. }
  12058. /* line 1026, ../scss/styles.scss */
  12059. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  12060. margin-left: -425px;
  12061. margin-right: 425px;
  12062. }
  12063. /* line 1028, ../scss/styles.scss */
  12064. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  12065. position: absolute;
  12066. top: 0;
  12067. left: 0;
  12068. z-index: 999;
  12069. }
  12070. /* line 1036, ../scss/styles.scss */
  12071. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  12072. -webkit-transition: width 0.3s ease-out;
  12073. transition: width 0.3s ease-out;
  12074. width: 0;
  12075. padding-left: 0;
  12076. padding-right: 0;
  12077. margin-right: 0;
  12078. margin-left: 0;
  12079. overflow: hidden;
  12080. }
  12081. /* line 1046, ../scss/styles.scss */
  12082. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  12083. position: absolute;
  12084. top: 0;
  12085. right: 0;
  12086. z-index: 11;
  12087. padding: 5px 0;
  12088. border-radius: 0 5px 0 3px;
  12089. background-clip: padding-box;
  12090. font-size: 10px;
  12091. background-color: white;
  12092. background-color: rgba(255, 255, 255, 0.9);
  12093. *background-color: white;
  12094. color: #000;
  12095. }
  12096. /* line 1058, ../scss/styles.scss */
  12097. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  12098. color: #000;
  12099. }
  12100. /* line 1059, ../scss/styles.scss */
  12101. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  12102. background-color: white;
  12103. background-color: rgba(255, 255, 255, 0.9);
  12104. *background-color: white;
  12105. }
  12106. /* line 1060, ../scss/styles.scss */
  12107. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  12108. font-weight: 900;
  12109. font-size: 14px;
  12110. }
  12111. /* line 1062, ../scss/styles.scss */
  12112. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  12113. padding: 0;
  12114. margin: 0;
  12115. }
  12116. /* line 1064, ../scss/styles.scss */
  12117. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  12118. position: relative;
  12119. }
  12120. /* line 1067, ../scss/styles.scss */
  12121. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  12122. margin: 0 5px;
  12123. }
  12124. /* line 1067, ../scss/styles.scss */
  12125. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  12126. cursor: pointer;
  12127. }
  12128. /* line 1070, ../scss/styles.scss */
  12129. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  12130. position: absolute;
  12131. right: 0;
  12132. top: 0;
  12133. margin-right: 22px;
  12134. min-width: 80px;
  12135. padding: 0;
  12136. display: block;
  12137. border-radius: 3px;
  12138. background-clip: padding-box;
  12139. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  12140. }
  12141. /* line 1074, ../scss/styles.scss */
  12142. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  12143. padding: 0;
  12144. margin: 0;
  12145. line-height: 1;
  12146. display: block;
  12147. height: 0;
  12148. overflow: hidden;
  12149. -webkit-transition: height 0.2s ease-out;
  12150. transition: height 0.2s ease-out;
  12151. }
  12152. /* line 1078, ../scss/styles.scss */
  12153. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  12154. display: block;
  12155. }
  12156. /* line 1081, ../scss/styles.scss */
  12157. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  12158. width: 160px;
  12159. font-size: 0;
  12160. }
  12161. /* line 1084, ../scss/styles.scss */
  12162. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  12163. font-size: 11px;
  12164. }
  12165. /* line 1089, ../scss/styles.scss */
  12166. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li {
  12167. display: moz-inline-stack;
  12168. display: inline-block;
  12169. vertical-align: top;
  12170. zoom: 1;
  12171. *display: inline;
  12172. min-width: 48%;
  12173. max-width: 98%;
  12174. padding-left: 2px;
  12175. }
  12176. /* line 1091, ../scss/styles.scss */
  12177. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a {
  12178. color: #a6a6a6;
  12179. -webkit-transition: color 0.2s ease-out;
  12180. transition: color 0.2s ease-out;
  12181. }
  12182. /* line 1093, ../scss/styles.scss */
  12183. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a.unflag-action {
  12184. color: #000;
  12185. text-decoration: none;
  12186. }
  12187. /* line 1097, ../scss/styles.scss */
  12188. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  12189. display: block;
  12190. width: 100%;
  12191. }
  12192. /* line 1099, ../scss/styles.scss */
  12193. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  12194. margin-top: 1px;
  12195. padding-top: 1px;
  12196. border-top: 1px solid #e6e6e6;
  12197. }
  12198. /* line 1100, ../scss/styles.scss */
  12199. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  12200. color: #000;
  12201. }
  12202. /* line 1102, ../scss/styles.scss */
  12203. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading {
  12204. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  12205. }
  12206. /* line 1103, ../scss/styles.scss */
  12207. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading a {
  12208. visibility: hidden;
  12209. }
  12210. /* line 1108, ../scss/styles.scss */
  12211. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  12212. background: #FFF;
  12213. }
  12214. /* line 1113, ../scss/styles.scss */
  12215. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  12216. padding: 5px 5px;
  12217. }
  12218. /* line 1115, ../scss/styles.scss */
  12219. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  12220. height: 17px;
  12221. }
  12222. /* line 1128, ../scss/styles.scss */
  12223. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  12224. position: absolute;
  12225. top: 0;
  12226. left: 0;
  12227. z-index: 11;
  12228. padding: 5px;
  12229. border-radius: 5px 0 3px 0;
  12230. background-clip: padding-box;
  12231. font-size: 10px;
  12232. vertical-align: top;
  12233. background-color: white;
  12234. background-color: rgba(255, 255, 255, 0.9);
  12235. *background-color: white;
  12236. color: #000;
  12237. }
  12238. /* line 1134, ../scss/styles.scss */
  12239. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  12240. padding: 3px 0 0 4px;
  12241. display: moz-inline-stack;
  12242. display: inline-block;
  12243. vertical-align: top;
  12244. zoom: 1;
  12245. *display: inline;
  12246. }
  12247. /* line 1137, ../scss/styles.scss */
  12248. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  12249. font-size: 12px;
  12250. padding-top: 4em;
  12251. margin-top: -4.5em;
  12252. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  12253. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  12254. position: relative;
  12255. }
  12256. /* line 1145, ../scss/styles.scss */
  12257. article.node-materiau.vm-cardbig .side.oops p, article.node-materiau.vm-cardbig .side .upgrade p, article.node-breve.vm-cardbig .side.oops p, article.node-breve.vm-cardbig .side .upgrade p {
  12258. padding: 10px;
  12259. font-size: 12px;
  12260. }
  12261. /* line 1147, ../scss/styles.scss */
  12262. article.node-materiau.vm-cardbig .side.oops p a, article.node-materiau.vm-cardbig .side .upgrade p a, article.node-breve.vm-cardbig .side.oops p a, article.node-breve.vm-cardbig .side .upgrade p a {
  12263. display: block;
  12264. margin: 10px 0;
  12265. font-size: 18px;
  12266. padding: 0.1em 0.6em 0.2em;
  12267. border-radius: 0.3em;
  12268. background-clip: padding-box;
  12269. font-weight: bold;
  12270. border: 2px solid #69CDCF;
  12271. background-color: #69CDCF;
  12272. color: #fff;
  12273. cursor: pointer;
  12274. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  12275. -webkit-transition: text-shadow 0.2s ease-out;
  12276. transition: text-shadow 0.2s ease-out;
  12277. text-align: center;
  12278. text-decoration: none;
  12279. }
  12280. /* line 48, ../scss/styles.scss */
  12281. article.node-materiau.vm-cardbig .side.oops p a:hover, article.node-materiau.vm-cardbig .side.oops p a:focus, article.node-materiau.vm-cardbig .side .upgrade p a:hover, article.node-materiau.vm-cardbig .side .upgrade p a:focus, article.node-breve.vm-cardbig .side.oops p a:hover, article.node-breve.vm-cardbig .side.oops p a:focus, article.node-breve.vm-cardbig .side .upgrade p a:hover, article.node-breve.vm-cardbig .side .upgrade p a:focus {
  12282. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  12283. }
  12284. /* line 51, ../scss/styles.scss */
  12285. article.node-materiau.vm-cardbig .side.oops p a:active, article.node-materiau.vm-cardbig .side .upgrade p a:active, article.node-breve.vm-cardbig .side.oops p a:active, article.node-breve.vm-cardbig .side .upgrade p a:active {
  12286. -webkit-transition: text-shadow 0s ease-out;
  12287. transition: text-shadow 0s ease-out;
  12288. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  12289. }
  12290. /* line 1315, ../scss/styles.scss */
  12291. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  12292. position: absolute;
  12293. width: 100%;
  12294. height: 100%;
  12295. top: 0;
  12296. left: 0;
  12297. background-color: #fff;
  12298. height: 270px;
  12299. top: 340px;
  12300. cursor: pointer;
  12301. }
  12302. /* line 1317, ../scss/styles.scss */
  12303. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  12304. z-index: 1;
  12305. }
  12306. /* line 1320, ../scss/styles.scss */
  12307. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  12308. position: relative;
  12309. border-radius: 5px 5px 0 0;
  12310. background-clip: padding-box;
  12311. overflow: hidden;
  12312. }
  12313. /* line 1322, ../scss/styles.scss */
  12314. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  12315. position: absolute;
  12316. bottom: 0;
  12317. z-index: 2;
  12318. width: 405px;
  12319. padding: 10px;
  12320. font-size: 20px;
  12321. font-weight: 300;
  12322. line-height: 1.1;
  12323. background-color: white;
  12324. background-color: rgba(255, 255, 255, 0.8);
  12325. *background-color: white;
  12326. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  12327. -webkit-transition: background-color 0.2s ease-out;
  12328. transition: background-color 0.2s ease-out;
  12329. }
  12330. /* line 1326, ../scss/styles.scss */
  12331. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  12332. font-weight: 700;
  12333. }
  12334. /* line 1327, ../scss/styles.scss */
  12335. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  12336. font-size: 14px;
  12337. }
  12338. /* line 1329, ../scss/styles.scss */
  12339. article.node-materiau.vm-cardbig .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-materiau.vm-cardbig .group-header .field-name-field-authored-on, article.node-breve.vm-cardbig .group-header .field-name-field-reference-materio, article.node-breve.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-authored-on {
  12340. display: moz-inline-stack;
  12341. display: inline-block;
  12342. vertical-align: top;
  12343. zoom: 1;
  12344. *display: inline;
  12345. font-size: 12px;
  12346. vertical-align: bottom;
  12347. width: 48%;
  12348. }
  12349. /* line 1330, ../scss/styles.scss */
  12350. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  12351. text-align: right;
  12352. }
  12353. /* line 1331, ../scss/styles.scss */
  12354. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  12355. background: #fff;
  12356. font-color: #000;
  12357. line-height: 1em;
  12358. padding: 20px;
  12359. border-bottom: 1px solid #C6C6C6;
  12360. }
  12361. /* line 1335, ../scss/styles.scss */
  12362. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  12363. color: #fff;
  12364. background-color: black;
  12365. background-color: rgba(0, 0, 0, 0.7);
  12366. *background-color: black;
  12367. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  12368. -webkit-transition: background-color 0.2s ease-out;
  12369. transition: background-color 0.2s ease-out;
  12370. }
  12371. /* line 1337, ../scss/styles.scss */
  12372. article.node-materiau.vm-cardbig.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardbig.node-breve .group-header .field-name-field-authored-on {
  12373. font-size: 12px;
  12374. font-weight: 500;
  12375. }
  12376. /* line 1338, ../scss/styles.scss */
  12377. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  12378. background: #000;
  12379. font-color: #fff;
  12380. line-height: 1em;
  12381. padding: 20px;
  12382. }
  12383. /* line 1341, ../scss/styles.scss */
  12384. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  12385. position: relative;
  12386. z-index: 1;
  12387. background-color: #fff;
  12388. height: auto;
  12389. }
  12390. /* line 59, ../scss/styles.scss */
  12391. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  12392. position: absolute;
  12393. top: 0;
  12394. left: 0;
  12395. }
  12396. /* line 61, ../scss/styles.scss */
  12397. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  12398. position: relative;
  12399. z-index: 1;
  12400. }
  12401. /* line 1344, ../scss/styles.scss */
  12402. article.node-materiau.vm-cardbig .field-name-field-description, article.node-materiau.vm-cardbig .field-name-body, article.node-breve.vm-cardbig .field-name-field-description, article.node-breve.vm-cardbig .field-name-body {
  12403. font-size: 12px;
  12404. font-weight: 300;
  12405. padding: 10px;
  12406. }
  12407. /* line 137, ../scss/styles.scss */
  12408. article.node-materiau.vm-cardbig .field-name-field-description.columnized, article.node-materiau.vm-cardbig .field-name-body.columnized, article.node-breve.vm-cardbig .field-name-field-description.columnized, article.node-breve.vm-cardbig .field-name-body.columnized {
  12409. padding: 0;
  12410. -webkit-transition: margin-left 0.3s ease-out;
  12411. transition: margin-left 0.3s ease-out;
  12412. }
  12413. /* line 139, ../scss/styles.scss */
  12414. article.node-materiau.vm-cardbig .field-name-field-description.columnized .column > *, article.node-materiau.vm-cardbig .field-name-body.columnized .column > *, article.node-breve.vm-cardbig .field-name-field-description.columnized .column > *, article.node-breve.vm-cardbig .field-name-body.columnized .column > * {
  12415. padding: 10px;
  12416. }
  12417. /* line 141, ../scss/styles.scss */
  12418. article.node-materiau.vm-cardbig .field-name-field-description.columnized .column-switcher, article.node-materiau.vm-cardbig .field-name-body.columnized .column-switcher, article.node-breve.vm-cardbig .field-name-field-description.columnized .column-switcher, article.node-breve.vm-cardbig .field-name-body.columnized .column-switcher {
  12419. display: inline-block;
  12420. border-radius: 3px;
  12421. background-clip: padding-box;
  12422. color: #fff;
  12423. background-color: #3e3e3e;
  12424. vertical-align: middle;
  12425. font-weight: 700;
  12426. font-size: 22px;
  12427. padding: 0.05em 0.15em 0.2em 0.2em;
  12428. line-height: 0.5;
  12429. font-weight: normal;
  12430. }
  12431. /* line 146, ../scss/styles.scss */
  12432. article.node-materiau.vm-cardbig .field-name-field-description.columnized .column-switcher.prev-column, article.node-materiau.vm-cardbig .field-name-body.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .field-name-field-description.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .field-name-body.columnized .column-switcher.prev-column {
  12433. cursor: w-resize;
  12434. }
  12435. /* line 147, ../scss/styles.scss */
  12436. article.node-materiau.vm-cardbig .field-name-field-description.columnized .column-switcher.next-column, article.node-materiau.vm-cardbig .field-name-body.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .field-name-field-description.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .field-name-body.columnized .column-switcher.next-column {
  12437. cursor: e-resize;
  12438. }
  12439. /* line 1348, ../scss/styles.scss */
  12440. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  12441. padding: 10px;
  12442. }
  12443. /* line 137, ../scss/styles.scss */
  12444. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  12445. padding: 0;
  12446. -webkit-transition: margin-left 0.3s ease-out;
  12447. transition: margin-left 0.3s ease-out;
  12448. }
  12449. /* line 139, ../scss/styles.scss */
  12450. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  12451. padding: 10px;
  12452. }
  12453. /* line 141, ../scss/styles.scss */
  12454. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  12455. display: inline-block;
  12456. border-radius: 3px;
  12457. background-clip: padding-box;
  12458. color: #fff;
  12459. background-color: #3e3e3e;
  12460. vertical-align: middle;
  12461. font-weight: 700;
  12462. font-size: 22px;
  12463. padding: 0.05em 0.15em 0.2em 0.2em;
  12464. line-height: 0.5;
  12465. font-weight: normal;
  12466. }
  12467. /* line 146, ../scss/styles.scss */
  12468. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  12469. cursor: w-resize;
  12470. }
  12471. /* line 147, ../scss/styles.scss */
  12472. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  12473. cursor: e-resize;
  12474. }
  12475. /* line 1352, ../scss/styles.scss */
  12476. article.node-materiau.vm-cardbig .field-name-field-company-fab, article.node-materiau.vm-cardbig .field-name-field-company-distrib, article.node-breve.vm-cardbig .field-name-field-company-fab, article.node-breve.vm-cardbig .field-name-field-company-distrib {
  12477. font-size: 12px;
  12478. padding: 10px;
  12479. font-weight: 300;
  12480. }
  12481. /* line 1354, ../scss/styles.scss */
  12482. article.node-materiau.vm-cardbig .field-name-field-company-fab .field-label, article.node-materiau.vm-cardbig .field-name-field-company-distrib .field-label, article.node-breve.vm-cardbig .field-name-field-company-fab .field-label, article.node-breve.vm-cardbig .field-name-field-company-distrib .field-label {
  12483. font-size: 10px;
  12484. text-transform: lowercase;
  12485. float: none;
  12486. }
  12487. /* line 1355, ../scss/styles.scss */
  12488. article.node-materiau.vm-cardbig .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardbig .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardbig .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardbig .field-name-field-company-distrib .field-name-field-tode-company {
  12489. font-size: 14px;
  12490. }
  12491. /* line 1359, ../scss/styles.scss */
  12492. article.node-materiau.vm-cardbig .field-name-field-materiau-ref, article.node-materiau.vm-cardbig .field-name-field-source, article.node-materiau.vm-cardbig .field-name-field-attachments, article.node-breve.vm-cardbig .field-name-field-materiau-ref, article.node-breve.vm-cardbig .field-name-field-source, article.node-breve.vm-cardbig .field-name-field-attachments {
  12493. font-size: 12px;
  12494. padding: 10px;
  12495. font-weight: 300;
  12496. }
  12497. /* line 1360, ../scss/styles.scss */
  12498. article.node-materiau.vm-cardbig .field-name-field-materiau-ref a, article.node-materiau.vm-cardbig .field-name-field-source a, article.node-materiau.vm-cardbig .field-name-field-attachments a, article.node-breve.vm-cardbig .field-name-field-materiau-ref a, article.node-breve.vm-cardbig .field-name-field-source a, article.node-breve.vm-cardbig .field-name-field-attachments a {
  12499. color: #000;
  12500. }
  12501. /* line 1362, ../scss/styles.scss */
  12502. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  12503. font-weight: 900;
  12504. margin: 0 0 0.5em;
  12505. }
  12506. /* line 1366, ../scss/styles.scss */
  12507. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  12508. background: #FFF;
  12509. }
  12510. /* line 1369, ../scss/styles.scss */
  12511. article.node-materiau.vm-cardbig .side.oops p, article.node-materiau.vm-cardbig .side .upgrade p, article.node-breve.vm-cardbig .side.oops p, article.node-breve.vm-cardbig .side .upgrade p {
  12512. padding: 3em;
  12513. }
  12514. /* line 1371, ../scss/styles.scss */
  12515. article.node-materiau.vm-cardbig .side.oops p a, article.node-materiau.vm-cardbig .side .upgrade p a, article.node-breve.vm-cardbig .side.oops p a, article.node-breve.vm-cardbig .side .upgrade p a {
  12516. border: 2px solid #eee;
  12517. background-color: #eee;
  12518. color: #fff;
  12519. -webkit-transition: border 0.3s ease-out;
  12520. transition: border 0.3s ease-out;
  12521. -webkit-transition: background-color 0.3s ease-out;
  12522. transition: background-color 0.3s ease-out;
  12523. }
  12524. /* line 1378, ../scss/styles.scss */
  12525. article.node-materiau.vm-cardbig:hover .side.oops p a, article.node-materiau.vm-cardbig:hover .side .upgrade p a, article.node-breve.vm-cardbig:hover .side.oops p a, article.node-breve.vm-cardbig:hover .side .upgrade p a {
  12526. border: 2px solid #69CDCF;
  12527. background-color: #69CDCF;
  12528. }
  12529. /** CARD FULL */
  12530. /* line 1385, ../scss/styles.scss */
  12531. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  12532. width: 850px;
  12533. height: 610px;
  12534. display: moz-inline-stack;
  12535. display: inline-block;
  12536. vertical-align: top;
  12537. zoom: 1;
  12538. *display: inline;
  12539. position: relative;
  12540. margin: 7px;
  12541. border-radius: 5px;
  12542. background-clip: padding-box;
  12543. background-color: #FFF;
  12544. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  12545. -webkit-transition: box-shadow 0.3s ease-out;
  12546. transition: box-shadow 0.3s ease-out;
  12547. font-size: 0px;
  12548. }
  12549. /* line 1015, ../scss/styles.scss */
  12550. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  12551. border-radius: 5px;
  12552. background-clip: padding-box;
  12553. overflow: hidden;
  12554. }
  12555. /* line 1020, ../scss/styles.scss */
  12556. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  12557. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  12558. }
  12559. /* line 1022, ../scss/styles.scss */
  12560. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  12561. -webkit-opacity: 0;
  12562. -khtml-opacity: 0;
  12563. -moz-opacity: 0;
  12564. opacity: 0;
  12565. }
  12566. /* line 1024, ../scss/styles.scss */
  12567. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  12568. -webkit-transition: margin 0.3s ease-out;
  12569. transition: margin 0.3s ease-out;
  12570. }
  12571. /* line 1026, ../scss/styles.scss */
  12572. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  12573. margin-left: -850px;
  12574. margin-right: 850px;
  12575. }
  12576. /* line 1028, ../scss/styles.scss */
  12577. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  12578. position: absolute;
  12579. top: 0;
  12580. left: 0;
  12581. z-index: 999;
  12582. }
  12583. /* line 1036, ../scss/styles.scss */
  12584. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  12585. -webkit-transition: width 0.3s ease-out;
  12586. transition: width 0.3s ease-out;
  12587. width: 0;
  12588. padding-left: 0;
  12589. padding-right: 0;
  12590. margin-right: 0;
  12591. margin-left: 0;
  12592. overflow: hidden;
  12593. }
  12594. /* line 1046, ../scss/styles.scss */
  12595. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  12596. position: absolute;
  12597. top: 0;
  12598. right: 0;
  12599. z-index: 11;
  12600. padding: 5px 0;
  12601. border-radius: 0 5px 0 3px;
  12602. background-clip: padding-box;
  12603. font-size: 10px;
  12604. background-color: white;
  12605. background-color: rgba(255, 255, 255, 0.9);
  12606. *background-color: white;
  12607. color: #000;
  12608. }
  12609. /* line 1058, ../scss/styles.scss */
  12610. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  12611. color: #000;
  12612. }
  12613. /* line 1059, ../scss/styles.scss */
  12614. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  12615. background-color: white;
  12616. background-color: rgba(255, 255, 255, 0.9);
  12617. *background-color: white;
  12618. }
  12619. /* line 1060, ../scss/styles.scss */
  12620. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  12621. font-weight: 900;
  12622. font-size: 14px;
  12623. }
  12624. /* line 1062, ../scss/styles.scss */
  12625. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  12626. padding: 0;
  12627. margin: 0;
  12628. }
  12629. /* line 1064, ../scss/styles.scss */
  12630. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  12631. position: relative;
  12632. }
  12633. /* line 1067, ../scss/styles.scss */
  12634. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  12635. margin: 0 5px;
  12636. }
  12637. /* line 1067, ../scss/styles.scss */
  12638. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  12639. cursor: pointer;
  12640. }
  12641. /* line 1070, ../scss/styles.scss */
  12642. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  12643. position: absolute;
  12644. right: 0;
  12645. top: 0;
  12646. margin-right: 22px;
  12647. min-width: 80px;
  12648. padding: 0;
  12649. display: block;
  12650. border-radius: 3px;
  12651. background-clip: padding-box;
  12652. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  12653. }
  12654. /* line 1074, ../scss/styles.scss */
  12655. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  12656. padding: 0;
  12657. margin: 0;
  12658. line-height: 1;
  12659. display: block;
  12660. height: 0;
  12661. overflow: hidden;
  12662. -webkit-transition: height 0.2s ease-out;
  12663. transition: height 0.2s ease-out;
  12664. }
  12665. /* line 1078, ../scss/styles.scss */
  12666. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  12667. display: block;
  12668. }
  12669. /* line 1081, ../scss/styles.scss */
  12670. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  12671. width: 160px;
  12672. font-size: 0;
  12673. }
  12674. /* line 1084, ../scss/styles.scss */
  12675. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  12676. font-size: 11px;
  12677. }
  12678. /* line 1089, ../scss/styles.scss */
  12679. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li {
  12680. display: moz-inline-stack;
  12681. display: inline-block;
  12682. vertical-align: top;
  12683. zoom: 1;
  12684. *display: inline;
  12685. min-width: 48%;
  12686. max-width: 98%;
  12687. padding-left: 2px;
  12688. }
  12689. /* line 1091, ../scss/styles.scss */
  12690. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a {
  12691. color: #a6a6a6;
  12692. -webkit-transition: color 0.2s ease-out;
  12693. transition: color 0.2s ease-out;
  12694. }
  12695. /* line 1093, ../scss/styles.scss */
  12696. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a.unflag-action {
  12697. color: #000;
  12698. text-decoration: none;
  12699. }
  12700. /* line 1097, ../scss/styles.scss */
  12701. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  12702. display: block;
  12703. width: 100%;
  12704. }
  12705. /* line 1099, ../scss/styles.scss */
  12706. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  12707. margin-top: 1px;
  12708. padding-top: 1px;
  12709. border-top: 1px solid #e6e6e6;
  12710. }
  12711. /* line 1100, ../scss/styles.scss */
  12712. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  12713. color: #000;
  12714. }
  12715. /* line 1102, ../scss/styles.scss */
  12716. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading {
  12717. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  12718. }
  12719. /* line 1103, ../scss/styles.scss */
  12720. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading a {
  12721. visibility: hidden;
  12722. }
  12723. /* line 1108, ../scss/styles.scss */
  12724. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  12725. background: #FFF;
  12726. }
  12727. /* line 1113, ../scss/styles.scss */
  12728. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  12729. padding: 5px 5px;
  12730. }
  12731. /* line 1115, ../scss/styles.scss */
  12732. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  12733. height: 17px;
  12734. }
  12735. /* line 1128, ../scss/styles.scss */
  12736. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  12737. position: absolute;
  12738. top: 0;
  12739. left: 0;
  12740. z-index: 11;
  12741. padding: 5px;
  12742. border-radius: 5px 0 3px 0;
  12743. background-clip: padding-box;
  12744. font-size: 10px;
  12745. vertical-align: top;
  12746. background-color: white;
  12747. background-color: rgba(255, 255, 255, 0.9);
  12748. *background-color: white;
  12749. color: #000;
  12750. }
  12751. /* line 1134, ../scss/styles.scss */
  12752. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  12753. padding: 3px 0 0 4px;
  12754. display: moz-inline-stack;
  12755. display: inline-block;
  12756. vertical-align: top;
  12757. zoom: 1;
  12758. *display: inline;
  12759. }
  12760. /* line 1137, ../scss/styles.scss */
  12761. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  12762. font-size: 12px;
  12763. padding-top: 4em;
  12764. margin-top: -4.5em;
  12765. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  12766. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  12767. position: relative;
  12768. }
  12769. /* line 1145, ../scss/styles.scss */
  12770. article.node-materiau.vm-cardfull .side.oops p, article.node-materiau.vm-cardfull .side .upgrade p, article.node-breve.vm-cardfull .side.oops p, article.node-breve.vm-cardfull .side .upgrade p {
  12771. padding: 10px;
  12772. font-size: 12px;
  12773. }
  12774. /* line 1147, ../scss/styles.scss */
  12775. article.node-materiau.vm-cardfull .side.oops p a, article.node-materiau.vm-cardfull .side .upgrade p a, article.node-breve.vm-cardfull .side.oops p a, article.node-breve.vm-cardfull .side .upgrade p a {
  12776. display: block;
  12777. margin: 10px 0;
  12778. font-size: 18px;
  12779. padding: 0.1em 0.6em 0.2em;
  12780. border-radius: 0.3em;
  12781. background-clip: padding-box;
  12782. font-weight: bold;
  12783. border: 2px solid #69CDCF;
  12784. background-color: #69CDCF;
  12785. color: #fff;
  12786. cursor: pointer;
  12787. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  12788. -webkit-transition: text-shadow 0.2s ease-out;
  12789. transition: text-shadow 0.2s ease-out;
  12790. text-align: center;
  12791. text-decoration: none;
  12792. }
  12793. /* line 48, ../scss/styles.scss */
  12794. article.node-materiau.vm-cardfull .side.oops p a:hover, article.node-materiau.vm-cardfull .side.oops p a:focus, article.node-materiau.vm-cardfull .side .upgrade p a:hover, article.node-materiau.vm-cardfull .side .upgrade p a:focus, article.node-breve.vm-cardfull .side.oops p a:hover, article.node-breve.vm-cardfull .side.oops p a:focus, article.node-breve.vm-cardfull .side .upgrade p a:hover, article.node-breve.vm-cardfull .side .upgrade p a:focus {
  12795. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  12796. }
  12797. /* line 51, ../scss/styles.scss */
  12798. article.node-materiau.vm-cardfull .side.oops p a:active, article.node-materiau.vm-cardfull .side .upgrade p a:active, article.node-breve.vm-cardfull .side.oops p a:active, article.node-breve.vm-cardfull .side .upgrade p a:active {
  12799. -webkit-transition: text-shadow 0s ease-out;
  12800. transition: text-shadow 0s ease-out;
  12801. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  12802. }
  12803. /* line 1387, ../scss/styles.scss */
  12804. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  12805. top: 0;
  12806. }
  12807. /* line 1391, ../scss/styles.scss */
  12808. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  12809. font-size: 16px;
  12810. }
  12811. /* line 1393, ../scss/styles.scss */
  12812. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  12813. display: moz-inline-stack;
  12814. display: inline-block;
  12815. vertical-align: top;
  12816. zoom: 1;
  12817. *display: inline;
  12818. width: 50%;
  12819. }
  12820. /* line 1394, ../scss/styles.scss */
  12821. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  12822. border-radius: 5px 0 0 5px;
  12823. background-clip: padding-box;
  12824. }
  12825. /* line 1397, ../scss/styles.scss */
  12826. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  12827. border-radius: 0 5px 5px 0;
  12828. background-clip: padding-box;
  12829. }
  12830. /* line 1403, ../scss/styles.scss */
  12831. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  12832. position: relative;
  12833. z-index: 1;
  12834. background-color: #fff;
  12835. }
  12836. /* line 59, ../scss/styles.scss */
  12837. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  12838. position: absolute;
  12839. top: 0;
  12840. left: 0;
  12841. }
  12842. /* line 61, ../scss/styles.scss */
  12843. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  12844. position: relative;
  12845. z-index: 1;
  12846. }
  12847. /* line 1405, ../scss/styles.scss */
  12848. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  12849. font-size: 20px;
  12850. font-weight: 300;
  12851. padding: 10px;
  12852. }
  12853. /* line 1407, ../scss/styles.scss */
  12854. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  12855. font-weight: 700;
  12856. }
  12857. /* line 1408, ../scss/styles.scss */
  12858. article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardfull .group-header .field-name-field-localisation, article.node-materiau.vm-cardfull .group-header .field-name-field-authored-on, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-field-localisation, article.node-breve.vm-cardfull .group-header .field-name-field-authored-on {
  12859. display: moz-inline-stack;
  12860. display: inline-block;
  12861. vertical-align: top;
  12862. zoom: 1;
  12863. *display: inline;
  12864. font-size: 12px;
  12865. padding-right: 15px;
  12866. }
  12867. /* line 1412, ../scss/styles.scss */
  12868. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  12869. color: #fff;
  12870. background-color: black;
  12871. background-color: rgba(0, 0, 0, 0.7);
  12872. *background-color: black;
  12873. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  12874. -webkit-transition: background-color 0.2s ease-out;
  12875. transition: background-color 0.2s ease-out;
  12876. }
  12877. /* line 1414, ../scss/styles.scss */
  12878. article.node-materiau.vm-cardfull.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardfull.node-breve .group-header .field-name-field-authored-on {
  12879. font-weight: 500;
  12880. }
  12881. /* line 1418, ../scss/styles.scss */
  12882. article.node-materiau.vm-cardfull .field-name-field-description, article.node-materiau.vm-cardfull .field-name-body, article.node-breve.vm-cardfull .field-name-field-description, article.node-breve.vm-cardfull .field-name-body {
  12883. font-size: 12px;
  12884. font-weight: 300;
  12885. padding: 10px;
  12886. }
  12887. /* line 1422, ../scss/styles.scss */
  12888. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  12889. padding: 10px;
  12890. font-size: 12px;
  12891. }
  12892. /* line 1428, ../scss/styles.scss */
  12893. article.node-materiau.vm-cardfull .field-name-field-company-fab, article.node-materiau.vm-cardfull .field-name-field-company-distrib, article.node-breve.vm-cardfull .field-name-field-company-fab, article.node-breve.vm-cardfull .field-name-field-company-distrib {
  12894. font-size: 12px;
  12895. padding: 10px;
  12896. font-weight: 300;
  12897. display: moz-inline-stack;
  12898. display: inline-block;
  12899. vertical-align: top;
  12900. zoom: 1;
  12901. *display: inline;
  12902. width: 40%;
  12903. }
  12904. /* line 1431, ../scss/styles.scss */
  12905. article.node-materiau.vm-cardfull .field-name-field-company-fab .field-item, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-item, article.node-breve.vm-cardfull .field-name-field-company-fab .field-item, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-item {
  12906. margin-top: 1em;
  12907. }
  12908. /* line 1432, ../scss/styles.scss */
  12909. article.node-materiau.vm-cardfull .field-name-field-company-fab .field-label, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-label, article.node-breve.vm-cardfull .field-name-field-company-fab .field-label, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-label {
  12910. font-size: 10px;
  12911. text-transform: lowercase;
  12912. float: none;
  12913. }
  12914. /* line 1433, ../scss/styles.scss */
  12915. article.node-materiau.vm-cardfull .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardfull .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-name-field-tode-company {
  12916. font-size: 14px;
  12917. }
  12918. /* line 1436, ../scss/styles.scss */
  12919. article.node-materiau.vm-cardfull .field-name-field-materiau-ref, article.node-materiau.vm-cardfull .field-name-field-source, article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-materiau-ref, article.node-breve.vm-cardfull .field-name-field-source, article.node-breve.vm-cardfull .field-name-field-attachments {
  12920. font-size: 12px;
  12921. padding: 10px;
  12922. font-weight: 300;
  12923. }
  12924. /* line 1437, ../scss/styles.scss */
  12925. article.node-materiau.vm-cardfull .field-name-field-materiau-ref a, article.node-materiau.vm-cardfull .field-name-field-source a, article.node-materiau.vm-cardfull .field-name-field-attachments a, article.node-breve.vm-cardfull .field-name-field-materiau-ref a, article.node-breve.vm-cardfull .field-name-field-source a, article.node-breve.vm-cardfull .field-name-field-attachments a {
  12926. color: #000;
  12927. }
  12928. /* line 1439, ../scss/styles.scss */
  12929. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  12930. font-weight: 900;
  12931. margin: 0 0 0.5em;
  12932. }
  12933. /* line 1442, ../scss/styles.scss */
  12934. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  12935. margin: 5px;
  12936. }
  12937. /* line 1444, ../scss/styles.scss */
  12938. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  12939. margin: 5px;
  12940. }
  12941. /* line 1447, ../scss/styles.scss */
  12942. article.node-materiau.vm-cardfull .side.oops p, article.node-materiau.vm-cardfull .side .upgrade p, article.node-breve.vm-cardfull .side.oops p, article.node-breve.vm-cardfull .side .upgrade p {
  12943. padding: 3em;
  12944. }
  12945. /* line 1449, ../scss/styles.scss */
  12946. article.node-materiau.vm-cardfull .side.oops p a, article.node-materiau.vm-cardfull .side .upgrade p a, article.node-breve.vm-cardfull .side.oops p a, article.node-breve.vm-cardfull .side .upgrade p a {
  12947. border: 2px solid #eee;
  12948. background-color: #eee;
  12949. color: #fff;
  12950. -webkit-transition: border 0.3s ease-out;
  12951. transition: border 0.3s ease-out;
  12952. -webkit-transition: background-color 0.3s ease-out;
  12953. transition: background-color 0.3s ease-out;
  12954. }
  12955. /* line 1456, ../scss/styles.scss */
  12956. article.node-materiau.vm-cardfull:hover .side.oops p a, article.node-materiau.vm-cardfull:hover .side .upgrade p a, article.node-breve.vm-cardfull:hover .side.oops p a, article.node-breve.vm-cardfull:hover .side .upgrade p a {
  12957. border: 2px solid #69CDCF;
  12958. background-color: #69CDCF;
  12959. }
  12960. /* line 36, ../scss/misc.scss */
  12961. div.messages {
  12962. padding: 9px;
  12963. margin: 0.5em 0 0;
  12964. color: #3a87ad;
  12965. background: #d9edf7;
  12966. border: 1px solid #bce8f1;
  12967. border-radius: 5px;
  12968. font-size: 12px;
  12969. }
  12970. /* line 14, ../scss/misc.scss */
  12971. div.messages.warning {
  12972. color: #c09853;
  12973. background-color: #fcf8e3;
  12974. border-color: #fbeed5;
  12975. }
  12976. /* line 20, ../scss/misc.scss */
  12977. div.messages.error {
  12978. color: #b94a48;
  12979. background-color: #f2dede;
  12980. border-color: #eed3d7;
  12981. }
  12982. /* line 27, ../scss/misc.scss */
  12983. div.messages.status {
  12984. color: #468847;
  12985. background-color: #dff0d8;
  12986. border-color: #d6e9c6;
  12987. font-size: 14px;
  12988. }
  12989. /* line 38, ../scss/misc.scss */
  12990. .messages-label {
  12991. display: none;
  12992. }
  12993. /* line 40, ../scss/misc.scss */
  12994. #better-messages-wrapper {
  12995. background-color: rgba(255, 255, 255, 0.7);
  12996. padding: 10px;
  12997. border-radius: 5px;
  12998. background-clip: padding-box;
  12999. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  13000. }
  13001. /* line 44, ../scss/misc.scss */
  13002. #better-messages-wrapper #better-messages-default div.messages {
  13003. padding: 9px;
  13004. margin: 0.5em 0 0;
  13005. color: #3a87ad;
  13006. background: #d9edf7;
  13007. border: 1px solid #bce8f1;
  13008. border-radius: 5px;
  13009. font-size: 12px;
  13010. margin: 0 0 10px 0;
  13011. }
  13012. /* line 14, ../scss/misc.scss */
  13013. #better-messages-wrapper #better-messages-default div.messages.warning {
  13014. color: #c09853;
  13015. background-color: #fcf8e3;
  13016. border-color: #fbeed5;
  13017. }
  13018. /* line 20, ../scss/misc.scss */
  13019. #better-messages-wrapper #better-messages-default div.messages.error {
  13020. color: #b94a48;
  13021. background-color: #f2dede;
  13022. border-color: #eed3d7;
  13023. }
  13024. /* line 27, ../scss/misc.scss */
  13025. #better-messages-wrapper #better-messages-default div.messages.status {
  13026. color: #468847;
  13027. background-color: #dff0d8;
  13028. border-color: #d6e9c6;
  13029. font-size: 14px;
  13030. }
  13031. /* line 47, ../scss/misc.scss */
  13032. #better-messages-wrapper #better-messages-default .footer {
  13033. border: none;
  13034. padding: 0;
  13035. margin: 0;
  13036. }
  13037. /* line 49, ../scss/misc.scss */
  13038. #better-messages-wrapper #better-messages-default .footer a.message-close {
  13039. background: #fff url("../img/close.png") no-repeat center center;
  13040. width: 15px;
  13041. height: 15px;
  13042. border-radius: 3px;
  13043. background-clip: padding-box;
  13044. display: block;
  13045. }
  13046. /** Tab navigation */
  13047. /**
  13048. * icons
  13049. */
  13050. /**
  13051. * figures
  13052. */
  13053. /* line 176, ../scss/misc.scss */
  13054. figure figcaption {
  13055. display: none;
  13056. }
  13057. /* line 179, ../scss/misc.scss */
  13058. figure .blank {
  13059. position: absolute;
  13060. top: 0;
  13061. left: 0;
  13062. width: 100%;
  13063. height: 100%;
  13064. }
  13065. /* ==|== print styles =======================================================
  13066. Print styles.
  13067. Inlined to avoid required HTTP connection: h5bp.com/r
  13068. ========================================================================== */
  13069. /* line 206, ../scss/misc.scss */
  13070. a:focus {
  13071. outline: 0;
  13072. }
  13073. /*
  13074. * Improves readability when focused and also mouse hovered in all browsers.
  13075. */
  13076. /* line 214, ../scss/misc.scss */
  13077. a:active,
  13078. a:hover {
  13079. outline: 0;
  13080. }
  13081. /** COLORBOX */
  13082. /* line 221, ../scss/misc.scss */
  13083. #colorbox {
  13084. border-radius: 2px;
  13085. background-clip: padding-box;
  13086. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  13087. }
  13088. /* line 223, ../scss/misc.scss */
  13089. #colorbox #cboxLoadedContent {
  13090. background-color: #fff;
  13091. }
  13092. /** embed player */
  13093. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  13094. /* line 229, ../scss/misc.scss */
  13095. .embedded-video .player iframe {
  13096. max-width: 100%;
  13097. height: auto;
  13098. }
  13099. }
  13100. /** devel */
  13101. /* line 239, ../scss/misc.scss */
  13102. .not-logged-in #tasks ul.tabs.primary {
  13103. display: none;
  13104. }
  13105. /** AUTOCOMPLETE */
  13106. /* line 1466, ../scss/styles.scss */
  13107. #autocomplete {
  13108. border: 0;
  13109. border-radius: 3px;
  13110. background-clip: padding-box;
  13111. background-color: black;
  13112. background-color: rgba(0, 0, 0, 0.6);
  13113. *background-color: black;
  13114. text-align: left;
  13115. margin-left: 2px;
  13116. }
  13117. /* line 1471, ../scss/styles.scss */
  13118. .oldie #autocomplete {
  13119. background-color: #545454;
  13120. }
  13121. /* line 1472, ../scss/styles.scss */
  13122. #autocomplete li {
  13123. color: #FFF;
  13124. background-color: transparent;
  13125. font-size: 12px;
  13126. }
  13127. /* line 1474, ../scss/styles.scss */
  13128. #autocomplete li.selected {
  13129. background-color: black;
  13130. background-color: rgba(0, 0, 0, 0.8);
  13131. *background-color: black;
  13132. }
  13133. /* line 1475, ../scss/styles.scss */
  13134. #autocomplete li div {
  13135. padding: 0.1em 5px;
  13136. }
  13137. /**
  13138. * the old modal api (balck bg) for contextual forms (create new flag list)
  13139. */
  13140. /* line 1507, ../scss/styles.scss */
  13141. #modal {
  13142. background-color: rgba(0, 0, 0, 0.7);
  13143. border-radius: 5px;
  13144. background-clip: padding-box;
  13145. border: 0;
  13146. font-size: 12px;
  13147. }
  13148. /* line 1486, ../scss/styles.scss */
  13149. #modal * {
  13150. color: #fff;
  13151. background-color: transparent;
  13152. }
  13153. /* line 1488, ../scss/styles.scss */
  13154. #modal form {
  13155. background-color: transparent;
  13156. color: #fff;
  13157. border: 0px;
  13158. }
  13159. /* line 1491, ../scss/styles.scss */
  13160. #modal form .form-actions {
  13161. background-color: transparent;
  13162. margin: 0;
  13163. padding: 0;
  13164. border: 0;
  13165. }
  13166. /* line 1494, ../scss/styles.scss */
  13167. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  13168. background-color: #fff;
  13169. color: #000;
  13170. border: 0;
  13171. }
  13172. /* line 1496, ../scss/styles.scss */
  13173. #modal form .form-actions {
  13174. text-align: right;
  13175. }
  13176. /* line 1497, ../scss/styles.scss */
  13177. #modal form input.form-submit {
  13178. border-style: solid;
  13179. border-width: 0;
  13180. cursor: pointer;
  13181. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  13182. font-weight: normal;
  13183. line-height: normal;
  13184. margin: 0 0 1.25rem;
  13185. position: relative;
  13186. text-decoration: none;
  13187. text-align: center;
  13188. -webkit-appearance: none;
  13189. -moz-appearance: none;
  13190. border-radius: 0;
  13191. display: inline-block;
  13192. padding-top: 1rem;
  13193. padding-right: 2rem;
  13194. padding-bottom: 1.0625rem;
  13195. padding-left: 2rem;
  13196. font-size: 1rem;
  13197. background-color: #008CBA;
  13198. border-color: #007095;
  13199. color: #FFFFFF;
  13200. -webkit-transition: background-color 300ms ease-out;
  13201. transition: background-color 300ms ease-out;
  13202. }
  13203. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  13204. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  13205. background-color: #007095;
  13206. }
  13207. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  13208. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  13209. color: #FFFFFF;
  13210. }
  13211. /* line 1509, ../scss/styles.scss */
  13212. #modal > * {
  13213. padding: 10px;
  13214. }
  13215. /* line 1513, ../scss/styles.scss */
  13216. #modal .form-item-flag-lists-name input {
  13217. width: 95%;
  13218. }
  13219. /* line 1516, ../scss/styles.scss */
  13220. #modal .actions {
  13221. text-align: right;
  13222. }
  13223. /**
  13224. * the new modal api used for preview and register modal
  13225. */
  13226. /* line 1524, ../scss/styles.scss */
  13227. .modal-wrapper {
  13228. bottom: 0;
  13229. left: 0;
  13230. position: fixed;
  13231. right: 0;
  13232. text-align: center;
  13233. top: 0;
  13234. white-space: nowrap;
  13235. z-index: 99998;
  13236. }
  13237. /* line 1525, ../scss/styles.scss */
  13238. .modal-wrapper:before {
  13239. content: "";
  13240. display: inline-block;
  13241. height: 100%;
  13242. margin-right: -0.25em;
  13243. vertical-align: middle;
  13244. }
  13245. /* line 1532, ../scss/styles.scss */
  13246. .modal-wrapper:after, .modal-wrapper:before {
  13247. -moz-box-sizing: border-box;
  13248. }
  13249. /* line 1547, ../scss/styles.scss */
  13250. .modal-wrapper .modal-bg {
  13251. background-color: #000;
  13252. position: absolute;
  13253. top: 0;
  13254. left: 0;
  13255. width: 100%;
  13256. height: 100%;
  13257. -webkit-opacity: 0.5;
  13258. -khtml-opacity: 0.5;
  13259. -moz-opacity: 0.5;
  13260. opacity: 0.5;
  13261. }
  13262. /* line 1555, ../scss/styles.scss */
  13263. .modal-wrapper .modal-content {
  13264. position: relative;
  13265. display: inline-block;
  13266. margin: 0 auto;
  13267. text-align: left;
  13268. vertical-align: middle;
  13269. white-space: normal;
  13270. min-height: 200px;
  13271. }
  13272. /** MODALCONTENT */
  13273. /** JSCROLLPAN */
  13274. /* line 1614, ../scss/styles.scss */
  13275. .jspContainer .jspVerticalBar {
  13276. background-color: transparent;
  13277. width: 5px;
  13278. }
  13279. /* line 1618, ../scss/styles.scss */
  13280. .jspContainer .jspVerticalBar .jspTrack {
  13281. background-color: transparent;
  13282. }
  13283. /* line 1620, ../scss/styles.scss */
  13284. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  13285. background-color: #ccc;
  13286. border-radius: 3px;
  13287. background-clip: padding-box;
  13288. }
  13289. /** TOOLTIP */
  13290. /* line 1629, ../scss/styles.scss */
  13291. #tooltip {
  13292. position: absolute;
  13293. z-index: 999;
  13294. max-width: 180px;
  13295. background-color: white;
  13296. padding: 5px;
  13297. border-radius: 3px;
  13298. background-clip: padding-box;
  13299. font-size: 12px;
  13300. font-weight: 500;
  13301. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  13302. }
  13303. /* line 1633, ../scss/styles.scss */
  13304. #tooltip.op-visible {
  13305. -webkit-transition: opacity 0.1s ease-out;
  13306. transition: opacity 0.1s ease-out;
  13307. }
  13308. /** FEEDBACK */
  13309. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  13310. /* line 1640, ../scss/styles.scss */
  13311. #block-feedback-form {
  13312. bottom: 5px;
  13313. left: 5px;
  13314. right: auto;
  13315. }
  13316. }
  13317. /* line 1644, ../scss/styles.scss */
  13318. #block-feedback-form h2 {
  13319. line-height: 1.2;
  13320. font-size: 14px;
  13321. margin: 0;
  13322. }
  13323. /* line 1646, ../scss/styles.scss */
  13324. #block-feedback-form h2 .title {
  13325. display: none;
  13326. }
  13327. /* line 1649, ../scss/styles.scss */
  13328. #block-feedback-form #feedback-form-toggle {
  13329. padding: 2px 3px;
  13330. border-radius: 3px;
  13331. background-clip: padding-box;
  13332. background-color: #ff7600;
  13333. color: #fff;
  13334. line-height: 2;
  13335. font-weight: 900;
  13336. }
  13337. /* line 1653, ../scss/styles.scss */
  13338. #block-feedback-form .content {
  13339. background-color: rgba(0, 0, 0, 0.7);
  13340. border-radius: 5px;
  13341. background-clip: padding-box;
  13342. border: 0;
  13343. font-size: 12px;
  13344. }
  13345. /* line 1486, ../scss/styles.scss */
  13346. #block-feedback-form .content * {
  13347. color: #fff;
  13348. background-color: transparent;
  13349. }
  13350. /* line 1488, ../scss/styles.scss */
  13351. #block-feedback-form .content form {
  13352. background-color: transparent;
  13353. color: #fff;
  13354. border: 0px;
  13355. }
  13356. /* line 1491, ../scss/styles.scss */
  13357. #block-feedback-form .content form .form-actions {
  13358. background-color: transparent;
  13359. margin: 0;
  13360. padding: 0;
  13361. border: 0;
  13362. }
  13363. /* line 1494, ../scss/styles.scss */
  13364. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  13365. background-color: #fff;
  13366. color: #000;
  13367. border: 0;
  13368. }
  13369. /* line 1496, ../scss/styles.scss */
  13370. #block-feedback-form .content form .form-actions {
  13371. text-align: right;
  13372. }
  13373. /* line 1497, ../scss/styles.scss */
  13374. #block-feedback-form .content form input.form-submit {
  13375. border-style: solid;
  13376. border-width: 0;
  13377. cursor: pointer;
  13378. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  13379. font-weight: normal;
  13380. line-height: normal;
  13381. margin: 0 0 1.25rem;
  13382. position: relative;
  13383. text-decoration: none;
  13384. text-align: center;
  13385. -webkit-appearance: none;
  13386. -moz-appearance: none;
  13387. border-radius: 0;
  13388. display: inline-block;
  13389. padding-top: 1rem;
  13390. padding-right: 2rem;
  13391. padding-bottom: 1.0625rem;
  13392. padding-left: 2rem;
  13393. font-size: 1rem;
  13394. background-color: #008CBA;
  13395. border-color: #007095;
  13396. color: #FFFFFF;
  13397. -webkit-transition: background-color 300ms ease-out;
  13398. transition: background-color 300ms ease-out;
  13399. }
  13400. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  13401. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  13402. background-color: #007095;
  13403. }
  13404. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  13405. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  13406. color: #FFFFFF;
  13407. }
  13408. /* line 1655, ../scss/styles.scss */
  13409. .ie8 #block-feedback-form .content {
  13410. background: #000;
  13411. }
  13412. /* line 1658, ../scss/styles.scss */
  13413. #block-feedback-form #feedback-status-message {
  13414. background-color: #fff;
  13415. padding: 5px;
  13416. }
  13417. /** TASK / TABS **/
  13418. /* line 1676, ../scss/styles.scss */
  13419. #tasks ul.tabs {
  13420. display: moz-inline-stack;
  13421. display: inline-block;
  13422. vertical-align: top;
  13423. zoom: 1;
  13424. *display: inline;
  13425. border: 0 solid #fff;
  13426. padding: 0;
  13427. margin: 0;
  13428. }
  13429. /* line 1680, ../scss/styles.scss */
  13430. #tasks ul.tabs li {
  13431. padding: 0;
  13432. margin: 2px 5px;
  13433. border: 0 solid #fff;
  13434. }
  13435. /* line 1681, ../scss/styles.scss */
  13436. #tasks ul.tabs a {
  13437. border: 0;
  13438. color: #7f7f7f;
  13439. }
  13440. /* line 1683, ../scss/styles.scss */
  13441. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  13442. font-weight: 900;
  13443. color: #000;
  13444. }
  13445. /* line 1663, ../scss/styles.scss */
  13446. #tasks ul.tabs.primary a {
  13447. font-size: 12px;
  13448. padding: 5px 10px;
  13449. background-color: #e6e6e6;
  13450. border-radius: 3px;
  13451. background-clip: padding-box;
  13452. }
  13453. /* line 1667, ../scss/styles.scss */
  13454. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  13455. background-color: #e6e6e6;
  13456. }
  13457. /* line 1690, ../scss/styles.scss */
  13458. #tasks ul.tabs.secondary {
  13459. font-size: 10px;
  13460. padding: 0.5em 1em;
  13461. }
  13462. /** STATICS */
  13463. /** user */
  13464. /* line 1701, ../scss/styles.scss */
  13465. .page-user #main, .page-user-edit #main, .page-user-password #main, .page-user-reset #main, .page-toboggan #main {
  13466. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right;
  13467. }
  13468. /* line 1703, ../scss/styles.scss */
  13469. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  13470. width: 800px;
  13471. margin: 0 auto;
  13472. }
  13473. /* line 1705, ../scss/styles.scss */
  13474. .page-user.role-6 #tasks .tabs.primary, .page-user-edit.role-6 #tasks .tabs.primary, .page-user-password.role-6 #tasks .tabs.primary, .page-user-reset.role-6 #tasks .tabs.primary, .page-toboggan.role-6 #tasks .tabs.primary {
  13475. display: none;
  13476. }
  13477. /* line 1663, ../scss/styles.scss */
  13478. .page-user.role-6 #tasks .tabs.secondary a, .page-user-edit.role-6 #tasks .tabs.secondary a, .page-user-password.role-6 #tasks .tabs.secondary a, .page-user-reset.role-6 #tasks .tabs.secondary a, .page-toboggan.role-6 #tasks .tabs.secondary a {
  13479. font-size: 12px;
  13480. padding: 5px 10px;
  13481. background-color: #e6e6e6;
  13482. border-radius: 3px;
  13483. background-clip: padding-box;
  13484. }
  13485. /* line 1667, ../scss/styles.scss */
  13486. .page-user.role-6 #tasks .tabs.secondary a.active, .page-user.role-6 #tasks .tabs.secondary a:hover, .page-user-edit.role-6 #tasks .tabs.secondary a.active, .page-user-edit.role-6 #tasks .tabs.secondary a:hover, .page-user-password.role-6 #tasks .tabs.secondary a.active, .page-user-password.role-6 #tasks .tabs.secondary a:hover, .page-user-reset.role-6 #tasks .tabs.secondary a.active, .page-user-reset.role-6 #tasks .tabs.secondary a:hover, .page-toboggan.role-6 #tasks .tabs.secondary a.active, .page-toboggan.role-6 #tasks .tabs.secondary a:hover {
  13487. background-color: #e6e6e6;
  13488. }
  13489. /* line 1708, ../scss/styles.scss */
  13490. .page-user #content .inner-content > *, .page-user-edit #content .inner-content > *, .page-user-password #content .inner-content > *, .page-user-reset #content .inner-content > *, .page-toboggan #content .inner-content > * {
  13491. width: 800px;
  13492. margin: 0 auto;
  13493. padding-top: 1em;
  13494. font-size: 14px;
  13495. /* #user-profile-form */
  13496. }
  13497. /* line 1711, ../scss/styles.scss */
  13498. .page-user #content .inner-content > * fieldset, .page-user-edit #content .inner-content > * fieldset, .page-user-password #content .inner-content > * fieldset, .page-user-reset #content .inner-content > * fieldset, .page-toboggan #content .inner-content > * fieldset {
  13499. margin-bottom: 1em;
  13500. }
  13501. /* line 1715, ../scss/styles.scss */
  13502. .page-user #content .inner-content > * legend, .page-user-edit #content .inner-content > * legend, .page-user-password #content .inner-content > * legend, .page-user-reset #content .inner-content > * legend, .page-toboggan #content .inner-content > * legend {
  13503. font-size: 16px;
  13504. margin: 0;
  13505. padding: 10px 0 5px 0;
  13506. line-height: 1;
  13507. border: 0 solid #fff;
  13508. }
  13509. /* line 1717, ../scss/styles.scss */
  13510. .page-user #content .inner-content > * legend a, .page-user-edit #content .inner-content > * legend a, .page-user-password #content .inner-content > * legend a, .page-user-reset #content .inner-content > * legend a, .page-toboggan #content .inner-content > * legend a {
  13511. color: #000;
  13512. }
  13513. /* line 1720, ../scss/styles.scss */
  13514. .page-user #content .inner-content > * .form-item, .page-user-edit #content .inner-content > * .form-item, .page-user-password #content .inner-content > * .form-item, .page-user-reset #content .inner-content > * .form-item, .page-toboggan #content .inner-content > * .form-item {
  13515. margin: 0 0 0.5em 0;
  13516. width: 100%;
  13517. }
  13518. /* line 1722, ../scss/styles.scss */
  13519. .page-user #content .inner-content > * .form-item label, .page-user #content .inner-content > * .form-item input.form-text, .page-user-edit #content .inner-content > * .form-item label, .page-user-edit #content .inner-content > * .form-item input.form-text, .page-user-password #content .inner-content > * .form-item label, .page-user-password #content .inner-content > * .form-item input.form-text, .page-user-reset #content .inner-content > * .form-item label, .page-user-reset #content .inner-content > * .form-item input.form-text, .page-toboggan #content .inner-content > * .form-item label, .page-toboggan #content .inner-content > * .form-item input.form-text {
  13520. display: moz-inline-stack;
  13521. display: inline-block;
  13522. vertical-align: top;
  13523. zoom: 1;
  13524. *display: inline;
  13525. vertical-align: middle;
  13526. }
  13527. /* line 1725, ../scss/styles.scss */
  13528. .page-user #content .inner-content > * .form-item label, .page-user-edit #content .inner-content > * .form-item label, .page-user-password #content .inner-content > * .form-item label, .page-user-reset #content .inner-content > * .form-item label, .page-toboggan #content .inner-content > * .form-item label {
  13529. margin-right: 1em;
  13530. min-width: 6em;
  13531. }
  13532. /* line 1726, ../scss/styles.scss */
  13533. .page-user #content .inner-content > * .form-item input.form-text, .page-user-edit #content .inner-content > * .form-item input.form-text, .page-user-password #content .inner-content > * .form-item input.form-text, .page-user-reset #content .inner-content > * .form-item input.form-text, .page-toboggan #content .inner-content > * .form-item input.form-text {
  13534. padding: 2px 4px;
  13535. }
  13536. /* line 1731, ../scss/styles.scss */
  13537. .page-user #content .inner-content > * .form-wrapper > .form-item, .page-user-edit #content .inner-content > * .form-wrapper > .form-item, .page-user-password #content .inner-content > * .form-wrapper > .form-item, .page-user-reset #content .inner-content > * .form-wrapper > .form-item, .page-toboggan #content .inner-content > * .form-wrapper > .form-item {
  13538. margin: 0 0 2em 0;
  13539. }
  13540. /* line 1735, ../scss/styles.scss */
  13541. .page-user #content .inner-content > * .form-type-password-confirm label, .page-user #content .inner-content > * .form-type-new-password-confirm label, .page-user-edit #content .inner-content > * .form-type-password-confirm label, .page-user-edit #content .inner-content > * .form-type-new-password-confirm label, .page-user-password #content .inner-content > * .form-type-password-confirm label, .page-user-password #content .inner-content > * .form-type-new-password-confirm label, .page-user-reset #content .inner-content > * .form-type-password-confirm label, .page-user-reset #content .inner-content > * .form-type-new-password-confirm label, .page-toboggan #content .inner-content > * .form-type-password-confirm label, .page-toboggan #content .inner-content > * .form-type-new-password-confirm label {
  13542. width: 9em;
  13543. }
  13544. /* line 1736, ../scss/styles.scss */
  13545. .page-user #content .inner-content > * .form-type-password-confirm .password-parent, .page-user #content .inner-content > * .form-type-new-password-confirm .password-parent, .page-user-edit #content .inner-content > * .form-type-password-confirm .password-parent, .page-user-edit #content .inner-content > * .form-type-new-password-confirm .password-parent, .page-user-password #content .inner-content > * .form-type-password-confirm .password-parent, .page-user-password #content .inner-content > * .form-type-new-password-confirm .password-parent, .page-user-reset #content .inner-content > * .form-type-password-confirm .password-parent, .page-user-reset #content .inner-content > * .form-type-new-password-confirm .password-parent, .page-toboggan #content .inner-content > * .form-type-password-confirm .password-parent, .page-toboggan #content .inner-content > * .form-type-new-password-confirm .password-parent {
  13546. width: auto;
  13547. }
  13548. /* line 1737, ../scss/styles.scss */
  13549. .page-user #content .inner-content > * .form-type-password-confirm .password-strength, .page-user #content .inner-content > * .form-type-password-confirm .password-confirm, .page-user #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-user #content .inner-content > * .form-type-new-password-confirm .password-confirm, .page-user-edit #content .inner-content > * .form-type-password-confirm .password-strength, .page-user-edit #content .inner-content > * .form-type-password-confirm .password-confirm, .page-user-edit #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-user-edit #content .inner-content > * .form-type-new-password-confirm .password-confirm, .page-user-password #content .inner-content > * .form-type-password-confirm .password-strength, .page-user-password #content .inner-content > * .form-type-password-confirm .password-confirm, .page-user-password #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-user-password #content .inner-content > * .form-type-new-password-confirm .password-confirm, .page-user-reset #content .inner-content > * .form-type-password-confirm .password-strength, .page-user-reset #content .inner-content > * .form-type-password-confirm .password-confirm, .page-user-reset #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-user-reset #content .inner-content > * .form-type-new-password-confirm .password-confirm, .page-toboggan #content .inner-content > * .form-type-password-confirm .password-strength, .page-toboggan #content .inner-content > * .form-type-password-confirm .password-confirm, .page-toboggan #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-toboggan #content .inner-content > * .form-type-new-password-confirm .password-confirm {
  13550. width: 15em;
  13551. margin-top: 0;
  13552. }
  13553. /* line 1743, ../scss/styles.scss */
  13554. .page-user #content .inner-content > * .form-type-checkbox input, .page-user-edit #content .inner-content > * .form-type-checkbox input, .page-user-password #content .inner-content > * .form-type-checkbox input, .page-user-reset #content .inner-content > * .form-type-checkbox input, .page-toboggan #content .inner-content > * .form-type-checkbox input {
  13555. margin: 0;
  13556. }
  13557. /* line 1744, ../scss/styles.scss */
  13558. .page-user #content .inner-content > * .form-type-checkbox label, .page-user-edit #content .inner-content > * .form-type-checkbox label, .page-user-password #content .inner-content > * .form-type-checkbox label, .page-user-reset #content .inner-content > * .form-type-checkbox label, .page-toboggan #content .inner-content > * .form-type-checkbox label {
  13559. font-size: 14px;
  13560. margin: 0;
  13561. }
  13562. /* line 1748, ../scss/styles.scss */
  13563. .page-user #content .inner-content > * #edit-language .form-item, .page-user-edit #content .inner-content > * #edit-language .form-item, .page-user-password #content .inner-content > * #edit-language .form-item, .page-user-reset #content .inner-content > * #edit-language .form-item, .page-toboggan #content .inner-content > * #edit-language .form-item {
  13564. display: moz-inline-stack;
  13565. display: inline-block;
  13566. vertical-align: top;
  13567. zoom: 1;
  13568. *display: inline;
  13569. width: auto;
  13570. margin-right: 1em;
  13571. }
  13572. /* line 1750, ../scss/styles.scss */
  13573. .page-user #content .inner-content > * #edit-language .form-item input, .page-user #content .inner-content > * #edit-language .form-item label, .page-user-edit #content .inner-content > * #edit-language .form-item input, .page-user-edit #content .inner-content > * #edit-language .form-item label, .page-user-password #content .inner-content > * #edit-language .form-item input, .page-user-password #content .inner-content > * #edit-language .form-item label, .page-user-reset #content .inner-content > * #edit-language .form-item input, .page-user-reset #content .inner-content > * #edit-language .form-item label, .page-toboggan #content .inner-content > * #edit-language .form-item input, .page-toboggan #content .inner-content > * #edit-language .form-item label {
  13574. margin: 0;
  13575. }
  13576. /* line 1754, ../scss/styles.scss */
  13577. .page-user #content .inner-content > * select.form-select, .page-user-edit #content .inner-content > * select.form-select, .page-user-password #content .inner-content > * select.form-select, .page-user-reset #content .inner-content > * select.form-select, .page-toboggan #content .inner-content > * select.form-select {
  13578. width: auto;
  13579. padding: 2px 4px;
  13580. height: auto;
  13581. }
  13582. /* line 1758, ../scss/styles.scss */
  13583. .page-user #content .inner-content > * div.description, .page-user-edit #content .inner-content > * div.description, .page-user-password #content .inner-content > * div.description, .page-user-reset #content .inner-content > * div.description, .page-toboggan #content .inner-content > * div.description {
  13584. font-size: 10px;
  13585. }
  13586. /* line 1761, ../scss/styles.scss */
  13587. .page-user #content .inner-content > * div.form-actions, .page-user-edit #content .inner-content > * div.form-actions, .page-user-password #content .inner-content > * div.form-actions, .page-user-reset #content .inner-content > * div.form-actions, .page-toboggan #content .inner-content > * div.form-actions {
  13588. margin: 0;
  13589. text-align: right;
  13590. padding: 1em 0.5em;
  13591. }
  13592. /* line 1768, ../scss/styles.scss */
  13593. .page-user #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user #content .inner-content > * #edit-profile-adherent-field-name,
  13594. .page-user #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-user #content .inner-content > * #edit-profile-adherent-field-service, .page-user #content .inner-content > * #edit-profile-adherent-field-employee,
  13595. .page-user #content .inner-content > * #edit-profile-adherent-field-naf, .page-user #content .inner-content > * #edit-profile-adherent-field-siret, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-name,
  13596. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-service, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-employee,
  13597. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-naf, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-siret, .page-user-password #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user-password #content .inner-content > * #edit-profile-adherent-field-name,
  13598. .page-user-password #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-user-password #content .inner-content > * #edit-profile-adherent-field-service, .page-user-password #content .inner-content > * #edit-profile-adherent-field-employee,
  13599. .page-user-password #content .inner-content > * #edit-profile-adherent-field-naf, .page-user-password #content .inner-content > * #edit-profile-adherent-field-siret, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-name,
  13600. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-service, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-employee,
  13601. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-naf, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-siret, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-first-name, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-name,
  13602. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-service, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-employee,
  13603. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret {
  13604. display: moz-inline-stack;
  13605. display: inline-block;
  13606. vertical-align: top;
  13607. zoom: 1;
  13608. *display: inline;
  13609. vertical-align: middle;
  13610. width: auto;
  13611. margin: 0 1em 0.5em 0;
  13612. }
  13613. /* line 1772, ../scss/styles.scss */
  13614. .page-user #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user #content .inner-content > * #edit-profile-adherent-field-name div,
  13615. .page-user #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-user #content .inner-content > * #edit-profile-adherent-field-service div, .page-user #content .inner-content > * #edit-profile-adherent-field-employee div,
  13616. .page-user #content .inner-content > * #edit-profile-adherent-field-naf div, .page-user #content .inner-content > * #edit-profile-adherent-field-siret div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-name div,
  13617. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-service div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-employee div,
  13618. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-naf div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-siret div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-name div,
  13619. .page-user-password #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-service div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-employee div,
  13620. .page-user-password #content .inner-content > * #edit-profile-adherent-field-naf div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-siret div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-name div,
  13621. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-service div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-employee div,
  13622. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-naf div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-siret div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-name div,
  13623. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-service div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-employee div,
  13624. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret div {
  13625. width: auto;
  13626. margin: 0;
  13627. padding: 0;
  13628. }
  13629. /* line 1778, ../scss/styles.scss */
  13630. .page-user #content .inner-content > * #edit-profile-adherent-field-name label, .page-user #content .inner-content > * #edit-profile-adherent-field-service label,
  13631. .page-user #content .inner-content > * #edit-profile-adherent-field-naf label, .page-user #content .inner-content > * #edit-profile-adherent-field-siret label, .page-user #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-name label, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-service label,
  13632. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-naf label, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-siret label, .page-user-edit #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label, .page-user-password #content .inner-content > * #edit-profile-adherent-field-name label, .page-user-password #content .inner-content > * #edit-profile-adherent-field-service label,
  13633. .page-user-password #content .inner-content > * #edit-profile-adherent-field-naf label, .page-user-password #content .inner-content > * #edit-profile-adherent-field-siret label, .page-user-password #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-name label, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-service label,
  13634. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-naf label, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-siret label, .page-user-reset #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-name label, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-service label,
  13635. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf label, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret label, .page-toboggan #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label {
  13636. min-width: auto;
  13637. }
  13638. /* line 1781, ../scss/styles.scss */
  13639. .page-user #content .inner-content > * #edit-profile-adherent-field-siret input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-siret input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-siret input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-siret input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret input {
  13640. width: 8em;
  13641. }
  13642. /* line 1782, ../scss/styles.scss */
  13643. .page-user #content .inner-content > * #edit-profile-adherent-field-naf input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-naf input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-naf input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-naf input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf input {
  13644. width: 13em;
  13645. }
  13646. /* line 1784, ../scss/styles.scss */
  13647. .page-user #content .inner-content > * #edit-profile-adherent-field-organization, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-organization, .page-user-password #content .inner-content > * #edit-profile-adherent-field-organization, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-organization, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-organization {
  13648. margin: 2em 0 0 0;
  13649. }
  13650. /* line 1784, ../scss/styles.scss */
  13651. .page-user #content .inner-content > * #edit-profile-adherent-field-organization input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-organization input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-organization input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-organization input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-organization input {
  13652. width: 35em;
  13653. }
  13654. /* line 1786, ../scss/styles.scss */
  13655. .page-user #content .inner-content > * #edit-profile-adherent-field-employee input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-employee input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-employee input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-employee input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-employee input {
  13656. width: 4em;
  13657. }
  13658. /* line 1790, ../scss/styles.scss */
  13659. .page-user #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-password #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number {
  13660. display: moz-inline-stack;
  13661. display: inline-block;
  13662. vertical-align: top;
  13663. zoom: 1;
  13664. *display: inline;
  13665. vertical-align: middle;
  13666. }
  13667. /* line 1797, ../scss/styles.scss */
  13668. .page-user #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input {
  13669. width: 35em;
  13670. }
  13671. /* line 1800, ../scss/styles.scss */
  13672. .page-user #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item, .page-user-password #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item {
  13673. width: auto;
  13674. margin-right: 1em;
  13675. }
  13676. /* line 1804, ../scss/styles.scss */
  13677. .page-user #content .inner-content > * #edit-profile-adherent-field-user-website, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-user-website, .page-user-password #content .inner-content > * #edit-profile-adherent-field-user-website, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-user-website, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-user-website {
  13678. margin: 2em 0 0 0;
  13679. }
  13680. /* line 1806, ../scss/styles.scss */
  13681. .page-user #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-password #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > *, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > * {
  13682. display: moz-inline-stack;
  13683. display: inline-block;
  13684. vertical-align: top;
  13685. zoom: 1;
  13686. *display: inline;
  13687. vertical-align: middle;
  13688. }
  13689. /* line 1807, ../scss/styles.scss */
  13690. .page-user #content .inner-content > * #edit-profile-adherent-field-user-website input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-user-website input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-user-website input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-user-website input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-user-website input {
  13691. width: 35em;
  13692. }
  13693. /* line 1811, ../scss/styles.scss */
  13694. .page-user #content .inner-content > *.profile h3, .page-user-edit #content .inner-content > *.profile h3, .page-user-password #content .inner-content > *.profile h3, .page-user-reset #content .inner-content > *.profile h3, .page-toboggan #content .inner-content > *.profile h3 {
  13695. border: 0 solid transparent;
  13696. }
  13697. /* line 1812, ../scss/styles.scss */
  13698. .page-user #content .inner-content > *.profile .field-label, .page-user-edit #content .inner-content > *.profile .field-label, .page-user-password #content .inner-content > *.profile .field-label, .page-user-reset #content .inner-content > *.profile .field-label, .page-toboggan #content .inner-content > *.profile .field-label {
  13699. display: inline;
  13700. }
  13701. /** SIMPLENEWS */
  13702. /* line 1820, ../scss/styles.scss */
  13703. body.node-type-simplenews #content .inner-content {
  13704. text-align: center;
  13705. }
  13706. /* line 1823, ../scss/styles.scss */
  13707. body.node-type-simplenews #content article.node.node-simplenews {
  13708. display: moz-inline-stack;
  13709. display: inline-block;
  13710. vertical-align: top;
  13711. zoom: 1;
  13712. *display: inline;
  13713. max-width: 600px;
  13714. padding: 1em 0;
  13715. }
  13716. /* line 1827, ../scss/styles.scss */
  13717. body.node-type-simplenews #content article.node.node-simplenews tbody {
  13718. border-top: 0px;
  13719. }
  13720. /** PAGE CONTACT */
  13721. /* line 1836, ../scss/styles.scss */
  13722. .page-node-11175 #main {
  13723. background: #fff url("../img/bg-contact.gif") no-repeat bottom right;
  13724. }
  13725. /* line 1840, ../scss/styles.scss */
  13726. .page-node-11175 #main .field-name-body p {
  13727. display: moz-inline-stack;
  13728. display: inline-block;
  13729. vertical-align: top;
  13730. zoom: 1;
  13731. *display: inline;
  13732. margin: 15px;
  13733. }
  13734. /* line 1842, ../scss/styles.scss */
  13735. .page-node-11175 #main .field-name-body p strong {
  13736. font-size: 18px;
  13737. }
  13738. /** PRICING */
  13739. @media only screen and (min-width: 40.063em) {
  13740. /* line 1854, ../scss/styles.scss */
  13741. body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  13742. display: moz-inline-stack;
  13743. display: inline-block;
  13744. vertical-align: top;
  13745. zoom: 1;
  13746. *display: inline;
  13747. margin: 10px;
  13748. }
  13749. /* line 1857, ../scss/styles.scss */
  13750. body.page-node-11187 .node-11187 .field-name-body div.column {
  13751. width: 22.4%;
  13752. }
  13753. /* line 1859, ../scss/styles.scss */
  13754. body.page-node-11187 .node-11187 .field-name-body div.column ul.list-text {
  13755. min-height: 170px;
  13756. }
  13757. /* line 1861, ../scss/styles.scss */
  13758. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  13759. width: 46%;
  13760. }
  13761. /* line 1863, ../scss/styles.scss */
  13762. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  13763. min-height: 110px;
  13764. }
  13765. /* line 1865, ../scss/styles.scss */
  13766. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  13767. width: 92%;
  13768. }
  13769. /* line 1869, ../scss/styles.scss */
  13770. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  13771. width: auto;
  13772. max-width: 98%;
  13773. }
  13774. /* line 1876, ../scss/styles.scss */
  13775. body.page-node-11187 #block-materio-user-user-register {
  13776. width: 600px;
  13777. margin: 0 auto;
  13778. }
  13779. }
  13780. @media only screen and (max-width: 40em) {
  13781. /* line 1883, ../scss/styles.scss */
  13782. body.page-node-11187 #block-system-help {
  13783. text-align: center;
  13784. }
  13785. }
  13786. /* line 1887, ../scss/styles.scss */
  13787. body.page-node-11187 .node-11187 .field-name-body {
  13788. text-align: center;
  13789. }
  13790. /* line 1889, ../scss/styles.scss */
  13791. body.page-node-11187 .node-11187 .field-name-body > * {
  13792. text-align: left;
  13793. }
  13794. /* line 1890, ../scss/styles.scss */
  13795. body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  13796. position: relative;
  13797. border-radius: 5px;
  13798. background-clip: padding-box;
  13799. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  13800. overflow: hidden;
  13801. }
  13802. /* line 1893, ../scss/styles.scss */
  13803. .ie8 body.page-node-11187 .node-11187 .field-name-body div.column, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-demi, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-full, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  13804. max-width: 500px;
  13805. margin: auto;
  13806. margin-bottom: 15px;
  13807. border: 1px solid #C6C6C6;
  13808. }
  13809. /* line 1896, ../scss/styles.scss */
  13810. body.page-node-11187 .node-11187 .field-name-body div.column > *, body.page-node-11187 .node-11187 .field-name-body div.column-demi > *, body.page-node-11187 .node-11187 .field-name-body div.column-full > *, body.page-node-11187 .node-11187 .field-name-body div.column-auto > * {
  13811. padding: 0 10px;
  13812. }
  13813. /* line 1897, ../scss/styles.scss */
  13814. body.page-node-11187 .node-11187 .field-name-body div.column img, body.page-node-11187 .node-11187 .field-name-body div.column-demi img, body.page-node-11187 .node-11187 .field-name-body div.column-full img, body.page-node-11187 .node-11187 .field-name-body div.column-auto img {
  13815. float: left;
  13816. padding: 0;
  13817. }
  13818. /* line 1898, ../scss/styles.scss */
  13819. body.page-node-11187 .node-11187 .field-name-body div.column h2, body.page-node-11187 .node-11187 .field-name-body div.column-demi h2, body.page-node-11187 .node-11187 .field-name-body div.column-full h2, body.page-node-11187 .node-11187 .field-name-body div.column-auto h2 {
  13820. text-align: left;
  13821. margin: 5px 0 0;
  13822. }
  13823. /* line 1899, ../scss/styles.scss */
  13824. body.page-node-11187 .node-11187 .field-name-body div.column .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-full .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-auto .subtitle {
  13825. padding: 0 0 0 1em;
  13826. font-size: 18px;
  13827. font-style: italic;
  13828. font-weight: bold;
  13829. line-height: 1;
  13830. }
  13831. /* line 1903, ../scss/styles.scss */
  13832. body.page-node-11187 .node-11187 .field-name-body div.column ul, body.page-node-11187 .node-11187 .field-name-body div.column-demi ul, body.page-node-11187 .node-11187 .field-name-body div.column-full ul, body.page-node-11187 .node-11187 .field-name-body div.column-auto ul {
  13833. margin: 0;
  13834. padding: 0 15px;
  13835. }
  13836. /* line 1904, ../scss/styles.scss */
  13837. body.page-node-11187 .node-11187 .field-name-body div.column li, body.page-node-11187 .node-11187 .field-name-body div.column-demi li, body.page-node-11187 .node-11187 .field-name-body div.column-full li, body.page-node-11187 .node-11187 .field-name-body div.column-auto li {
  13838. list-style: none;
  13839. font-size: 12px;
  13840. }
  13841. /* line 1906, ../scss/styles.scss */
  13842. body.page-node-11187 .node-11187 .field-name-body div.column li:before, body.page-node-11187 .node-11187 .field-name-body div.column-demi li:before, body.page-node-11187 .node-11187 .field-name-body div.column-full li:before, body.page-node-11187 .node-11187 .field-name-body div.column-auto li:before {
  13843. content: "+ ";
  13844. font-weight: 900;
  13845. }
  13846. /* line 1911, ../scss/styles.scss */
  13847. body.page-node-11187 .node-11187 .field-name-body div.column .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link {
  13848. margin: 0;
  13849. border-radius: 0 0 5px 5px 0 0 0;
  13850. background-clip: padding-box;
  13851. border: 1px solid #fff;
  13852. min-height: 92px;
  13853. }
  13854. /* line 1913, ../scss/styles.scss */
  13855. body.page-node-11187 .node-11187 .field-name-body div.column .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link a {
  13856. display: block;
  13857. width: 100%;
  13858. padding: 15px 0;
  13859. color: #1A1A1A;
  13860. text-decoration: none;
  13861. }
  13862. /* line 1915, ../scss/styles.scss */
  13863. body.page-node-11187 .node-11187 .field-name-body div.column.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.gratos .get-link {
  13864. background-color: #4BA13D;
  13865. }
  13866. /* line 1916, ../scss/styles.scss */
  13867. body.page-node-11187 .node-11187 .field-name-body div.column.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.flocon .get-link {
  13868. background-color: #69CDCF;
  13869. }
  13870. /* line 1917, ../scss/styles.scss */
  13871. body.page-node-11187 .node-11187 .field-name-body div.column.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.etoile .get-link {
  13872. background-color: #D476AE;
  13873. }
  13874. /* line 1918, ../scss/styles.scss */
  13875. body.page-node-11187 .node-11187 .field-name-body div.column.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.cinqetoiles .get-link {
  13876. background-color: #E6DE1C;
  13877. }
  13878. /* line 1924, ../scss/styles.scss */
  13879. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  13880. padding: 10px 0 0;
  13881. font-size: 24px;
  13882. }
  13883. /* line 1925, ../scss/styles.scss */
  13884. body.page-node-11187 .node-11187 .field-name-body div.column .subtitle {
  13885. min-height: 3em;
  13886. }
  13887. /* line 1926, ../scss/styles.scss */
  13888. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  13889. padding: 0;
  13890. font-size: 24px;
  13891. text-align: center;
  13892. font-style: italic;
  13893. font-weight: 900;
  13894. cursor: pointer;
  13895. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  13896. -webkit-transition: text-shadow 0.3s ease-out;
  13897. transition: text-shadow 0.3s ease-out;
  13898. }
  13899. /* line 1930, ../scss/styles.scss */
  13900. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  13901. font-size: 20px;
  13902. }
  13903. /* line 35, ../scss/styles.scss */
  13904. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:hover, body.page-node-11187 .node-11187 .field-name-body div.column .get-link:focus {
  13905. text-shadow: 0 0 3px white;
  13906. }
  13907. /* line 38, ../scss/styles.scss */
  13908. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  13909. -webkit-transition: text-shadow 0s ease-out;
  13910. transition: text-shadow 0s ease-out;
  13911. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  13912. }
  13913. /* line 1935, ../scss/styles.scss */
  13914. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  13915. padding: 10px 0 0;
  13916. font-size: 24px;
  13917. top: 0;
  13918. }
  13919. /* line 1936, ../scss/styles.scss */
  13920. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  13921. min-height: 2em;
  13922. }
  13923. /* line 1937, ../scss/styles.scss */
  13924. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  13925. font-size: 14px;
  13926. min-height: 120px;
  13927. }
  13928. /* line 1938, ../scss/styles.scss */
  13929. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  13930. font-size: 14px;
  13931. text-align: left;
  13932. padding: 0 1em;
  13933. background-color: #ddd;
  13934. }
  13935. /* line 1947, ../scss/styles.scss */
  13936. body.page-node-11187.logged-in .column.gratos .get-link {
  13937. cursor: auto !important;
  13938. }
  13939. /* line 1949, ../scss/styles.scss */
  13940. body.page-node-11187.logged-in .column.gratos .get-link a {
  13941. display: none !important;
  13942. }
  13943. /* line 1952, ../scss/styles.scss */
  13944. body.page-node-11187.logged-in.role-6 .column.flocon .get-link {
  13945. cursor: auto !important;
  13946. }
  13947. /* line 1954, ../scss/styles.scss */
  13948. body.page-node-11187.logged-in.role-6 .column.flocon .get-link a {
  13949. display: none !important;
  13950. }
  13951. /** ADHESION FORM */
  13952. /* line 1962, ../scss/styles.scss */
  13953. .node-11186 nav ul.links a.language-link {
  13954. display: none;
  13955. }
  13956. /* line 1965, ../scss/styles.scss */
  13957. #webform-client-form-11186 {
  13958. background-color: #e6e6e6;
  13959. border-radius: 10px;
  13960. background-clip: padding-box;
  13961. }
  13962. @media only screen and (min-width: 40.063em) {
  13963. /* line 1965, ../scss/styles.scss */
  13964. #webform-client-form-11186 {
  13965. padding: 10px 30px;
  13966. }
  13967. /* line 1968, ../scss/styles.scss */
  13968. #webform-client-form-11186 #webform-component-column-left--membership-options {
  13969. margin: 10px 0;
  13970. }
  13971. /* line 1970, ../scss/styles.scss */
  13972. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  13973. width: auto;
  13974. }
  13975. /* line 1972, ../scss/styles.scss */
  13976. #webform-client-form-11186 fieldset {
  13977. border-radius: 5px;
  13978. background-clip: padding-box;
  13979. border-left: 1px solid #cccccc;
  13980. border-bottom: 1px solid #cccccc;
  13981. padding: 10px;
  13982. }
  13983. /* line 1974, ../scss/styles.scss */
  13984. #webform-client-form-11186 fieldset fieldset {
  13985. border: 0 solid #ddd;
  13986. padding: 0;
  13987. }
  13988. /* line 1976, ../scss/styles.scss */
  13989. #webform-client-form-11186 legend {
  13990. margin: 0;
  13991. font-size: 18px;
  13992. font-weight: 700;
  13993. }
  13994. /* line 1977, ../scss/styles.scss */
  13995. #webform-client-form-11186 .form-item {
  13996. margin: 0 20px 0 0;
  13997. }
  13998. /* line 1978, ../scss/styles.scss */
  13999. #webform-client-form-11186 label {
  14000. font-size: 12px;
  14001. width: 10em;
  14002. display: moz-inline-stack;
  14003. display: inline-block;
  14004. vertical-align: top;
  14005. zoom: 1;
  14006. *display: inline;
  14007. vertical-align: middle;
  14008. margin-right: 1em;
  14009. border-bottom: 1px solid #cccccc;
  14010. }
  14011. /* line 1979, ../scss/styles.scss */
  14012. #webform-client-form-11186 .description {
  14013. font-size: 10px;
  14014. width: 25em;
  14015. display: moz-inline-stack;
  14016. display: inline-block;
  14017. vertical-align: top;
  14018. zoom: 1;
  14019. *display: inline;
  14020. vertical-align: bottom;
  14021. margin-left: 1em;
  14022. color: #7f7f7f;
  14023. }
  14024. /* line 1980, ../scss/styles.scss */
  14025. #webform-client-form-11186 input.form-text {
  14026. width: 13em;
  14027. }
  14028. }
  14029. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  14030. /* line 1965, ../scss/styles.scss */
  14031. #webform-client-form-11186 {
  14032. padding: 10px;
  14033. }
  14034. /* line 1985, ../scss/styles.scss */
  14035. #webform-client-form-11186 #webform-component-column-left--membership-options {
  14036. margin: 0 0 10px 0;
  14037. }
  14038. /* line 1987, ../scss/styles.scss */
  14039. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  14040. width: 100%;
  14041. }
  14042. /* line 1988, ../scss/styles.scss */
  14043. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  14044. width: 75%;
  14045. }
  14046. /* line 1990, ../scss/styles.scss */
  14047. #webform-client-form-11186 legend {
  14048. margin: 0;
  14049. font-size: 16px;
  14050. font-weight: 700;
  14051. }
  14052. /* line 1991, ../scss/styles.scss */
  14053. #webform-client-form-11186 .form-item {
  14054. margin: 0;
  14055. float: none;
  14056. }
  14057. /* line 1992, ../scss/styles.scss */
  14058. #webform-client-form-11186 label {
  14059. font-size: 12px;
  14060. width: 30%;
  14061. display: moz-inline-stack;
  14062. display: inline-block;
  14063. vertical-align: top;
  14064. zoom: 1;
  14065. *display: inline;
  14066. vertical-align: middle;
  14067. margin-right: 0.5em;
  14068. }
  14069. /* line 1993, ../scss/styles.scss */
  14070. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  14071. width: 60%;
  14072. }
  14073. /* line 1994, ../scss/styles.scss */
  14074. #webform-client-form-11186 #webform-component-infos {
  14075. font-size: 14px;
  14076. }
  14077. }
  14078. /* line 1999, ../scss/styles.scss */
  14079. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  14080. display: moz-inline-stack;
  14081. display: inline-block;
  14082. vertical-align: top;
  14083. zoom: 1;
  14084. *display: inline;
  14085. }
  14086. /* line 2001, ../scss/styles.scss */
  14087. #webform-client-form-11186 #webform-component-column-left {
  14088. display: moz-inline-stack;
  14089. display: inline-block;
  14090. vertical-align: top;
  14091. zoom: 1;
  14092. *display: inline;
  14093. width: 25%;
  14094. border: none;
  14095. }
  14096. /* line 2002, ../scss/styles.scss */
  14097. #webform-client-form-11186 #webform-component-column-right {
  14098. display: moz-inline-stack;
  14099. display: inline-block;
  14100. vertical-align: top;
  14101. zoom: 1;
  14102. *display: inline;
  14103. min-width: 70%;
  14104. }
  14105. /* line 2006, ../scss/styles.scss */
  14106. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  14107. border: 1px solid #ddd;
  14108. border-radius: 5px;
  14109. background-clip: padding-box;
  14110. padding: 10px 5px;
  14111. margin: 5px 0;
  14112. background-color: #fff;
  14113. }
  14114. /* line 2008, ../scss/styles.scss */
  14115. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  14116. display: moz-inline-stack;
  14117. display: inline-block;
  14118. vertical-align: top;
  14119. zoom: 1;
  14120. *display: inline;
  14121. vertical-align: middle;
  14122. margin: 0px 5px;
  14123. }
  14124. /* line 2009, ../scss/styles.scss */
  14125. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  14126. font-size: 20px;
  14127. font-weight: 700;
  14128. display: moz-inline-stack;
  14129. display: inline-block;
  14130. vertical-align: top;
  14131. zoom: 1;
  14132. *display: inline;
  14133. vertical-align: middle;
  14134. margin: 0;
  14135. }
  14136. /* line 2011, ../scss/styles.scss */
  14137. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  14138. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  14139. }
  14140. /* line 2012, ../scss/styles.scss */
  14141. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  14142. background-color: #69CDCF;
  14143. }
  14144. /* line 2013, ../scss/styles.scss */
  14145. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  14146. background-color: #D476AE;
  14147. }
  14148. /* line 2014, ../scss/styles.scss */
  14149. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  14150. background-color: #E6DE1C;
  14151. }
  14152. /* line 2016, ../scss/styles.scss */
  14153. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  14154. opacity: 0.4;
  14155. }
  14156. /* line 2019, ../scss/styles.scss */
  14157. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  14158. width: 200px;
  14159. font-size: 18px;
  14160. font-weight: 700;
  14161. }
  14162. /* line 2020, ../scss/styles.scss */
  14163. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  14164. border: 0;
  14165. }
  14166. /* line 2023, ../scss/styles.scss */
  14167. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  14168. display: block;
  14169. }
  14170. /* line 2028, ../scss/styles.scss */
  14171. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  14172. display: moz-inline-stack;
  14173. display: inline-block;
  14174. vertical-align: top;
  14175. zoom: 1;
  14176. *display: inline;
  14177. }
  14178. /* line 2031, ../scss/styles.scss */
  14179. #webform-client-form-11186 #addressfield-wrapper {
  14180. margin-top: 1em;
  14181. }
  14182. /* line 2032, ../scss/styles.scss */
  14183. #webform-client-form-11186 .street-block .form-item {
  14184. display: moz-inline-stack;
  14185. display: inline-block;
  14186. vertical-align: top;
  14187. zoom: 1;
  14188. *display: inline;
  14189. }
  14190. /* line 2034, ../scss/styles.scss */
  14191. #webform-client-form-11186 #webform-component-column-right--collaborators {
  14192. margin: 20px 0;
  14193. overflow: hidden;
  14194. }
  14195. /* line 2036, ../scss/styles.scss */
  14196. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  14197. display: moz-inline-stack;
  14198. display: inline-block;
  14199. vertical-align: top;
  14200. zoom: 1;
  14201. *display: inline;
  14202. width: 33%;
  14203. }
  14204. /* line 2037, ../scss/styles.scss */
  14205. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  14206. display: block;
  14207. }
  14208. /* line 2038, ../scss/styles.scss */
  14209. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  14210. width: 6em;
  14211. }
  14212. /* line 2039, ../scss/styles.scss */
  14213. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  14214. width: 11em;
  14215. }
  14216. /* line 2042, ../scss/styles.scss */
  14217. #webform-client-form-11186 #webform-component-infos {
  14218. margin: 20px 0;
  14219. }
  14220. /* line 2044, ../scss/styles.scss */
  14221. #webform-client-form-11186 .form-actions {
  14222. padding: 0;
  14223. margin: 0;
  14224. border: 0px;
  14225. background-color: transparent;
  14226. text-align: left;
  14227. }
  14228. /* line 2049, ../scss/styles.scss */
  14229. #webform-client-form-11186 .form-actions .form-submit {
  14230. border: 2px solid #69CDCF;
  14231. background-color: #69CDCF;
  14232. color: #fff;
  14233. font-size: 18px;
  14234. padding: 0.2em 1em 0.3em;
  14235. border-radius: 0.3em;
  14236. background-clip: padding-box;
  14237. font-weight: bold;
  14238. margin-bottom: 9px;
  14239. cursor: pointer;
  14240. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  14241. -webkit-transition: text-shadow 0.2s ease-out;
  14242. transition: text-shadow 0.2s ease-out;
  14243. }
  14244. /* line 48, ../scss/styles.scss */
  14245. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  14246. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  14247. }
  14248. /* line 51, ../scss/styles.scss */
  14249. #webform-client-form-11186 .form-actions .form-submit:active {
  14250. -webkit-transition: text-shadow 0s ease-out;
  14251. transition: text-shadow 0s ease-out;
  14252. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  14253. }
  14254. /* line 2059, ../scss/styles.scss */
  14255. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  14256. margin: 0;
  14257. font-size: 18px;
  14258. font-weight: 700;
  14259. border: none;
  14260. line-height: 40px;
  14261. }
  14262. /* line 2060, ../scss/styles.scss */
  14263. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  14264. display: moz-inline-stack;
  14265. display: inline-block;
  14266. vertical-align: top;
  14267. zoom: 1;
  14268. *display: inline;
  14269. }
  14270. /* line 2062, ../scss/styles.scss */
  14271. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  14272. width: auto;
  14273. }
  14274. /* line 2063, ../scss/styles.scss */
  14275. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item input, #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  14276. margin: 0;
  14277. }
  14278. /* line 2067, ../scss/styles.scss */
  14279. #webform-client-form-11186 #edit-submitted-terms-of-services {
  14280. margin-bottom: 0.5em;
  14281. }
  14282. /* line 2069, ../scss/styles.scss */
  14283. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  14284. margin: 0 0.3em 0 0;
  14285. }
  14286. /* line 2070, ../scss/styles.scss */
  14287. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  14288. width: auto;
  14289. }
  14290. /** UC CART VIEW FORM */
  14291. /* line 2075, ../scss/styles.scss */
  14292. #uc-cart-view-form {
  14293. background-color: #e6e6e6;
  14294. padding: 10px, 30px;
  14295. display: inline-block;
  14296. }
  14297. /* line 2081, ../scss/styles.scss */
  14298. #uc-cart-view-form table {
  14299. width: auto;
  14300. display: table;
  14301. background-color: #fff;
  14302. }
  14303. /* line 2085, ../scss/styles.scss */
  14304. #uc-cart-view-form table thead th {
  14305. border-bottom: none;
  14306. padding: 1em;
  14307. }
  14308. /* line 2086, ../scss/styles.scss */
  14309. #uc-cart-view-form table tbody {
  14310. border-top: none;
  14311. }
  14312. /* line 2088, ../scss/styles.scss */
  14313. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  14314. background-color: #fff;
  14315. border-bottom: none;
  14316. }
  14317. /* line 2092, ../scss/styles.scss */
  14318. #uc-cart-view-form table tbody td {
  14319. padding: 1em;
  14320. }
  14321. /* line 2099, ../scss/styles.scss */
  14322. #uc-cart-view-form .form-type-uc-quantity input {
  14323. width: 2em;
  14324. }
  14325. /* line 2103, ../scss/styles.scss */
  14326. #uc-cart-view-form .form-actions {
  14327. padding: 0;
  14328. margin: 0;
  14329. border: 0px;
  14330. background-color: transparent;
  14331. text-align: right;
  14332. display: block;
  14333. width: 100%;
  14334. }
  14335. /* line 2110, ../scss/styles.scss */
  14336. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  14337. display: block;
  14338. }
  14339. /* line 2113, ../scss/styles.scss */
  14340. #uc-cart-view-form .form-actions .form-submit {
  14341. font-size: 16px;
  14342. font-weight: bold;
  14343. padding: 0.1em 0.3em 0.2em;
  14344. border-radius: 0.3em;
  14345. background-clip: padding-box;
  14346. border: 2px solid #ccc;
  14347. background-color: #ccc;
  14348. color: #4D4D4D;
  14349. cursor: pointer;
  14350. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14351. -webkit-transition: text-shadow 0.3s ease-out;
  14352. transition: text-shadow 0.3s ease-out;
  14353. text-align: center;
  14354. text-decoration: none;
  14355. margin-left: 1em;
  14356. }
  14357. /* line 35, ../scss/styles.scss */
  14358. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  14359. text-shadow: 0 0 3px white;
  14360. }
  14361. /* line 38, ../scss/styles.scss */
  14362. #uc-cart-view-form .form-actions .form-submit:active {
  14363. -webkit-transition: text-shadow 0s ease-out;
  14364. transition: text-shadow 0s ease-out;
  14365. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14366. }
  14367. /* line 2116, ../scss/styles.scss */
  14368. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  14369. font-size: 16px;
  14370. font-weight: bold;
  14371. padding: 0.1em 0.3em 0.2em;
  14372. border-radius: 0.3em;
  14373. background-clip: padding-box;
  14374. border: 2px solid #ccc;
  14375. background-color: #ccc;
  14376. color: #4D4D4D;
  14377. cursor: pointer;
  14378. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14379. -webkit-transition: text-shadow 0.3s ease-out;
  14380. transition: text-shadow 0.3s ease-out;
  14381. text-align: center;
  14382. text-decoration: none;
  14383. cursor: pointer;
  14384. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  14385. -webkit-transition: text-shadow 0.2s ease-out;
  14386. transition: text-shadow 0.2s ease-out;
  14387. border-color: #69CDCF;
  14388. background-color: #69CDCF;
  14389. color: #fff;
  14390. }
  14391. /* line 35, ../scss/styles.scss */
  14392. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  14393. text-shadow: 0 0 3px white;
  14394. }
  14395. /* line 38, ../scss/styles.scss */
  14396. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  14397. -webkit-transition: text-shadow 0s ease-out;
  14398. transition: text-shadow 0s ease-out;
  14399. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14400. }
  14401. /* line 48, ../scss/styles.scss */
  14402. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  14403. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  14404. }
  14405. /* line 51, ../scss/styles.scss */
  14406. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  14407. -webkit-transition: text-shadow 0s ease-out;
  14408. transition: text-shadow 0s ease-out;
  14409. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  14410. }
  14411. /** UC CHECKOUT FORM */
  14412. /* line 2124, ../scss/styles.scss */
  14413. #uc-cart-checkout-form {
  14414. display: inline-block;
  14415. background-color: #e6e6e6;
  14416. padding: 10px, 30px;
  14417. }
  14418. /* line 2137, ../scss/styles.scss */
  14419. #uc-cart-checkout-form fieldset.form-row {
  14420. padding-bottom: 20px;
  14421. margin-bottom: 20px;
  14422. }
  14423. /* line 2143, ../scss/styles.scss */
  14424. #uc-cart-checkout-form fieldset.form-column {
  14425. display: moz-inline-stack;
  14426. display: inline-block;
  14427. vertical-align: top;
  14428. zoom: 1;
  14429. *display: inline;
  14430. max-width: 39%;
  14431. margin: 15px 1em;
  14432. }
  14433. /* line 2146, ../scss/styles.scss */
  14434. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  14435. margin: 10px 0;
  14436. }
  14437. /* line 2153, ../scss/styles.scss */
  14438. #uc-cart-checkout-form fieldset.form-column-right {
  14439. border-left: 1px solid #ccc;
  14440. margin-left: 2em;
  14441. padding-left: 2em;
  14442. }
  14443. /* line 2159, ../scss/styles.scss */
  14444. #uc-cart-checkout-form legend {
  14445. margin: 0;
  14446. font-size: 18px;
  14447. font-weight: 700;
  14448. border: none;
  14449. line-height: 2;
  14450. }
  14451. /* line 2160, ../scss/styles.scss */
  14452. #uc-cart-checkout-form .fieldset-description {
  14453. font-size: 12px;
  14454. }
  14455. /* line 2161, ../scss/styles.scss */
  14456. #uc-cart-checkout-form .fieldset-wrapper {
  14457. font-size: 12px;
  14458. }
  14459. /* line 2162, ../scss/styles.scss */
  14460. #uc-cart-checkout-form .form-item {
  14461. margin: 0 20px 0 0;
  14462. }
  14463. /* line 2164, ../scss/styles.scss */
  14464. #uc-cart-checkout-form .description {
  14465. font-size: 10px;
  14466. width: 25em;
  14467. display: moz-inline-stack;
  14468. display: inline-block;
  14469. vertical-align: top;
  14470. zoom: 1;
  14471. *display: inline;
  14472. vertical-align: bottom;
  14473. margin-left: 1em;
  14474. color: #7f7f7f;
  14475. }
  14476. /* line 2167, ../scss/styles.scss */
  14477. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  14478. display: moz-inline-stack;
  14479. display: inline-block;
  14480. vertical-align: top;
  14481. zoom: 1;
  14482. *display: inline;
  14483. border-radius: 5px;
  14484. background-clip: padding-box;
  14485. padding: 10px;
  14486. background-color: #fff;
  14487. }
  14488. /* line 2174, ../scss/styles.scss */
  14489. #uc-cart-checkout-form #cart-pane table {
  14490. font-size: 14px;
  14491. min-width: 20em;
  14492. }
  14493. /* line 2130, ../scss/styles.scss */
  14494. #uc-cart-checkout-form #cart-pane table td.price {
  14495. width: 4em;
  14496. }
  14497. /* line 2178, ../scss/styles.scss */
  14498. #uc-cart-checkout-form #cart-pane tbody {
  14499. border: none;
  14500. }
  14501. /* line 2179, ../scss/styles.scss */
  14502. #uc-cart-checkout-form #cart-pane tr {
  14503. background-color: transparent;
  14504. border: none;
  14505. }
  14506. /* line 2180, ../scss/styles.scss */
  14507. #uc-cart-checkout-form #cart-pane td {
  14508. padding: 0 5px;
  14509. vertical-align: bottom;
  14510. }
  14511. /* line 2183, ../scss/styles.scss */
  14512. #uc-cart-checkout-form #cart-pane td.products {
  14513. width: auto;
  14514. }
  14515. /* line 2184, ../scss/styles.scss */
  14516. #uc-cart-checkout-form #cart-pane td.products a {
  14517. color: inherit;
  14518. font-weight: 700;
  14519. }
  14520. /* line 2186, ../scss/styles.scss */
  14521. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  14522. margin: 0;
  14523. font-size: 12px;
  14524. }
  14525. /* line 2187, ../scss/styles.scss */
  14526. #uc-cart-checkout-form #cart-pane td.products li {
  14527. list-style: none;
  14528. }
  14529. /* line 2191, ../scss/styles.scss */
  14530. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  14531. font-size: 16px;
  14532. font-weight: 700;
  14533. }
  14534. /* line 2195, ../scss/styles.scss */
  14535. #uc-cart-checkout-form #customer-pane {
  14536. width: 35em;
  14537. }
  14538. /* line 2198, ../scss/styles.scss */
  14539. #uc-cart-checkout-form #billing-pane label {
  14540. font-size: 12px;
  14541. width: 8em;
  14542. display: moz-inline-stack;
  14543. display: inline-block;
  14544. vertical-align: top;
  14545. zoom: 1;
  14546. *display: inline;
  14547. vertical-align: middle;
  14548. margin-right: 1em;
  14549. border-bottom: 1px solid #cccccc;
  14550. }
  14551. /* line 2199, ../scss/styles.scss */
  14552. #uc-cart-checkout-form #billing-pane input.form-text {
  14553. width: 13em;
  14554. }
  14555. /* line 2206, ../scss/styles.scss */
  14556. #uc-cart-checkout-form #payment-pane {
  14557. float: right;
  14558. }
  14559. /* line 2209, ../scss/styles.scss */
  14560. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  14561. background-color: #fff;
  14562. border-radius: 5px;
  14563. background-clip: padding-box;
  14564. padding: 10px;
  14565. }
  14566. /* line 2215, ../scss/styles.scss */
  14567. #uc-cart-checkout-form #payment-pane #line-items-div {
  14568. float: none;
  14569. border: none;
  14570. display: moz-inline-stack;
  14571. display: inline-block;
  14572. vertical-align: top;
  14573. zoom: 1;
  14574. *display: inline;
  14575. margin: 10px 0 20px;
  14576. }
  14577. /* line 2218, ../scss/styles.scss */
  14578. #uc-cart-checkout-form #payment-pane #line-items-div table {
  14579. font-size: 14px;
  14580. min-width: 20em;
  14581. }
  14582. /* line 2130, ../scss/styles.scss */
  14583. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  14584. width: 4em;
  14585. }
  14586. /* line 2219, ../scss/styles.scss */
  14587. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  14588. border: none;
  14589. }
  14590. /* line 2220, ../scss/styles.scss */
  14591. #uc-cart-checkout-form #payment-pane #line-items-div td {
  14592. padding: 0 5px;
  14593. }
  14594. /* line 2224, ../scss/styles.scss */
  14595. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  14596. font-weight: 500;
  14597. }
  14598. /* line 2226, ../scss/styles.scss */
  14599. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  14600. font-size: 16px;
  14601. font-weight: 700;
  14602. text-align: right;
  14603. }
  14604. /* line 2233, ../scss/styles.scss */
  14605. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  14606. width: auto;
  14607. border-bottom: none;
  14608. }
  14609. /* line 2234, ../scss/styles.scss */
  14610. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  14611. border: 1px solid #ddd;
  14612. border-radius: 5px;
  14613. margin: 0.5em;
  14614. padding: 0.5em;
  14615. }
  14616. /* line 2238, ../scss/styles.scss */
  14617. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  14618. font-weight: bold;
  14619. }
  14620. /* line 2242, ../scss/styles.scss */
  14621. #uc-cart-checkout-form #payment-pane #payment-details {
  14622. width: 25em;
  14623. border-top: none;
  14624. padding: 0;
  14625. margin: 0;
  14626. }
  14627. /* line 2248, ../scss/styles.scss */
  14628. #uc-cart-checkout-form .form-actions {
  14629. padding: 0;
  14630. margin: 0;
  14631. border: 0px;
  14632. background-color: transparent;
  14633. text-align: right;
  14634. }
  14635. /* line 2253, ../scss/styles.scss */
  14636. #uc-cart-checkout-form .form-actions .form-submit {
  14637. font-size: 16px;
  14638. font-weight: bold;
  14639. padding: 0.1em 0.3em 0.2em;
  14640. border-radius: 0.3em;
  14641. background-clip: padding-box;
  14642. border: 2px solid #ccc;
  14643. background-color: #ccc;
  14644. color: #4D4D4D;
  14645. cursor: pointer;
  14646. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14647. -webkit-transition: text-shadow 0.3s ease-out;
  14648. transition: text-shadow 0.3s ease-out;
  14649. text-align: center;
  14650. text-decoration: none;
  14651. margin-left: 1em;
  14652. }
  14653. /* line 35, ../scss/styles.scss */
  14654. #uc-cart-checkout-form .form-actions .form-submit:hover, #uc-cart-checkout-form .form-actions .form-submit:focus {
  14655. text-shadow: 0 0 3px white;
  14656. }
  14657. /* line 38, ../scss/styles.scss */
  14658. #uc-cart-checkout-form .form-actions .form-submit:active {
  14659. -webkit-transition: text-shadow 0s ease-out;
  14660. transition: text-shadow 0s ease-out;
  14661. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14662. }
  14663. /* line 2256, ../scss/styles.scss */
  14664. #uc-cart-checkout-form .form-actions .form-submit#edit-continue {
  14665. font-size: 16px;
  14666. font-weight: bold;
  14667. padding: 0.1em 0.3em 0.2em;
  14668. border-radius: 0.3em;
  14669. background-clip: padding-box;
  14670. border: 2px solid #ccc;
  14671. background-color: #ccc;
  14672. color: #4D4D4D;
  14673. cursor: pointer;
  14674. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14675. -webkit-transition: text-shadow 0.3s ease-out;
  14676. transition: text-shadow 0.3s ease-out;
  14677. text-align: center;
  14678. text-decoration: none;
  14679. cursor: pointer;
  14680. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  14681. -webkit-transition: text-shadow 0.2s ease-out;
  14682. transition: text-shadow 0.2s ease-out;
  14683. border-color: #69CDCF;
  14684. background-color: #69CDCF;
  14685. color: #fff;
  14686. }
  14687. /* line 35, ../scss/styles.scss */
  14688. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form .form-actions .form-submit#edit-continue:focus {
  14689. text-shadow: 0 0 3px white;
  14690. }
  14691. /* line 38, ../scss/styles.scss */
  14692. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:active {
  14693. -webkit-transition: text-shadow 0s ease-out;
  14694. transition: text-shadow 0s ease-out;
  14695. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14696. }
  14697. /* line 48, ../scss/styles.scss */
  14698. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form .form-actions .form-submit#edit-continue:focus {
  14699. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  14700. }
  14701. /* line 51, ../scss/styles.scss */
  14702. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:active {
  14703. -webkit-transition: text-shadow 0s ease-out;
  14704. transition: text-shadow 0s ease-out;
  14705. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  14706. }
  14707. /* UC CART && UC CHECKOUT VALIDATION */
  14708. /* line 2269, ../scss/styles.scss */
  14709. .page-cart-checkout-review #content > .inner-content {
  14710. display: inline-block;
  14711. padding: 1em;
  14712. }
  14713. /* line 2277, ../scss/styles.scss */
  14714. .page-cart-checkout-review #edit-actions {
  14715. margin: 0;
  14716. padding: 0;
  14717. }
  14718. /* line 2279, ../scss/styles.scss */
  14719. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  14720. display: block;
  14721. }
  14722. /* line 2283, ../scss/styles.scss */
  14723. .page-cart-checkout-review #review-instructions {
  14724. width: 30em;
  14725. padding: 1em 0;
  14726. }
  14727. /* line 2289, ../scss/styles.scss */
  14728. .page-cart-checkout-review table.order-review-table {
  14729. border: none;
  14730. }
  14731. /* line 2291, ../scss/styles.scss */
  14732. .page-cart-checkout-review table.order-review-table .pane-title-row {
  14733. border: none;
  14734. background-color: transparent;
  14735. text-align: left;
  14736. font-size: 18px;
  14737. }
  14738. /* line 2296, ../scss/styles.scss */
  14739. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  14740. padding: 1em 0 0 0;
  14741. }
  14742. /* line 2299, ../scss/styles.scss */
  14743. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  14744. background-color: transparent;
  14745. border: none;
  14746. }
  14747. /* line 2304, ../scss/styles.scss */
  14748. .page-cart-checkout-review table.order-review-table td.title-col {
  14749. padding: 0;
  14750. text-align: left;
  14751. }
  14752. /* line 2308, ../scss/styles.scss */
  14753. .page-cart-checkout-review table.order-review-table td.data-col {
  14754. padding: 0;
  14755. width: 75%;
  14756. }
  14757. /* line 2312, ../scss/styles.scss */
  14758. .page-cart-checkout-review table.order-review-table .review-button-row {
  14759. border: none;
  14760. background-color: transparent;
  14761. }
  14762. /* line 2316, ../scss/styles.scss */
  14763. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  14764. padding: 3em 0 0 0;
  14765. }
  14766. /* line 2320, ../scss/styles.scss */
  14767. .page-cart-checkout-review table.order-review-table .review-button-row form {
  14768. margin: 0 0.5em 0 0;
  14769. display: moz-inline-stack;
  14770. display: inline-block;
  14771. vertical-align: top;
  14772. zoom: 1;
  14773. *display: inline;
  14774. }
  14775. /* line 2327, ../scss/styles.scss */
  14776. .page-cart-checkout-review #edit-actions {
  14777. border: 0px;
  14778. background-color: transparent;
  14779. text-align: right;
  14780. }
  14781. /* line 2332, ../scss/styles.scss */
  14782. .page-cart-checkout-review input.form-submit {
  14783. font-size: 16px;
  14784. font-weight: bold;
  14785. padding: 0.1em 0.3em 0.2em;
  14786. border-radius: 0.3em;
  14787. background-clip: padding-box;
  14788. border: 2px solid #ccc;
  14789. background-color: #ccc;
  14790. color: #4D4D4D;
  14791. cursor: pointer;
  14792. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14793. -webkit-transition: text-shadow 0.3s ease-out;
  14794. transition: text-shadow 0.3s ease-out;
  14795. text-align: center;
  14796. text-decoration: none;
  14797. margin-left: 1em;
  14798. }
  14799. /* line 35, ../scss/styles.scss */
  14800. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  14801. text-shadow: 0 0 3px white;
  14802. }
  14803. /* line 38, ../scss/styles.scss */
  14804. .page-cart-checkout-review input.form-submit:active {
  14805. -webkit-transition: text-shadow 0s ease-out;
  14806. transition: text-shadow 0s ease-out;
  14807. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14808. }
  14809. /* line 2335, ../scss/styles.scss */
  14810. .page-cart-checkout-review input.form-submit#edit-submit {
  14811. font-size: 16px;
  14812. font-weight: bold;
  14813. padding: 0.1em 0.3em 0.2em;
  14814. border-radius: 0.3em;
  14815. background-clip: padding-box;
  14816. border: 2px solid #ccc;
  14817. background-color: #ccc;
  14818. color: #4D4D4D;
  14819. cursor: pointer;
  14820. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14821. -webkit-transition: text-shadow 0.3s ease-out;
  14822. transition: text-shadow 0.3s ease-out;
  14823. text-align: center;
  14824. text-decoration: none;
  14825. cursor: pointer;
  14826. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  14827. -webkit-transition: text-shadow 0.2s ease-out;
  14828. transition: text-shadow 0.2s ease-out;
  14829. border-color: #69CDCF;
  14830. background-color: #69CDCF;
  14831. color: #fff;
  14832. }
  14833. /* line 35, ../scss/styles.scss */
  14834. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  14835. text-shadow: 0 0 3px white;
  14836. }
  14837. /* line 38, ../scss/styles.scss */
  14838. .page-cart-checkout-review input.form-submit#edit-submit:active {
  14839. -webkit-transition: text-shadow 0s ease-out;
  14840. transition: text-shadow 0s ease-out;
  14841. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  14842. }
  14843. /* line 48, ../scss/styles.scss */
  14844. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  14845. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  14846. }
  14847. /* line 51, ../scss/styles.scss */
  14848. .page-cart-checkout-review input.form-submit#edit-submit:active {
  14849. -webkit-transition: text-shadow 0s ease-out;
  14850. transition: text-shadow 0s ease-out;
  14851. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  14852. }
  14853. /** WHO WE ARE */
  14854. /* line 2345, ../scss/styles.scss */
  14855. #didactique-page .node-didactique {
  14856. border-radius: 5px;
  14857. background-clip: padding-box;
  14858. background-color: #FFF;
  14859. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  14860. max-width: 850px;
  14861. font-size: 14px;
  14862. background-color: #fff;
  14863. margin: 1em auto;
  14864. padding: 1em;
  14865. }
  14866. /* line 2352, ../scss/styles.scss */
  14867. #didactique-page .node-didactique .field-name-field-emvideo {
  14868. margin: 1em 0;
  14869. }
  14870. /* line 2356, ../scss/styles.scss */
  14871. #didactique-page .node-didactique .field-name-title-field {
  14872. font-size: 24px;
  14873. font-weight: 900;
  14874. font-style: italic;
  14875. padding: 5px 0;
  14876. }
  14877. /* line 2360, ../scss/styles.scss */
  14878. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  14879. max-width: 100%;
  14880. }
  14881. @media only screen and (min-width: 40.063em) {
  14882. /* line 2365, ../scss/styles.scss */
  14883. #didactique-page .side {
  14884. display: moz-inline-stack;
  14885. display: inline-block;
  14886. vertical-align: top;
  14887. zoom: 1;
  14888. *display: inline;
  14889. vertical-align: top;
  14890. }
  14891. /* line 2366, ../scss/styles.scss */
  14892. #didactique-page .group-sideleft {
  14893. width: 60%;
  14894. }
  14895. /* line 2367, ../scss/styles.scss */
  14896. #didactique-page .group-sideright {
  14897. width: 39%;
  14898. }
  14899. }
  14900. /** DIDACTIQUE */
  14901. @media only screen and (max-width: 40em) {
  14902. /* line 2379, ../scss/styles.scss */
  14903. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  14904. display: none;
  14905. }
  14906. }
  14907. /** maintenance */
  14908. /* line 2386, ../scss/styles.scss */
  14909. .maintenance-page #container, .maintenance-page #header {
  14910. text-align: center;
  14911. padding: 0;
  14912. position: relative;
  14913. }
  14914. /* line 2387, ../scss/styles.scss */
  14915. .maintenance-page #main {
  14916. background-color: transparent;
  14917. }
  14918. /* line 2388, ../scss/styles.scss */
  14919. .maintenance-page #header h1.site-name {
  14920. font-size: 36px;
  14921. margin: 0;
  14922. padding-left: 0;
  14923. }
  14924. /* line 2389, ../scss/styles.scss */
  14925. .maintenance-page h2.site-slogan {
  14926. font-size: 16px;
  14927. font-weight: 300;
  14928. margin: 0;
  14929. line-height: 1.1;
  14930. }
  14931. /** FAQ */
  14932. /* line 2393, ../scss/styles.scss */
  14933. .page-faq-page #main {
  14934. background: #fff url("../img/bg-faq.png") no-repeat bottom right;
  14935. }
  14936. /* line 2399, ../scss/styles.scss */
  14937. #content .faq-content .faq-description {
  14938. font-size: 12px;
  14939. padding-bottom: 2em;
  14940. }
  14941. /* line 2403, ../scss/styles.scss */
  14942. #content .faq-content ul.faq-ul-questions-top {
  14943. margin: 0;
  14944. }
  14945. /* line 2405, ../scss/styles.scss */
  14946. #content .faq-content ul.faq-ul-questions-top li {
  14947. list-style: none;
  14948. }
  14949. /* line 2407, ../scss/styles.scss */
  14950. #content .faq-content ul.faq-ul-questions-top li a {
  14951. font-size: 18px;
  14952. font-weight: 500;
  14953. }
  14954. /* line 2413, ../scss/styles.scss */
  14955. #content .faq-content h3.faq-header {
  14956. font-size: 20px;
  14957. font-weight: 700;
  14958. line-height: 1.2;
  14959. margin: 0;
  14960. }
  14961. /* line 2416, ../scss/styles.scss */
  14962. #content .faq-content h3.faq-header a {
  14963. color: #000;
  14964. }
  14965. /* line 2419, ../scss/styles.scss */
  14966. #content .faq-content .faq-dl-hide-answer {
  14967. padding: 0;
  14968. }
  14969. /* line 2422, ../scss/styles.scss */
  14970. #content .faq-content .faq-category-group {
  14971. padding-bottom: 1em;
  14972. }
  14973. /* line 2425, ../scss/styles.scss */
  14974. #content .faq-content .faq-question-answer {
  14975. padding: 0.3em 0 0 0.8em;
  14976. }
  14977. /* line 2427, ../scss/styles.scss */
  14978. #content .faq-content .faq-question-answer .faq-question {
  14979. font-size: 16px;
  14980. padding: 0;
  14981. font-weight: 500;
  14982. }
  14983. /* line 2429, ../scss/styles.scss */
  14984. #content .faq-content .faq-question-answer .faq-question a {
  14985. color: #000;
  14986. }
  14987. /* line 2431, ../scss/styles.scss */
  14988. #content .faq-content .faq-question-answer .faq-answer {
  14989. padding: 0;
  14990. margin-bottom: 2em;
  14991. font-size: 12px;
  14992. }
  14993. /* line 2437, ../scss/styles.scss */
  14994. #content .faq-content .field-name-body img {
  14995. max-width: 50%;
  14996. height: auto;
  14997. }