styles.css 342 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
  6. /**
  7. * 1. Set default font family to sans-serif.
  8. * 2. Prevent iOS text size adjust after orientation change, without disabling
  9. * user zoom.
  10. */
  11. @import url(../fonts/icon/foundation-icons.css);
  12. html {
  13. font-family: sans-serif;
  14. /* 1 */
  15. -ms-text-size-adjust: 100%;
  16. /* 2 */
  17. -webkit-text-size-adjust: 100%;
  18. /* 2 */ }
  19. /**
  20. * Remove default margin.
  21. */
  22. body {
  23. margin: 0; }
  24. /* HTML5 display definitions
  25. ========================================================================== */
  26. /**
  27. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  28. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  29. * and Firefox.
  30. * Correct `block` display not defined for `main` in IE 11.
  31. */
  32. article,
  33. aside,
  34. details,
  35. figcaption,
  36. figure,
  37. footer,
  38. header,
  39. hgroup,
  40. main,
  41. menu,
  42. nav,
  43. section,
  44. summary {
  45. display: block; }
  46. /**
  47. * 1. Correct `inline-block` display not defined in IE 8/9.
  48. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  49. */
  50. audio,
  51. canvas,
  52. progress,
  53. video {
  54. display: inline-block;
  55. /* 1 */
  56. vertical-align: baseline;
  57. /* 2 */ }
  58. /**
  59. * Prevent modern browsers from displaying `audio` without controls.
  60. * Remove excess height in iOS 5 devices.
  61. */
  62. audio:not([controls]) {
  63. display: none;
  64. height: 0; }
  65. /**
  66. * Address `[hidden]` styling not present in IE 8/9/10.
  67. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
  68. */
  69. [hidden],
  70. template {
  71. display: none; }
  72. /* Links
  73. ========================================================================== */
  74. /**
  75. * Remove the gray background color from active links in IE 10.
  76. */
  77. a {
  78. background-color: transparent; }
  79. /**
  80. * Improve readability when focused and also mouse hovered in all browsers.
  81. */
  82. a:active,
  83. a:hover {
  84. outline: 0; }
  85. /* Text-level semantics
  86. ========================================================================== */
  87. /**
  88. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  89. */
  90. abbr[title] {
  91. border-bottom: 1px dotted; }
  92. /**
  93. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  94. */
  95. b,
  96. strong {
  97. font-weight: bold; }
  98. /**
  99. * Address styling not present in Safari and Chrome.
  100. */
  101. dfn {
  102. font-style: italic; }
  103. /**
  104. * Address variable `h1` font-size and margin within `section` and `article`
  105. * contexts in Firefox 4+, Safari, and Chrome.
  106. */
  107. h1 {
  108. font-size: 2em;
  109. margin: 0.67em 0; }
  110. /**
  111. * Address styling not present in IE 8/9.
  112. */
  113. mark {
  114. background: #ff0;
  115. color: #000; }
  116. /**
  117. * Address inconsistent and variable font size in all browsers.
  118. */
  119. small {
  120. font-size: 80%; }
  121. /**
  122. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  123. */
  124. sub,
  125. sup {
  126. font-size: 75%;
  127. line-height: 0;
  128. position: relative;
  129. vertical-align: baseline; }
  130. sup {
  131. top: -0.5em; }
  132. sub {
  133. bottom: -0.25em; }
  134. /* Embedded content
  135. ========================================================================== */
  136. /**
  137. * Remove border when inside `a` element in IE 8/9/10.
  138. */
  139. img {
  140. border: 0; }
  141. /**
  142. * Correct overflow not hidden in IE 9/10/11.
  143. */
  144. svg:not(:root) {
  145. overflow: hidden; }
  146. /* Grouping content
  147. ========================================================================== */
  148. /**
  149. * Address margin not present in IE 8/9 and Safari.
  150. */
  151. figure {
  152. margin: 1em 40px; }
  153. /**
  154. * Address differences between Firefox and other browsers.
  155. */
  156. hr {
  157. box-sizing: content-box;
  158. height: 0; }
  159. /**
  160. * Contain overflow in all browsers.
  161. */
  162. pre {
  163. overflow: auto; }
  164. /**
  165. * Address odd `em`-unit font size rendering in all browsers.
  166. */
  167. code,
  168. kbd,
  169. pre,
  170. samp {
  171. font-family: monospace, monospace;
  172. font-size: 1em; }
  173. /* Forms
  174. ========================================================================== */
  175. /**
  176. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  177. * styling of `select`, unless a `border` property is set.
  178. */
  179. /**
  180. * 1. Correct color not being inherited.
  181. * Known issue: affects color of disabled elements.
  182. * 2. Correct font properties not being inherited.
  183. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  184. */
  185. button,
  186. input,
  187. optgroup,
  188. select,
  189. textarea {
  190. color: inherit;
  191. /* 1 */
  192. font: inherit;
  193. /* 2 */
  194. margin: 0;
  195. /* 3 */ }
  196. /**
  197. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  198. */
  199. button {
  200. overflow: visible; }
  201. /**
  202. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  203. * All other form control elements do not inherit `text-transform` values.
  204. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  205. * Correct `select` style inheritance in Firefox.
  206. */
  207. button,
  208. select {
  209. text-transform: none; }
  210. /**
  211. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  212. * and `video` controls.
  213. * 2. Correct inability to style clickable `input` types in iOS.
  214. * 3. Improve usability and consistency of cursor style between image-type
  215. * `input` and others.
  216. */
  217. button,
  218. html input[type="button"],
  219. input[type="reset"],
  220. input[type="submit"] {
  221. -webkit-appearance: button;
  222. /* 2 */
  223. cursor: pointer;
  224. /* 3 */ }
  225. /**
  226. * Re-set default cursor for disabled elements.
  227. */
  228. button[disabled],
  229. html input[disabled] {
  230. cursor: default; }
  231. /**
  232. * Remove inner padding and border in Firefox 4+.
  233. */
  234. button::-moz-focus-inner,
  235. input::-moz-focus-inner {
  236. border: 0;
  237. padding: 0; }
  238. /**
  239. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  240. * the UA stylesheet.
  241. */
  242. input {
  243. line-height: normal; }
  244. /**
  245. * It's recommended that you don't attempt to style these elements.
  246. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  247. *
  248. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  249. * 2. Remove excess padding in IE 8/9/10.
  250. */
  251. input[type="checkbox"],
  252. input[type="radio"] {
  253. box-sizing: border-box;
  254. /* 1 */
  255. padding: 0;
  256. /* 2 */ }
  257. /**
  258. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  259. * `font-size` values of the `input`, it causes the cursor style of the
  260. * decrement button to change from `default` to `text`.
  261. */
  262. input[type="number"]::-webkit-inner-spin-button,
  263. input[type="number"]::-webkit-outer-spin-button {
  264. height: auto; }
  265. /**
  266. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  267. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
  268. * (include `-moz` to future-proof).
  269. */
  270. input[type="search"] {
  271. -webkit-appearance: textfield;
  272. /* 1 */
  273. /* 2 */
  274. box-sizing: content-box; }
  275. /**
  276. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  277. * Safari (but not Chrome) clips the cancel button when the search input has
  278. * padding (and `textfield` appearance).
  279. */
  280. input[type="search"]::-webkit-search-cancel-button,
  281. input[type="search"]::-webkit-search-decoration {
  282. -webkit-appearance: none; }
  283. /**
  284. * Define consistent border, margin, and padding.
  285. */
  286. fieldset {
  287. border: 1px solid #c0c0c0;
  288. margin: 0 2px;
  289. padding: 0.35em 0.625em 0.75em; }
  290. /**
  291. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  292. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  293. */
  294. legend {
  295. border: 0;
  296. /* 1 */
  297. padding: 0;
  298. /* 2 */ }
  299. /**
  300. * Remove default vertical scrollbar in IE 8/9/10/11.
  301. */
  302. textarea {
  303. overflow: auto; }
  304. /**
  305. * Don't inherit the `font-weight` (applied by a rule above).
  306. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  307. */
  308. optgroup {
  309. font-weight: bold; }
  310. /* Tables
  311. ========================================================================== */
  312. /**
  313. * Remove most spacing between table cells.
  314. */
  315. table {
  316. border-collapse: collapse;
  317. border-spacing: 0; }
  318. td,
  319. th {
  320. padding: 0; }
  321. meta.foundation-version {
  322. font-family: "/5.5.1/"; }
  323. meta.foundation-mq-small {
  324. font-family: "/only screen/";
  325. width: 0; }
  326. meta.foundation-mq-small-only {
  327. font-family: "/only screen and (max-width: 40em)/";
  328. width: 0; }
  329. meta.foundation-mq-medium {
  330. font-family: "/only screen and (min-width:40.063em)/";
  331. width: 40.063em; }
  332. meta.foundation-mq-medium-only {
  333. font-family: "/only screen and (min-width:40.063em) and (max-width:64em)/";
  334. width: 40.063em; }
  335. meta.foundation-mq-large {
  336. font-family: "/only screen and (min-width:64.063em)/";
  337. width: 64.063em; }
  338. meta.foundation-mq-large-only {
  339. font-family: "/only screen and (min-width:64.063em) and (max-width:90em)/";
  340. width: 64.063em; }
  341. meta.foundation-mq-xlarge {
  342. font-family: "/only screen and (min-width:90.063em)/";
  343. width: 90.063em; }
  344. meta.foundation-mq-xlarge-only {
  345. font-family: "/only screen and (min-width:90.063em) and (max-width:120em)/";
  346. width: 90.063em; }
  347. meta.foundation-mq-xxlarge {
  348. font-family: "/only screen and (min-width:120.063em)/";
  349. width: 120.063em; }
  350. meta.foundation-data-attribute-namespace {
  351. font-family: false; }
  352. html, body {
  353. height: 100%; }
  354. *,
  355. *:before,
  356. *:after {
  357. box-sizing: border-box; }
  358. html,
  359. body {
  360. font-size: 100%; }
  361. body {
  362. background: #fff;
  363. color: #222;
  364. padding: 0;
  365. margin: 0;
  366. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  367. font-weight: normal;
  368. font-style: normal;
  369. line-height: 1.5;
  370. position: relative;
  371. cursor: auto; }
  372. a:hover {
  373. cursor: pointer; }
  374. img {
  375. max-width: 100%;
  376. height: auto; }
  377. img {
  378. -ms-interpolation-mode: bicubic; }
  379. #map_canvas img,
  380. #map_canvas embed,
  381. #map_canvas object,
  382. .map_canvas img,
  383. .map_canvas embed,
  384. .map_canvas object {
  385. max-width: none !important; }
  386. .left {
  387. float: left !important; }
  388. .right {
  389. float: right !important; }
  390. .clearfix:before, .clearfix:after {
  391. content: " ";
  392. display: table; }
  393. .clearfix:after {
  394. clear: both; }
  395. .hide {
  396. display: none; }
  397. .invisible {
  398. visibility: hidden; }
  399. .antialiased {
  400. -webkit-font-smoothing: antialiased;
  401. -moz-osx-font-smoothing: grayscale; }
  402. img {
  403. display: inline-block;
  404. vertical-align: middle; }
  405. textarea {
  406. height: auto;
  407. min-height: 50px; }
  408. select {
  409. width: 100%; }
  410. .text-left {
  411. text-align: left !important; }
  412. .text-right {
  413. text-align: right !important; }
  414. .text-center {
  415. text-align: center !important; }
  416. .text-justify {
  417. text-align: justify !important; }
  418. @media only screen and (max-width: 40em) {
  419. .small-only-text-left {
  420. text-align: left !important; }
  421. .small-only-text-right {
  422. text-align: right !important; }
  423. .small-only-text-center {
  424. text-align: center !important; }
  425. .small-only-text-justify {
  426. text-align: justify !important; } }
  427. @media only screen {
  428. .small-text-left {
  429. text-align: left !important; }
  430. .small-text-right {
  431. text-align: right !important; }
  432. .small-text-center {
  433. text-align: center !important; }
  434. .small-text-justify {
  435. text-align: justify !important; } }
  436. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  437. .medium-only-text-left {
  438. text-align: left !important; }
  439. .medium-only-text-right {
  440. text-align: right !important; }
  441. .medium-only-text-center {
  442. text-align: center !important; }
  443. .medium-only-text-justify {
  444. text-align: justify !important; } }
  445. @media only screen and (min-width: 40.063em) {
  446. .medium-text-left {
  447. text-align: left !important; }
  448. .medium-text-right {
  449. text-align: right !important; }
  450. .medium-text-center {
  451. text-align: center !important; }
  452. .medium-text-justify {
  453. text-align: justify !important; } }
  454. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  455. .large-only-text-left {
  456. text-align: left !important; }
  457. .large-only-text-right {
  458. text-align: right !important; }
  459. .large-only-text-center {
  460. text-align: center !important; }
  461. .large-only-text-justify {
  462. text-align: justify !important; } }
  463. @media only screen and (min-width: 64.063em) {
  464. .large-text-left {
  465. text-align: left !important; }
  466. .large-text-right {
  467. text-align: right !important; }
  468. .large-text-center {
  469. text-align: center !important; }
  470. .large-text-justify {
  471. text-align: justify !important; } }
  472. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  473. .xlarge-only-text-left {
  474. text-align: left !important; }
  475. .xlarge-only-text-right {
  476. text-align: right !important; }
  477. .xlarge-only-text-center {
  478. text-align: center !important; }
  479. .xlarge-only-text-justify {
  480. text-align: justify !important; } }
  481. @media only screen and (min-width: 90.063em) {
  482. .xlarge-text-left {
  483. text-align: left !important; }
  484. .xlarge-text-right {
  485. text-align: right !important; }
  486. .xlarge-text-center {
  487. text-align: center !important; }
  488. .xlarge-text-justify {
  489. text-align: justify !important; } }
  490. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  491. .xxlarge-only-text-left {
  492. text-align: left !important; }
  493. .xxlarge-only-text-right {
  494. text-align: right !important; }
  495. .xxlarge-only-text-center {
  496. text-align: center !important; }
  497. .xxlarge-only-text-justify {
  498. text-align: justify !important; } }
  499. @media only screen and (min-width: 120.063em) {
  500. .xxlarge-text-left {
  501. text-align: left !important; }
  502. .xxlarge-text-right {
  503. text-align: right !important; }
  504. .xxlarge-text-center {
  505. text-align: center !important; }
  506. .xxlarge-text-justify {
  507. text-align: justify !important; } }
  508. /* Typography resets */
  509. div,
  510. dl,
  511. dt,
  512. dd,
  513. ul,
  514. ol,
  515. li,
  516. h1,
  517. h2,
  518. h3,
  519. h4,
  520. h5,
  521. h6,
  522. pre,
  523. form,
  524. p,
  525. blockquote,
  526. th,
  527. td {
  528. margin: 0;
  529. padding: 0; }
  530. /* Default Link Styles */
  531. a {
  532. color: #008CBA;
  533. text-decoration: none;
  534. line-height: inherit; }
  535. a:hover, a:focus {
  536. color: #0078a0; }
  537. a img {
  538. border: none; }
  539. /* Default paragraph styles */
  540. p {
  541. font-family: inherit;
  542. font-weight: normal;
  543. font-size: 1rem;
  544. line-height: 1.6;
  545. margin-bottom: 1.25rem;
  546. text-rendering: optimizeLegibility; }
  547. p.lead {
  548. font-size: 1.21875rem;
  549. line-height: 1.6; }
  550. p aside {
  551. font-size: 0.875rem;
  552. line-height: 1.35;
  553. font-style: italic; }
  554. /* Default header styles */
  555. h1, h2, h3, h4, h5, h6 {
  556. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  557. font-weight: normal;
  558. font-style: normal;
  559. color: #222222;
  560. text-rendering: optimizeLegibility;
  561. margin-top: 0.2rem;
  562. margin-bottom: 0.5rem;
  563. line-height: 1.4; }
  564. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  565. font-size: 60%;
  566. color: #6f6f6f;
  567. line-height: 0; }
  568. h1 {
  569. font-size: 2.125rem; }
  570. h2 {
  571. font-size: 1.6875rem; }
  572. h3 {
  573. font-size: 1.375rem; }
  574. h4 {
  575. font-size: 1.125rem; }
  576. h5 {
  577. font-size: 1.125rem; }
  578. h6 {
  579. font-size: 1rem; }
  580. .subheader {
  581. line-height: 1.4;
  582. color: #6f6f6f;
  583. font-weight: normal;
  584. margin-top: 0.2rem;
  585. margin-bottom: 0.5rem; }
  586. hr {
  587. border: solid #DDDDDD;
  588. border-width: 1px 0 0;
  589. clear: both;
  590. margin: 1.25rem 0 1.1875rem;
  591. height: 0; }
  592. /* Helpful Typography Defaults */
  593. em,
  594. i {
  595. font-style: italic;
  596. line-height: inherit; }
  597. strong,
  598. b {
  599. font-weight: bold;
  600. line-height: inherit; }
  601. small {
  602. font-size: 60%;
  603. line-height: inherit; }
  604. code {
  605. font-family: Consolas, "Liberation Mono", Courier, monospace;
  606. font-weight: normal;
  607. color: #333333;
  608. background-color: #f8f8f8;
  609. border-width: 1px;
  610. border-style: solid;
  611. border-color: #dfdfdf;
  612. padding: 0.125rem 0.3125rem 0.0625rem; }
  613. /* Lists */
  614. ul,
  615. ol,
  616. dl {
  617. font-size: 1rem;
  618. line-height: 1.6;
  619. margin-bottom: 1.25rem;
  620. list-style-position: outside;
  621. font-family: inherit; }
  622. ul {
  623. margin-left: 1.1rem; }
  624. ul.no-bullet {
  625. margin-left: 0; }
  626. ul.no-bullet li ul,
  627. ul.no-bullet li ol {
  628. margin-left: 1.25rem;
  629. margin-bottom: 0;
  630. list-style: none; }
  631. /* Unordered Lists */
  632. ul li ul,
  633. ul li ol {
  634. margin-left: 1.25rem;
  635. margin-bottom: 0; }
  636. ul.square li ul, ul.circle li ul, ul.disc li ul {
  637. list-style: inherit; }
  638. ul.square {
  639. list-style-type: square;
  640. margin-left: 1.1rem; }
  641. ul.circle {
  642. list-style-type: circle;
  643. margin-left: 1.1rem; }
  644. ul.disc {
  645. list-style-type: disc;
  646. margin-left: 1.1rem; }
  647. ul.no-bullet {
  648. list-style: none; }
  649. /* Ordered Lists */
  650. ol {
  651. margin-left: 1.4rem; }
  652. ol li ul,
  653. ol li ol {
  654. margin-left: 1.25rem;
  655. margin-bottom: 0; }
  656. /* Definition Lists */
  657. dl dt {
  658. margin-bottom: 0.3rem;
  659. font-weight: bold; }
  660. dl dd {
  661. margin-bottom: 0.75rem; }
  662. /* Abbreviations */
  663. abbr,
  664. acronym {
  665. text-transform: uppercase;
  666. font-size: 90%;
  667. color: #222;
  668. cursor: help; }
  669. abbr {
  670. text-transform: none; }
  671. abbr[title] {
  672. border-bottom: 1px dotted #DDDDDD; }
  673. /* Blockquotes */
  674. blockquote {
  675. margin: 0 0 1.25rem;
  676. padding: 0.5625rem 1.25rem 0 1.1875rem;
  677. border-left: 1px solid #DDDDDD; }
  678. blockquote cite {
  679. display: block;
  680. font-size: 0.8125rem;
  681. color: #555555; }
  682. blockquote cite:before {
  683. content: "\2014 \0020"; }
  684. blockquote cite a,
  685. blockquote cite a:visited {
  686. color: #555555; }
  687. blockquote,
  688. blockquote p {
  689. line-height: 1.6;
  690. color: #6f6f6f; }
  691. /* Microformats */
  692. .vcard {
  693. display: inline-block;
  694. margin: 0 0 1.25rem 0;
  695. border: 1px solid #DDDDDD;
  696. padding: 0.625rem 0.75rem; }
  697. .vcard li {
  698. margin: 0;
  699. display: block; }
  700. .vcard .fn {
  701. font-weight: bold;
  702. font-size: 0.9375rem; }
  703. .vevent .summary {
  704. font-weight: bold; }
  705. .vevent abbr {
  706. cursor: default;
  707. text-decoration: none;
  708. font-weight: bold;
  709. border: none;
  710. padding: 0 0.0625rem; }
  711. @media only screen and (min-width: 40.063em) {
  712. h1, h2, h3, h4, h5, h6 {
  713. line-height: 1.4; }
  714. h1 {
  715. font-size: 2.75rem; }
  716. h2 {
  717. font-size: 2.3125rem; }
  718. h3 {
  719. font-size: 1.6875rem; }
  720. h4 {
  721. font-size: 1.4375rem; }
  722. h5 {
  723. font-size: 1.125rem; }
  724. h6 {
  725. font-size: 1rem; } }
  726. /* Clearing Styles */
  727. .clearing-thumbs, [data-clearing] {
  728. margin-bottom: 0;
  729. margin-left: 0;
  730. list-style: none; }
  731. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  732. content: " ";
  733. display: table; }
  734. .clearing-thumbs:after, [data-clearing]:after {
  735. clear: both; }
  736. .clearing-thumbs li, [data-clearing] li {
  737. float: left;
  738. margin-right: 10px; }
  739. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  740. margin-right: 0; }
  741. .clearing-blackout {
  742. background: #333333;
  743. position: fixed;
  744. width: 100%;
  745. height: 100%;
  746. top: 0;
  747. left: 0;
  748. z-index: 998; }
  749. .clearing-blackout .clearing-close {
  750. display: block; }
  751. .clearing-container {
  752. position: relative;
  753. z-index: 998;
  754. height: 100%;
  755. overflow: hidden;
  756. margin: 0; }
  757. .clearing-touch-label {
  758. position: absolute;
  759. top: 50%;
  760. left: 50%;
  761. color: #AAAAAA;
  762. font-size: 0.6em; }
  763. .visible-img {
  764. height: 95%;
  765. position: relative; }
  766. .visible-img img {
  767. position: absolute;
  768. left: 50%;
  769. top: 50%;
  770. transform: translateY(-50%) translateX(-50%);
  771. -webkit-transform: translateY(-50%) translateX(-50%);
  772. -ms-transform: translateY(-50%) translateX(-50%);
  773. max-height: 100%;
  774. max-width: 100%; }
  775. .clearing-caption {
  776. color: #CCCCCC;
  777. font-size: 0.875em;
  778. line-height: 1.3;
  779. margin-bottom: 0;
  780. text-align: center;
  781. bottom: 0;
  782. background: #333333;
  783. width: 100%;
  784. padding: 10px 30px 20px;
  785. position: absolute;
  786. left: 0; }
  787. .clearing-close {
  788. z-index: 999;
  789. padding-left: 20px;
  790. padding-top: 10px;
  791. font-size: 30px;
  792. line-height: 1;
  793. color: #CCCCCC;
  794. display: none; }
  795. .clearing-close:hover, .clearing-close:focus {
  796. color: #CCCCCC; }
  797. .clearing-assembled .clearing-container {
  798. height: 100%; }
  799. .clearing-assembled .clearing-container .carousel > ul {
  800. display: none; }
  801. .clearing-feature li {
  802. display: none; }
  803. .clearing-feature li.clearing-featured-img {
  804. display: block; }
  805. @media only screen and (min-width: 40.063em) {
  806. .clearing-main-prev,
  807. .clearing-main-next {
  808. position: absolute;
  809. height: 100%;
  810. width: 40px;
  811. top: 0; }
  812. .clearing-main-prev > span,
  813. .clearing-main-next > span {
  814. position: absolute;
  815. top: 50%;
  816. display: block;
  817. width: 0;
  818. height: 0;
  819. border: solid 12px; }
  820. .clearing-main-prev > span:hover,
  821. .clearing-main-next > span:hover {
  822. opacity: 0.8; }
  823. .clearing-main-prev {
  824. left: 0; }
  825. .clearing-main-prev > span {
  826. left: 5px;
  827. border-color: transparent;
  828. border-right-color: #CCCCCC; }
  829. .clearing-main-next {
  830. right: 0; }
  831. .clearing-main-next > span {
  832. border-color: transparent;
  833. border-left-color: #CCCCCC; }
  834. .clearing-main-prev.disabled,
  835. .clearing-main-next.disabled {
  836. opacity: 0.3; }
  837. .clearing-assembled .clearing-container .carousel {
  838. background: rgba(51, 51, 51, 0.8);
  839. height: 120px;
  840. margin-top: 10px;
  841. text-align: center; }
  842. .clearing-assembled .clearing-container .carousel > ul {
  843. display: inline-block;
  844. z-index: 999;
  845. height: 100%;
  846. position: relative;
  847. float: none; }
  848. .clearing-assembled .clearing-container .carousel > ul li {
  849. display: block;
  850. width: 120px;
  851. min-height: inherit;
  852. float: left;
  853. overflow: hidden;
  854. margin-right: 0;
  855. padding: 0;
  856. position: relative;
  857. cursor: pointer;
  858. opacity: 0.4;
  859. clear: none; }
  860. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  861. height: 100%;
  862. max-width: none; }
  863. .clearing-assembled .clearing-container .carousel > ul li a.th {
  864. border: none;
  865. box-shadow: none;
  866. display: block; }
  867. .clearing-assembled .clearing-container .carousel > ul li img {
  868. cursor: pointer !important;
  869. width: 100% !important; }
  870. .clearing-assembled .clearing-container .carousel > ul li.visible {
  871. opacity: 1; }
  872. .clearing-assembled .clearing-container .carousel > ul li:hover {
  873. opacity: 0.8; }
  874. .clearing-assembled .clearing-container .visible-img {
  875. background: #333333;
  876. overflow: hidden;
  877. height: 85%; }
  878. .clearing-close {
  879. position: absolute;
  880. top: 10px;
  881. right: 20px;
  882. padding-left: 0;
  883. padding-top: 0; } }
  884. .inline-list {
  885. margin: 0 auto 1.0625rem auto;
  886. margin-left: -1.375rem;
  887. margin-right: 0;
  888. padding: 0;
  889. list-style: none;
  890. overflow: hidden; }
  891. .inline-list > li {
  892. list-style: none;
  893. float: left;
  894. margin-left: 1.375rem;
  895. display: block; }
  896. .inline-list > li > * {
  897. display: block; }
  898. button, .button {
  899. border-style: solid;
  900. border-width: 0;
  901. cursor: pointer;
  902. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  903. font-weight: normal;
  904. line-height: normal;
  905. margin: 0 0 1.25rem;
  906. position: relative;
  907. text-decoration: none;
  908. text-align: center;
  909. -webkit-appearance: none;
  910. -moz-appearance: none;
  911. border-radius: 0;
  912. display: inline-block;
  913. padding-top: 1rem;
  914. padding-right: 2rem;
  915. padding-bottom: 1.0625rem;
  916. padding-left: 2rem;
  917. font-size: 1rem;
  918. background-color: #008CBA;
  919. border-color: #007095;
  920. color: #FFFFFF;
  921. transition: background-color 300ms ease-out; }
  922. button:hover, button:focus, .button:hover, .button:focus {
  923. background-color: #007095; }
  924. button:hover, button:focus, .button:hover, .button:focus {
  925. color: #FFFFFF; }
  926. button.secondary, .button.secondary {
  927. background-color: #e7e7e7;
  928. border-color: #b9b9b9;
  929. color: #333333; }
  930. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  931. background-color: #b9b9b9; }
  932. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  933. color: #333333; }
  934. button.success, .button.success {
  935. background-color: #43AC6A;
  936. border-color: #368a55;
  937. color: #FFFFFF; }
  938. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  939. background-color: #368a55; }
  940. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  941. color: #FFFFFF; }
  942. button.alert, .button.alert {
  943. background-color: #f04124;
  944. border-color: #cf2a0e;
  945. color: #FFFFFF; }
  946. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  947. background-color: #cf2a0e; }
  948. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  949. color: #FFFFFF; }
  950. button.warning, .button.warning {
  951. background-color: #f08a24;
  952. border-color: #cf6e0e;
  953. color: #FFFFFF; }
  954. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  955. background-color: #cf6e0e; }
  956. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  957. color: #FFFFFF; }
  958. button.info, .button.info {
  959. background-color: #a0d3e8;
  960. border-color: #61b6d9;
  961. color: #333333; }
  962. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  963. background-color: #61b6d9; }
  964. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  965. color: #FFFFFF; }
  966. button.large, .button.large {
  967. padding-top: 1.125rem;
  968. padding-right: 2.25rem;
  969. padding-bottom: 1.1875rem;
  970. padding-left: 2.25rem;
  971. font-size: 1.25rem; }
  972. button.small, .button.small {
  973. padding-top: 0.875rem;
  974. padding-right: 1.75rem;
  975. padding-bottom: 0.9375rem;
  976. padding-left: 1.75rem;
  977. font-size: 0.8125rem; }
  978. button.tiny, .button.tiny {
  979. padding-top: 0.625rem;
  980. padding-right: 1.25rem;
  981. padding-bottom: 0.6875rem;
  982. padding-left: 1.25rem;
  983. font-size: 0.6875rem; }
  984. button.expand, .button.expand {
  985. padding-right: 0;
  986. padding-left: 0;
  987. width: 100%; }
  988. button.left-align, .button.left-align {
  989. text-align: left;
  990. text-indent: 0.75rem; }
  991. button.right-align, .button.right-align {
  992. text-align: right;
  993. padding-right: 0.75rem; }
  994. button.radius, .button.radius {
  995. border-radius: 3px; }
  996. button.round, .button.round {
  997. border-radius: 1000px; }
  998. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  999. background-color: #008CBA;
  1000. border-color: #007095;
  1001. color: #FFFFFF;
  1002. cursor: default;
  1003. opacity: 0.7;
  1004. box-shadow: none; }
  1005. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1006. background-color: #007095; }
  1007. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1008. color: #FFFFFF; }
  1009. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1010. background-color: #008CBA; }
  1011. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  1012. background-color: #e7e7e7;
  1013. border-color: #b9b9b9;
  1014. color: #333333;
  1015. cursor: default;
  1016. opacity: 0.7;
  1017. box-shadow: none; }
  1018. 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 {
  1019. background-color: #b9b9b9; }
  1020. 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 {
  1021. color: #333333; }
  1022. 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 {
  1023. background-color: #e7e7e7; }
  1024. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  1025. background-color: #43AC6A;
  1026. border-color: #368a55;
  1027. color: #FFFFFF;
  1028. cursor: default;
  1029. opacity: 0.7;
  1030. box-shadow: none; }
  1031. 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 {
  1032. background-color: #368a55; }
  1033. 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 {
  1034. color: #FFFFFF; }
  1035. 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 {
  1036. background-color: #43AC6A; }
  1037. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  1038. background-color: #f04124;
  1039. border-color: #cf2a0e;
  1040. color: #FFFFFF;
  1041. cursor: default;
  1042. opacity: 0.7;
  1043. box-shadow: none; }
  1044. 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 {
  1045. background-color: #cf2a0e; }
  1046. 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 {
  1047. color: #FFFFFF; }
  1048. 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 {
  1049. background-color: #f04124; }
  1050. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  1051. background-color: #f08a24;
  1052. border-color: #cf6e0e;
  1053. color: #FFFFFF;
  1054. cursor: default;
  1055. opacity: 0.7;
  1056. box-shadow: none; }
  1057. 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 {
  1058. background-color: #cf6e0e; }
  1059. 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 {
  1060. color: #FFFFFF; }
  1061. 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 {
  1062. background-color: #f08a24; }
  1063. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  1064. background-color: #a0d3e8;
  1065. border-color: #61b6d9;
  1066. color: #333333;
  1067. cursor: default;
  1068. opacity: 0.7;
  1069. box-shadow: none; }
  1070. 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 {
  1071. background-color: #61b6d9; }
  1072. 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 {
  1073. color: #FFFFFF; }
  1074. 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 {
  1075. background-color: #a0d3e8; }
  1076. button::-moz-focus-inner {
  1077. border: 0;
  1078. padding: 0; }
  1079. @media only screen and (min-width: 40.063em) {
  1080. button, .button {
  1081. display: inline-block; } }
  1082. .button-group {
  1083. list-style: none;
  1084. margin: 0;
  1085. left: 0; }
  1086. .button-group:before, .button-group:after {
  1087. content: " ";
  1088. display: table; }
  1089. .button-group:after {
  1090. clear: both; }
  1091. .button-group.even-2 li {
  1092. margin: 0 -2px;
  1093. display: inline-block;
  1094. width: 50%; }
  1095. .button-group.even-2 li > button, .button-group.even-2 li .button {
  1096. border-left: 1px solid;
  1097. border-color: rgba(255, 255, 255, 0.5); }
  1098. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  1099. border-left: 0; }
  1100. .button-group.even-2 li button, .button-group.even-2 li .button {
  1101. width: 100%; }
  1102. .button-group.even-3 li {
  1103. margin: 0 -2px;
  1104. display: inline-block;
  1105. width: 33.33333%; }
  1106. .button-group.even-3 li > button, .button-group.even-3 li .button {
  1107. border-left: 1px solid;
  1108. border-color: rgba(255, 255, 255, 0.5); }
  1109. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  1110. border-left: 0; }
  1111. .button-group.even-3 li button, .button-group.even-3 li .button {
  1112. width: 100%; }
  1113. .button-group.even-4 li {
  1114. margin: 0 -2px;
  1115. display: inline-block;
  1116. width: 25%; }
  1117. .button-group.even-4 li > button, .button-group.even-4 li .button {
  1118. border-left: 1px solid;
  1119. border-color: rgba(255, 255, 255, 0.5); }
  1120. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  1121. border-left: 0; }
  1122. .button-group.even-4 li button, .button-group.even-4 li .button {
  1123. width: 100%; }
  1124. .button-group.even-5 li {
  1125. margin: 0 -2px;
  1126. display: inline-block;
  1127. width: 20%; }
  1128. .button-group.even-5 li > button, .button-group.even-5 li .button {
  1129. border-left: 1px solid;
  1130. border-color: rgba(255, 255, 255, 0.5); }
  1131. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  1132. border-left: 0; }
  1133. .button-group.even-5 li button, .button-group.even-5 li .button {
  1134. width: 100%; }
  1135. .button-group.even-6 li {
  1136. margin: 0 -2px;
  1137. display: inline-block;
  1138. width: 16.66667%; }
  1139. .button-group.even-6 li > button, .button-group.even-6 li .button {
  1140. border-left: 1px solid;
  1141. border-color: rgba(255, 255, 255, 0.5); }
  1142. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  1143. border-left: 0; }
  1144. .button-group.even-6 li button, .button-group.even-6 li .button {
  1145. width: 100%; }
  1146. .button-group.even-7 li {
  1147. margin: 0 -2px;
  1148. display: inline-block;
  1149. width: 14.28571%; }
  1150. .button-group.even-7 li > button, .button-group.even-7 li .button {
  1151. border-left: 1px solid;
  1152. border-color: rgba(255, 255, 255, 0.5); }
  1153. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  1154. border-left: 0; }
  1155. .button-group.even-7 li button, .button-group.even-7 li .button {
  1156. width: 100%; }
  1157. .button-group.even-8 li {
  1158. margin: 0 -2px;
  1159. display: inline-block;
  1160. width: 12.5%; }
  1161. .button-group.even-8 li > button, .button-group.even-8 li .button {
  1162. border-left: 1px solid;
  1163. border-color: rgba(255, 255, 255, 0.5); }
  1164. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  1165. border-left: 0; }
  1166. .button-group.even-8 li button, .button-group.even-8 li .button {
  1167. width: 100%; }
  1168. .button-group > li {
  1169. margin: 0 -2px;
  1170. display: inline-block; }
  1171. .button-group > li > button, .button-group > li .button {
  1172. border-left: 1px solid;
  1173. border-color: rgba(255, 255, 255, 0.5); }
  1174. .button-group > li:first-child button, .button-group > li:first-child .button {
  1175. border-left: 0; }
  1176. .button-group.stack > li {
  1177. margin: 0 -2px;
  1178. display: inline-block;
  1179. display: block;
  1180. margin: 0;
  1181. float: none; }
  1182. .button-group.stack > li > button, .button-group.stack > li .button {
  1183. border-left: 1px solid;
  1184. border-color: rgba(255, 255, 255, 0.5); }
  1185. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1186. border-left: 0; }
  1187. .button-group.stack > li > button, .button-group.stack > li .button {
  1188. border-top: 1px solid;
  1189. border-color: rgba(255, 255, 255, 0.5);
  1190. border-left-width: 0;
  1191. margin: 0;
  1192. display: block; }
  1193. .button-group.stack > li > button {
  1194. width: 100%; }
  1195. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1196. border-top: 0; }
  1197. .button-group.stack-for-small > li {
  1198. margin: 0 -2px;
  1199. display: inline-block; }
  1200. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1201. border-left: 1px solid;
  1202. border-color: rgba(255, 255, 255, 0.5); }
  1203. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1204. border-left: 0; }
  1205. @media only screen and (max-width: 40em) {
  1206. .button-group.stack-for-small > li {
  1207. margin: 0 -2px;
  1208. display: inline-block;
  1209. display: block;
  1210. margin: 0; }
  1211. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1212. border-left: 1px solid;
  1213. border-color: rgba(255, 255, 255, 0.5); }
  1214. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1215. border-left: 0; }
  1216. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1217. border-top: 1px solid;
  1218. border-color: rgba(255, 255, 255, 0.5);
  1219. border-left-width: 0;
  1220. margin: 0;
  1221. display: block; }
  1222. .button-group.stack-for-small > li > button {
  1223. width: 100%; }
  1224. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1225. border-top: 0; } }
  1226. .button-group.radius > * {
  1227. margin: 0 -2px;
  1228. display: inline-block; }
  1229. .button-group.radius > * > button, .button-group.radius > * .button {
  1230. border-left: 1px solid;
  1231. border-color: rgba(255, 255, 255, 0.5); }
  1232. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  1233. border-left: 0; }
  1234. .button-group.radius > *,
  1235. .button-group.radius > * > a,
  1236. .button-group.radius > * > button,
  1237. .button-group.radius > * > .button {
  1238. border-radius: 0; }
  1239. .button-group.radius > *:first-child,
  1240. .button-group.radius > *:first-child > a,
  1241. .button-group.radius > *:first-child > button,
  1242. .button-group.radius > *:first-child > .button {
  1243. -webkit-border-bottom-left-radius: 3px;
  1244. -webkit-border-top-left-radius: 3px;
  1245. border-bottom-left-radius: 3px;
  1246. border-top-left-radius: 3px; }
  1247. .button-group.radius > *:last-child,
  1248. .button-group.radius > *:last-child > a,
  1249. .button-group.radius > *:last-child > button,
  1250. .button-group.radius > *:last-child > .button {
  1251. -webkit-border-bottom-right-radius: 3px;
  1252. -webkit-border-top-right-radius: 3px;
  1253. border-bottom-right-radius: 3px;
  1254. border-top-right-radius: 3px; }
  1255. .button-group.radius.stack > * {
  1256. margin: 0 -2px;
  1257. display: inline-block;
  1258. display: block;
  1259. margin: 0; }
  1260. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1261. border-left: 1px solid;
  1262. border-color: rgba(255, 255, 255, 0.5); }
  1263. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1264. border-left: 0; }
  1265. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1266. border-top: 1px solid;
  1267. border-color: rgba(255, 255, 255, 0.5);
  1268. border-left-width: 0;
  1269. margin: 0;
  1270. display: block; }
  1271. .button-group.radius.stack > * > button {
  1272. width: 100%; }
  1273. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1274. border-top: 0; }
  1275. .button-group.radius.stack > *,
  1276. .button-group.radius.stack > * > a,
  1277. .button-group.radius.stack > * > button,
  1278. .button-group.radius.stack > * > .button {
  1279. border-radius: 0; }
  1280. .button-group.radius.stack > *:first-child,
  1281. .button-group.radius.stack > *:first-child > a,
  1282. .button-group.radius.stack > *:first-child > button,
  1283. .button-group.radius.stack > *:first-child > .button {
  1284. -webkit-top-left-radius: 3px;
  1285. -webkit-top-right-radius: 3px;
  1286. border-top-left-radius: 3px;
  1287. border-top-right-radius: 3px; }
  1288. .button-group.radius.stack > *:last-child,
  1289. .button-group.radius.stack > *:last-child > a,
  1290. .button-group.radius.stack > *:last-child > button,
  1291. .button-group.radius.stack > *:last-child > .button {
  1292. -webkit-bottom-left-radius: 3px;
  1293. -webkit-bottom-right-radius: 3px;
  1294. border-bottom-left-radius: 3px;
  1295. border-bottom-right-radius: 3px; }
  1296. @media only screen and (min-width: 40.063em) {
  1297. .button-group.radius.stack-for-small > * {
  1298. margin: 0 -2px;
  1299. display: inline-block; }
  1300. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1301. border-left: 1px solid;
  1302. border-color: rgba(255, 255, 255, 0.5); }
  1303. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1304. border-left: 0; }
  1305. .button-group.radius.stack-for-small > *,
  1306. .button-group.radius.stack-for-small > * > a,
  1307. .button-group.radius.stack-for-small > * > button,
  1308. .button-group.radius.stack-for-small > * > .button {
  1309. border-radius: 0; }
  1310. .button-group.radius.stack-for-small > *:first-child,
  1311. .button-group.radius.stack-for-small > *:first-child > a,
  1312. .button-group.radius.stack-for-small > *:first-child > button,
  1313. .button-group.radius.stack-for-small > *:first-child > .button {
  1314. -webkit-border-bottom-left-radius: 3px;
  1315. -webkit-border-top-left-radius: 3px;
  1316. border-bottom-left-radius: 3px;
  1317. border-top-left-radius: 3px; }
  1318. .button-group.radius.stack-for-small > *:last-child,
  1319. .button-group.radius.stack-for-small > *:last-child > a,
  1320. .button-group.radius.stack-for-small > *:last-child > button,
  1321. .button-group.radius.stack-for-small > *:last-child > .button {
  1322. -webkit-border-bottom-right-radius: 3px;
  1323. -webkit-border-top-right-radius: 3px;
  1324. border-bottom-right-radius: 3px;
  1325. border-top-right-radius: 3px; } }
  1326. @media only screen and (max-width: 40em) {
  1327. .button-group.radius.stack-for-small > * {
  1328. margin: 0 -2px;
  1329. display: inline-block;
  1330. display: block;
  1331. margin: 0; }
  1332. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1333. border-left: 1px solid;
  1334. border-color: rgba(255, 255, 255, 0.5); }
  1335. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1336. border-left: 0; }
  1337. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1338. border-top: 1px solid;
  1339. border-color: rgba(255, 255, 255, 0.5);
  1340. border-left-width: 0;
  1341. margin: 0;
  1342. display: block; }
  1343. .button-group.radius.stack-for-small > * > button {
  1344. width: 100%; }
  1345. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1346. border-top: 0; }
  1347. .button-group.radius.stack-for-small > *,
  1348. .button-group.radius.stack-for-small > * > a,
  1349. .button-group.radius.stack-for-small > * > button,
  1350. .button-group.radius.stack-for-small > * > .button {
  1351. border-radius: 0; }
  1352. .button-group.radius.stack-for-small > *:first-child,
  1353. .button-group.radius.stack-for-small > *:first-child > a,
  1354. .button-group.radius.stack-for-small > *:first-child > button,
  1355. .button-group.radius.stack-for-small > *:first-child > .button {
  1356. -webkit-top-left-radius: 3px;
  1357. -webkit-top-right-radius: 3px;
  1358. border-top-left-radius: 3px;
  1359. border-top-right-radius: 3px; }
  1360. .button-group.radius.stack-for-small > *:last-child,
  1361. .button-group.radius.stack-for-small > *:last-child > a,
  1362. .button-group.radius.stack-for-small > *:last-child > button,
  1363. .button-group.radius.stack-for-small > *:last-child > .button {
  1364. -webkit-bottom-left-radius: 3px;
  1365. -webkit-bottom-right-radius: 3px;
  1366. border-bottom-left-radius: 3px;
  1367. border-bottom-right-radius: 3px; } }
  1368. .button-group.round > * {
  1369. margin: 0 -2px;
  1370. display: inline-block; }
  1371. .button-group.round > * > button, .button-group.round > * .button {
  1372. border-left: 1px solid;
  1373. border-color: rgba(255, 255, 255, 0.5); }
  1374. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  1375. border-left: 0; }
  1376. .button-group.round > *,
  1377. .button-group.round > * > a,
  1378. .button-group.round > * > button,
  1379. .button-group.round > * > .button {
  1380. border-radius: 0; }
  1381. .button-group.round > *:first-child,
  1382. .button-group.round > *:first-child > a,
  1383. .button-group.round > *:first-child > button,
  1384. .button-group.round > *:first-child > .button {
  1385. -webkit-border-bottom-left-radius: 1000px;
  1386. -webkit-border-top-left-radius: 1000px;
  1387. border-bottom-left-radius: 1000px;
  1388. border-top-left-radius: 1000px; }
  1389. .button-group.round > *:last-child,
  1390. .button-group.round > *:last-child > a,
  1391. .button-group.round > *:last-child > button,
  1392. .button-group.round > *:last-child > .button {
  1393. -webkit-border-bottom-right-radius: 1000px;
  1394. -webkit-border-top-right-radius: 1000px;
  1395. border-bottom-right-radius: 1000px;
  1396. border-top-right-radius: 1000px; }
  1397. .button-group.round.stack > * {
  1398. margin: 0 -2px;
  1399. display: inline-block;
  1400. display: block;
  1401. margin: 0; }
  1402. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1403. border-left: 1px solid;
  1404. border-color: rgba(255, 255, 255, 0.5); }
  1405. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1406. border-left: 0; }
  1407. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1408. border-top: 1px solid;
  1409. border-color: rgba(255, 255, 255, 0.5);
  1410. border-left-width: 0;
  1411. margin: 0;
  1412. display: block; }
  1413. .button-group.round.stack > * > button {
  1414. width: 100%; }
  1415. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1416. border-top: 0; }
  1417. .button-group.round.stack > *,
  1418. .button-group.round.stack > * > a,
  1419. .button-group.round.stack > * > button,
  1420. .button-group.round.stack > * > .button {
  1421. border-radius: 0; }
  1422. .button-group.round.stack > *:first-child,
  1423. .button-group.round.stack > *:first-child > a,
  1424. .button-group.round.stack > *:first-child > button,
  1425. .button-group.round.stack > *:first-child > .button {
  1426. -webkit-top-left-radius: 1rem;
  1427. -webkit-top-right-radius: 1rem;
  1428. border-top-left-radius: 1rem;
  1429. border-top-right-radius: 1rem; }
  1430. .button-group.round.stack > *:last-child,
  1431. .button-group.round.stack > *:last-child > a,
  1432. .button-group.round.stack > *:last-child > button,
  1433. .button-group.round.stack > *:last-child > .button {
  1434. -webkit-bottom-left-radius: 1rem;
  1435. -webkit-bottom-right-radius: 1rem;
  1436. border-bottom-left-radius: 1rem;
  1437. border-bottom-right-radius: 1rem; }
  1438. @media only screen and (min-width: 40.063em) {
  1439. .button-group.round.stack-for-small > * {
  1440. margin: 0 -2px;
  1441. display: inline-block; }
  1442. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1443. border-left: 1px solid;
  1444. border-color: rgba(255, 255, 255, 0.5); }
  1445. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1446. border-left: 0; }
  1447. .button-group.round.stack-for-small > *,
  1448. .button-group.round.stack-for-small > * > a,
  1449. .button-group.round.stack-for-small > * > button,
  1450. .button-group.round.stack-for-small > * > .button {
  1451. border-radius: 0; }
  1452. .button-group.round.stack-for-small > *:first-child,
  1453. .button-group.round.stack-for-small > *:first-child > a,
  1454. .button-group.round.stack-for-small > *:first-child > button,
  1455. .button-group.round.stack-for-small > *:first-child > .button {
  1456. -webkit-border-bottom-left-radius: 1000px;
  1457. -webkit-border-top-left-radius: 1000px;
  1458. border-bottom-left-radius: 1000px;
  1459. border-top-left-radius: 1000px; }
  1460. .button-group.round.stack-for-small > *:last-child,
  1461. .button-group.round.stack-for-small > *:last-child > a,
  1462. .button-group.round.stack-for-small > *:last-child > button,
  1463. .button-group.round.stack-for-small > *:last-child > .button {
  1464. -webkit-border-bottom-right-radius: 1000px;
  1465. -webkit-border-top-right-radius: 1000px;
  1466. border-bottom-right-radius: 1000px;
  1467. border-top-right-radius: 1000px; } }
  1468. @media only screen and (max-width: 40em) {
  1469. .button-group.round.stack-for-small > * {
  1470. margin: 0 -2px;
  1471. display: inline-block;
  1472. display: block;
  1473. margin: 0; }
  1474. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1475. border-left: 1px solid;
  1476. border-color: rgba(255, 255, 255, 0.5); }
  1477. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1478. border-left: 0; }
  1479. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1480. border-top: 1px solid;
  1481. border-color: rgba(255, 255, 255, 0.5);
  1482. border-left-width: 0;
  1483. margin: 0;
  1484. display: block; }
  1485. .button-group.round.stack-for-small > * > button {
  1486. width: 100%; }
  1487. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1488. border-top: 0; }
  1489. .button-group.round.stack-for-small > *,
  1490. .button-group.round.stack-for-small > * > a,
  1491. .button-group.round.stack-for-small > * > button,
  1492. .button-group.round.stack-for-small > * > .button {
  1493. border-radius: 0; }
  1494. .button-group.round.stack-for-small > *:first-child,
  1495. .button-group.round.stack-for-small > *:first-child > a,
  1496. .button-group.round.stack-for-small > *:first-child > button,
  1497. .button-group.round.stack-for-small > *:first-child > .button {
  1498. -webkit-top-left-radius: 1rem;
  1499. -webkit-top-right-radius: 1rem;
  1500. border-top-left-radius: 1rem;
  1501. border-top-right-radius: 1rem; }
  1502. .button-group.round.stack-for-small > *:last-child,
  1503. .button-group.round.stack-for-small > *:last-child > a,
  1504. .button-group.round.stack-for-small > *:last-child > button,
  1505. .button-group.round.stack-for-small > *:last-child > .button {
  1506. -webkit-bottom-left-radius: 1rem;
  1507. -webkit-bottom-right-radius: 1rem;
  1508. border-bottom-left-radius: 1rem;
  1509. border-bottom-right-radius: 1rem; } }
  1510. .button-bar:before, .button-bar:after {
  1511. content: " ";
  1512. display: table; }
  1513. .button-bar:after {
  1514. clear: both; }
  1515. .button-bar .button-group {
  1516. float: left;
  1517. margin-right: 0.625rem; }
  1518. .button-bar .button-group div {
  1519. overflow: hidden; }
  1520. .row {
  1521. width: 100%;
  1522. margin-left: auto;
  1523. margin-right: auto;
  1524. margin-top: 0;
  1525. margin-bottom: 0;
  1526. max-width: 62.5rem; }
  1527. .row:before, .row:after {
  1528. content: " ";
  1529. display: table; }
  1530. .row:after {
  1531. clear: both; }
  1532. .row.collapse > .column,
  1533. .row.collapse > .columns {
  1534. padding-left: 0;
  1535. padding-right: 0; }
  1536. .row.collapse .row {
  1537. margin-left: 0;
  1538. margin-right: 0; }
  1539. .row .row {
  1540. width: auto;
  1541. margin-left: -0.9375rem;
  1542. margin-right: -0.9375rem;
  1543. margin-top: 0;
  1544. margin-bottom: 0;
  1545. max-width: none; }
  1546. .row .row:before, .row .row:after {
  1547. content: " ";
  1548. display: table; }
  1549. .row .row:after {
  1550. clear: both; }
  1551. .row .row.collapse {
  1552. width: auto;
  1553. margin: 0;
  1554. max-width: none; }
  1555. .row .row.collapse:before, .row .row.collapse:after {
  1556. content: " ";
  1557. display: table; }
  1558. .row .row.collapse:after {
  1559. clear: both; }
  1560. .column,
  1561. .columns {
  1562. padding-left: 0.9375rem;
  1563. padding-right: 0.9375rem;
  1564. width: 100%;
  1565. float: left; }
  1566. [class*="column"] + [class*="column"]:last-child {
  1567. float: right; }
  1568. [class*="column"] + [class*="column"].end {
  1569. float: left; }
  1570. @media only screen {
  1571. .small-push-0 {
  1572. position: relative;
  1573. left: 0%;
  1574. right: auto; }
  1575. .small-pull-0 {
  1576. position: relative;
  1577. right: 0%;
  1578. left: auto; }
  1579. .small-push-1 {
  1580. position: relative;
  1581. left: 8.33333%;
  1582. right: auto; }
  1583. .small-pull-1 {
  1584. position: relative;
  1585. right: 8.33333%;
  1586. left: auto; }
  1587. .small-push-2 {
  1588. position: relative;
  1589. left: 16.66667%;
  1590. right: auto; }
  1591. .small-pull-2 {
  1592. position: relative;
  1593. right: 16.66667%;
  1594. left: auto; }
  1595. .small-push-3 {
  1596. position: relative;
  1597. left: 25%;
  1598. right: auto; }
  1599. .small-pull-3 {
  1600. position: relative;
  1601. right: 25%;
  1602. left: auto; }
  1603. .small-push-4 {
  1604. position: relative;
  1605. left: 33.33333%;
  1606. right: auto; }
  1607. .small-pull-4 {
  1608. position: relative;
  1609. right: 33.33333%;
  1610. left: auto; }
  1611. .small-push-5 {
  1612. position: relative;
  1613. left: 41.66667%;
  1614. right: auto; }
  1615. .small-pull-5 {
  1616. position: relative;
  1617. right: 41.66667%;
  1618. left: auto; }
  1619. .small-push-6 {
  1620. position: relative;
  1621. left: 50%;
  1622. right: auto; }
  1623. .small-pull-6 {
  1624. position: relative;
  1625. right: 50%;
  1626. left: auto; }
  1627. .small-push-7 {
  1628. position: relative;
  1629. left: 58.33333%;
  1630. right: auto; }
  1631. .small-pull-7 {
  1632. position: relative;
  1633. right: 58.33333%;
  1634. left: auto; }
  1635. .small-push-8 {
  1636. position: relative;
  1637. left: 66.66667%;
  1638. right: auto; }
  1639. .small-pull-8 {
  1640. position: relative;
  1641. right: 66.66667%;
  1642. left: auto; }
  1643. .small-push-9 {
  1644. position: relative;
  1645. left: 75%;
  1646. right: auto; }
  1647. .small-pull-9 {
  1648. position: relative;
  1649. right: 75%;
  1650. left: auto; }
  1651. .small-push-10 {
  1652. position: relative;
  1653. left: 83.33333%;
  1654. right: auto; }
  1655. .small-pull-10 {
  1656. position: relative;
  1657. right: 83.33333%;
  1658. left: auto; }
  1659. .small-push-11 {
  1660. position: relative;
  1661. left: 91.66667%;
  1662. right: auto; }
  1663. .small-pull-11 {
  1664. position: relative;
  1665. right: 91.66667%;
  1666. left: auto; }
  1667. .column,
  1668. .columns {
  1669. position: relative;
  1670. padding-left: 0.9375rem;
  1671. padding-right: 0.9375rem;
  1672. float: left; }
  1673. .small-1 {
  1674. width: 8.33333%; }
  1675. .small-2 {
  1676. width: 16.66667%; }
  1677. .small-3 {
  1678. width: 25%; }
  1679. .small-4 {
  1680. width: 33.33333%; }
  1681. .small-5 {
  1682. width: 41.66667%; }
  1683. .small-6 {
  1684. width: 50%; }
  1685. .small-7 {
  1686. width: 58.33333%; }
  1687. .small-8 {
  1688. width: 66.66667%; }
  1689. .small-9 {
  1690. width: 75%; }
  1691. .small-10 {
  1692. width: 83.33333%; }
  1693. .small-11 {
  1694. width: 91.66667%; }
  1695. .small-12 {
  1696. width: 100%; }
  1697. .small-offset-0 {
  1698. margin-left: 0% !important; }
  1699. .small-offset-1 {
  1700. margin-left: 8.33333% !important; }
  1701. .small-offset-2 {
  1702. margin-left: 16.66667% !important; }
  1703. .small-offset-3 {
  1704. margin-left: 25% !important; }
  1705. .small-offset-4 {
  1706. margin-left: 33.33333% !important; }
  1707. .small-offset-5 {
  1708. margin-left: 41.66667% !important; }
  1709. .small-offset-6 {
  1710. margin-left: 50% !important; }
  1711. .small-offset-7 {
  1712. margin-left: 58.33333% !important; }
  1713. .small-offset-8 {
  1714. margin-left: 66.66667% !important; }
  1715. .small-offset-9 {
  1716. margin-left: 75% !important; }
  1717. .small-offset-10 {
  1718. margin-left: 83.33333% !important; }
  1719. .small-offset-11 {
  1720. margin-left: 91.66667% !important; }
  1721. .small-reset-order {
  1722. margin-left: 0;
  1723. margin-right: 0;
  1724. left: auto;
  1725. right: auto;
  1726. float: left; }
  1727. .column.small-centered,
  1728. .columns.small-centered {
  1729. margin-left: auto;
  1730. margin-right: auto;
  1731. float: none; }
  1732. .column.small-uncentered,
  1733. .columns.small-uncentered {
  1734. margin-left: 0;
  1735. margin-right: 0;
  1736. float: left; }
  1737. .column.small-centered:last-child,
  1738. .columns.small-centered:last-child {
  1739. float: none; }
  1740. .column.small-uncentered:last-child,
  1741. .columns.small-uncentered:last-child {
  1742. float: left; }
  1743. .column.small-uncentered.opposite,
  1744. .columns.small-uncentered.opposite {
  1745. float: right; }
  1746. .row.small-collapse > .column,
  1747. .row.small-collapse > .columns {
  1748. padding-left: 0;
  1749. padding-right: 0; }
  1750. .row.small-collapse .row {
  1751. margin-left: 0;
  1752. margin-right: 0; }
  1753. .row.small-uncollapse > .column,
  1754. .row.small-uncollapse > .columns {
  1755. padding-left: 0.9375rem;
  1756. padding-right: 0.9375rem;
  1757. float: left; } }
  1758. @media only screen and (min-width: 40.063em) {
  1759. .medium-push-0 {
  1760. position: relative;
  1761. left: 0%;
  1762. right: auto; }
  1763. .medium-pull-0 {
  1764. position: relative;
  1765. right: 0%;
  1766. left: auto; }
  1767. .medium-push-1 {
  1768. position: relative;
  1769. left: 8.33333%;
  1770. right: auto; }
  1771. .medium-pull-1 {
  1772. position: relative;
  1773. right: 8.33333%;
  1774. left: auto; }
  1775. .medium-push-2 {
  1776. position: relative;
  1777. left: 16.66667%;
  1778. right: auto; }
  1779. .medium-pull-2 {
  1780. position: relative;
  1781. right: 16.66667%;
  1782. left: auto; }
  1783. .medium-push-3 {
  1784. position: relative;
  1785. left: 25%;
  1786. right: auto; }
  1787. .medium-pull-3 {
  1788. position: relative;
  1789. right: 25%;
  1790. left: auto; }
  1791. .medium-push-4 {
  1792. position: relative;
  1793. left: 33.33333%;
  1794. right: auto; }
  1795. .medium-pull-4 {
  1796. position: relative;
  1797. right: 33.33333%;
  1798. left: auto; }
  1799. .medium-push-5 {
  1800. position: relative;
  1801. left: 41.66667%;
  1802. right: auto; }
  1803. .medium-pull-5 {
  1804. position: relative;
  1805. right: 41.66667%;
  1806. left: auto; }
  1807. .medium-push-6 {
  1808. position: relative;
  1809. left: 50%;
  1810. right: auto; }
  1811. .medium-pull-6 {
  1812. position: relative;
  1813. right: 50%;
  1814. left: auto; }
  1815. .medium-push-7 {
  1816. position: relative;
  1817. left: 58.33333%;
  1818. right: auto; }
  1819. .medium-pull-7 {
  1820. position: relative;
  1821. right: 58.33333%;
  1822. left: auto; }
  1823. .medium-push-8 {
  1824. position: relative;
  1825. left: 66.66667%;
  1826. right: auto; }
  1827. .medium-pull-8 {
  1828. position: relative;
  1829. right: 66.66667%;
  1830. left: auto; }
  1831. .medium-push-9 {
  1832. position: relative;
  1833. left: 75%;
  1834. right: auto; }
  1835. .medium-pull-9 {
  1836. position: relative;
  1837. right: 75%;
  1838. left: auto; }
  1839. .medium-push-10 {
  1840. position: relative;
  1841. left: 83.33333%;
  1842. right: auto; }
  1843. .medium-pull-10 {
  1844. position: relative;
  1845. right: 83.33333%;
  1846. left: auto; }
  1847. .medium-push-11 {
  1848. position: relative;
  1849. left: 91.66667%;
  1850. right: auto; }
  1851. .medium-pull-11 {
  1852. position: relative;
  1853. right: 91.66667%;
  1854. left: auto; }
  1855. .column,
  1856. .columns {
  1857. position: relative;
  1858. padding-left: 0.9375rem;
  1859. padding-right: 0.9375rem;
  1860. float: left; }
  1861. .medium-1 {
  1862. width: 8.33333%; }
  1863. .medium-2 {
  1864. width: 16.66667%; }
  1865. .medium-3 {
  1866. width: 25%; }
  1867. .medium-4 {
  1868. width: 33.33333%; }
  1869. .medium-5 {
  1870. width: 41.66667%; }
  1871. .medium-6 {
  1872. width: 50%; }
  1873. .medium-7 {
  1874. width: 58.33333%; }
  1875. .medium-8 {
  1876. width: 66.66667%; }
  1877. .medium-9 {
  1878. width: 75%; }
  1879. .medium-10 {
  1880. width: 83.33333%; }
  1881. .medium-11 {
  1882. width: 91.66667%; }
  1883. .medium-12 {
  1884. width: 100%; }
  1885. .medium-offset-0 {
  1886. margin-left: 0% !important; }
  1887. .medium-offset-1 {
  1888. margin-left: 8.33333% !important; }
  1889. .medium-offset-2 {
  1890. margin-left: 16.66667% !important; }
  1891. .medium-offset-3 {
  1892. margin-left: 25% !important; }
  1893. .medium-offset-4 {
  1894. margin-left: 33.33333% !important; }
  1895. .medium-offset-5 {
  1896. margin-left: 41.66667% !important; }
  1897. .medium-offset-6 {
  1898. margin-left: 50% !important; }
  1899. .medium-offset-7 {
  1900. margin-left: 58.33333% !important; }
  1901. .medium-offset-8 {
  1902. margin-left: 66.66667% !important; }
  1903. .medium-offset-9 {
  1904. margin-left: 75% !important; }
  1905. .medium-offset-10 {
  1906. margin-left: 83.33333% !important; }
  1907. .medium-offset-11 {
  1908. margin-left: 91.66667% !important; }
  1909. .medium-reset-order {
  1910. margin-left: 0;
  1911. margin-right: 0;
  1912. left: auto;
  1913. right: auto;
  1914. float: left; }
  1915. .column.medium-centered,
  1916. .columns.medium-centered {
  1917. margin-left: auto;
  1918. margin-right: auto;
  1919. float: none; }
  1920. .column.medium-uncentered,
  1921. .columns.medium-uncentered {
  1922. margin-left: 0;
  1923. margin-right: 0;
  1924. float: left; }
  1925. .column.medium-centered:last-child,
  1926. .columns.medium-centered:last-child {
  1927. float: none; }
  1928. .column.medium-uncentered:last-child,
  1929. .columns.medium-uncentered:last-child {
  1930. float: left; }
  1931. .column.medium-uncentered.opposite,
  1932. .columns.medium-uncentered.opposite {
  1933. float: right; }
  1934. .row.medium-collapse > .column,
  1935. .row.medium-collapse > .columns {
  1936. padding-left: 0;
  1937. padding-right: 0; }
  1938. .row.medium-collapse .row {
  1939. margin-left: 0;
  1940. margin-right: 0; }
  1941. .row.medium-uncollapse > .column,
  1942. .row.medium-uncollapse > .columns {
  1943. padding-left: 0.9375rem;
  1944. padding-right: 0.9375rem;
  1945. float: left; }
  1946. .push-0 {
  1947. position: relative;
  1948. left: 0%;
  1949. right: auto; }
  1950. .pull-0 {
  1951. position: relative;
  1952. right: 0%;
  1953. left: auto; }
  1954. .push-1 {
  1955. position: relative;
  1956. left: 8.33333%;
  1957. right: auto; }
  1958. .pull-1 {
  1959. position: relative;
  1960. right: 8.33333%;
  1961. left: auto; }
  1962. .push-2 {
  1963. position: relative;
  1964. left: 16.66667%;
  1965. right: auto; }
  1966. .pull-2 {
  1967. position: relative;
  1968. right: 16.66667%;
  1969. left: auto; }
  1970. .push-3 {
  1971. position: relative;
  1972. left: 25%;
  1973. right: auto; }
  1974. .pull-3 {
  1975. position: relative;
  1976. right: 25%;
  1977. left: auto; }
  1978. .push-4 {
  1979. position: relative;
  1980. left: 33.33333%;
  1981. right: auto; }
  1982. .pull-4 {
  1983. position: relative;
  1984. right: 33.33333%;
  1985. left: auto; }
  1986. .push-5 {
  1987. position: relative;
  1988. left: 41.66667%;
  1989. right: auto; }
  1990. .pull-5 {
  1991. position: relative;
  1992. right: 41.66667%;
  1993. left: auto; }
  1994. .push-6 {
  1995. position: relative;
  1996. left: 50%;
  1997. right: auto; }
  1998. .pull-6 {
  1999. position: relative;
  2000. right: 50%;
  2001. left: auto; }
  2002. .push-7 {
  2003. position: relative;
  2004. left: 58.33333%;
  2005. right: auto; }
  2006. .pull-7 {
  2007. position: relative;
  2008. right: 58.33333%;
  2009. left: auto; }
  2010. .push-8 {
  2011. position: relative;
  2012. left: 66.66667%;
  2013. right: auto; }
  2014. .pull-8 {
  2015. position: relative;
  2016. right: 66.66667%;
  2017. left: auto; }
  2018. .push-9 {
  2019. position: relative;
  2020. left: 75%;
  2021. right: auto; }
  2022. .pull-9 {
  2023. position: relative;
  2024. right: 75%;
  2025. left: auto; }
  2026. .push-10 {
  2027. position: relative;
  2028. left: 83.33333%;
  2029. right: auto; }
  2030. .pull-10 {
  2031. position: relative;
  2032. right: 83.33333%;
  2033. left: auto; }
  2034. .push-11 {
  2035. position: relative;
  2036. left: 91.66667%;
  2037. right: auto; }
  2038. .pull-11 {
  2039. position: relative;
  2040. right: 91.66667%;
  2041. left: auto; } }
  2042. @media only screen and (min-width: 64.063em) {
  2043. .large-push-0 {
  2044. position: relative;
  2045. left: 0%;
  2046. right: auto; }
  2047. .large-pull-0 {
  2048. position: relative;
  2049. right: 0%;
  2050. left: auto; }
  2051. .large-push-1 {
  2052. position: relative;
  2053. left: 8.33333%;
  2054. right: auto; }
  2055. .large-pull-1 {
  2056. position: relative;
  2057. right: 8.33333%;
  2058. left: auto; }
  2059. .large-push-2 {
  2060. position: relative;
  2061. left: 16.66667%;
  2062. right: auto; }
  2063. .large-pull-2 {
  2064. position: relative;
  2065. right: 16.66667%;
  2066. left: auto; }
  2067. .large-push-3 {
  2068. position: relative;
  2069. left: 25%;
  2070. right: auto; }
  2071. .large-pull-3 {
  2072. position: relative;
  2073. right: 25%;
  2074. left: auto; }
  2075. .large-push-4 {
  2076. position: relative;
  2077. left: 33.33333%;
  2078. right: auto; }
  2079. .large-pull-4 {
  2080. position: relative;
  2081. right: 33.33333%;
  2082. left: auto; }
  2083. .large-push-5 {
  2084. position: relative;
  2085. left: 41.66667%;
  2086. right: auto; }
  2087. .large-pull-5 {
  2088. position: relative;
  2089. right: 41.66667%;
  2090. left: auto; }
  2091. .large-push-6 {
  2092. position: relative;
  2093. left: 50%;
  2094. right: auto; }
  2095. .large-pull-6 {
  2096. position: relative;
  2097. right: 50%;
  2098. left: auto; }
  2099. .large-push-7 {
  2100. position: relative;
  2101. left: 58.33333%;
  2102. right: auto; }
  2103. .large-pull-7 {
  2104. position: relative;
  2105. right: 58.33333%;
  2106. left: auto; }
  2107. .large-push-8 {
  2108. position: relative;
  2109. left: 66.66667%;
  2110. right: auto; }
  2111. .large-pull-8 {
  2112. position: relative;
  2113. right: 66.66667%;
  2114. left: auto; }
  2115. .large-push-9 {
  2116. position: relative;
  2117. left: 75%;
  2118. right: auto; }
  2119. .large-pull-9 {
  2120. position: relative;
  2121. right: 75%;
  2122. left: auto; }
  2123. .large-push-10 {
  2124. position: relative;
  2125. left: 83.33333%;
  2126. right: auto; }
  2127. .large-pull-10 {
  2128. position: relative;
  2129. right: 83.33333%;
  2130. left: auto; }
  2131. .large-push-11 {
  2132. position: relative;
  2133. left: 91.66667%;
  2134. right: auto; }
  2135. .large-pull-11 {
  2136. position: relative;
  2137. right: 91.66667%;
  2138. left: auto; }
  2139. .column,
  2140. .columns {
  2141. position: relative;
  2142. padding-left: 0.9375rem;
  2143. padding-right: 0.9375rem;
  2144. float: left; }
  2145. .large-1 {
  2146. width: 8.33333%; }
  2147. .large-2 {
  2148. width: 16.66667%; }
  2149. .large-3 {
  2150. width: 25%; }
  2151. .large-4 {
  2152. width: 33.33333%; }
  2153. .large-5 {
  2154. width: 41.66667%; }
  2155. .large-6 {
  2156. width: 50%; }
  2157. .large-7 {
  2158. width: 58.33333%; }
  2159. .large-8 {
  2160. width: 66.66667%; }
  2161. .large-9 {
  2162. width: 75%; }
  2163. .large-10 {
  2164. width: 83.33333%; }
  2165. .large-11 {
  2166. width: 91.66667%; }
  2167. .large-12 {
  2168. width: 100%; }
  2169. .large-offset-0 {
  2170. margin-left: 0% !important; }
  2171. .large-offset-1 {
  2172. margin-left: 8.33333% !important; }
  2173. .large-offset-2 {
  2174. margin-left: 16.66667% !important; }
  2175. .large-offset-3 {
  2176. margin-left: 25% !important; }
  2177. .large-offset-4 {
  2178. margin-left: 33.33333% !important; }
  2179. .large-offset-5 {
  2180. margin-left: 41.66667% !important; }
  2181. .large-offset-6 {
  2182. margin-left: 50% !important; }
  2183. .large-offset-7 {
  2184. margin-left: 58.33333% !important; }
  2185. .large-offset-8 {
  2186. margin-left: 66.66667% !important; }
  2187. .large-offset-9 {
  2188. margin-left: 75% !important; }
  2189. .large-offset-10 {
  2190. margin-left: 83.33333% !important; }
  2191. .large-offset-11 {
  2192. margin-left: 91.66667% !important; }
  2193. .large-reset-order {
  2194. margin-left: 0;
  2195. margin-right: 0;
  2196. left: auto;
  2197. right: auto;
  2198. float: left; }
  2199. .column.large-centered,
  2200. .columns.large-centered {
  2201. margin-left: auto;
  2202. margin-right: auto;
  2203. float: none; }
  2204. .column.large-uncentered,
  2205. .columns.large-uncentered {
  2206. margin-left: 0;
  2207. margin-right: 0;
  2208. float: left; }
  2209. .column.large-centered:last-child,
  2210. .columns.large-centered:last-child {
  2211. float: none; }
  2212. .column.large-uncentered:last-child,
  2213. .columns.large-uncentered:last-child {
  2214. float: left; }
  2215. .column.large-uncentered.opposite,
  2216. .columns.large-uncentered.opposite {
  2217. float: right; }
  2218. .row.large-collapse > .column,
  2219. .row.large-collapse > .columns {
  2220. padding-left: 0;
  2221. padding-right: 0; }
  2222. .row.large-collapse .row {
  2223. margin-left: 0;
  2224. margin-right: 0; }
  2225. .row.large-uncollapse > .column,
  2226. .row.large-uncollapse > .columns {
  2227. padding-left: 0.9375rem;
  2228. padding-right: 0.9375rem;
  2229. float: left; }
  2230. .push-0 {
  2231. position: relative;
  2232. left: 0%;
  2233. right: auto; }
  2234. .pull-0 {
  2235. position: relative;
  2236. right: 0%;
  2237. left: auto; }
  2238. .push-1 {
  2239. position: relative;
  2240. left: 8.33333%;
  2241. right: auto; }
  2242. .pull-1 {
  2243. position: relative;
  2244. right: 8.33333%;
  2245. left: auto; }
  2246. .push-2 {
  2247. position: relative;
  2248. left: 16.66667%;
  2249. right: auto; }
  2250. .pull-2 {
  2251. position: relative;
  2252. right: 16.66667%;
  2253. left: auto; }
  2254. .push-3 {
  2255. position: relative;
  2256. left: 25%;
  2257. right: auto; }
  2258. .pull-3 {
  2259. position: relative;
  2260. right: 25%;
  2261. left: auto; }
  2262. .push-4 {
  2263. position: relative;
  2264. left: 33.33333%;
  2265. right: auto; }
  2266. .pull-4 {
  2267. position: relative;
  2268. right: 33.33333%;
  2269. left: auto; }
  2270. .push-5 {
  2271. position: relative;
  2272. left: 41.66667%;
  2273. right: auto; }
  2274. .pull-5 {
  2275. position: relative;
  2276. right: 41.66667%;
  2277. left: auto; }
  2278. .push-6 {
  2279. position: relative;
  2280. left: 50%;
  2281. right: auto; }
  2282. .pull-6 {
  2283. position: relative;
  2284. right: 50%;
  2285. left: auto; }
  2286. .push-7 {
  2287. position: relative;
  2288. left: 58.33333%;
  2289. right: auto; }
  2290. .pull-7 {
  2291. position: relative;
  2292. right: 58.33333%;
  2293. left: auto; }
  2294. .push-8 {
  2295. position: relative;
  2296. left: 66.66667%;
  2297. right: auto; }
  2298. .pull-8 {
  2299. position: relative;
  2300. right: 66.66667%;
  2301. left: auto; }
  2302. .push-9 {
  2303. position: relative;
  2304. left: 75%;
  2305. right: auto; }
  2306. .pull-9 {
  2307. position: relative;
  2308. right: 75%;
  2309. left: auto; }
  2310. .push-10 {
  2311. position: relative;
  2312. left: 83.33333%;
  2313. right: auto; }
  2314. .pull-10 {
  2315. position: relative;
  2316. right: 83.33333%;
  2317. left: auto; }
  2318. .push-11 {
  2319. position: relative;
  2320. left: 91.66667%;
  2321. right: auto; }
  2322. .pull-11 {
  2323. position: relative;
  2324. right: 91.66667%;
  2325. left: auto; } }
  2326. /*
  2327. * www.g-u-i.net
  2328. */
  2329. /*
  2330. __
  2331. _________ / /___ __________
  2332. / ___/ __ \/ / __ \/ ___/ ___/
  2333. / /__/ /_/ / / /_/ / / (__ )
  2334. \___/\____/_/\____/_/ /____/
  2335. */
  2336. body {
  2337. font-size: 16px;
  2338. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2339. font-weight: 500;
  2340. font-style: normal;
  2341. line-height: 1.3; }
  2342. a {
  2343. color: #007BC2;
  2344. text-decoration: none; }
  2345. h1 {
  2346. font-size: 1.6em; }
  2347. h2 {
  2348. font-size: 1.5em; }
  2349. h3 {
  2350. font-size: 1.4em; }
  2351. h4 {
  2352. font-size: 1.3em; }
  2353. h5 {
  2354. font-size: 1.2em; }
  2355. h6 {
  2356. font-size: 1.1em; }
  2357. input, button, select, textarea {
  2358. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2359. font-weight: 500;
  2360. font-style: normal; }
  2361. #footer #footer-bottom {
  2362. text-align: center; }
  2363. #footer #footer-bottom .block {
  2364. font-size: 8px; }
  2365. /** RESPONSIVE break points */
  2366. /*
  2367. $small-breakpoint: em-calc(480) !default;
  2368. $medium-breakpoint: em-calc(768) !default;
  2369. $large-breakpoint: em-calc(980) !default;
  2370. $xlarge-breakpoint: em-calc(1200) !default;
  2371. $small-range: (0, $small-breakpoint) !default; // 0, 480px
  2372. $medium-range: ($small-breakpoint + em-calc(1), $medium-breakpoint) !default; 481px, 768px //
  2373. $large-range: ($medium-breakpoint + em-calc(1), $large-breakpoint) !default; // 769px, 980px
  2374. $xlarge-range: ($large-breakpoint + em-calc(1), $xlarge-breakpoint) !default; // 981px, 1200px
  2375. $xxlarge-range: ($xlarge-breakpoint + em-calc(1), em-calc(99999999)) !default; // 1201px, ...
  2376. // Media Queries
  2377. $screen: "only screen" !default;
  2378. $landscape: "only screen and (orientation: landscape)" !default;
  2379. $portrait: "only screen and (orientation: portrait)" !default;
  2380. $small-up: $screen !default;
  2381. $small-only: "only screen and (max-width: 40em)" !default;
  2382. $medium-up: "only screen and (min-width:40.063em)" !default;
  2383. $medium-only: "only screen and (min-width:40.063em) and (max-width:64em)" !default;
  2384. $large-up: "only screen and (min-width:64.063em)" !default;
  2385. $large-only: "only screen and (min-width:64.063em) and (max-width:90em)" !default;
  2386. $xlarge-up: "only screen and (min-width:90.063em)" !default;
  2387. $xlarge-only: "only screen and (min-width:90.063em) and (max-width:120em)" !default;
  2388. $xxlarge-up: "only screen and (min-width:120.063em)" !default;
  2389. $xxlarge-only: "only screen and (min-width:120.063em) and (max-width:99999999em)" !default;
  2390. $retina: (
  2391. "only screen and (-webkit-min-device-pixel-ratio: 2)",
  2392. "only screen and (min--moz-device-pixel-ratio: 2)",
  2393. "only screen and (-o-min-device-pixel-ratio: 2/1)",
  2394. "only screen and (min-device-pixel-ratio: 2)",
  2395. "only screen and (min-resolution: 192dpi)",
  2396. "only screen and (min-resolution: 2dppx)"
  2397. );
  2398. */
  2399. * {
  2400. box-sizing: content-box; }
  2401. *:before, *:after {
  2402. box-sizing: content-box; }
  2403. body {
  2404. overflow-y: scroll;
  2405. top: 0;
  2406. background-color: #f7f4ed; }
  2407. h1, h2, h3, h4, h5, h6 {
  2408. font-family: inherit; }
  2409. h1 {
  2410. font-weight: bold; }
  2411. figure {
  2412. margin: 0; }
  2413. input[type="checkbox"] + label {
  2414. margin: 0; }
  2415. p {
  2416. font-family: inherit;
  2417. font-weight: inherit;
  2418. font-size: inherit;
  2419. line-height: inherit;
  2420. margin-bottom: inherit; }
  2421. a {
  2422. font-size: inherit; }
  2423. .column, .columns {
  2424. padding: inherit;
  2425. float: inherit; }
  2426. /** NIVEAU 0 */
  2427. #root {
  2428. min-width: 320px; }
  2429. .ie8 #root {
  2430. min-width: 1024px; }
  2431. /** NIVEAU 1 */
  2432. #container {
  2433. margin: 0 auto;
  2434. position: relative;
  2435. transition: padding-top 0.5s ease-out, 1s, ease-out; }
  2436. /** NIVEAU 2 */
  2437. #header {
  2438. background-color: #fff;
  2439. z-index: 1000;
  2440. width: 96%;
  2441. padding-left: 2%;
  2442. padding-right: 2%; }
  2443. html.no-touch #header {
  2444. position: fixed;
  2445. top: 0;
  2446. margin: 0 auto;
  2447. min-width: 310.4px; }
  2448. .admin-menu #header {
  2449. margin-top: 35px; }
  2450. #utilities {
  2451. z-index: 999;
  2452. width: 96%;
  2453. padding-left: 2%;
  2454. padding-right: 2%; }
  2455. html.no-touch #utilities {
  2456. position: fixed;
  2457. top: 0;
  2458. margin: 0 auto;
  2459. min-width: 310.4px;
  2460. margin-top: 60px; }
  2461. html.no-touch .admin-menu #utilities {
  2462. margin-top: 85px; }
  2463. @media only screen and (max-width: 40em) {
  2464. #utilities > .region {
  2465. padding-top: 5px;
  2466. padding-bottom: 5px; } }
  2467. #main {
  2468. width: 96%;
  2469. padding-left: 2%;
  2470. padding-right: 2%;
  2471. overflow-x: hidden; }
  2472. #footer {
  2473. width: 96%;
  2474. padding-left: 2%;
  2475. padding-right: 2%;
  2476. padding-top: 2em; }
  2477. /** NIVEAU 3 */
  2478. /** NIVEAU 4 */
  2479. /** Z-INDEX */
  2480. #block-feedback-form {
  2481. z-index: 1001; }
  2482. #admin-menu {
  2483. z-index: 1002; }
  2484. #admin-toolbar {
  2485. z-index: 1003; }
  2486. /*
  2487. __ __ ___
  2488. / / / /___ ____ ___ ___ _ _|__ / /_/ / __ \/ __ `__ \/ _ \ | | / /_/ /
  2489. / __ / /_/ / / / / / / __/ | |/ / __/
  2490. /_/ /_/\____/_/ /_/ /_/\___/ |___/____/
  2491. */
  2492. body.front:not(.page-actuality) #header > .inner, body.front:not(.page-actuality) #utilities > .inner, body.front:not(.page-actuality) #center, body.front:not(.page-actuality) #footer,
  2493. body.page-whoweare #header > .inner,
  2494. body.page-whoweare #utilities > .inner,
  2495. body.page-whoweare #center,
  2496. body.page-whoweare #footer,
  2497. body.page-node-11187 #header > .inner,
  2498. body.page-node-11187 #utilities > .inner,
  2499. body.page-node-11187 #center,
  2500. body.page-node-11187 #footer,
  2501. body.page-node-11175 #header > .inner,
  2502. body.page-node-11175 #utilities > .inner,
  2503. body.page-node-11175 #center,
  2504. body.page-node-11175 #footer,
  2505. body.page-node-12324 #header > .inner,
  2506. body.page-node-12324 #utilities > .inner,
  2507. body.page-node-12324 #center,
  2508. body.page-node-12324 #footer,
  2509. body.page-user #header > .inner,
  2510. body.page-user #utilities > .inner,
  2511. body.page-user #center,
  2512. body.page-user #footer,
  2513. body.page-node-11186 #header > .inner,
  2514. body.page-node-11186 #utilities > .inner,
  2515. body.page-node-11186 #center,
  2516. body.page-node-11186 #footer,
  2517. body.page-cart #header > .inner,
  2518. body.page-cart #utilities > .inner,
  2519. body.page-cart #center,
  2520. body.page-cart #footer,
  2521. body.node-type-simplenews #header > .inner,
  2522. body.node-type-simplenews #utilities > .inner,
  2523. body.node-type-simplenews #center,
  2524. body.node-type-simplenews #footer,
  2525. body.node-type-publication #header > .inner,
  2526. body.node-type-publication #utilities > .inner,
  2527. body.node-type-publication #center,
  2528. body.node-type-publication #footer {
  2529. width: 100%;
  2530. margin-left: auto;
  2531. margin-right: auto;
  2532. margin-top: 0;
  2533. margin-bottom: 0;
  2534. max-width: 80rem; }
  2535. body.front:not(.page-actuality) #header > .inner:before, body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:before, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:before, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:before, body.front:not(.page-actuality) #footer:after,
  2536. body.page-whoweare #header > .inner:before,
  2537. body.page-whoweare #header > .inner:after,
  2538. body.page-whoweare #utilities > .inner:before,
  2539. body.page-whoweare #utilities > .inner:after,
  2540. body.page-whoweare #center:before,
  2541. body.page-whoweare #center:after,
  2542. body.page-whoweare #footer:before,
  2543. body.page-whoweare #footer:after,
  2544. body.page-node-11187 #header > .inner:before,
  2545. body.page-node-11187 #header > .inner:after,
  2546. body.page-node-11187 #utilities > .inner:before,
  2547. body.page-node-11187 #utilities > .inner:after,
  2548. body.page-node-11187 #center:before,
  2549. body.page-node-11187 #center:after,
  2550. body.page-node-11187 #footer:before,
  2551. body.page-node-11187 #footer:after,
  2552. body.page-node-11175 #header > .inner:before,
  2553. body.page-node-11175 #header > .inner:after,
  2554. body.page-node-11175 #utilities > .inner:before,
  2555. body.page-node-11175 #utilities > .inner:after,
  2556. body.page-node-11175 #center:before,
  2557. body.page-node-11175 #center:after,
  2558. body.page-node-11175 #footer:before,
  2559. body.page-node-11175 #footer:after,
  2560. body.page-node-12324 #header > .inner:before,
  2561. body.page-node-12324 #header > .inner:after,
  2562. body.page-node-12324 #utilities > .inner:before,
  2563. body.page-node-12324 #utilities > .inner:after,
  2564. body.page-node-12324 #center:before,
  2565. body.page-node-12324 #center:after,
  2566. body.page-node-12324 #footer:before,
  2567. body.page-node-12324 #footer:after,
  2568. body.page-user #header > .inner:before,
  2569. body.page-user #header > .inner:after,
  2570. body.page-user #utilities > .inner:before,
  2571. body.page-user #utilities > .inner:after,
  2572. body.page-user #center:before,
  2573. body.page-user #center:after,
  2574. body.page-user #footer:before,
  2575. body.page-user #footer:after,
  2576. body.page-node-11186 #header > .inner:before,
  2577. body.page-node-11186 #header > .inner:after,
  2578. body.page-node-11186 #utilities > .inner:before,
  2579. body.page-node-11186 #utilities > .inner:after,
  2580. body.page-node-11186 #center:before,
  2581. body.page-node-11186 #center:after,
  2582. body.page-node-11186 #footer:before,
  2583. body.page-node-11186 #footer:after,
  2584. body.page-cart #header > .inner:before,
  2585. body.page-cart #header > .inner:after,
  2586. body.page-cart #utilities > .inner:before,
  2587. body.page-cart #utilities > .inner:after,
  2588. body.page-cart #center:before,
  2589. body.page-cart #center:after,
  2590. body.page-cart #footer:before,
  2591. body.page-cart #footer:after,
  2592. body.node-type-simplenews #header > .inner:before,
  2593. body.node-type-simplenews #header > .inner:after,
  2594. body.node-type-simplenews #utilities > .inner:before,
  2595. body.node-type-simplenews #utilities > .inner:after,
  2596. body.node-type-simplenews #center:before,
  2597. body.node-type-simplenews #center:after,
  2598. body.node-type-simplenews #footer:before,
  2599. body.node-type-simplenews #footer:after,
  2600. body.node-type-publication #header > .inner:before,
  2601. body.node-type-publication #header > .inner:after,
  2602. body.node-type-publication #utilities > .inner:before,
  2603. body.node-type-publication #utilities > .inner:after,
  2604. body.node-type-publication #center:before,
  2605. body.node-type-publication #center:after,
  2606. body.node-type-publication #footer:before,
  2607. body.node-type-publication #footer:after {
  2608. content: " ";
  2609. display: table; }
  2610. body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:after,
  2611. body.page-whoweare #header > .inner:after,
  2612. body.page-whoweare #utilities > .inner:after,
  2613. body.page-whoweare #center:after,
  2614. body.page-whoweare #footer:after,
  2615. body.page-node-11187 #header > .inner:after,
  2616. body.page-node-11187 #utilities > .inner:after,
  2617. body.page-node-11187 #center:after,
  2618. body.page-node-11187 #footer:after,
  2619. body.page-node-11175 #header > .inner:after,
  2620. body.page-node-11175 #utilities > .inner:after,
  2621. body.page-node-11175 #center:after,
  2622. body.page-node-11175 #footer:after,
  2623. body.page-node-12324 #header > .inner:after,
  2624. body.page-node-12324 #utilities > .inner:after,
  2625. body.page-node-12324 #center:after,
  2626. body.page-node-12324 #footer:after,
  2627. body.page-user #header > .inner:after,
  2628. body.page-user #utilities > .inner:after,
  2629. body.page-user #center:after,
  2630. body.page-user #footer:after,
  2631. body.page-node-11186 #header > .inner:after,
  2632. body.page-node-11186 #utilities > .inner:after,
  2633. body.page-node-11186 #center:after,
  2634. body.page-node-11186 #footer:after,
  2635. body.page-cart #header > .inner:after,
  2636. body.page-cart #utilities > .inner:after,
  2637. body.page-cart #center:after,
  2638. body.page-cart #footer:after,
  2639. body.node-type-simplenews #header > .inner:after,
  2640. body.node-type-simplenews #utilities > .inner:after,
  2641. body.node-type-simplenews #center:after,
  2642. body.node-type-simplenews #footer:after,
  2643. body.node-type-publication #header > .inner:after,
  2644. body.node-type-publication #utilities > .inner:after,
  2645. body.node-type-publication #center:after,
  2646. body.node-type-publication #footer:after {
  2647. clear: both; }
  2648. .op-visible {
  2649. visibility: visible; }
  2650. .csstransitions .op-visible {
  2651. opacity: 1;
  2652. transition: opacity 0.3s ease-out; }
  2653. .op-hidden {
  2654. visibility: hidden; }
  2655. .op-hidden > * {
  2656. margin-top: -100000px; }
  2657. .csstransition .op-hidden {
  2658. opacity: 0;
  2659. transition: visibility 0s 0.3s; }
  2660. .csstransition .op-hidden > * {
  2661. transition: margin-top 0s 0.3s; }
  2662. /** colomnized() */
  2663. /*
  2664. __ ___________ ____ __________
  2665. / / / / ____/ | / __ \/ ____/ __ / /_/ / __/ / /| | / / / / __/ / /_/ /
  2666. / __ / /___/ ___ |/ /_/ / /___/ _, _/
  2667. /_/ /_/_____/_/ |_/_____/_____/_/ |_|
  2668. */
  2669. #header {
  2670. padding-top: 5px;
  2671. padding-bottom: 10px;
  2672. height: 45px; }
  2673. #header a, #header a:active, #header a:visited {
  2674. color: #000; }
  2675. #header .logo {
  2676. display: moz-inline-stack;
  2677. display: inline-block;
  2678. vertical-align: top;
  2679. zoom: 1;
  2680. *display: inline; }
  2681. #header .logo h1 {
  2682. margin: 0;
  2683. font-size: 36px;
  2684. display: moz-inline-stack;
  2685. display: inline-block;
  2686. vertical-align: top;
  2687. zoom: 1;
  2688. *display: inline;
  2689. vertical-align: baseline;
  2690. position: relative;
  2691. line-height: 1.25; }
  2692. #header .logo h1 a:hover {
  2693. text-decoration: none; }
  2694. #header .logo span.slogan {
  2695. font-size: 14px;
  2696. margin-top: -3px;
  2697. margin-left: -0.5em;
  2698. font-weight: 900; }
  2699. @media only screen and (max-width: 40em) {
  2700. #header .logo span.slogan {
  2701. display: none; } }
  2702. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2703. #header .logo span.slogan {
  2704. display: block;
  2705. margin-left: 0.1em; } }
  2706. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  2707. #header .logo span.slogan {
  2708. display: block;
  2709. margin-left: 0.1em; } }
  2710. .ie8 #header .logo span.slogan {
  2711. position: absolute;
  2712. margin-top: 22px; }
  2713. #header #header-blocks {
  2714. padding-top: 17px;
  2715. float: right;
  2716. text-align: right;
  2717. text-transform: capitalize; }
  2718. #header #header-blocks > .region {
  2719. display: moz-inline-stack;
  2720. display: inline-block;
  2721. vertical-align: top;
  2722. zoom: 1;
  2723. *display: inline;
  2724. vertical-align: middle;
  2725. padding-right: 1em;
  2726. margin-right: 1em;
  2727. border-right: 1px solid #707070; }
  2728. @media only screen and (max-width: 40em) {
  2729. #header #header-blocks > .region {
  2730. padding-right: 0.3em;
  2731. margin-right: 0.3em; } }
  2732. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2733. #header #header-blocks > .region {
  2734. padding-right: 0.3em;
  2735. margin-right: 0.3em; } }
  2736. #header #header-blocks > .region:last-child {
  2737. border: none;
  2738. padding: 0;
  2739. margin: 0; }
  2740. #header #header-blocks .block {
  2741. display: moz-inline-stack;
  2742. display: inline-block;
  2743. vertical-align: top;
  2744. zoom: 1;
  2745. *display: inline;
  2746. vertical-align: middle; }
  2747. #header #header-blocks .block h2 {
  2748. font-size: 12px;
  2749. margin: 0;
  2750. line-height: 1.2;
  2751. font-weight: normal; }
  2752. #header #header-blocks .block:not(:last-child) {
  2753. padding-right: 0.8em; }
  2754. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  2755. #header #header-blocks .block:not(:last-child) {
  2756. padding-right: 0.3em; } }
  2757. #header #header-blocks #block-materio-user-front-link a {
  2758. font-size: 12px; }
  2759. #header #header-blocks #block-materio-user-front-link span.text {
  2760. display: none; }
  2761. #header #header-blocks #block-user-login {
  2762. font-size: 12px;
  2763. text-align: left;
  2764. position: relative; }
  2765. #header #header-blocks #block-user-login h2 {
  2766. padding-right: 5px; }
  2767. #header #header-blocks #block-user-login h2 i {
  2768. vertical-align: text-bottom;
  2769. margin: 0 2px 2px 0; }
  2770. #header #header-blocks #block-user-login form#user-login-form {
  2771. position: absolute;
  2772. overflow: hidden;
  2773. right: 0;
  2774. margin: 0;
  2775. height: 0;
  2776. transition: height 0.3s ease-out; }
  2777. #header #header-blocks #block-user-login form#user-login-form > div {
  2778. padding: 5px;
  2779. margin: 5px;
  2780. background-color: #e6e6e6;
  2781. border-radius: 5px;
  2782. background-clip: padding-box;
  2783. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  2784. #header #header-blocks #block-user-login form#user-login-form .form-item {
  2785. margin: 0;
  2786. padding-bottom: 5px; }
  2787. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  2788. margin: 0;
  2789. font-size: 10px; }
  2790. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  2791. width: 150px;
  2792. height: 2em; }
  2793. #header #header-blocks #block-user-login form#user-login-form .form-actions {
  2794. margin: 5px 0;
  2795. padding: 0;
  2796. background-color: transparent;
  2797. text-align: right; }
  2798. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit {
  2799. font-size: 16px;
  2800. padding: 0.1em 0.6em 0.2em;
  2801. border-radius: 0.3em;
  2802. background-clip: padding-box;
  2803. font-weight: bold;
  2804. margin-bottom: 4px;
  2805. border: 2px solid #E6DE1C;
  2806. background-color: #E6DE1C;
  2807. color: #fff;
  2808. cursor: pointer;
  2809. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  2810. transition: text-shadow 0.2s ease-out; }
  2811. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:hover, #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:focus {
  2812. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  2813. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:active {
  2814. transition: text-shadow 0s ease-out;
  2815. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  2816. #header #header-blocks #block-user-login form#user-login-form div.newpass {
  2817. text-align: right; }
  2818. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  2819. font-size: 10px;
  2820. color: #686868;
  2821. text-transform: lowercase; }
  2822. 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 {
  2823. height: 300px;
  2824. z-index: 1000; }
  2825. @media only screen and (max-width: 40em) {
  2826. #header #header-blocks #block-user-login span.login {
  2827. display: none; } }
  2828. #header #header-blocks #block-ajax-register-ajax-register-block {
  2829. font-size: 12px;
  2830. text-transform: lowercase; }
  2831. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2832. font-size: 12px;
  2833. line-height: 1.5; }
  2834. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2835. vertical-align: text-bottom;
  2836. margin: 0 5px 1px 0;
  2837. line-height: 1; }
  2838. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2839. text-transform: lowercase; }
  2840. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2841. display: none;
  2842. margin-left: 5px; }
  2843. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2844. margin: 0 0.5em 0 0.5em; }
  2845. @media only screen and (max-width: 40em) {
  2846. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2847. display: none; } }
  2848. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2849. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2850. display: none; } }
  2851. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  2852. position: relative; }
  2853. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  2854. margin: 0;
  2855. font-size: 12px;
  2856. line-height: 1.5; }
  2857. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2858. line-height: 1; }
  2859. @media only screen and (max-width: 40em) {
  2860. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2861. display: none; } }
  2862. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2863. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2864. display: none; } }
  2865. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2866. position: absolute;
  2867. z-index: 20;
  2868. background-color: rgba(255, 255, 255, 0.9);
  2869. min-width: 100%;
  2870. margin: 0 0 0 -5px;
  2871. border-radius: 3px;
  2872. background-clip: padding-box;
  2873. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  2874. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2875. background: #FFF; }
  2876. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2877. margin: 0; }
  2878. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2879. list-style: none;
  2880. font-size: 12px;
  2881. font-weight: 700;
  2882. padding: 0 10px;
  2883. text-align: left;
  2884. width: 200px;
  2885. height: 0;
  2886. overflow: hidden;
  2887. transition: height 0.3s ease-out; }
  2888. #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 {
  2889. white-space: nowrap;
  2890. cursor: pointer; }
  2891. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2892. max-width: 150px; }
  2893. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2894. font-weight: 300;
  2895. padding: 0 5px; }
  2896. #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 {
  2897. padding-right: 5px; }
  2898. .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 {
  2899. visibility: hidden; }
  2900. .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 > * {
  2901. margin-top: -100000px; }
  2902. .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 {
  2903. opacity: 0;
  2904. transition: visibility 0s 0.3s; }
  2905. .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 > * {
  2906. transition: margin-top 0s 0.3s; }
  2907. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2908. padding-bottom: 5px; }
  2909. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2910. height: 15px;
  2911. padding: 3px 10px; }
  2912. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2913. vertical-align: text-bottom;
  2914. margin: 0 2px 2px 0; }
  2915. @media only screen and (max-width: 40em) {
  2916. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2917. display: none; } }
  2918. #header #header-blocks #headerblock-right .block {
  2919. display: moz-inline-stack;
  2920. display: inline-block;
  2921. vertical-align: top;
  2922. zoom: 1;
  2923. *display: inline;
  2924. vertical-align: middle;
  2925. padding: 0; }
  2926. #header #header-blocks #headerblock-right .block:first-child {
  2927. padding: 0; }
  2928. @media only screen and (max-width: 40em) {
  2929. #header #header-blocks #headerblock-left {
  2930. display: none; } }
  2931. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2932. #header #header-blocks #headerblock-left {
  2933. display: none; } }
  2934. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  2935. margin: 0;
  2936. padding: 0;
  2937. list-style-type: none;
  2938. font-size: 12px;
  2939. line-height: 1; }
  2940. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  2941. display: none; }
  2942. .ie8 #header #header-blocks #block-locale-language {
  2943. padding-top: 5px; }
  2944. #header #header-blocks #block-locale-language ul {
  2945. padding-top: 0.155em; }
  2946. #header #header-blocks #block-locale-language li {
  2947. font-size: 0.9em;
  2948. padding: 0.33em 0.35em 0.3em;
  2949. border-radius: 3px;
  2950. background-clip: padding-box;
  2951. background-color: #808080;
  2952. transition: background-color 0.3s ease-out; }
  2953. #header #header-blocks #block-locale-language li, #header #header-blocks #block-locale-language li > * {
  2954. color: #fff;
  2955. text-transform: uppercase; }
  2956. #header #header-blocks #block-locale-language li:hover {
  2957. background-color: #1A1A1A; }
  2958. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2959. display: none; }
  2960. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2961. vertical-align: text-bottom;
  2962. margin: 0 0 2px 0; }
  2963. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2964. font-size: 12px;
  2965. list-style: none; }
  2966. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2967. display: inline; }
  2968. @media only screen and (min-width: 40.063em) {
  2969. #header #header-blocks #block-menu-menu-top-menu h2 {
  2970. display: none; }
  2971. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2972. display: moz-inline-stack;
  2973. display: inline-block;
  2974. vertical-align: top;
  2975. zoom: 1;
  2976. *display: inline;
  2977. vertical-align: middle;
  2978. padding: 0;
  2979. margin: 0; }
  2980. #header #header-blocks #block-menu-menu-top-menu a {
  2981. padding: 0 0.5em 0 0; } }
  2982. @media only screen and (max-width: 40em) {
  2983. #header #header-blocks #block-menu-menu-top-menu {
  2984. position: relative; }
  2985. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  2986. display: none; }
  2987. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  2988. position: absolute;
  2989. width: 150px;
  2990. display: none;
  2991. right: 0;
  2992. padding-top: 5px; }
  2993. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  2994. background-color: #e6e6e6;
  2995. border-radius: 5px;
  2996. background-clip: padding-box;
  2997. padding: 0 5px 5px 5px;
  2998. margin: 0;
  2999. text-align: right; }
  3000. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  3001. height: 0;
  3002. overflow: hidden;
  3003. transition: height 0.3s ease-out; }
  3004. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  3005. display: block;
  3006. width: 100%;
  3007. padding: 2px 5px;
  3008. font-size: 12px; }
  3009. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  3010. z-index: 1000; }
  3011. 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 {
  3012. display: block; }
  3013. 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 {
  3014. height: 25px; } }
  3015. #header #header-blocks #block-materio-user-old-database-link a {
  3016. font-size: 12px; }
  3017. #header #header-blocks #block-social-media-links-social-media-links ul.social-media-links {
  3018. margin: 0;
  3019. line-height: 0; }
  3020. #header #header-blocks #block-social-media-links-social-media-links li {
  3021. line-height: 1; }
  3022. #header #header-blocks #block-social-media-links-social-media-links li.facebook a {
  3023. background-image: url("../img/socialicons/svg/Facebook-color.svg"); }
  3024. #header #header-blocks #block-social-media-links-social-media-links li.twitter a {
  3025. background-image: url("../img/socialicons/svg/Twitter-color.svg"); }
  3026. #header #header-blocks #block-social-media-links-social-media-links li.linkedin a {
  3027. background-image: url("../img/socialicons/svg/LinkedIn-color.svg"); }
  3028. #header #header-blocks #block-social-media-links-social-media-links li.pinterest a {
  3029. background-image: url("../img/socialicons/svg/Pinterest-color.svg"); }
  3030. #header #header-blocks #block-social-media-links-social-media-links li.vimeo a {
  3031. background-image: url("../img/socialicons/svg/Vimeo-color.svg"); }
  3032. #header #header-blocks #block-social-media-links-social-media-links li.rss a {
  3033. background-image: url("../img/socialicons/svg/RSS-color.svg"); }
  3034. #header #header-blocks #block-social-media-links-social-media-links a {
  3035. display: block;
  3036. width: 16px;
  3037. height: 16px;
  3038. background-position: center;
  3039. background-repeat: no-repeat;
  3040. background-size: contain; }
  3041. #header #header-blocks #block-social-media-links-social-media-links img {
  3042. display: none; }
  3043. /*
  3044. __ _ ___ __ _
  3045. __ __/ /_(_) (_) /_(_)__ _____
  3046. / / / / __/ / / / __/ / _ \/ ___/
  3047. / /_/ / /_/ / / / /_/ / __(__ )
  3048. \__,_/\__/_/_/_/\__/_/\___/____/
  3049. */
  3050. #utilities {
  3051. background-color: #fff;
  3052. margin-top: 60px; }
  3053. .not-logged-in #utilities {
  3054. overflow: hidden; }
  3055. #utilities > .inner {
  3056. padding: 0.5em 0; }
  3057. #utilities.closed {
  3058. height: 0; }
  3059. #utilities.closed .tabs, #utilities.closed .node-didactique {
  3060. display: none; }
  3061. @media only screen and (max-width: 40em) {
  3062. #utilities {
  3063. margin-top: 0; } }
  3064. /*
  3065. _
  3066. ____ ___ ____ _(_)___
  3067. / __ `__ \/ __ `/ / __ / / / / / / /_/ / / / / /
  3068. /_/ /_/ /_/\__,_/_/_/ /_/
  3069. */
  3070. body.home-v2 #main {
  3071. padding-top: 60px; }
  3072. /*
  3073. __ _ __ ___ __ __ __
  3074. / /_ (_)___ _/ /_ / (_)___ _/ /_ / /____ ____/ /
  3075. / __ \/ / __ `/ __ \/ / / __ `/ __ \/ __/ _ \/ __ /
  3076. / / / / / /_/ / / / / / / /_/ / / / / /_/ __/ /_/ /
  3077. /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/
  3078. /____/ /____/
  3079. */
  3080. #highlighted {
  3081. border-radius: 5px;
  3082. background-clip: padding-box;
  3083. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  3084. padding: 0.5em;
  3085. position: relative; }
  3086. @media only screen and (min-width: 40.063em) {
  3087. #highlighted {
  3088. margin: 20px 0 6px; }
  3089. #highlighted .block {
  3090. display: moz-inline-stack;
  3091. display: inline-block;
  3092. vertical-align: top;
  3093. zoom: 1;
  3094. *display: inline;
  3095. vertical-align: top; }
  3096. #highlighted .block-materio-didactique {
  3097. width: 65%; }
  3098. #highlighted .block-materio-didactique .side {
  3099. display: moz-inline-stack;
  3100. display: inline-block;
  3101. vertical-align: top;
  3102. zoom: 1;
  3103. *display: inline;
  3104. vertical-align: top;
  3105. position: relative; }
  3106. #highlighted .block-materio-didactique .group-sideleft {
  3107. width: 65%; }
  3108. #highlighted .block-materio-didactique .group-sideright {
  3109. width: 30%; }
  3110. #highlighted .block-materio-didactique .field-name-title-field {
  3111. font-size: 24px; }
  3112. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3113. width: 47%; }
  3114. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3115. margin-right: 2%; }
  3116. #highlighted #block-materio-user-user-register {
  3117. width: 30%;
  3118. padding: 5px;
  3119. height: 290px; } }
  3120. @media only screen {
  3121. #highlighted .block-materio-didactique .side {
  3122. display: moz-inline-stack;
  3123. display: inline-block;
  3124. vertical-align: top;
  3125. zoom: 1;
  3126. *display: inline;
  3127. vertical-align: top; } }
  3128. @media only screen and (max-width: 40em) {
  3129. #highlighted {
  3130. margin: 10px 0 6px; }
  3131. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3132. width: 100%; }
  3133. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3134. font-size: 20px;
  3135. font-weight: normal !important; }
  3136. #highlighted .block-materio-didactique .node-didactique .field-name-title-field:after {
  3137. content: "\a0\f10b";
  3138. font-family: "foundation-icons";
  3139. font-style: normal;
  3140. font-weight: normal;
  3141. font-variant: normal;
  3142. text-transform: none;
  3143. line-height: 1;
  3144. -webkit-font-smoothing: antialiased;
  3145. display: inline-block;
  3146. text-decoration: inherit;
  3147. font-size: 16px; }
  3148. html.js #highlighted .block-materio-didactique .node-didactique {
  3149. height: auto;
  3150. height: 30px;
  3151. overflow: hidden; }
  3152. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3153. height: auto; } }
  3154. .oldie #highlighted .block {
  3155. display: moz-inline-stack;
  3156. display: inline-block;
  3157. vertical-align: top;
  3158. zoom: 1;
  3159. *display: inline; }
  3160. #highlighted .block-materio-didactique .node-didactique {
  3161. font-size: 14px;
  3162. background-color: #fff;
  3163. margin: 0 auto; }
  3164. #highlighted .block-materio-didactique .node-didactique .side {
  3165. position: relative; }
  3166. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3167. font-weight: 900;
  3168. font-style: italic;
  3169. padding: 5px 0; }
  3170. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3171. text-align: center; }
  3172. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3173. display: inline; }
  3174. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3175. display: none; }
  3176. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3177. display: none; }
  3178. html.js #highlighted .block-materio-didactique {
  3179. position: relative;
  3180. overflow: hidden; }
  3181. html.js #highlighted .block-materio-didactique .slides {
  3182. height: 270px;
  3183. margin: 0;
  3184. position: relative;
  3185. width: 100%;
  3186. overflow: hidden; }
  3187. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3188. position: absolute;
  3189. width: 100%;
  3190. height: 100%;
  3191. top: 0;
  3192. left: 0; }
  3193. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3194. height: 30px; }
  3195. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3196. height: 240px; }
  3197. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3198. height: 100%; }
  3199. @media only screen and (max-width: 40em) {
  3200. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3201. width: 290px;
  3202. height: 163.125px; } }
  3203. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  3204. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3205. width: 216px;
  3206. height: 121.5px; } }
  3207. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  3208. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3209. width: 216px;
  3210. height: 121.5px; } }
  3211. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  3212. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3213. width: 280px;
  3214. height: 157.5px; } }
  3215. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  3216. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3217. width: 340px;
  3218. height: 191.25px; } }
  3219. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3220. height: 100%;
  3221. width: 100%; }
  3222. html.js #highlighted .block-materio-didactique .tabs {
  3223. height: 30px;
  3224. margin: 0;
  3225. text-align: left; }
  3226. html.js #highlighted .block-materio-didactique .tabs > * {
  3227. display: moz-inline-stack;
  3228. display: inline-block;
  3229. vertical-align: top;
  3230. zoom: 1;
  3231. *display: inline;
  3232. vertical-align: top;
  3233. padding: 5px 10px;
  3234. font-size: 12px;
  3235. cursor: pointer;
  3236. color: #bfbfbf; }
  3237. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3238. color: #3f3f3f; }
  3239. /*
  3240. __ __ __ _ __
  3241. / /_ / /___ _____/ /__ ________ ____ _(_)____/ /____ _____
  3242. / __ \/ / __ \/ ___/ //_/ / ___/ _ \/ __ `/ / ___/ __/ _ \/ ___/
  3243. / /_/ / / /_/ / /__/ ,< / / / __/ /_/ / (__ ) /_/ __/ /
  3244. /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/
  3245. /____/
  3246. */
  3247. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3248. min-height: 120px;
  3249. padding: 5px;
  3250. background: transparent url("../img/register-block.png") no-repeat 100% 90%; }
  3251. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3252. max-width: 250px;
  3253. float: right;
  3254. background-image: none; }
  3255. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3256. font-weight: 900;
  3257. font-style: italic;
  3258. padding: 5px 0;
  3259. margin: 0;
  3260. line-height: 1;
  3261. background-color: #fff;
  3262. display: moz-inline-stack;
  3263. display: inline-block;
  3264. vertical-align: top;
  3265. zoom: 1;
  3266. *display: inline;
  3267. min-width: 50%; }
  3268. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3269. font-size: 24px; }
  3270. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3271. font-size: 16px; }
  3272. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3273. margin: 0;
  3274. background-color: rgba(255, 255, 255, 0.7);
  3275. padding-bottom: 5px;
  3276. display: moz-inline-stack;
  3277. display: inline-block;
  3278. vertical-align: top;
  3279. zoom: 1;
  3280. *display: inline; }
  3281. #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 {
  3282. margin: 0;
  3283. display: moz-inline-stack;
  3284. display: inline-block;
  3285. vertical-align: top;
  3286. zoom: 1;
  3287. *display: inline;
  3288. vertical-align: middle;
  3289. position: relative; }
  3290. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3291. margin-right: 5px; }
  3292. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3293. font-size: 12px;
  3294. border-radius: 5px;
  3295. background-clip: padding-box;
  3296. margin-bottom: 4px; }
  3297. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3298. margin-right: 5px; }
  3299. #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 {
  3300. width: 11em; }
  3301. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3302. width: 7em; }
  3303. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3304. position: absolute;
  3305. bottom: 100%;
  3306. z-index: 9999;
  3307. background-image: none;
  3308. height: auto;
  3309. padding: 5px;
  3310. border-radius: 5px;
  3311. background-clip: padding-box;
  3312. margin-bottom: 10px;
  3313. font-size: 10px;
  3314. background-color: #fff;
  3315. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3316. transition: bottom 0.1s ease-out; }
  3317. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3318. background-color: #f3968d;
  3319. color: #fff; }
  3320. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3321. display: none; }
  3322. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3323. font-size: 16px;
  3324. padding: 0.1em 0.6em 0.2em;
  3325. border-radius: 0.3em;
  3326. background-clip: padding-box;
  3327. font-weight: bold;
  3328. margin-bottom: 4px; }
  3329. #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 {
  3330. margin-bottom: 0;
  3331. display: block;
  3332. line-height: 1; }
  3333. #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 > * {
  3334. display: moz-inline-stack;
  3335. display: inline-block;
  3336. vertical-align: top;
  3337. zoom: 1;
  3338. *display: inline;
  3339. vertical-align: middle;
  3340. margin: 0; }
  3341. #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 {
  3342. font-size: 10px;
  3343. background-color: #fff;
  3344. border-radius: 3px;
  3345. background-clip: padding-box; }
  3346. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3347. border: 2px solid #69CDCF;
  3348. background-color: #69CDCF;
  3349. color: #fff;
  3350. cursor: pointer;
  3351. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3352. transition: text-shadow 0.2s ease-out; }
  3353. #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 {
  3354. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3355. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3356. transition: text-shadow 0s ease-out;
  3357. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3358. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3359. background-color: #ddd;
  3360. border: 2px solid #ddd; }
  3361. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3362. border: 2px solid #E6DE1C;
  3363. background-color: #E6DE1C;
  3364. color: #fff;
  3365. cursor: pointer;
  3366. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3367. transition: text-shadow 0.2s ease-out; }
  3368. #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 {
  3369. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3370. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3371. transition: text-shadow 0s ease-out;
  3372. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3373. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3374. padding-top: 0.5em; }
  3375. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3376. font-size: 12px; }
  3377. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3378. display: block; }
  3379. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3380. font-size: 12px; }
  3381. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3382. display: block;
  3383. width: 5em;
  3384. font-size: 16px;
  3385. padding: 0.1em 0.3em 0.2em;
  3386. border-radius: 0.3em;
  3387. background-clip: padding-box;
  3388. font-weight: bold;
  3389. border: 2px solid #69CDCF;
  3390. background-color: #69CDCF;
  3391. color: #fff;
  3392. cursor: pointer;
  3393. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3394. transition: text-shadow 0.2s ease-out;
  3395. text-align: center;
  3396. text-decoration: none; }
  3397. #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 {
  3398. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3399. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3400. transition: text-shadow 0s ease-out;
  3401. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3402. @media only screen and (max-width: 40em) {
  3403. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3404. background-position: 160% 50%;
  3405. min-height: 60px;
  3406. padding: 15px 0; }
  3407. #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 {
  3408. width: 7em; } }
  3409. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3410. color: #b94a48;
  3411. font-size: 12px; }
  3412. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3413. padding: 2em;
  3414. width: 400px;
  3415. background-color: #fff;
  3416. padding: 5px;
  3417. border-radius: 5px;
  3418. background-clip: padding-box;
  3419. box-shadow: 0 0 7px rgba(0, 0, 0, 0.4); }
  3420. .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 {
  3421. display: none; }
  3422. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3423. font-size: 12px; }
  3424. /*
  3425. __ __ __
  3426. _________ ____ / /____ ____ / /_ / /_____ ____
  3427. / ___/ __ \/ __ \/ __/ _ \/ __ \/ __/_____/ __/ __ \/ __ / /__/ /_/ / / / / /_/ __/ / / / /_/_____/ /_/ /_/ / /_/ /
  3428. \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/
  3429. /_/
  3430. */
  3431. #content-top {
  3432. /*
  3433. ___ _ _ _ _
  3434. | _| |___ ___ ___| |_|___| |_
  3435. | _| | .'| . |___| | |_ -| _|
  3436. |_| |_|__,|_ | |_|_|___|_|
  3437. |___|
  3438. */ }
  3439. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3440. font-size: 10px;
  3441. color: #666666;
  3442. font-weight: 300; }
  3443. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3444. margin-top: 40px; }
  3445. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3446. font-size: 12px;
  3447. font-weight: 700;
  3448. line-height: 1.2;
  3449. margin: 0;
  3450. color: #000; }
  3451. #content-top #block-materio-flag-materio-flag-mybookmarks h2 a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks h2 i.fi-x, #content-top #block-materio-flag-materio-flag-mylists h2 a.open-list, #content-top #block-materio-flag-materio-flag-mylists h2 i.fi-x {
  3452. display: moz-inline-stack;
  3453. display: inline-block;
  3454. vertical-align: top;
  3455. zoom: 1;
  3456. *display: inline;
  3457. cursor: pointer;
  3458. color: #000;
  3459. margin-left: 0.5em;
  3460. opacity: 0;
  3461. transition: opacity 0.1s ease-out; }
  3462. #content-top #block-materio-flag-materio-flag-mybookmarks h2 i:before, #content-top #block-materio-flag-materio-flag-mylists h2 i:before {
  3463. font-size: 14px; }
  3464. #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 {
  3465. opacity: 1; }
  3466. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3467. cursor: pointer; }
  3468. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3469. height: 0;
  3470. overflow: hidden; }
  3471. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3472. height: auto; }
  3473. #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 {
  3474. overflow: hidden; }
  3475. #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 {
  3476. height: 0;
  3477. overflow: hidden; }
  3478. #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 {
  3479. height: auto; }
  3480. #tool-bar {
  3481. position: relative; }
  3482. #tool-bar .inner-content {
  3483. padding-top: 10px;
  3484. padding-bottom: 10px; }
  3485. #tool-bar .inner-content > * {
  3486. display: moz-inline-stack;
  3487. display: inline-block;
  3488. vertical-align: top;
  3489. zoom: 1;
  3490. *display: inline;
  3491. vertical-align: middle; }
  3492. .oldie #tool-bar {
  3493. background-color: #B1ADAD;
  3494. padding: 0 10px; }
  3495. #tool-bar .btn-group {
  3496. padding: 0;
  3497. border-radius: 3px;
  3498. background-clip: padding-box;
  3499. background-color: #fff;
  3500. margin: 4px;
  3501. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3502. transition: box-shadow 0.3s ease-out; }
  3503. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3504. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3505. #tool-bar .btn-group:active {
  3506. transition: box-shadow 0s ease-out;
  3507. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3508. #tool-bar #block-materio-page-title-materio-page-title {
  3509. margin: 0 10px 0 0; }
  3510. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3511. margin: 0;
  3512. font-size: 24px;
  3513. text-transform: capitalize;
  3514. font-weight: 300; }
  3515. #tool-bar #block-materio-page-title-materio-page-title i {
  3516. vertical-align: middle;
  3517. margin-right: 5px; }
  3518. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3519. visibility: hidden; }
  3520. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3521. margin-top: -100000px; }
  3522. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3523. opacity: 0;
  3524. transition: visibility 0s 0.3s; }
  3525. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3526. transition: margin-top 0s 0.3s; }
  3527. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3528. margin: 0 0 0 5px; }
  3529. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3530. visibility: visible; }
  3531. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3532. opacity: 1;
  3533. transition: opacity 0.3s ease-out; }
  3534. @media only screen and (max-width: 40em) {
  3535. #tool-bar #block-materio-page-title-materio-page-title {
  3536. display: block; } }
  3537. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3538. display: moz-inline-stack;
  3539. display: inline-block;
  3540. vertical-align: top;
  3541. zoom: 1;
  3542. *display: inline;
  3543. margin: 0 2px; }
  3544. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3545. cursor: normal; }
  3546. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3547. display: none;
  3548. font-size: 10px; }
  3549. @media only screen and (max-width: 40em) {
  3550. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3551. display: block; }
  3552. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3553. display: none; } }
  3554. @media only screen and (max-width: 40em) {
  3555. 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 {
  3556. display: block; } }
  3557. @media only screen and (max-width: 40em) {
  3558. 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 {
  3559. display: block; } }
  3560. #tool-bar #block-materio-search-api-materio-search-api-search {
  3561. float: right; }
  3562. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3563. display: moz-inline-stack;
  3564. display: inline-block;
  3565. vertical-align: top;
  3566. zoom: 1;
  3567. *display: inline;
  3568. margin: 0 0 0 10px;
  3569. padding: 3px 10px;
  3570. background-color: #fff;
  3571. border-radius: 3px;
  3572. background-clip: padding-box;
  3573. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3574. transition: box-shadow 0.3s ease-out;
  3575. text-align: right; }
  3576. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3577. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3578. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3579. transition: box-shadow 0s ease-out;
  3580. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3581. #tool-bar #materio-search-api-search-form {
  3582. text-align: right;
  3583. display: moz-inline-stack;
  3584. display: inline-block;
  3585. vertical-align: top;
  3586. zoom: 1;
  3587. *display: inline;
  3588. margin: 0; }
  3589. #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 {
  3590. display: moz-inline-stack;
  3591. display: inline-block;
  3592. vertical-align: top;
  3593. zoom: 1;
  3594. *display: inline;
  3595. margin: 0;
  3596. vertical-align: middle;
  3597. padding: 0; }
  3598. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3599. padding: 3px;
  3600. font-size: 12px; }
  3601. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3602. margin: 0 5px; }
  3603. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3604. font-size: 10px; }
  3605. #tool-bar #materio-search-api-search-form a.back-search-home {
  3606. display: inline-block;
  3607. vertical-align: middle;
  3608. color: #000;
  3609. padding: 0 0.5em 0 0.2em; }
  3610. #tool-bar #materio-search-api-search-form a.back-search-home i:before {
  3611. font-size: 1.3em; }
  3612. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3613. border: 1px solid #ccc;
  3614. border-radius: 15px;
  3615. background-clip: padding-box;
  3616. margin: 3px 0 3px 3px;
  3617. padding: 4px 5px;
  3618. height: 20px;
  3619. font-size: 12px;
  3620. line-height: 1;
  3621. background-position: 100% 7px; }
  3622. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3623. background-position: 100% -15px; }
  3624. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3625. background-color: #1a1a1a; }
  3626. #tool-bar #materio-search-api-search-form input#edit-create {
  3627. padding: 3px; }
  3628. #tool-bar #materio-search-api-search-form.loading {
  3629. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  3630. #tool-bar #materio-search-api-search-form.loading input#edit-create {
  3631. visibility: hidden; }
  3632. @media only screen and (max-width: 40em) {
  3633. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3634. width: 16em; }
  3635. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3636. display: none; } }
  3637. #center {
  3638. border-radius: 10px;
  3639. background-clip: padding-box; }
  3640. .node-type-page:not(.page-node-11187) #center {
  3641. background-color: #fff; }
  3642. .ie8 #center {
  3643. height: 100%;
  3644. margin-top: 20px; }
  3645. #content {
  3646. padding: 1em;
  3647. transition: height 0.3s ease-out; }
  3648. #content.faded {
  3649. opacity: 0.5;
  3650. transition: opacity 0.3s ease-out; }
  3651. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3652. padding: 0 0 30px 0;
  3653. margin: 0 0 20px 0; }
  3654. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3655. background-image: url("../img/ajax-loader.gif");
  3656. background-position: center bottom;
  3657. background-repeat: no-repeat; }
  3658. #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 {
  3659. font-size: 12px;
  3660. font-weight: 500;
  3661. margin: 0;
  3662. padding: 10px 0 5px 15px; }
  3663. #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 {
  3664. font-size: 0;
  3665. text-align: center; }
  3666. #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 > * {
  3667. font-size: 16px; }
  3668. #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 > * {
  3669. text-align: left; }
  3670. #content ul.pager {
  3671. padding: 1em 0;
  3672. text-align: left; }
  3673. .ie8 #content ul.pager {
  3674. position: absolute;
  3675. left: 37px;
  3676. bottom: 35px; }
  3677. #content ul.pager li {
  3678. margin: 0;
  3679. display: moz-inline-stack;
  3680. display: inline-block;
  3681. vertical-align: top;
  3682. zoom: 1;
  3683. *display: inline;
  3684. vertical-align: middle; }
  3685. #content ul.pager .pager-current, #content ul.pager a {
  3686. color: #000;
  3687. font-size: 12px; }
  3688. #content ul.pager .pager-current {
  3689. font-weight: 900;
  3690. font-size: 14px; }
  3691. .ie8 #content ul.pager .pager-current {
  3692. background: #fff;
  3693. padding: 0.3em 1em 0.3em 1em;
  3694. margin-top: 0.05em;
  3695. border: 1px solid #333333; }
  3696. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3697. font-size: 24px;
  3698. font-weight: 300; }
  3699. /** #content-bottom */
  3700. #content-bottom {
  3701. padding-top: 10px; }
  3702. /*
  3703. _________ ____ ____ _____
  3704. / ____/ | / __ \/ __ \/ ___/
  3705. / / / /| | / /_/ / / / /\__ / /___/ ___ |/ _, _/ /_/ /___/ /
  3706. \____/_/ |_/_/ |_/_____//____/
  3707. */
  3708. /*
  3709. _ _ ___
  3710. ___ ___ ___ _| | ___ ___ ___ ___ ___| |_ ___ ___ ___| _|___ ___ _____ ___ ___ ___ ___
  3711. | _| .'| _| . | |_ -| -_| .'| _| _| | | . | -_| _| _| . | _| | .'| | _| -_|
  3712. |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___|
  3713. |_|
  3714. */
  3715. article.search-performance .inner {
  3716. padding: 1em; }
  3717. article.search-performance p {
  3718. font-size: 14px; }
  3719. article.search-performance a.button {
  3720. display: block;
  3721. margin: 10px auto;
  3722. max-width: 10em;
  3723. font-size: 18px;
  3724. padding: 0.1em 0.6em 0.2em;
  3725. border-radius: 0.3em;
  3726. background-clip: padding-box;
  3727. font-weight: bold;
  3728. border: 2px solid #69CDCF;
  3729. background-color: #69CDCF;
  3730. color: #fff;
  3731. cursor: pointer;
  3732. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3733. transition: text-shadow 0.2s ease-out;
  3734. text-align: center;
  3735. text-decoration: none; }
  3736. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3737. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3738. article.search-performance a.button:active {
  3739. transition: text-shadow 0s ease-out;
  3740. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3741. article.search-performance.view-mode-cardsmall {
  3742. width: 327px;
  3743. height: 140px;
  3744. display: moz-inline-stack;
  3745. display: inline-block;
  3746. vertical-align: top;
  3747. zoom: 1;
  3748. *display: inline;
  3749. position: relative;
  3750. margin: 7px;
  3751. border-radius: 5px;
  3752. background-clip: padding-box;
  3753. background-color: #FFF;
  3754. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3755. transition: box-shadow 0.3s ease-out; }
  3756. article.search-performance.view-mode-cardmedium {
  3757. width: 210px;
  3758. height: 295px;
  3759. display: moz-inline-stack;
  3760. display: inline-block;
  3761. vertical-align: top;
  3762. zoom: 1;
  3763. *display: inline;
  3764. position: relative;
  3765. margin: 7px;
  3766. border-radius: 5px;
  3767. background-clip: padding-box;
  3768. background-color: #FFF;
  3769. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3770. transition: box-shadow 0.3s ease-out; }
  3771. article.search-performance.view-mode-cardmedium .inner {
  3772. padding: 4em 1em 0; }
  3773. article.search-performance.view-mode-cardbig {
  3774. width: 425px;
  3775. height: 115px;
  3776. display: moz-inline-stack;
  3777. display: inline-block;
  3778. vertical-align: top;
  3779. zoom: 1;
  3780. *display: inline;
  3781. position: relative;
  3782. margin: 7px;
  3783. border-radius: 5px;
  3784. background-clip: padding-box;
  3785. background-color: #FFF;
  3786. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3787. transition: box-shadow 0.3s ease-out;
  3788. display: block;
  3789. margin: 0 auto; }
  3790. article.search-performance.view-mode-cardfull {
  3791. width: 850px;
  3792. height: 115px;
  3793. display: moz-inline-stack;
  3794. display: inline-block;
  3795. vertical-align: top;
  3796. zoom: 1;
  3797. *display: inline;
  3798. position: relative;
  3799. margin: 7px;
  3800. border-radius: 5px;
  3801. background-clip: padding-box;
  3802. background-color: #FFF;
  3803. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3804. transition: box-shadow 0.3s ease-out;
  3805. display: block;
  3806. margin: 0 auto; }
  3807. article.search-performance.view-mode-cardfull .inner {
  3808. padding: 1em 212px; }
  3809. /*
  3810. _____ _____ _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  3811. | | _ | __ | \ | __ | | | | | | _ | __ | | | __|
  3812. | --| | -| | | | __ -| | | | | -| | | | | -| -|__ |
  3813. |_____|__|__|__|__|____/ |_____|_____|_____|__|__|_|_|_|__|__|__|__|__|__|_____|
  3814. */
  3815. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  3816. width: 50px;
  3817. height: 70px;
  3818. display: moz-inline-stack;
  3819. display: inline-block;
  3820. vertical-align: top;
  3821. zoom: 1;
  3822. *display: inline;
  3823. position: relative;
  3824. margin: 7px;
  3825. border-radius: 5px;
  3826. background-clip: padding-box;
  3827. background-color: #FFF;
  3828. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3829. transition: box-shadow 0.3s ease-out;
  3830. margin: 3px; }
  3831. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  3832. border-radius: 5px;
  3833. background-clip: padding-box;
  3834. overflow: hidden; }
  3835. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  3836. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  3837. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  3838. opacity: 0; }
  3839. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  3840. transition: margin 0.3s ease-out; }
  3841. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  3842. margin-left: -50px;
  3843. margin-right: 50px; }
  3844. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  3845. position: absolute;
  3846. top: 0;
  3847. left: 0;
  3848. z-index: 999; }
  3849. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  3850. transition: width 0.3s ease-out;
  3851. width: 0;
  3852. padding-left: 0;
  3853. padding-right: 0;
  3854. margin-right: 0;
  3855. margin-left: 0;
  3856. overflow: hidden; }
  3857. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  3858. position: absolute;
  3859. top: 0;
  3860. right: 0;
  3861. z-index: 11;
  3862. padding: 5px 0;
  3863. border-radius: 0 5px 0 3px;
  3864. background-clip: padding-box;
  3865. font-size: 10px;
  3866. background-color: rgba(255, 255, 255, 0.9);
  3867. color: #000; }
  3868. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  3869. color: #000; }
  3870. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3871. background-color: rgba(255, 255, 255, 0.9); }
  3872. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  3873. font-weight: 900;
  3874. font-size: 14px; }
  3875. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3876. padding: 0;
  3877. margin: 0; }
  3878. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  3879. position: relative; }
  3880. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  3881. margin: 0 5px; }
  3882. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  3883. cursor: pointer; }
  3884. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3885. position: absolute;
  3886. right: 0;
  3887. top: 0;
  3888. margin-right: 22px;
  3889. min-width: 80px;
  3890. padding: 0;
  3891. display: block;
  3892. border-radius: 3px;
  3893. background-clip: padding-box;
  3894. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  3895. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  3896. padding: 0;
  3897. margin: 0;
  3898. line-height: 1;
  3899. display: block;
  3900. height: 0;
  3901. overflow: hidden;
  3902. transition: height 0.2s ease-out; }
  3903. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  3904. display: block; }
  3905. article.node-materiau.vm-bookmark nav.nav ul.links a, article.node-breve.vm-bookmark nav.nav ul.links a {
  3906. font-size: 12px; }
  3907. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  3908. width: 160px;
  3909. font-size: 0; }
  3910. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  3911. font-size: 11px; }
  3912. 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 {
  3913. display: moz-inline-stack;
  3914. display: inline-block;
  3915. vertical-align: top;
  3916. zoom: 1;
  3917. *display: inline;
  3918. min-width: 48%;
  3919. max-width: 98%;
  3920. padding-left: 2px; }
  3921. 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 {
  3922. color: #a6a6a6;
  3923. transition: color 0.2s ease-out; }
  3924. 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 {
  3925. color: #000;
  3926. text-decoration: none; }
  3927. 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 {
  3928. display: block;
  3929. width: 100%; }
  3930. 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 > * {
  3931. margin-top: 1px;
  3932. padding-top: 1px;
  3933. border-top: 1px solid #e6e6e6; }
  3934. 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 {
  3935. color: #000; }
  3936. 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 {
  3937. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  3938. 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 {
  3939. visibility: hidden; }
  3940. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  3941. background: #FFF; }
  3942. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  3943. padding: 5px 5px; }
  3944. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  3945. height: 17px; }
  3946. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  3947. position: absolute;
  3948. top: 0;
  3949. left: 0;
  3950. z-index: 11;
  3951. padding: 5px;
  3952. border-radius: 5px 0 3px 0;
  3953. background-clip: padding-box;
  3954. font-size: 10px;
  3955. vertical-align: top;
  3956. background-color: rgba(255, 255, 255, 0.9);
  3957. color: #000; }
  3958. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  3959. padding: 3px 0 0 4px;
  3960. display: moz-inline-stack;
  3961. display: inline-block;
  3962. vertical-align: top;
  3963. zoom: 1;
  3964. *display: inline; }
  3965. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  3966. font-size: 12px;
  3967. padding-top: 4em;
  3968. margin-top: -4.5em;
  3969. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  3970. position: relative; }
  3971. 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 {
  3972. padding: 10px;
  3973. font-size: 12px; }
  3974. 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 {
  3975. display: block;
  3976. margin: 10px 0;
  3977. font-size: 18px;
  3978. padding: 0.1em 0.6em 0.2em;
  3979. border-radius: 0.3em;
  3980. background-clip: padding-box;
  3981. font-weight: bold;
  3982. border: 2px solid #69CDCF;
  3983. background-color: #69CDCF;
  3984. color: #fff;
  3985. cursor: pointer;
  3986. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3987. transition: text-shadow 0.2s ease-out;
  3988. text-align: center;
  3989. text-decoration: none; }
  3990. 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 {
  3991. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3992. 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 {
  3993. transition: text-shadow 0s ease-out;
  3994. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3995. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  3996. display: none; }
  3997. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  3998. position: relative;
  3999. z-index: 1;
  4000. background-color: #fff; }
  4001. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  4002. position: absolute;
  4003. top: 0;
  4004. left: 0; }
  4005. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  4006. position: relative;
  4007. z-index: 1; }
  4008. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4009. display: none; }
  4010. /*
  4011. _____ _____ _____ ____ _____ _____ _____ __ __
  4012. | | _ | __ | \ | __| | _ | | | |
  4013. | --| | -| | | |__ | | | | | |__| |__
  4014. |_____|__|__|__|__|____/ |_____|_|_|_|__|__|_____|_____|
  4015. */
  4016. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4017. width: 100px;
  4018. height: 140px;
  4019. display: moz-inline-stack;
  4020. display: inline-block;
  4021. vertical-align: top;
  4022. zoom: 1;
  4023. *display: inline;
  4024. position: relative;
  4025. margin: 7px;
  4026. border-radius: 5px;
  4027. background-clip: padding-box;
  4028. background-color: #FFF;
  4029. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4030. transition: box-shadow 0.3s ease-out; }
  4031. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4032. border-radius: 5px;
  4033. background-clip: padding-box;
  4034. overflow: hidden; }
  4035. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4036. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4037. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4038. opacity: 0; }
  4039. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4040. transition: margin 0.3s ease-out; }
  4041. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4042. margin-left: -100px;
  4043. margin-right: 100px; }
  4044. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4045. position: absolute;
  4046. top: 0;
  4047. left: 0;
  4048. z-index: 999; }
  4049. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4050. transition: width 0.3s ease-out;
  4051. width: 0;
  4052. padding-left: 0;
  4053. padding-right: 0;
  4054. margin-right: 0;
  4055. margin-left: 0;
  4056. overflow: hidden; }
  4057. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4058. position: absolute;
  4059. top: 0;
  4060. right: 0;
  4061. z-index: 11;
  4062. padding: 5px 0;
  4063. border-radius: 0 5px 0 3px;
  4064. background-clip: padding-box;
  4065. font-size: 10px;
  4066. background-color: rgba(255, 255, 255, 0.9);
  4067. color: #000; }
  4068. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4069. color: #000; }
  4070. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4071. background-color: rgba(255, 255, 255, 0.9); }
  4072. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4073. font-weight: 900;
  4074. font-size: 14px; }
  4075. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4076. padding: 0;
  4077. margin: 0; }
  4078. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4079. position: relative; }
  4080. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4081. margin: 0 5px; }
  4082. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4083. cursor: pointer; }
  4084. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4085. position: absolute;
  4086. right: 0;
  4087. top: 0;
  4088. margin-right: 22px;
  4089. min-width: 80px;
  4090. padding: 0;
  4091. display: block;
  4092. border-radius: 3px;
  4093. background-clip: padding-box;
  4094. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4095. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4096. padding: 0;
  4097. margin: 0;
  4098. line-height: 1;
  4099. display: block;
  4100. height: 0;
  4101. overflow: hidden;
  4102. transition: height 0.2s ease-out; }
  4103. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4104. display: block; }
  4105. article.node-materiau.vm-cardsmall nav.nav ul.links a, article.node-breve.vm-cardsmall nav.nav ul.links a {
  4106. font-size: 12px; }
  4107. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4108. width: 160px;
  4109. font-size: 0; }
  4110. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4111. font-size: 11px; }
  4112. 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 {
  4113. display: moz-inline-stack;
  4114. display: inline-block;
  4115. vertical-align: top;
  4116. zoom: 1;
  4117. *display: inline;
  4118. min-width: 48%;
  4119. max-width: 98%;
  4120. padding-left: 2px; }
  4121. 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 {
  4122. color: #a6a6a6;
  4123. transition: color 0.2s ease-out; }
  4124. 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 {
  4125. color: #000;
  4126. text-decoration: none; }
  4127. 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 {
  4128. display: block;
  4129. width: 100%; }
  4130. 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 > * {
  4131. margin-top: 1px;
  4132. padding-top: 1px;
  4133. border-top: 1px solid #e6e6e6; }
  4134. 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 {
  4135. color: #000; }
  4136. 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 {
  4137. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4138. 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 {
  4139. visibility: hidden; }
  4140. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4141. background: #FFF; }
  4142. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4143. padding: 5px 5px; }
  4144. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4145. height: 17px; }
  4146. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4147. position: absolute;
  4148. top: 0;
  4149. left: 0;
  4150. z-index: 11;
  4151. padding: 5px;
  4152. border-radius: 5px 0 3px 0;
  4153. background-clip: padding-box;
  4154. font-size: 10px;
  4155. vertical-align: top;
  4156. background-color: rgba(255, 255, 255, 0.9);
  4157. color: #000; }
  4158. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4159. padding: 3px 0 0 4px;
  4160. display: moz-inline-stack;
  4161. display: inline-block;
  4162. vertical-align: top;
  4163. zoom: 1;
  4164. *display: inline; }
  4165. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4166. font-size: 12px;
  4167. padding-top: 4em;
  4168. margin-top: -4.5em;
  4169. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4170. position: relative; }
  4171. 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 {
  4172. padding: 10px;
  4173. font-size: 12px; }
  4174. 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 {
  4175. display: block;
  4176. margin: 10px 0;
  4177. font-size: 18px;
  4178. padding: 0.1em 0.6em 0.2em;
  4179. border-radius: 0.3em;
  4180. background-clip: padding-box;
  4181. font-weight: bold;
  4182. border: 2px solid #69CDCF;
  4183. background-color: #69CDCF;
  4184. color: #fff;
  4185. cursor: pointer;
  4186. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4187. transition: text-shadow 0.2s ease-out;
  4188. text-align: center;
  4189. text-decoration: none; }
  4190. 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 {
  4191. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4192. 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 {
  4193. transition: text-shadow 0s ease-out;
  4194. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4195. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4196. display: none;
  4197. position: absolute;
  4198. font-size: 14px;
  4199. font-weight: 500; }
  4200. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4201. font-weight: 700; }
  4202. 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 {
  4203. display: moz-inline-stack;
  4204. display: inline-block;
  4205. vertical-align: top;
  4206. zoom: 1;
  4207. *display: inline;
  4208. font-size: 12px; }
  4209. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4210. float: right; }
  4211. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4212. position: relative;
  4213. z-index: 1;
  4214. background-color: #fff;
  4215. border-radius: 5px;
  4216. background-clip: padding-box;
  4217. overflow: hidden; }
  4218. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4219. position: absolute;
  4220. top: 0;
  4221. left: 0; }
  4222. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4223. position: relative;
  4224. z-index: 1; }
  4225. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4226. width: 75px;
  4227. min-width: 75px; }
  4228. 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 {
  4229. width: 98%; }
  4230. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4231. background: #FFF; }
  4232. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4233. visibility: hidden; }
  4234. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4235. margin-top: -100000px; }
  4236. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4237. opacity: 0;
  4238. transition: visibility 0s 0.3s; }
  4239. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4240. transition: margin-top 0s 0.3s; }
  4241. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4242. visibility: hidden; }
  4243. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4244. margin-top: -100000px; }
  4245. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4246. opacity: 0;
  4247. transition: visibility 0s 0.3s; }
  4248. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4249. transition: margin-top 0s 0.3s; }
  4250. /*
  4251. _____ _____ _____ __ _____ _____ _____ _____ _____ _____ __ __ _____ _____ _____ ____
  4252. |_ _| | | ||_ _| | _ | | __| | _ | | | | | | _ | __ | | | | | | | | |__| | |- -| __| |__ | | | | | |__| |__ | --| | -| | |
  4253. |_| |_____|_____|_____|_| |_____|__| |_____|_|_|_|__|__|_____|_____| |_____|__|__|__|__|____/
  4254. */
  4255. #tooltip .group-header.smallcard {
  4256. font-size: 14px;
  4257. font-weight: 500; }
  4258. #tooltip .group-header.smallcard .field-name-title-field {
  4259. font-weight: 700; }
  4260. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4261. display: moz-inline-stack;
  4262. display: inline-block;
  4263. vertical-align: top;
  4264. zoom: 1;
  4265. *display: inline;
  4266. font-size: 12px; }
  4267. #tooltip .group-header.smallcard .field-name-field-localisation {
  4268. float: right; }
  4269. /*
  4270. _____ _____ _____ ____ _____ _____ ____ _____ _____ _____
  4271. | | _ | __ | \ | | __| \| | | | |
  4272. | --| | -| | | | | | | __| | |- -| | | | | |
  4273. |_____|__|__|__|__|____/ |_|_|_|_____|____/|_____|_____|_|_|_|
  4274. */
  4275. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4276. width: 210px;
  4277. height: 295px;
  4278. display: moz-inline-stack;
  4279. display: inline-block;
  4280. vertical-align: top;
  4281. zoom: 1;
  4282. *display: inline;
  4283. position: relative;
  4284. margin: 7px;
  4285. border-radius: 5px;
  4286. background-clip: padding-box;
  4287. background-color: #FFF;
  4288. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4289. transition: box-shadow 0.3s ease-out; }
  4290. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4291. border-radius: 5px;
  4292. background-clip: padding-box;
  4293. overflow: hidden; }
  4294. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4295. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4296. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4297. opacity: 0; }
  4298. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4299. transition: margin 0.3s ease-out; }
  4300. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4301. margin-left: -210px;
  4302. margin-right: 210px; }
  4303. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4304. position: absolute;
  4305. top: 0;
  4306. left: 0;
  4307. z-index: 999; }
  4308. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4309. transition: width 0.3s ease-out;
  4310. width: 0;
  4311. padding-left: 0;
  4312. padding-right: 0;
  4313. margin-right: 0;
  4314. margin-left: 0;
  4315. overflow: hidden; }
  4316. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4317. position: absolute;
  4318. top: 0;
  4319. right: 0;
  4320. z-index: 11;
  4321. padding: 5px 0;
  4322. border-radius: 0 5px 0 3px;
  4323. background-clip: padding-box;
  4324. font-size: 10px;
  4325. background-color: rgba(255, 255, 255, 0.9);
  4326. color: #000; }
  4327. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4328. color: #000; }
  4329. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4330. background-color: rgba(255, 255, 255, 0.9); }
  4331. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4332. font-weight: 900;
  4333. font-size: 14px; }
  4334. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4335. padding: 0;
  4336. margin: 0; }
  4337. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4338. position: relative; }
  4339. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4340. margin: 0 5px; }
  4341. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4342. cursor: pointer; }
  4343. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4344. position: absolute;
  4345. right: 0;
  4346. top: 0;
  4347. margin-right: 22px;
  4348. min-width: 80px;
  4349. padding: 0;
  4350. display: block;
  4351. border-radius: 3px;
  4352. background-clip: padding-box;
  4353. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4354. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4355. padding: 0;
  4356. margin: 0;
  4357. line-height: 1;
  4358. display: block;
  4359. height: 0;
  4360. overflow: hidden;
  4361. transition: height 0.2s ease-out; }
  4362. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4363. display: block; }
  4364. article.node-materiau.vm-cardmedium nav.nav ul.links a, article.node-breve.vm-cardmedium nav.nav ul.links a {
  4365. font-size: 12px; }
  4366. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4367. width: 160px;
  4368. font-size: 0; }
  4369. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4370. font-size: 11px; }
  4371. 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 {
  4372. display: moz-inline-stack;
  4373. display: inline-block;
  4374. vertical-align: top;
  4375. zoom: 1;
  4376. *display: inline;
  4377. min-width: 48%;
  4378. max-width: 98%;
  4379. padding-left: 2px; }
  4380. 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 {
  4381. color: #a6a6a6;
  4382. transition: color 0.2s ease-out; }
  4383. 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 {
  4384. color: #000;
  4385. text-decoration: none; }
  4386. 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 {
  4387. display: block;
  4388. width: 100%; }
  4389. 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 > * {
  4390. margin-top: 1px;
  4391. padding-top: 1px;
  4392. border-top: 1px solid #e6e6e6; }
  4393. 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 {
  4394. color: #000; }
  4395. 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 {
  4396. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4397. 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 {
  4398. visibility: hidden; }
  4399. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4400. background: #FFF; }
  4401. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4402. padding: 5px 5px; }
  4403. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4404. height: 17px; }
  4405. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4406. position: absolute;
  4407. top: 0;
  4408. left: 0;
  4409. z-index: 11;
  4410. padding: 5px;
  4411. border-radius: 5px 0 3px 0;
  4412. background-clip: padding-box;
  4413. font-size: 10px;
  4414. vertical-align: top;
  4415. background-color: rgba(255, 255, 255, 0.9);
  4416. color: #000; }
  4417. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4418. padding: 3px 0 0 4px;
  4419. display: moz-inline-stack;
  4420. display: inline-block;
  4421. vertical-align: top;
  4422. zoom: 1;
  4423. *display: inline; }
  4424. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4425. font-size: 12px;
  4426. padding-top: 4em;
  4427. margin-top: -4.5em;
  4428. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4429. position: relative; }
  4430. 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 {
  4431. padding: 10px;
  4432. font-size: 12px; }
  4433. 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 {
  4434. display: block;
  4435. margin: 10px 0;
  4436. font-size: 18px;
  4437. padding: 0.1em 0.6em 0.2em;
  4438. border-radius: 0.3em;
  4439. background-clip: padding-box;
  4440. font-weight: bold;
  4441. border: 2px solid #69CDCF;
  4442. background-color: #69CDCF;
  4443. color: #fff;
  4444. cursor: pointer;
  4445. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4446. transition: text-shadow 0.2s ease-out;
  4447. text-align: center;
  4448. text-decoration: none; }
  4449. 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 {
  4450. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4451. 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 {
  4452. transition: text-shadow 0s ease-out;
  4453. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4454. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  4455. position: absolute;
  4456. width: 100%;
  4457. height: 100%;
  4458. top: 0;
  4459. left: 0;
  4460. background-color: #fff;
  4461. cursor: pointer; }
  4462. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  4463. z-index: 1; }
  4464. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  4465. position: absolute;
  4466. bottom: 0;
  4467. z-index: 2;
  4468. width: 190px;
  4469. padding: 5px 15px 5px 5px;
  4470. min-height: 55px;
  4471. font-size: 20px;
  4472. font-weight: 300;
  4473. line-height: 1;
  4474. background-color: rgba(255, 255, 255, 0.8);
  4475. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4476. transition: background-color 0.2s ease-out;
  4477. border-radius: 0 0 4px 4px;
  4478. background-clip: padding-box;
  4479. overflow: hidden; }
  4480. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  4481. font-weight: 700; }
  4482. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  4483. font-size: 14px; }
  4484. 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 {
  4485. display: moz-inline-stack;
  4486. display: inline-block;
  4487. vertical-align: top;
  4488. zoom: 1;
  4489. *display: inline;
  4490. font-size: 12px;
  4491. vertical-align: bottom;
  4492. width: 48%; }
  4493. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  4494. text-align: right; }
  4495. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  4496. background: #fff;
  4497. font-color: #000;
  4498. line-height: 1em;
  4499. padding: 10px; }
  4500. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  4501. color: #fff;
  4502. background-color: rgba(0, 0, 0, 0.7);
  4503. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4504. transition: background-color 0.2s ease-out; }
  4505. 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 {
  4506. font-size: 12px;
  4507. font-weight: 500; }
  4508. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  4509. background: #000;
  4510. font-size: 15px;
  4511. line-height: 1.2em; }
  4512. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  4513. position: relative;
  4514. z-index: 1;
  4515. background-color: #fff; }
  4516. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  4517. position: absolute;
  4518. top: 0;
  4519. left: 0; }
  4520. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  4521. position: relative;
  4522. z-index: 1; }
  4523. 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 {
  4524. font-size: 12px;
  4525. font-weight: 300;
  4526. overflow: hidden;
  4527. z-index: -1;
  4528. padding: 5px; }
  4529. 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 {
  4530. padding: 0;
  4531. transition: margin-left 0.3s ease-out; }
  4532. 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 > * {
  4533. padding: 5px; }
  4534. 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 {
  4535. display: inline-block;
  4536. border-radius: 3px;
  4537. background-clip: padding-box;
  4538. color: #fff;
  4539. background-color: #3e3e3e;
  4540. vertical-align: middle;
  4541. font-weight: 700;
  4542. font-size: 22px;
  4543. padding: 0.05em 0.15em 0.2em 0.2em;
  4544. line-height: 0.5;
  4545. font-weight: normal; }
  4546. 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 {
  4547. cursor: w-resize; }
  4548. 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 {
  4549. cursor: e-resize; }
  4550. 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 > * {
  4551. padding-right: 25px; }
  4552. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  4553. padding: 5px; }
  4554. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  4555. padding: 0;
  4556. transition: margin-left 0.3s ease-out; }
  4557. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  4558. padding: 5px; }
  4559. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  4560. display: inline-block;
  4561. border-radius: 3px;
  4562. background-clip: padding-box;
  4563. color: #fff;
  4564. background-color: #3e3e3e;
  4565. vertical-align: middle;
  4566. font-weight: 700;
  4567. font-size: 22px;
  4568. padding: 0.05em 0.15em 0.2em 0.2em;
  4569. line-height: 0.5;
  4570. font-weight: normal; }
  4571. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  4572. cursor: w-resize; }
  4573. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  4574. cursor: e-resize; }
  4575. 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 {
  4576. font-size: 12px;
  4577. padding: 5px;
  4578. font-weight: 300; }
  4579. 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 {
  4580. font-size: 10px;
  4581. text-transform: lowercase;
  4582. margin: 0; }
  4583. 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 {
  4584. font-size: 14px; }
  4585. 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 {
  4586. font-size: 12px;
  4587. padding: 5px;
  4588. font-weight: 300; }
  4589. 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 {
  4590. color: #000; }
  4591. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  4592. font-weight: 900;
  4593. margin: 1em 0 0.5em; }
  4594. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4595. visibility: hidden; }
  4596. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4597. margin-top: -100000px; }
  4598. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4599. opacity: 0;
  4600. transition: visibility 0s 0.3s; }
  4601. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4602. transition: margin-top 0s 0.3s; }
  4603. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4604. visibility: hidden; }
  4605. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4606. margin-top: -100000px; }
  4607. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4608. opacity: 0;
  4609. transition: visibility 0s 0.3s; }
  4610. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4611. transition: margin-top 0s 0.3s; }
  4612. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  4613. background: #FFF; }
  4614. /*
  4615. _____ _____ _____ ____ _____ _____ _____
  4616. | | _ | __ | \ | __ | | __|
  4617. | --| | -| | | | __ -|- -| | |
  4618. |_____|__|__|__|__|____/ |_____|_____|_____|
  4619. */
  4620. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  4621. width: 425px;
  4622. height: 610px;
  4623. display: moz-inline-stack;
  4624. display: inline-block;
  4625. vertical-align: top;
  4626. zoom: 1;
  4627. *display: inline;
  4628. position: relative;
  4629. margin: 7px;
  4630. border-radius: 5px;
  4631. background-clip: padding-box;
  4632. background-color: #FFF;
  4633. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4634. transition: box-shadow 0.3s ease-out; }
  4635. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  4636. border-radius: 5px;
  4637. background-clip: padding-box;
  4638. overflow: hidden; }
  4639. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  4640. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4641. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  4642. opacity: 0; }
  4643. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  4644. transition: margin 0.3s ease-out; }
  4645. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  4646. margin-left: -425px;
  4647. margin-right: 425px; }
  4648. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  4649. position: absolute;
  4650. top: 0;
  4651. left: 0;
  4652. z-index: 999; }
  4653. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  4654. transition: width 0.3s ease-out;
  4655. width: 0;
  4656. padding-left: 0;
  4657. padding-right: 0;
  4658. margin-right: 0;
  4659. margin-left: 0;
  4660. overflow: hidden; }
  4661. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  4662. position: absolute;
  4663. top: 0;
  4664. right: 0;
  4665. z-index: 11;
  4666. padding: 5px 0;
  4667. border-radius: 0 5px 0 3px;
  4668. background-clip: padding-box;
  4669. font-size: 10px;
  4670. background-color: rgba(255, 255, 255, 0.9);
  4671. color: #000; }
  4672. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  4673. color: #000; }
  4674. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4675. background-color: rgba(255, 255, 255, 0.9); }
  4676. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  4677. font-weight: 900;
  4678. font-size: 14px; }
  4679. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4680. padding: 0;
  4681. margin: 0; }
  4682. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  4683. position: relative; }
  4684. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  4685. margin: 0 5px; }
  4686. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  4687. cursor: pointer; }
  4688. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4689. position: absolute;
  4690. right: 0;
  4691. top: 0;
  4692. margin-right: 22px;
  4693. min-width: 80px;
  4694. padding: 0;
  4695. display: block;
  4696. border-radius: 3px;
  4697. background-clip: padding-box;
  4698. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4699. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  4700. padding: 0;
  4701. margin: 0;
  4702. line-height: 1;
  4703. display: block;
  4704. height: 0;
  4705. overflow: hidden;
  4706. transition: height 0.2s ease-out; }
  4707. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  4708. display: block; }
  4709. article.node-materiau.vm-cardbig nav.nav ul.links a, article.node-breve.vm-cardbig nav.nav ul.links a {
  4710. font-size: 12px; }
  4711. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  4712. width: 160px;
  4713. font-size: 0; }
  4714. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  4715. font-size: 11px; }
  4716. 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 {
  4717. display: moz-inline-stack;
  4718. display: inline-block;
  4719. vertical-align: top;
  4720. zoom: 1;
  4721. *display: inline;
  4722. min-width: 48%;
  4723. max-width: 98%;
  4724. padding-left: 2px; }
  4725. 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 {
  4726. color: #a6a6a6;
  4727. transition: color 0.2s ease-out; }
  4728. 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 {
  4729. color: #000;
  4730. text-decoration: none; }
  4731. 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 {
  4732. display: block;
  4733. width: 100%; }
  4734. 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 > * {
  4735. margin-top: 1px;
  4736. padding-top: 1px;
  4737. border-top: 1px solid #e6e6e6; }
  4738. 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 {
  4739. color: #000; }
  4740. 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 {
  4741. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4742. 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 {
  4743. visibility: hidden; }
  4744. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  4745. background: #FFF; }
  4746. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  4747. padding: 5px 5px; }
  4748. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  4749. height: 17px; }
  4750. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  4751. position: absolute;
  4752. top: 0;
  4753. left: 0;
  4754. z-index: 11;
  4755. padding: 5px;
  4756. border-radius: 5px 0 3px 0;
  4757. background-clip: padding-box;
  4758. font-size: 10px;
  4759. vertical-align: top;
  4760. background-color: rgba(255, 255, 255, 0.9);
  4761. color: #000; }
  4762. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  4763. padding: 3px 0 0 4px;
  4764. display: moz-inline-stack;
  4765. display: inline-block;
  4766. vertical-align: top;
  4767. zoom: 1;
  4768. *display: inline; }
  4769. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  4770. font-size: 12px;
  4771. padding-top: 4em;
  4772. margin-top: -4.5em;
  4773. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4774. position: relative; }
  4775. 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 {
  4776. padding: 10px;
  4777. font-size: 12px; }
  4778. 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 {
  4779. display: block;
  4780. margin: 10px 0;
  4781. font-size: 18px;
  4782. padding: 0.1em 0.6em 0.2em;
  4783. border-radius: 0.3em;
  4784. background-clip: padding-box;
  4785. font-weight: bold;
  4786. border: 2px solid #69CDCF;
  4787. background-color: #69CDCF;
  4788. color: #fff;
  4789. cursor: pointer;
  4790. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4791. transition: text-shadow 0.2s ease-out;
  4792. text-align: center;
  4793. text-decoration: none; }
  4794. 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 {
  4795. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4796. 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 {
  4797. transition: text-shadow 0s ease-out;
  4798. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4799. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  4800. position: absolute;
  4801. width: 100%;
  4802. height: 100%;
  4803. top: 0;
  4804. left: 0;
  4805. background-color: #fff;
  4806. height: 270px;
  4807. top: 340px;
  4808. cursor: pointer; }
  4809. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  4810. z-index: 1; }
  4811. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  4812. position: relative;
  4813. border-radius: 5px 5px 0 0;
  4814. background-clip: padding-box;
  4815. overflow: hidden; }
  4816. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  4817. position: absolute;
  4818. bottom: 0;
  4819. z-index: 2;
  4820. width: 405px;
  4821. padding: 10px;
  4822. font-size: 20px;
  4823. font-weight: 300;
  4824. line-height: 1.1;
  4825. background-color: rgba(255, 255, 255, 0.8);
  4826. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4827. transition: background-color 0.2s ease-out; }
  4828. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  4829. font-weight: 700; }
  4830. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  4831. font-size: 14px; }
  4832. 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 {
  4833. display: moz-inline-stack;
  4834. display: inline-block;
  4835. vertical-align: top;
  4836. zoom: 1;
  4837. *display: inline;
  4838. font-size: 12px;
  4839. vertical-align: bottom;
  4840. width: 48%; }
  4841. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  4842. text-align: right; }
  4843. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  4844. background: #fff;
  4845. font-color: #000;
  4846. line-height: 1em;
  4847. padding: 20px;
  4848. border-bottom: 1px solid #C6C6C6; }
  4849. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  4850. color: #fff;
  4851. background-color: rgba(0, 0, 0, 0.7);
  4852. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4853. transition: background-color 0.2s ease-out; }
  4854. 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 {
  4855. font-size: 12px;
  4856. font-weight: 500; }
  4857. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  4858. background: #000;
  4859. font-color: #fff;
  4860. line-height: 1em;
  4861. padding: 20px; }
  4862. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  4863. position: relative;
  4864. z-index: 1;
  4865. background-color: #fff;
  4866. height: auto; }
  4867. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  4868. position: absolute;
  4869. top: 0;
  4870. left: 0; }
  4871. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  4872. position: relative;
  4873. z-index: 1; }
  4874. 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 {
  4875. font-size: 12px;
  4876. font-weight: 300;
  4877. padding: 10px; }
  4878. 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 {
  4879. padding: 0;
  4880. transition: margin-left 0.3s ease-out; }
  4881. 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 > * {
  4882. padding: 10px; }
  4883. 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 {
  4884. display: inline-block;
  4885. border-radius: 3px;
  4886. background-clip: padding-box;
  4887. color: #fff;
  4888. background-color: #3e3e3e;
  4889. vertical-align: middle;
  4890. font-weight: 700;
  4891. font-size: 22px;
  4892. padding: 0.05em 0.15em 0.2em 0.2em;
  4893. line-height: 0.5;
  4894. font-weight: normal; }
  4895. 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 {
  4896. cursor: w-resize; }
  4897. 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 {
  4898. cursor: e-resize; }
  4899. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  4900. padding: 10px; }
  4901. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  4902. padding: 0;
  4903. transition: margin-left 0.3s ease-out; }
  4904. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  4905. padding: 10px; }
  4906. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  4907. display: inline-block;
  4908. border-radius: 3px;
  4909. background-clip: padding-box;
  4910. color: #fff;
  4911. background-color: #3e3e3e;
  4912. vertical-align: middle;
  4913. font-weight: 700;
  4914. font-size: 22px;
  4915. padding: 0.05em 0.15em 0.2em 0.2em;
  4916. line-height: 0.5;
  4917. font-weight: normal; }
  4918. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  4919. cursor: w-resize; }
  4920. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  4921. cursor: e-resize; }
  4922. 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 {
  4923. font-size: 12px;
  4924. padding: 10px;
  4925. font-weight: 300; }
  4926. 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 {
  4927. font-size: 10px;
  4928. text-transform: lowercase;
  4929. float: none; }
  4930. 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 {
  4931. font-size: 14px; }
  4932. 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 {
  4933. font-size: 12px;
  4934. padding: 10px;
  4935. font-weight: 300; }
  4936. 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 {
  4937. color: #000; }
  4938. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  4939. font-weight: 900;
  4940. margin: 0 0 0.5em; }
  4941. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  4942. background: #FFF; }
  4943. 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 {
  4944. padding: 3em; }
  4945. 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 {
  4946. border: 2px solid #eee;
  4947. background-color: #eee;
  4948. color: #fff;
  4949. transition: border 0.3s ease-out;
  4950. transition: background-color 0.3s ease-out; }
  4951. 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 {
  4952. border: 2px solid #69CDCF;
  4953. background-color: #69CDCF; }
  4954. /*
  4955. _____ _____ _____ ____ _____ _____ __ __
  4956. | | _ | __ | \ | __| | | | | |
  4957. | --| | -| | | | __| | | |__| |__
  4958. |_____|__|__|__|__|____/ |__| |_____|_____|_____|
  4959. */
  4960. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  4961. width: 850px;
  4962. height: 610px;
  4963. display: moz-inline-stack;
  4964. display: inline-block;
  4965. vertical-align: top;
  4966. zoom: 1;
  4967. *display: inline;
  4968. position: relative;
  4969. margin: 7px;
  4970. border-radius: 5px;
  4971. background-clip: padding-box;
  4972. background-color: #FFF;
  4973. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4974. transition: box-shadow 0.3s ease-out;
  4975. font-size: 0px; }
  4976. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  4977. border-radius: 5px;
  4978. background-clip: padding-box;
  4979. overflow: hidden; }
  4980. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  4981. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4982. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  4983. opacity: 0; }
  4984. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  4985. transition: margin 0.3s ease-out; }
  4986. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  4987. margin-left: -850px;
  4988. margin-right: 850px; }
  4989. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  4990. position: absolute;
  4991. top: 0;
  4992. left: 0;
  4993. z-index: 999; }
  4994. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  4995. transition: width 0.3s ease-out;
  4996. width: 0;
  4997. padding-left: 0;
  4998. padding-right: 0;
  4999. margin-right: 0;
  5000. margin-left: 0;
  5001. overflow: hidden; }
  5002. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5003. position: absolute;
  5004. top: 0;
  5005. right: 0;
  5006. z-index: 11;
  5007. padding: 5px 0;
  5008. border-radius: 0 5px 0 3px;
  5009. background-clip: padding-box;
  5010. font-size: 10px;
  5011. background-color: rgba(255, 255, 255, 0.9);
  5012. color: #000; }
  5013. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5014. color: #000; }
  5015. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5016. background-color: rgba(255, 255, 255, 0.9); }
  5017. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5018. font-weight: 900;
  5019. font-size: 14px; }
  5020. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5021. padding: 0;
  5022. margin: 0; }
  5023. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5024. position: relative; }
  5025. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5026. margin: 0 5px; }
  5027. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5028. cursor: pointer; }
  5029. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5030. position: absolute;
  5031. right: 0;
  5032. top: 0;
  5033. margin-right: 22px;
  5034. min-width: 80px;
  5035. padding: 0;
  5036. display: block;
  5037. border-radius: 3px;
  5038. background-clip: padding-box;
  5039. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5040. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5041. padding: 0;
  5042. margin: 0;
  5043. line-height: 1;
  5044. display: block;
  5045. height: 0;
  5046. overflow: hidden;
  5047. transition: height 0.2s ease-out; }
  5048. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5049. display: block; }
  5050. article.node-materiau.vm-cardfull nav.nav ul.links a, article.node-breve.vm-cardfull nav.nav ul.links a {
  5051. font-size: 12px; }
  5052. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5053. width: 160px;
  5054. font-size: 0; }
  5055. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5056. font-size: 11px; }
  5057. 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 {
  5058. display: moz-inline-stack;
  5059. display: inline-block;
  5060. vertical-align: top;
  5061. zoom: 1;
  5062. *display: inline;
  5063. min-width: 48%;
  5064. max-width: 98%;
  5065. padding-left: 2px; }
  5066. 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 {
  5067. color: #a6a6a6;
  5068. transition: color 0.2s ease-out; }
  5069. 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 {
  5070. color: #000;
  5071. text-decoration: none; }
  5072. 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 {
  5073. display: block;
  5074. width: 100%; }
  5075. 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 > * {
  5076. margin-top: 1px;
  5077. padding-top: 1px;
  5078. border-top: 1px solid #e6e6e6; }
  5079. 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 {
  5080. color: #000; }
  5081. 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 {
  5082. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5083. 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 {
  5084. visibility: hidden; }
  5085. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5086. background: #FFF; }
  5087. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5088. padding: 5px 5px; }
  5089. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5090. height: 17px; }
  5091. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5092. position: absolute;
  5093. top: 0;
  5094. left: 0;
  5095. z-index: 11;
  5096. padding: 5px;
  5097. border-radius: 5px 0 3px 0;
  5098. background-clip: padding-box;
  5099. font-size: 10px;
  5100. vertical-align: top;
  5101. background-color: rgba(255, 255, 255, 0.9);
  5102. color: #000; }
  5103. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5104. padding: 3px 0 0 4px;
  5105. display: moz-inline-stack;
  5106. display: inline-block;
  5107. vertical-align: top;
  5108. zoom: 1;
  5109. *display: inline; }
  5110. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5111. font-size: 12px;
  5112. padding-top: 4em;
  5113. margin-top: -4.5em;
  5114. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5115. position: relative; }
  5116. 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 {
  5117. padding: 10px;
  5118. font-size: 12px; }
  5119. 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 {
  5120. display: block;
  5121. margin: 10px 0;
  5122. font-size: 18px;
  5123. padding: 0.1em 0.6em 0.2em;
  5124. border-radius: 0.3em;
  5125. background-clip: padding-box;
  5126. font-weight: bold;
  5127. border: 2px solid #69CDCF;
  5128. background-color: #69CDCF;
  5129. color: #fff;
  5130. cursor: pointer;
  5131. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5132. transition: text-shadow 0.2s ease-out;
  5133. text-align: center;
  5134. text-decoration: none; }
  5135. 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 {
  5136. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5137. 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 {
  5138. transition: text-shadow 0s ease-out;
  5139. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  5140. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5141. top: 0; }
  5142. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  5143. font-size: 16px; }
  5144. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  5145. display: moz-inline-stack;
  5146. display: inline-block;
  5147. vertical-align: top;
  5148. zoom: 1;
  5149. *display: inline;
  5150. width: 50%; }
  5151. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  5152. border-radius: 5px 0 0 5px;
  5153. background-clip: padding-box; }
  5154. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  5155. border-radius: 0 5px 5px 0;
  5156. background-clip: padding-box; }
  5157. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  5158. position: relative;
  5159. z-index: 1;
  5160. background-color: #fff; }
  5161. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  5162. position: absolute;
  5163. top: 0;
  5164. left: 0; }
  5165. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  5166. position: relative;
  5167. z-index: 1; }
  5168. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  5169. font-size: 20px;
  5170. font-weight: 300;
  5171. padding: 10px; }
  5172. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  5173. font-weight: 700; }
  5174. 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 {
  5175. display: moz-inline-stack;
  5176. display: inline-block;
  5177. vertical-align: top;
  5178. zoom: 1;
  5179. *display: inline;
  5180. font-size: 12px;
  5181. padding-right: 15px; }
  5182. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  5183. color: #fff;
  5184. background-color: rgba(0, 0, 0, 0.7);
  5185. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5186. transition: background-color 0.2s ease-out; }
  5187. 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 {
  5188. font-weight: 500; }
  5189. 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 {
  5190. font-size: 12px;
  5191. font-weight: 300;
  5192. padding: 10px; }
  5193. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  5194. padding: 10px;
  5195. font-size: 12px; }
  5196. 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 {
  5197. font-size: 12px;
  5198. padding: 10px;
  5199. font-weight: 300;
  5200. display: moz-inline-stack;
  5201. display: inline-block;
  5202. vertical-align: top;
  5203. zoom: 1;
  5204. *display: inline;
  5205. width: 40%; }
  5206. 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 {
  5207. margin-top: 1em; }
  5208. 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 {
  5209. font-size: 10px;
  5210. text-transform: lowercase;
  5211. float: none; }
  5212. 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 {
  5213. font-size: 14px; }
  5214. 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 {
  5215. font-size: 12px;
  5216. padding: 10px;
  5217. font-weight: 300; }
  5218. 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 {
  5219. color: #000; }
  5220. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  5221. font-weight: 900;
  5222. margin: 0 0 0.5em; }
  5223. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5224. margin: 5px; }
  5225. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5226. margin: 5px; }
  5227. 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 {
  5228. padding: 3em; }
  5229. 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 {
  5230. border: 2px solid #eee;
  5231. background-color: #eee;
  5232. color: #fff;
  5233. transition: border 0.3s ease-out;
  5234. transition: background-color 0.3s ease-out; }
  5235. 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 {
  5236. border: 2px solid #69CDCF;
  5237. background-color: #69CDCF; }
  5238. /*
  5239. _ _ _
  5240. ___ ___ ___ _| | ___ ___|_|___| |_
  5241. | _| .'| _| . | | . | _| | | _|
  5242. |___|__,|_| |___| | _|_| |_|_|_|_|
  5243. |_|
  5244. */
  5245. .print-node-materiau {
  5246. margin: 0 auto; }
  5247. @media screen {
  5248. .print-node-materiau {
  5249. width: 850px;
  5250. height: auto;
  5251. display: moz-inline-stack;
  5252. display: inline-block;
  5253. vertical-align: top;
  5254. zoom: 1;
  5255. *display: inline;
  5256. position: relative;
  5257. margin: 7px;
  5258. border-radius: 5px;
  5259. background-clip: padding-box;
  5260. background-color: #FFF;
  5261. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5262. transition: box-shadow 0.3s ease-out;
  5263. width: 1024px;
  5264. padding: 1em; }
  5265. .print-node-materiau > div.side {
  5266. border-radius: 5px;
  5267. background-clip: padding-box;
  5268. overflow: hidden; }
  5269. .print-node-materiau.focused {
  5270. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5271. .print-node-materiau.just-added {
  5272. opacity: 0; }
  5273. .print-node-materiau.associated {
  5274. transition: margin 0.3s ease-out; }
  5275. .print-node-materiau.associated.just-added {
  5276. margin-left: -850px;
  5277. margin-right: 850px; }
  5278. .modal-content .print-node-materiau.associated {
  5279. position: absolute;
  5280. top: 0;
  5281. left: 0;
  5282. z-index: 999; }
  5283. .print-node-materiau.removed {
  5284. transition: width 0.3s ease-out;
  5285. width: 0;
  5286. padding-left: 0;
  5287. padding-right: 0;
  5288. margin-right: 0;
  5289. margin-left: 0;
  5290. overflow: hidden; }
  5291. .print-node-materiau nav.nav {
  5292. position: absolute;
  5293. top: 0;
  5294. right: 0;
  5295. z-index: 11;
  5296. padding: 5px 0;
  5297. border-radius: 0 5px 0 3px;
  5298. background-clip: padding-box;
  5299. font-size: 10px;
  5300. background-color: rgba(255, 255, 255, 0.9);
  5301. color: #000; }
  5302. .print-node-materiau nav.nav a {
  5303. color: #000; }
  5304. .print-node-materiau nav.nav ul {
  5305. background-color: rgba(255, 255, 255, 0.9); }
  5306. .print-node-materiau nav.nav span.op {
  5307. font-weight: 900;
  5308. font-size: 14px; }
  5309. .print-node-materiau nav.nav ul {
  5310. padding: 0;
  5311. margin: 0; }
  5312. .print-node-materiau nav.nav section {
  5313. position: relative; }
  5314. .print-node-materiau nav.nav section > i {
  5315. margin: 0 5px; }
  5316. .print-node-materiau nav.nav section > i:hover {
  5317. cursor: pointer; }
  5318. .print-node-materiau nav.nav ul {
  5319. position: absolute;
  5320. right: 0;
  5321. top: 0;
  5322. margin-right: 22px;
  5323. min-width: 80px;
  5324. padding: 0;
  5325. display: block;
  5326. border-radius: 3px;
  5327. background-clip: padding-box;
  5328. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5329. .print-node-materiau nav.nav ul li {
  5330. padding: 0;
  5331. margin: 0;
  5332. line-height: 1;
  5333. display: block;
  5334. height: 0;
  5335. overflow: hidden;
  5336. transition: height 0.2s ease-out; }
  5337. .print-node-materiau nav.nav ul li a {
  5338. display: block; }
  5339. .print-node-materiau nav.nav ul.links a {
  5340. font-size: 12px; }
  5341. .print-node-materiau nav.nav ul.flag-lists-entity-links {
  5342. width: 160px;
  5343. font-size: 0; }
  5344. .print-node-materiau nav.nav ul.flag-lists-entity-links > * {
  5345. font-size: 11px; }
  5346. .print-node-materiau nav.nav ul.flag-lists-entity-links li {
  5347. display: moz-inline-stack;
  5348. display: inline-block;
  5349. vertical-align: top;
  5350. zoom: 1;
  5351. *display: inline;
  5352. min-width: 48%;
  5353. max-width: 98%;
  5354. padding-left: 2px; }
  5355. .print-node-materiau nav.nav ul.flag-lists-entity-links li a {
  5356. color: #a6a6a6;
  5357. transition: color 0.2s ease-out; }
  5358. .print-node-materiau nav.nav ul.flag-lists-entity-links li a:hover, .print-node-materiau nav.nav ul.flag-lists-entity-links li a.unflag-action {
  5359. color: #000;
  5360. text-decoration: none; }
  5361. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5362. display: block;
  5363. width: 100%; }
  5364. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5365. margin-top: 1px;
  5366. padding-top: 1px;
  5367. border-top: 1px solid #e6e6e6; }
  5368. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5369. color: #000; }
  5370. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading {
  5371. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5372. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading a {
  5373. visibility: hidden; }
  5374. .ie8 .print-node-materiau nav.nav ul {
  5375. background: #FFF; }
  5376. .print-node-materiau nav.nav section:hover ul {
  5377. padding: 5px 5px; }
  5378. .print-node-materiau nav.nav section:hover ul li {
  5379. height: 17px; }
  5380. .print-node-materiau div.workflow {
  5381. position: absolute;
  5382. top: 0;
  5383. left: 0;
  5384. z-index: 11;
  5385. padding: 5px;
  5386. border-radius: 5px 0 3px 0;
  5387. background-clip: padding-box;
  5388. font-size: 10px;
  5389. vertical-align: top;
  5390. background-color: rgba(255, 255, 255, 0.9);
  5391. color: #000; }
  5392. .print-node-materiau div.workflow span {
  5393. padding: 3px 0 0 4px;
  5394. display: moz-inline-stack;
  5395. display: inline-block;
  5396. vertical-align: top;
  5397. zoom: 1;
  5398. *display: inline; }
  5399. .print-node-materiau .field-name-field-description .upgrade {
  5400. font-size: 12px;
  5401. padding-top: 4em;
  5402. margin-top: -4.5em;
  5403. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5404. position: relative; }
  5405. .print-node-materiau .side.oops p, .print-node-materiau .side .upgrade p {
  5406. padding: 10px;
  5407. font-size: 12px; }
  5408. .print-node-materiau .side.oops p a, .print-node-materiau .side .upgrade p a {
  5409. display: block;
  5410. margin: 10px 0;
  5411. font-size: 18px;
  5412. padding: 0.1em 0.6em 0.2em;
  5413. border-radius: 0.3em;
  5414. background-clip: padding-box;
  5415. font-weight: bold;
  5416. border: 2px solid #69CDCF;
  5417. background-color: #69CDCF;
  5418. color: #fff;
  5419. cursor: pointer;
  5420. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5421. transition: text-shadow 0.2s ease-out;
  5422. text-align: center;
  5423. text-decoration: none; }
  5424. .print-node-materiau .side.oops p a:hover, .print-node-materiau .side.oops p a:focus, .print-node-materiau .side .upgrade p a:hover, .print-node-materiau .side .upgrade p a:focus {
  5425. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5426. .print-node-materiau .side.oops p a:active, .print-node-materiau .side .upgrade p a:active {
  5427. transition: text-shadow 0s ease-out;
  5428. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } }
  5429. .print-content .node-materiau.vm-print {
  5430. margin: 0;
  5431. position: relative; }
  5432. .print-content .node-materiau.vm-print .field-name-title-field {
  5433. font-weight: 500;
  5434. font-size: 1.4em; }
  5435. .print-content .node-materiau.vm-print .field-name-field-nature-titre {
  5436. font-weight: 500;
  5437. font-size: 1em;
  5438. margin-bottom: 0.5em; }
  5439. .print-content .node-materiau.vm-print .group-head-right {
  5440. position: absolute;
  5441. top: 0;
  5442. right: 0;
  5443. padding-top: 1em;
  5444. text-align: right;
  5445. font-size: 0.8em; }
  5446. .print-content .node-materiau.vm-print .group-head-right .field-name-field-reference-materio {
  5447. font-weight: 800;
  5448. font-size: 1.2em; }
  5449. .print-content .node-materiau.vm-print .side.group-side-left {
  5450. width: 45%;
  5451. position: absolute; }
  5452. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-description {
  5453. font-size: 0.8em; }
  5454. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference {
  5455. display: inline-block;
  5456. vertical-align: top;
  5457. width: 45%;
  5458. margin: 0.5em 1em 0 0;
  5459. font-size: 0.7em; }
  5460. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .field-label {
  5461. font-size: 0.8em;
  5462. font-weight: 300; }
  5463. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-name-field-tode-company {
  5464. font-size: 1.2em; }
  5465. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-label {
  5466. display: none; }
  5467. .print-content .node-materiau.vm-print .side.group-side-right section, .print-content .node-materiau.vm-print .side.group-side-right div, .print-content .node-materiau.vm-print .side.group-side-right figure {
  5468. max-width: 100%; }
  5469. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image {
  5470. text-align: right; }
  5471. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure {
  5472. display: inline-block;
  5473. max-width: 19%;
  5474. margin: 0.5em 0 0 0.5em;
  5475. max-width: 100%;
  5476. margin-left: 50%; }
  5477. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure img {
  5478. max-width: 100%; }
  5479. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item {
  5480. display: none;
  5481. max-width: 19%;
  5482. margin: 0.5em 0 0 0.5em; }
  5483. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+7) {
  5484. display: inline-block; }
  5485. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+2) {
  5486. max-width: 100%;
  5487. margin-left: 50%; }
  5488. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item img {
  5489. max-width: 100%; }
  5490. .print-content .node-materiau.vm-print .field-name-field-tode-company {
  5491. font-size: 1.5em;
  5492. font-weight: 700; }
  5493. .print-content .node-materiau.vm-print .field-name-field-description,
  5494. .print-content .node-materiau.vm-print .field-name-field-company-fab,
  5495. .print-content .node-materiau.vm-print .field-name-field-reference-distrib {
  5496. padding-bottom: 1em; }
  5497. /*
  5498. ____ ____ _____ ________
  5499. / __ \/ __ \/ _/ | / /_ __/
  5500. / /_/ / /_/ // // |/ / / /
  5501. / ____/ _, _// // /| / / /
  5502. /_/ /_/ |_/___/_/ |_/ /_/
  5503. */
  5504. @media print {
  5505. @page {
  5506. margin: 1.5cm 7mm 8mm; } }
  5507. .print-site_name {
  5508. width: 100%;
  5509. vertical-align: bottom;
  5510. margin-bottom: 0.5em; }
  5511. .print-site_name h1 {
  5512. margin: 0 0 0 0;
  5513. font-size: 1.4em;
  5514. text-align: center; }
  5515. .print-site_name h1 a {
  5516. color: inherit; }
  5517. .print-site_name h1 a:hover {
  5518. text-decoration: none; }
  5519. .print-site_name span.slogan {
  5520. display: none;
  5521. font-size: 0.8em;
  5522. margin-top: -3px;
  5523. margin-left: -0.5em;
  5524. font-weight: 900; }
  5525. .ie8 .print-site_name span.slogan {
  5526. position: absolute;
  5527. margin-top: 22px; }
  5528. .print-content {
  5529. margin-bottom: 1em; }
  5530. .print-footer {
  5531. position: absolute;
  5532. bottom: 0;
  5533. text-align: center;
  5534. width: 100%; }
  5535. .print-footer p {
  5536. display: inline-block;
  5537. width: 45%;
  5538. text-align: center; }
  5539. /*
  5540. ___ __ ____________ __________ __ _______ __ __________________
  5541. / | / / / /_ __/ __ \/ ____/ __ \/ |/ / __ \/ / / ____/_ __/ ____/
  5542. / /| |/ / / / / / / / / / / / / / / /|_/ / /_/ / / / __/ / / / __/
  5543. / ___ / /_/ / / / / /_/ / /___/ /_/ / / / / ____/ /___/ /___ / / / /___
  5544. /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/
  5545. */
  5546. #autocomplete {
  5547. border: 0;
  5548. border-radius: 3px;
  5549. background-clip: padding-box;
  5550. background-color: rgba(0, 0, 0, 0.6);
  5551. text-align: left;
  5552. margin-left: 2px; }
  5553. .oldie #autocomplete {
  5554. background-color: #545454; }
  5555. #autocomplete li {
  5556. color: #FFF;
  5557. background-color: transparent;
  5558. font-size: 12px; }
  5559. #autocomplete li.selected {
  5560. background-color: rgba(0, 0, 0, 0.8); }
  5561. #autocomplete li div {
  5562. padding: 0.1em 5px; }
  5563. /**
  5564. * the old modal api (balck bg) for contextual forms (create new flag list)
  5565. */
  5566. #modal {
  5567. background-color: rgba(0, 0, 0, 0.7);
  5568. border-radius: 5px;
  5569. background-clip: padding-box;
  5570. border: 0;
  5571. font-size: 12px; }
  5572. #modal * {
  5573. color: #fff;
  5574. background-color: transparent; }
  5575. #modal form {
  5576. background-color: transparent;
  5577. color: #fff;
  5578. border: 0px; }
  5579. #modal form .form-actions {
  5580. background-color: transparent;
  5581. margin: 0;
  5582. padding: 0;
  5583. border: 0; }
  5584. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  5585. background-color: #fff;
  5586. color: #000;
  5587. border: 0; }
  5588. #modal form .form-actions {
  5589. text-align: right; }
  5590. #modal form input.form-submit {
  5591. border-style: solid;
  5592. border-width: 0;
  5593. cursor: pointer;
  5594. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5595. font-weight: normal;
  5596. line-height: normal;
  5597. margin: 0 0 1.25rem;
  5598. position: relative;
  5599. text-decoration: none;
  5600. text-align: center;
  5601. -webkit-appearance: none;
  5602. -moz-appearance: none;
  5603. border-radius: 0;
  5604. display: inline-block;
  5605. padding-top: 0.625rem;
  5606. padding-right: 1.25rem;
  5607. padding-bottom: 0.6875rem;
  5608. padding-left: 1.25rem;
  5609. font-size: 0.6875rem;
  5610. background-color: #008CBA;
  5611. border-color: #007095;
  5612. color: #FFFFFF;
  5613. transition: background-color 300ms ease-out; }
  5614. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5615. background-color: #007095; }
  5616. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5617. color: #FFFFFF; }
  5618. #modal form input.form-submit[name="create"] {
  5619. border-style: solid;
  5620. border-width: 0;
  5621. cursor: pointer;
  5622. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5623. font-weight: normal;
  5624. line-height: normal;
  5625. margin: 0 0 1.25rem;
  5626. position: relative;
  5627. text-decoration: none;
  5628. text-align: center;
  5629. -webkit-appearance: none;
  5630. -moz-appearance: none;
  5631. border-radius: 0;
  5632. display: inline-block;
  5633. padding-top: 0.625rem;
  5634. padding-right: 1.25rem;
  5635. padding-bottom: 0.6875rem;
  5636. padding-left: 1.25rem;
  5637. font-size: 0.6875rem;
  5638. background-color: #43AC6A;
  5639. border-color: #368a55;
  5640. color: #FFFFFF;
  5641. transition: background-color 300ms ease-out; }
  5642. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5643. background-color: #368a55; }
  5644. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5645. color: #FFFFFF; }
  5646. #modal form input.form-submit[name="save"] {
  5647. border-style: solid;
  5648. border-width: 0;
  5649. cursor: pointer;
  5650. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5651. font-weight: normal;
  5652. line-height: normal;
  5653. margin: 0 0 1.25rem;
  5654. position: relative;
  5655. text-decoration: none;
  5656. text-align: center;
  5657. -webkit-appearance: none;
  5658. -moz-appearance: none;
  5659. border-radius: 0;
  5660. display: inline-block;
  5661. padding-top: 0.625rem;
  5662. padding-right: 1.25rem;
  5663. padding-bottom: 0.6875rem;
  5664. padding-left: 1.25rem;
  5665. font-size: 0.6875rem;
  5666. background-color: #43AC6A;
  5667. border-color: #368a55;
  5668. color: #FFFFFF;
  5669. transition: background-color 300ms ease-out; }
  5670. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5671. background-color: #368a55; }
  5672. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5673. color: #FFFFFF; }
  5674. #modal form input.form-submit[name="delete"] {
  5675. border-style: solid;
  5676. border-width: 0;
  5677. cursor: pointer;
  5678. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5679. font-weight: normal;
  5680. line-height: normal;
  5681. margin: 0 0 1.25rem;
  5682. position: relative;
  5683. text-decoration: none;
  5684. text-align: center;
  5685. -webkit-appearance: none;
  5686. -moz-appearance: none;
  5687. border-radius: 0;
  5688. display: inline-block;
  5689. padding-top: 0.625rem;
  5690. padding-right: 1.25rem;
  5691. padding-bottom: 0.6875rem;
  5692. padding-left: 1.25rem;
  5693. font-size: 0.6875rem;
  5694. background-color: #f04124;
  5695. border-color: #cf2a0e;
  5696. color: #FFFFFF;
  5697. transition: background-color 300ms ease-out; }
  5698. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5699. background-color: #cf2a0e; }
  5700. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5701. color: #FFFFFF; }
  5702. #modal form input.form-submit[name="cancel"] {
  5703. border-style: solid;
  5704. border-width: 0;
  5705. cursor: pointer;
  5706. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5707. font-weight: normal;
  5708. line-height: normal;
  5709. margin: 0 0 1.25rem;
  5710. position: relative;
  5711. text-decoration: none;
  5712. text-align: center;
  5713. -webkit-appearance: none;
  5714. -moz-appearance: none;
  5715. border-radius: 0;
  5716. display: inline-block;
  5717. padding-top: 0.625rem;
  5718. padding-right: 1.25rem;
  5719. padding-bottom: 0.6875rem;
  5720. padding-left: 1.25rem;
  5721. font-size: 0.6875rem;
  5722. background-color: #e7e7e7;
  5723. border-color: #b9b9b9;
  5724. color: #333333;
  5725. transition: background-color 300ms ease-out; }
  5726. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5727. background-color: #b9b9b9; }
  5728. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5729. color: #333333; }
  5730. #modal > * {
  5731. padding: 10px; }
  5732. #modal #flag-lists-form .form-item-title input {
  5733. width: 95%; }
  5734. #modal .actions {
  5735. text-align: right; }
  5736. /**
  5737. * the new modal api used for preview and register modal
  5738. */
  5739. .modal-wrapper {
  5740. bottom: 0;
  5741. left: 0;
  5742. position: fixed;
  5743. right: 0;
  5744. text-align: center;
  5745. top: 0;
  5746. white-space: nowrap;
  5747. z-index: 99998; }
  5748. .modal-wrapper:before {
  5749. content: "";
  5750. display: inline-block;
  5751. height: 100%;
  5752. margin-right: -0.25em;
  5753. vertical-align: middle; }
  5754. .modal-wrapper:after, .modal-wrapper:before {
  5755. -moz-box-sizing: border-box; }
  5756. .modal-wrapper .modal-bg {
  5757. background-color: #000;
  5758. position: absolute;
  5759. top: 0;
  5760. left: 0;
  5761. width: 100%;
  5762. height: 100%;
  5763. opacity: 0.5; }
  5764. .modal-wrapper .modal-content {
  5765. position: relative;
  5766. display: inline-block;
  5767. margin: 0 auto;
  5768. text-align: left;
  5769. vertical-align: middle;
  5770. white-space: normal;
  5771. min-height: 200px; }
  5772. /*
  5773. _______ __________ ____ __ __ ____ ___ _ __
  5774. / / ___// ____/ __ \/ __ \/ / / / / __ \/ | / | / /
  5775. __ / /\__ \/ / / /_/ / / / / / / / / /_/ / /| | / |/ /
  5776. / /_/ /___/ / /___/ _, _/ /_/ / /___/ /___/ ____/ ___ |/ /| /
  5777. \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/
  5778. */
  5779. .jspContainer .jspVerticalBar {
  5780. background-color: transparent;
  5781. width: 5px; }
  5782. .jspContainer .jspVerticalBar .jspTrack {
  5783. background-color: transparent; }
  5784. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  5785. background-color: #ccc;
  5786. border-radius: 3px;
  5787. background-clip: padding-box; }
  5788. /*
  5789. __________ ____ __ ______________
  5790. /_ __/ __ \/ __ \/ / /_ __/ _/ __ / / / / / / / / / / / / / // /_/ /
  5791. / / / /_/ / /_/ / /___/ / _/ // ____/
  5792. /_/ \____/\____/_____/_/ /___/_/
  5793. */
  5794. #tooltip {
  5795. position: absolute;
  5796. z-index: 999;
  5797. max-width: 180px;
  5798. background-color: white;
  5799. padding: 5px;
  5800. border-radius: 3px;
  5801. background-clip: padding-box;
  5802. font-size: 12px;
  5803. font-weight: 500;
  5804. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  5805. #tooltip.op-visible {
  5806. transition: opacity 0.1s ease-out; }
  5807. /*
  5808. ______________________ ____ ___ ________ __
  5809. / ____/ ____/ ____/ __ \/ __ )/ | / ____/ //_/
  5810. / /_ / __/ / __/ / / / / __ / /| |/ / / ,<
  5811. / __/ / /___/ /___/ /_/ / /_/ / ___ / /___/ /| |
  5812. /_/ /_____/_____/_____/_____/_/ |_\____/_/ |_|
  5813. */
  5814. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  5815. #block-feedback-form {
  5816. bottom: 5px;
  5817. left: 5px;
  5818. right: auto; } }
  5819. #block-feedback-form h2 {
  5820. line-height: 1.2;
  5821. font-size: 14px;
  5822. margin: 0; }
  5823. #block-feedback-form h2 .title {
  5824. display: none; }
  5825. #block-feedback-form #feedback-form-toggle {
  5826. padding: 2px 3px;
  5827. border-radius: 3px;
  5828. background-clip: padding-box;
  5829. background-color: #ff7600;
  5830. color: #fff;
  5831. line-height: 2;
  5832. font-weight: 900; }
  5833. #block-feedback-form .content {
  5834. background-color: rgba(0, 0, 0, 0.7);
  5835. border-radius: 5px;
  5836. background-clip: padding-box;
  5837. border: 0;
  5838. font-size: 12px; }
  5839. #block-feedback-form .content * {
  5840. color: #fff;
  5841. background-color: transparent; }
  5842. #block-feedback-form .content form {
  5843. background-color: transparent;
  5844. color: #fff;
  5845. border: 0px; }
  5846. #block-feedback-form .content form .form-actions {
  5847. background-color: transparent;
  5848. margin: 0;
  5849. padding: 0;
  5850. border: 0; }
  5851. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  5852. background-color: #fff;
  5853. color: #000;
  5854. border: 0; }
  5855. #block-feedback-form .content form .form-actions {
  5856. text-align: right; }
  5857. #block-feedback-form .content form input.form-submit {
  5858. border-style: solid;
  5859. border-width: 0;
  5860. cursor: pointer;
  5861. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5862. font-weight: normal;
  5863. line-height: normal;
  5864. margin: 0 0 1.25rem;
  5865. position: relative;
  5866. text-decoration: none;
  5867. text-align: center;
  5868. -webkit-appearance: none;
  5869. -moz-appearance: none;
  5870. border-radius: 0;
  5871. display: inline-block;
  5872. padding-top: 0.625rem;
  5873. padding-right: 1.25rem;
  5874. padding-bottom: 0.6875rem;
  5875. padding-left: 1.25rem;
  5876. font-size: 0.6875rem;
  5877. background-color: #008CBA;
  5878. border-color: #007095;
  5879. color: #FFFFFF;
  5880. transition: background-color 300ms ease-out; }
  5881. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  5882. background-color: #007095; }
  5883. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  5884. color: #FFFFFF; }
  5885. #block-feedback-form .content form input.form-submit[name="create"] {
  5886. border-style: solid;
  5887. border-width: 0;
  5888. cursor: pointer;
  5889. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5890. font-weight: normal;
  5891. line-height: normal;
  5892. margin: 0 0 1.25rem;
  5893. position: relative;
  5894. text-decoration: none;
  5895. text-align: center;
  5896. -webkit-appearance: none;
  5897. -moz-appearance: none;
  5898. border-radius: 0;
  5899. display: inline-block;
  5900. padding-top: 0.625rem;
  5901. padding-right: 1.25rem;
  5902. padding-bottom: 0.6875rem;
  5903. padding-left: 1.25rem;
  5904. font-size: 0.6875rem;
  5905. background-color: #43AC6A;
  5906. border-color: #368a55;
  5907. color: #FFFFFF;
  5908. transition: background-color 300ms ease-out; }
  5909. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  5910. background-color: #368a55; }
  5911. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  5912. color: #FFFFFF; }
  5913. #block-feedback-form .content form input.form-submit[name="save"] {
  5914. border-style: solid;
  5915. border-width: 0;
  5916. cursor: pointer;
  5917. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5918. font-weight: normal;
  5919. line-height: normal;
  5920. margin: 0 0 1.25rem;
  5921. position: relative;
  5922. text-decoration: none;
  5923. text-align: center;
  5924. -webkit-appearance: none;
  5925. -moz-appearance: none;
  5926. border-radius: 0;
  5927. display: inline-block;
  5928. padding-top: 0.625rem;
  5929. padding-right: 1.25rem;
  5930. padding-bottom: 0.6875rem;
  5931. padding-left: 1.25rem;
  5932. font-size: 0.6875rem;
  5933. background-color: #43AC6A;
  5934. border-color: #368a55;
  5935. color: #FFFFFF;
  5936. transition: background-color 300ms ease-out; }
  5937. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  5938. background-color: #368a55; }
  5939. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  5940. color: #FFFFFF; }
  5941. #block-feedback-form .content form input.form-submit[name="delete"] {
  5942. border-style: solid;
  5943. border-width: 0;
  5944. cursor: pointer;
  5945. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5946. font-weight: normal;
  5947. line-height: normal;
  5948. margin: 0 0 1.25rem;
  5949. position: relative;
  5950. text-decoration: none;
  5951. text-align: center;
  5952. -webkit-appearance: none;
  5953. -moz-appearance: none;
  5954. border-radius: 0;
  5955. display: inline-block;
  5956. padding-top: 0.625rem;
  5957. padding-right: 1.25rem;
  5958. padding-bottom: 0.6875rem;
  5959. padding-left: 1.25rem;
  5960. font-size: 0.6875rem;
  5961. background-color: #f04124;
  5962. border-color: #cf2a0e;
  5963. color: #FFFFFF;
  5964. transition: background-color 300ms ease-out; }
  5965. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  5966. background-color: #cf2a0e; }
  5967. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  5968. color: #FFFFFF; }
  5969. #block-feedback-form .content form input.form-submit[name="cancel"] {
  5970. border-style: solid;
  5971. border-width: 0;
  5972. cursor: pointer;
  5973. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5974. font-weight: normal;
  5975. line-height: normal;
  5976. margin: 0 0 1.25rem;
  5977. position: relative;
  5978. text-decoration: none;
  5979. text-align: center;
  5980. -webkit-appearance: none;
  5981. -moz-appearance: none;
  5982. border-radius: 0;
  5983. display: inline-block;
  5984. padding-top: 0.625rem;
  5985. padding-right: 1.25rem;
  5986. padding-bottom: 0.6875rem;
  5987. padding-left: 1.25rem;
  5988. font-size: 0.6875rem;
  5989. background-color: #e7e7e7;
  5990. border-color: #b9b9b9;
  5991. color: #333333;
  5992. transition: background-color 300ms ease-out; }
  5993. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  5994. background-color: #b9b9b9; }
  5995. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  5996. color: #333333; }
  5997. .ie8 #block-feedback-form .content {
  5998. background: #000; }
  5999. #block-feedback-form #feedback-status-message {
  6000. background-color: #fff;
  6001. padding: 5px; }
  6002. /*
  6003. _________ _____ __ __ __ _________ ____ _____
  6004. /_ __/ | / ___// //_/ _/_/ /_ __/ | / __ ) ___/
  6005. / / / /| | \__ \/ ,< _/_/ / / / /| | / __ \__ / / / ___ |___/ / /| | _/_/ / / / ___ |/ /_/ /__/ /
  6006. /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/
  6007. */
  6008. #tasks ul.tabs {
  6009. display: moz-inline-stack;
  6010. display: inline-block;
  6011. vertical-align: top;
  6012. zoom: 1;
  6013. *display: inline;
  6014. border: 0 solid #fff;
  6015. padding: 0;
  6016. margin: 0; }
  6017. #tasks ul.tabs li {
  6018. padding: 0;
  6019. margin: 2px 5px;
  6020. border: 0 solid #fff; }
  6021. #tasks ul.tabs a {
  6022. border: 0;
  6023. color: #7f7f7f; }
  6024. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6025. font-weight: 900;
  6026. color: #000; }
  6027. #tasks ul.tabs.primary a {
  6028. font-size: 12px;
  6029. padding: 5px 10px;
  6030. background-color: #e6e6e6;
  6031. border-radius: 3px;
  6032. background-clip: padding-box; }
  6033. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6034. background-color: #e6e6e6; }
  6035. #tasks ul.tabs.secondary {
  6036. font-size: 10px;
  6037. padding: 0.5em 1em; }
  6038. /*
  6039. ______________ _____________________
  6040. / ___/_ __/ |/_ __/ _/ ____/ ___/
  6041. \__ \ / / / /| | / / / // / \__ ___/ // / / ___ |/ / _/ // /___ ___/ /
  6042. /____//_/ /_/ |_/_/ /___/\____//____/
  6043. */
  6044. /*
  6045. _ _ ___ ___ ___
  6046. | | |_ -| -_| _|
  6047. |___|___|___|_|
  6048. */
  6049. .page-user #center, .page-user-edit #center, .page-user-password #center, .page-user-reset #center, .page-toboggan #center {
  6050. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right; }
  6051. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6052. width: 800px;
  6053. margin: 0 auto; }
  6054. .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 {
  6055. display: none; }
  6056. .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 {
  6057. font-size: 12px;
  6058. padding: 5px 10px;
  6059. background-color: #e6e6e6;
  6060. border-radius: 3px;
  6061. background-clip: padding-box; }
  6062. .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 {
  6063. background-color: #e6e6e6; }
  6064. .page-user #center > *, .page-user-edit #center > *, .page-user-password #center > *, .page-user-reset #center > *, .page-toboggan #center > * {
  6065. width: 800px;
  6066. margin: 0 auto;
  6067. padding-top: 1em;
  6068. font-size: 14px; }
  6069. .page-user #center > * fieldset, .page-user-edit #center > * fieldset, .page-user-password #center > * fieldset, .page-user-reset #center > * fieldset, .page-toboggan #center > * fieldset {
  6070. margin-bottom: 1em;
  6071. border: none; }
  6072. .page-user #center > * legend, .page-user-edit #center > * legend, .page-user-password #center > * legend, .page-user-reset #center > * legend, .page-toboggan #center > * legend {
  6073. font-size: 16px;
  6074. margin: 0;
  6075. padding: 10px 0 5px 0;
  6076. line-height: 1;
  6077. border: 0 solid #fff; }
  6078. .page-user #center > * legend a, .page-user-edit #center > * legend a, .page-user-password #center > * legend a, .page-user-reset #center > * legend a, .page-toboggan #center > * legend a {
  6079. color: #000; }
  6080. .page-user #center > * .form-item, .page-user-edit #center > * .form-item, .page-user-password #center > * .form-item, .page-user-reset #center > * .form-item, .page-toboggan #center > * .form-item {
  6081. margin: 0 0 0.5em 0;
  6082. width: 100%; }
  6083. .page-user #center > * .form-item label, .page-user #center > * .form-item input.form-text, .page-user-edit #center > * .form-item label, .page-user-edit #center > * .form-item input.form-text, .page-user-password #center > * .form-item label, .page-user-password #center > * .form-item input.form-text, .page-user-reset #center > * .form-item label, .page-user-reset #center > * .form-item input.form-text, .page-toboggan #center > * .form-item label, .page-toboggan #center > * .form-item input.form-text {
  6084. display: moz-inline-stack;
  6085. display: inline-block;
  6086. vertical-align: top;
  6087. zoom: 1;
  6088. *display: inline;
  6089. vertical-align: middle; }
  6090. .page-user #center > * .form-item label, .page-user-edit #center > * .form-item label, .page-user-password #center > * .form-item label, .page-user-reset #center > * .form-item label, .page-toboggan #center > * .form-item label {
  6091. margin-right: 1em; }
  6092. .page-user #center > * .form-item input.form-text, .page-user-edit #center > * .form-item input.form-text, .page-user-password #center > * .form-item input.form-text, .page-user-reset #center > * .form-item input.form-text, .page-toboggan #center > * .form-item input.form-text {
  6093. padding: 2px 4px;
  6094. width: 20em; }
  6095. .page-user #center > * .form-wrapper > .form-item, .page-user-edit #center > * .form-wrapper > .form-item, .page-user-password #center > * .form-wrapper > .form-item, .page-user-reset #center > * .form-wrapper > .form-item, .page-toboggan #center > * .form-wrapper > .form-item {
  6096. margin: 0 0 2em 0; }
  6097. .page-user #center > * .form-type-password-confirm label, .page-user #center > * .form-type-new-password-confirm label, .page-user-edit #center > * .form-type-password-confirm label, .page-user-edit #center > * .form-type-new-password-confirm label, .page-user-password #center > * .form-type-password-confirm label, .page-user-password #center > * .form-type-new-password-confirm label, .page-user-reset #center > * .form-type-password-confirm label, .page-user-reset #center > * .form-type-new-password-confirm label, .page-toboggan #center > * .form-type-password-confirm label, .page-toboggan #center > * .form-type-new-password-confirm label {
  6098. width: 9em; }
  6099. .page-user #center > * .form-type-password-confirm .password-parent, .page-user #center > * .form-type-new-password-confirm .password-parent, .page-user-edit #center > * .form-type-password-confirm .password-parent, .page-user-edit #center > * .form-type-new-password-confirm .password-parent, .page-user-password #center > * .form-type-password-confirm .password-parent, .page-user-password #center > * .form-type-new-password-confirm .password-parent, .page-user-reset #center > * .form-type-password-confirm .password-parent, .page-user-reset #center > * .form-type-new-password-confirm .password-parent, .page-toboggan #center > * .form-type-password-confirm .password-parent, .page-toboggan #center > * .form-type-new-password-confirm .password-parent {
  6100. width: auto; }
  6101. .page-user #center > * .form-type-password-confirm .password-strength, .page-user #center > * .form-type-password-confirm .password-confirm, .page-user #center > * .form-type-new-password-confirm .password-strength, .page-user #center > * .form-type-new-password-confirm .password-confirm, .page-user-edit #center > * .form-type-password-confirm .password-strength, .page-user-edit #center > * .form-type-password-confirm .password-confirm, .page-user-edit #center > * .form-type-new-password-confirm .password-strength, .page-user-edit #center > * .form-type-new-password-confirm .password-confirm, .page-user-password #center > * .form-type-password-confirm .password-strength, .page-user-password #center > * .form-type-password-confirm .password-confirm, .page-user-password #center > * .form-type-new-password-confirm .password-strength, .page-user-password #center > * .form-type-new-password-confirm .password-confirm, .page-user-reset #center > * .form-type-password-confirm .password-strength, .page-user-reset #center > * .form-type-password-confirm .password-confirm, .page-user-reset #center > * .form-type-new-password-confirm .password-strength, .page-user-reset #center > * .form-type-new-password-confirm .password-confirm, .page-toboggan #center > * .form-type-password-confirm .password-strength, .page-toboggan #center > * .form-type-password-confirm .password-confirm, .page-toboggan #center > * .form-type-new-password-confirm .password-strength, .page-toboggan #center > * .form-type-new-password-confirm .password-confirm {
  6102. width: 15em;
  6103. margin-top: 0; }
  6104. .page-user #center > * .form-type-checkbox input, .page-user-edit #center > * .form-type-checkbox input, .page-user-password #center > * .form-type-checkbox input, .page-user-reset #center > * .form-type-checkbox input, .page-toboggan #center > * .form-type-checkbox input {
  6105. margin: 0; }
  6106. .page-user #center > * .form-type-checkbox label, .page-user-edit #center > * .form-type-checkbox label, .page-user-password #center > * .form-type-checkbox label, .page-user-reset #center > * .form-type-checkbox label, .page-toboggan #center > * .form-type-checkbox label {
  6107. font-size: 14px;
  6108. margin: 0; }
  6109. .page-user #center > * #edit-language .form-item, .page-user-edit #center > * #edit-language .form-item, .page-user-password #center > * #edit-language .form-item, .page-user-reset #center > * #edit-language .form-item, .page-toboggan #center > * #edit-language .form-item {
  6110. display: moz-inline-stack;
  6111. display: inline-block;
  6112. vertical-align: top;
  6113. zoom: 1;
  6114. *display: inline;
  6115. width: auto;
  6116. margin-right: 1em; }
  6117. .page-user #center > * #edit-language .form-item input, .page-user #center > * #edit-language .form-item label, .page-user-edit #center > * #edit-language .form-item input, .page-user-edit #center > * #edit-language .form-item label, .page-user-password #center > * #edit-language .form-item input, .page-user-password #center > * #edit-language .form-item label, .page-user-reset #center > * #edit-language .form-item input, .page-user-reset #center > * #edit-language .form-item label, .page-toboggan #center > * #edit-language .form-item input, .page-toboggan #center > * #edit-language .form-item label {
  6118. margin: 0; }
  6119. .page-user #center > * select.form-select, .page-user-edit #center > * select.form-select, .page-user-password #center > * select.form-select, .page-user-reset #center > * select.form-select, .page-toboggan #center > * select.form-select {
  6120. width: auto;
  6121. padding: 2px 4px;
  6122. height: auto; }
  6123. .page-user #center > * div.description, .page-user-edit #center > * div.description, .page-user-password #center > * div.description, .page-user-reset #center > * div.description, .page-toboggan #center > * div.description {
  6124. font-size: 10px; }
  6125. .page-user #center > * div.form-actions, .page-user-edit #center > * div.form-actions, .page-user-password #center > * div.form-actions, .page-user-reset #center > * div.form-actions, .page-toboggan #center > * div.form-actions {
  6126. margin: 0;
  6127. text-align: right;
  6128. padding: 1em 0.5em; }
  6129. .page-user #center > *#user-profile-form label, .page-user-edit #center > *#user-profile-form label, .page-user-password #center > *#user-profile-form label, .page-user-reset #center > *#user-profile-form label, .page-toboggan #center > *#user-profile-form label {
  6130. min-width: 10em; }
  6131. .page-user #center > * #edit-profile-adherent-field-first-name, .page-user #center > * #edit-profile-adherent-field-name,
  6132. .page-user #center > * #edit-profile-adherent-field-private-quality, .page-user #center > * #edit-profile-adherent-field-service, .page-user #center > * #edit-profile-adherent-field-employee,
  6133. .page-user #center > * #edit-profile-adherent-field-naf, .page-user #center > * #edit-profile-adherent-field-siret, .page-user-edit #center > * #edit-profile-adherent-field-first-name, .page-user-edit #center > * #edit-profile-adherent-field-name,
  6134. .page-user-edit #center > * #edit-profile-adherent-field-private-quality, .page-user-edit #center > * #edit-profile-adherent-field-service, .page-user-edit #center > * #edit-profile-adherent-field-employee,
  6135. .page-user-edit #center > * #edit-profile-adherent-field-naf, .page-user-edit #center > * #edit-profile-adherent-field-siret, .page-user-password #center > * #edit-profile-adherent-field-first-name, .page-user-password #center > * #edit-profile-adherent-field-name,
  6136. .page-user-password #center > * #edit-profile-adherent-field-private-quality, .page-user-password #center > * #edit-profile-adherent-field-service, .page-user-password #center > * #edit-profile-adherent-field-employee,
  6137. .page-user-password #center > * #edit-profile-adherent-field-naf, .page-user-password #center > * #edit-profile-adherent-field-siret, .page-user-reset #center > * #edit-profile-adherent-field-first-name, .page-user-reset #center > * #edit-profile-adherent-field-name,
  6138. .page-user-reset #center > * #edit-profile-adherent-field-private-quality, .page-user-reset #center > * #edit-profile-adherent-field-service, .page-user-reset #center > * #edit-profile-adherent-field-employee,
  6139. .page-user-reset #center > * #edit-profile-adherent-field-naf, .page-user-reset #center > * #edit-profile-adherent-field-siret, .page-toboggan #center > * #edit-profile-adherent-field-first-name, .page-toboggan #center > * #edit-profile-adherent-field-name,
  6140. .page-toboggan #center > * #edit-profile-adherent-field-private-quality, .page-toboggan #center > * #edit-profile-adherent-field-service, .page-toboggan #center > * #edit-profile-adherent-field-employee,
  6141. .page-toboggan #center > * #edit-profile-adherent-field-naf, .page-toboggan #center > * #edit-profile-adherent-field-siret {
  6142. display: moz-inline-stack;
  6143. display: inline-block;
  6144. vertical-align: top;
  6145. zoom: 1;
  6146. *display: inline;
  6147. vertical-align: middle;
  6148. width: auto;
  6149. margin: 0 1em 0.5em 0; }
  6150. .page-user #center > * #edit-profile-adherent-field-first-name div, .page-user #center > * #edit-profile-adherent-field-name div,
  6151. .page-user #center > * #edit-profile-adherent-field-private-quality div, .page-user #center > * #edit-profile-adherent-field-service div, .page-user #center > * #edit-profile-adherent-field-employee div,
  6152. .page-user #center > * #edit-profile-adherent-field-naf div, .page-user #center > * #edit-profile-adherent-field-siret div, .page-user-edit #center > * #edit-profile-adherent-field-first-name div, .page-user-edit #center > * #edit-profile-adherent-field-name div,
  6153. .page-user-edit #center > * #edit-profile-adherent-field-private-quality div, .page-user-edit #center > * #edit-profile-adherent-field-service div, .page-user-edit #center > * #edit-profile-adherent-field-employee div,
  6154. .page-user-edit #center > * #edit-profile-adherent-field-naf div, .page-user-edit #center > * #edit-profile-adherent-field-siret div, .page-user-password #center > * #edit-profile-adherent-field-first-name div, .page-user-password #center > * #edit-profile-adherent-field-name div,
  6155. .page-user-password #center > * #edit-profile-adherent-field-private-quality div, .page-user-password #center > * #edit-profile-adherent-field-service div, .page-user-password #center > * #edit-profile-adherent-field-employee div,
  6156. .page-user-password #center > * #edit-profile-adherent-field-naf div, .page-user-password #center > * #edit-profile-adherent-field-siret div, .page-user-reset #center > * #edit-profile-adherent-field-first-name div, .page-user-reset #center > * #edit-profile-adherent-field-name div,
  6157. .page-user-reset #center > * #edit-profile-adherent-field-private-quality div, .page-user-reset #center > * #edit-profile-adherent-field-service div, .page-user-reset #center > * #edit-profile-adherent-field-employee div,
  6158. .page-user-reset #center > * #edit-profile-adherent-field-naf div, .page-user-reset #center > * #edit-profile-adherent-field-siret div, .page-toboggan #center > * #edit-profile-adherent-field-first-name div, .page-toboggan #center > * #edit-profile-adherent-field-name div,
  6159. .page-toboggan #center > * #edit-profile-adherent-field-private-quality div, .page-toboggan #center > * #edit-profile-adherent-field-service div, .page-toboggan #center > * #edit-profile-adherent-field-employee div,
  6160. .page-toboggan #center > * #edit-profile-adherent-field-naf div, .page-toboggan #center > * #edit-profile-adherent-field-siret div {
  6161. width: auto;
  6162. margin: 0;
  6163. padding: 0; }
  6164. .page-user #center > * #edit-profile-adherent-field-siret label, .page-user-edit #center > * #edit-profile-adherent-field-siret label, .page-user-password #center > * #edit-profile-adherent-field-siret label, .page-user-reset #center > * #edit-profile-adherent-field-siret label, .page-toboggan #center > * #edit-profile-adherent-field-siret label {
  6165. width: auto; }
  6166. .page-user #center > * #edit-profile-adherent-field-siret input, .page-user-edit #center > * #edit-profile-adherent-field-siret input, .page-user-password #center > * #edit-profile-adherent-field-siret input, .page-user-reset #center > * #edit-profile-adherent-field-siret input, .page-toboggan #center > * #edit-profile-adherent-field-siret input {
  6167. width: 8em; }
  6168. .page-user #center > * #edit-profile-adherent-field-naf input, .page-user-edit #center > * #edit-profile-adherent-field-naf input, .page-user-password #center > * #edit-profile-adherent-field-naf input, .page-user-reset #center > * #edit-profile-adherent-field-naf input, .page-toboggan #center > * #edit-profile-adherent-field-naf input {
  6169. width: 13em; }
  6170. .page-user #center > * #edit-profile-adherent-field-organization, .page-user-edit #center > * #edit-profile-adherent-field-organization, .page-user-password #center > * #edit-profile-adherent-field-organization, .page-user-reset #center > * #edit-profile-adherent-field-organization, .page-toboggan #center > * #edit-profile-adherent-field-organization {
  6171. margin: 2em 0 0 0; }
  6172. .page-user #center > * #edit-profile-adherent-field-employee label, .page-user-edit #center > * #edit-profile-adherent-field-employee label, .page-user-password #center > * #edit-profile-adherent-field-employee label, .page-user-reset #center > * #edit-profile-adherent-field-employee label, .page-toboggan #center > * #edit-profile-adherent-field-employee label {
  6173. width: auto; }
  6174. .page-user #center > * #edit-profile-adherent-field-employee input, .page-user-edit #center > * #edit-profile-adherent-field-employee input, .page-user-password #center > * #edit-profile-adherent-field-employee input, .page-user-reset #center > * #edit-profile-adherent-field-employee input, .page-toboggan #center > * #edit-profile-adherent-field-employee input {
  6175. width: 4em; }
  6176. .page-user #center > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-edit #center > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-password #center > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-reset #center > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-toboggan #center > * #edit-profile-adherent-field-private-phone .form-phone-number {
  6177. display: moz-inline-stack;
  6178. display: inline-block;
  6179. vertical-align: top;
  6180. zoom: 1;
  6181. *display: inline;
  6182. vertical-align: middle; }
  6183. .page-user #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number, .page-user-edit #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number, .page-user-password #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number, .page-user-reset #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number, .page-toboggan #center > * #edit-profile-adherent-field-private-phone .form-phone-number #edit-profile-adherent-field-private-phone-und-0-number {
  6184. width: 10em; }
  6185. .page-user #center > * #edit-profile-adherent-field-adresse-und-0, .page-user-edit #center > * #edit-profile-adherent-field-adresse-und-0, .page-user-password #center > * #edit-profile-adherent-field-adresse-und-0, .page-user-reset #center > * #edit-profile-adherent-field-adresse-und-0, .page-toboggan #center > * #edit-profile-adherent-field-adresse-und-0 {
  6186. padding: 0; }
  6187. .page-user #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input, .page-user-edit #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input, .page-user-password #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input, .page-user-reset #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input, .page-toboggan #center > * #edit-profile-adherent-field-adresse-und-0 .street-block input {
  6188. width: 35em; }
  6189. .page-user #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item, .page-user-edit #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item, .page-user-password #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item, .page-user-reset #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item, .page-toboggan #center > * #edit-profile-adherent-field-adresse-und-0 .locality-block .form-item {
  6190. width: auto;
  6191. margin-right: 1em; }
  6192. .page-user #center > * #edit-profile-adherent-field-user-website, .page-user-edit #center > * #edit-profile-adherent-field-user-website, .page-user-password #center > * #edit-profile-adherent-field-user-website, .page-user-reset #center > * #edit-profile-adherent-field-user-website, .page-toboggan #center > * #edit-profile-adherent-field-user-website {
  6193. margin: 2em 0 0 0; }
  6194. .page-user #center > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-edit #center > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-password #center > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-reset #center > * #edit-profile-adherent-field-user-website .form-item > *, .page-toboggan #center > * #edit-profile-adherent-field-user-website .form-item > * {
  6195. display: moz-inline-stack;
  6196. display: inline-block;
  6197. vertical-align: top;
  6198. zoom: 1;
  6199. *display: inline;
  6200. vertical-align: middle; }
  6201. .page-user #center > * #edit-profile-adherent-field-user-website input, .page-user-edit #center > * #edit-profile-adherent-field-user-website input, .page-user-password #center > * #edit-profile-adherent-field-user-website input, .page-user-reset #center > * #edit-profile-adherent-field-user-website input, .page-toboggan #center > * #edit-profile-adherent-field-user-website input {
  6202. width: 35em; }
  6203. .page-user #center > *.profile h3, .page-user-edit #center > *.profile h3, .page-user-password #center > *.profile h3, .page-user-reset #center > *.profile h3, .page-toboggan #center > *.profile h3 {
  6204. border: 0 solid transparent; }
  6205. .page-user #center > *.profile .field-label, .page-user-edit #center > *.profile .field-label, .page-user-password #center > *.profile .field-label, .page-user-reset #center > *.profile .field-label, .page-toboggan #center > *.profile .field-label {
  6206. display: inline; }
  6207. .page-user #center > * #edit-mimemail, .page-user #center > * #edit-locale, .page-user #center > * #edit-timezone, .page-user-edit #center > * #edit-mimemail, .page-user-edit #center > * #edit-locale, .page-user-edit #center > * #edit-timezone, .page-user-password #center > * #edit-mimemail, .page-user-password #center > * #edit-locale, .page-user-password #center > * #edit-timezone, .page-user-reset #center > * #edit-mimemail, .page-user-reset #center > * #edit-locale, .page-user-reset #center > * #edit-timezone, .page-toboggan #center > * #edit-mimemail, .page-toboggan #center > * #edit-locale, .page-toboggan #center > * #edit-timezone {
  6208. padding: 0; }
  6209. /*
  6210. _ __
  6211. _____(_)___ ___ ____ / /__ ____ ___ _ _______
  6212. / ___/ / __ `__ \/ __ \/ / _ \/ __ \/ _ \ | /| / / ___/
  6213. (__ ) / / / / / / /_/ / / __/ / / / __/ |/ |/ (__ )
  6214. /____/_/_/ /_/ /_/ .___/_/\___/_/ /_/\___/|__/|__/____/
  6215. /_/
  6216. */
  6217. body.node-type-simplenews #content .inner-content {
  6218. text-align: center; }
  6219. body.node-type-simplenews #content article.node.node-simplenews {
  6220. display: moz-inline-stack;
  6221. display: inline-block;
  6222. vertical-align: top;
  6223. zoom: 1;
  6224. *display: inline;
  6225. max-width: 600px;
  6226. padding: 1em 0; }
  6227. body.node-type-simplenews #content article.node.node-simplenews tbody {
  6228. border-top: 0px; }
  6229. body.node-type-simplenews #content article.node.node-simplenews img {
  6230. max-width: 9999px; }
  6231. @media only screen and (max-width: 40em) {
  6232. body.node-type-simplenews #content article.node.node-simplenews {
  6233. max-width: 100%;
  6234. overflow-x: hidden; }
  6235. body.node-type-simplenews #content article.node.node-simplenews table {
  6236. width: 100% !important; }
  6237. body.node-type-simplenews #content article.node.node-simplenews td {
  6238. vertical-align: top; }
  6239. body.node-type-simplenews #content article.node.node-simplenews img {
  6240. max-width: 100%; }
  6241. body.node-type-simplenews #content article.node.node-simplenews p {
  6242. padding: 0 0.5em; } }
  6243. /*
  6244. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6245. | _ | _ | __| __| | | | | |_ _| _ | |_ _|
  6246. | __| | | | __| | --| | | | | | | | | | --| | |
  6247. |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_|
  6248. */
  6249. .page-node-11175 #main #center {
  6250. background: #fff url("../img/bg-contact.gif") no-repeat bottom right; }
  6251. .page-node-11175 #main .field-name-body p {
  6252. display: moz-inline-stack;
  6253. display: inline-block;
  6254. vertical-align: top;
  6255. zoom: 1;
  6256. *display: inline;
  6257. margin: 15px; }
  6258. .page-node-11175 #main .field-name-body p strong {
  6259. font-size: 18px; }
  6260. /*
  6261. _____ _____ _____ _____ _____ _____ _____
  6262. | _ | __ | | | | | | __|
  6263. | __| -|- -| --|- -| | | | | |
  6264. |__| |__|__|_____|_____|_____|_|___|_____|
  6265. */
  6266. @media only screen and (min-width: 40.063em) {
  6267. body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-demi:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-full:last-child, body.page-node-11187 .node-11187 .field-name-body div.column-auto, body.page-node-11187 .node-11187 .field-name-body div.column-auto:last-child {
  6268. display: moz-inline-stack;
  6269. display: inline-block;
  6270. vertical-align: top;
  6271. zoom: 1;
  6272. *display: inline;
  6273. margin: 10px;
  6274. float: none; }
  6275. body.page-node-11187 .node-11187 .field-name-body div.column {
  6276. width: 22.4%; }
  6277. body.page-node-11187 .node-11187 .field-name-body div.column ul.list-text, body.page-node-11187 .node-11187 .field-name-body div.column p.description {
  6278. min-height: 170px; }
  6279. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  6280. width: 46%; }
  6281. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  6282. min-height: 110px; }
  6283. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  6284. width: 92%; }
  6285. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  6286. width: auto;
  6287. max-width: 98%; }
  6288. body.page-node-11187 #block-materio-user-user-register {
  6289. width: 600px;
  6290. margin: 0 auto;
  6291. padding: 2em; } }
  6292. @media only screen and (max-width: 40em) {
  6293. body.page-node-11187 #block-system-help {
  6294. text-align: center; } }
  6295. body.page-node-11187 .node-11187 .field-name-body {
  6296. text-align: center; }
  6297. body.page-node-11187 .node-11187 .field-name-body > * {
  6298. text-align: left; }
  6299. 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 {
  6300. position: relative;
  6301. background-color: #fff;
  6302. border-radius: 5px;
  6303. background-clip: padding-box;
  6304. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  6305. overflow: hidden; }
  6306. .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 {
  6307. max-width: 500px;
  6308. margin: auto;
  6309. margin-bottom: 15px;
  6310. border: 1px solid #C6C6C6; }
  6311. 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 > * {
  6312. padding: 0 10px; }
  6313. 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 {
  6314. text-align: left;
  6315. margin: 5px 0 0 15px; }
  6316. 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 {
  6317. padding: 0 0 0 15px;
  6318. font-size: 18px;
  6319. font-style: italic;
  6320. font-weight: bold;
  6321. line-height: 1; }
  6322. 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 {
  6323. margin: 0;
  6324. padding: 0 15px; }
  6325. 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 {
  6326. list-style: none;
  6327. font-size: 12px; }
  6328. 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 {
  6329. content: "+ ";
  6330. font-weight: 900; }
  6331. body.page-node-11187 .node-11187 .field-name-body div.column .description, body.page-node-11187 .node-11187 .field-name-body div.column-demi .description, body.page-node-11187 .node-11187 .field-name-body div.column-full .description, body.page-node-11187 .node-11187 .field-name-body div.column-auto .description {
  6332. font-size: 12px;
  6333. margin: 0;
  6334. padding: 0 15px; }
  6335. 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 {
  6336. margin: 0;
  6337. border-radius: 0 0 5px 5px 0 0 0;
  6338. background-clip: padding-box;
  6339. border: 1px solid #fff;
  6340. min-height: 92px; }
  6341. 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 {
  6342. display: block;
  6343. width: 100%;
  6344. padding: 15px 0;
  6345. color: #1A1A1A;
  6346. text-decoration: none; }
  6347. 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 {
  6348. background-color: #C8C8C8; }
  6349. body.page-node-11187 .node-11187 .field-name-body div.column.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.web .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.web .get-link {
  6350. background-color: #69CDCF; }
  6351. body.page-node-11187 .node-11187 .field-name-body div.column.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.webshowroom .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.webshowroom .get-link {
  6352. background-color: #D476AE; }
  6353. body.page-node-11187 .node-11187 .field-name-body div.column.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.pack4 .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.pack4 .get-link {
  6354. background-color: #E6DE1C; }
  6355. body.page-node-11187 .node-11187 .field-name-body div.column.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.etudiants .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.etudiants .get-link {
  6356. background-color: #4BA13D; }
  6357. body.page-node-11187 .node-11187 .field-name-body div.column.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.neutral .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.neutral .get-link {
  6358. min-height: 62px;
  6359. padding: 15px 0; }
  6360. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  6361. padding: 10px 0 0;
  6362. font-size: 24px; }
  6363. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  6364. padding: 0;
  6365. font-size: 24px;
  6366. text-align: center;
  6367. font-style: italic;
  6368. font-weight: 900;
  6369. cursor: pointer;
  6370. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6371. transition: text-shadow 0.3s ease-out; }
  6372. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  6373. font-size: 20px; }
  6374. 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 {
  6375. text-shadow: 0 0 3px white; }
  6376. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  6377. transition: text-shadow 0s ease-out;
  6378. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6379. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  6380. padding: 10px 0 0;
  6381. font-size: 24px;
  6382. top: 0; }
  6383. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  6384. min-height: 2em; }
  6385. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  6386. font-size: 14px;
  6387. min-height: 120px; }
  6388. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  6389. font-size: 14px;
  6390. text-align: left;
  6391. padding: 0 1em;
  6392. background-color: #ddd; }
  6393. /*
  6394. _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6395. | _ | \| | | __| __| | | | | | __| | __ | |
  6396. | | | | | __|__ |- -| | | | | | | __| | | -| | | |
  6397. |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_|
  6398. */
  6399. .node-11186 nav ul.links a.language-link {
  6400. display: none; }
  6401. #webform-client-form-11186 {
  6402. background-color: #e6e6e6;
  6403. border-radius: 10px;
  6404. background-clip: padding-box; }
  6405. @media only screen and (min-width: 40.063em) {
  6406. #webform-client-form-11186 {
  6407. padding: 10px 30px; }
  6408. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6409. margin: 10px 0; }
  6410. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6411. width: auto; }
  6412. #webform-client-form-11186 fieldset {
  6413. border-radius: 5px;
  6414. background-clip: padding-box;
  6415. border-left: 1px solid #cccccc;
  6416. border-bottom: 1px solid #cccccc;
  6417. padding: 10px;
  6418. border-top-width: 0;
  6419. border-right-width: 0;
  6420. border-bottom-width: 0; }
  6421. #webform-client-form-11186 fieldset fieldset {
  6422. border: 0 solid #ddd;
  6423. padding: 0; }
  6424. #webform-client-form-11186 legend {
  6425. margin: 0;
  6426. font-size: 18px;
  6427. font-weight: 700; }
  6428. #webform-client-form-11186 .form-item {
  6429. margin: 0 20px 0 0; }
  6430. #webform-client-form-11186 label {
  6431. font-size: 12px;
  6432. width: 10em;
  6433. display: moz-inline-stack;
  6434. display: inline-block;
  6435. vertical-align: top;
  6436. zoom: 1;
  6437. *display: inline;
  6438. vertical-align: middle;
  6439. margin-right: 1em;
  6440. border-bottom: 1px solid #cccccc; }
  6441. #webform-client-form-11186 .description {
  6442. font-size: 10px;
  6443. width: 25em;
  6444. display: moz-inline-stack;
  6445. display: inline-block;
  6446. vertical-align: top;
  6447. zoom: 1;
  6448. *display: inline;
  6449. vertical-align: bottom;
  6450. margin-left: 1em;
  6451. color: #7f7f7f; }
  6452. #webform-client-form-11186 input.form-text {
  6453. width: 13em; } }
  6454. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  6455. #webform-client-form-11186 {
  6456. padding: 10px; }
  6457. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6458. margin: 0 0 10px 0; }
  6459. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  6460. width: 100%; }
  6461. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6462. width: 75%; }
  6463. #webform-client-form-11186 legend {
  6464. margin: 0;
  6465. font-size: 16px;
  6466. font-weight: 700; }
  6467. #webform-client-form-11186 .form-item {
  6468. margin: 0;
  6469. float: none; }
  6470. #webform-client-form-11186 label {
  6471. font-size: 12px;
  6472. width: 30%;
  6473. display: moz-inline-stack;
  6474. display: inline-block;
  6475. vertical-align: top;
  6476. zoom: 1;
  6477. *display: inline;
  6478. vertical-align: middle;
  6479. margin-right: 0.5em; }
  6480. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  6481. width: 60%; }
  6482. #webform-client-form-11186 #webform-component-infos {
  6483. font-size: 14px; } }
  6484. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  6485. display: moz-inline-stack;
  6486. display: inline-block;
  6487. vertical-align: top;
  6488. zoom: 1;
  6489. *display: inline; }
  6490. #webform-client-form-11186 #webform-component-column-left {
  6491. display: moz-inline-stack;
  6492. display: inline-block;
  6493. vertical-align: top;
  6494. zoom: 1;
  6495. *display: inline;
  6496. width: 25%;
  6497. border: none; }
  6498. #webform-client-form-11186 #webform-component-column-right {
  6499. display: moz-inline-stack;
  6500. display: inline-block;
  6501. vertical-align: top;
  6502. zoom: 1;
  6503. *display: inline;
  6504. min-width: 70%; }
  6505. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  6506. border: 1px solid #ddd;
  6507. border-radius: 5px;
  6508. background-clip: padding-box;
  6509. padding: 10px 5px;
  6510. margin: 5px 0;
  6511. background-color: #fff; }
  6512. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  6513. display: moz-inline-stack;
  6514. display: inline-block;
  6515. vertical-align: top;
  6516. zoom: 1;
  6517. *display: inline;
  6518. vertical-align: middle;
  6519. margin: 0px 5px; }
  6520. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  6521. font-size: 20px;
  6522. font-weight: 700;
  6523. display: moz-inline-stack;
  6524. display: inline-block;
  6525. vertical-align: top;
  6526. zoom: 1;
  6527. *display: inline;
  6528. vertical-align: middle;
  6529. margin: 0; }
  6530. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  6531. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  6532. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  6533. background-color: #69CDCF; }
  6534. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  6535. background-color: #D476AE; }
  6536. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  6537. background-color: #E6DE1C; }
  6538. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  6539. opacity: 0.4; }
  6540. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  6541. width: 200px;
  6542. font-size: 18px;
  6543. font-weight: 700; }
  6544. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6545. border: 0; }
  6546. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  6547. display: block; }
  6548. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  6549. display: moz-inline-stack;
  6550. display: inline-block;
  6551. vertical-align: top;
  6552. zoom: 1;
  6553. *display: inline; }
  6554. #webform-client-form-11186 #addressfield-wrapper {
  6555. margin-top: 1em; }
  6556. #webform-client-form-11186 .street-block .form-item {
  6557. display: moz-inline-stack;
  6558. display: inline-block;
  6559. vertical-align: top;
  6560. zoom: 1;
  6561. *display: inline; }
  6562. #webform-client-form-11186 #webform-component-column-right--collaborators {
  6563. margin: 20px 0;
  6564. overflow: hidden; }
  6565. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  6566. display: moz-inline-stack;
  6567. display: inline-block;
  6568. vertical-align: top;
  6569. zoom: 1;
  6570. *display: inline;
  6571. width: 33%; }
  6572. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  6573. display: block; }
  6574. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  6575. width: 6em; }
  6576. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  6577. width: 11em; }
  6578. #webform-client-form-11186 #webform-component-infos {
  6579. margin: 20px 0; }
  6580. #webform-client-form-11186 .form-actions {
  6581. padding: 0;
  6582. margin: 0;
  6583. border: 0px;
  6584. background-color: transparent;
  6585. text-align: left; }
  6586. #webform-client-form-11186 .form-actions .form-submit {
  6587. border: 2px solid #69CDCF;
  6588. background-color: #69CDCF;
  6589. color: #fff;
  6590. font-size: 18px;
  6591. padding: 0.2em 1em 0.3em;
  6592. border-radius: 0.3em;
  6593. background-clip: padding-box;
  6594. font-weight: bold;
  6595. margin-bottom: 9px;
  6596. cursor: pointer;
  6597. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6598. transition: text-shadow 0.2s ease-out; }
  6599. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  6600. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6601. #webform-client-form-11186 .form-actions .form-submit:active {
  6602. transition: text-shadow 0s ease-out;
  6603. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6604. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  6605. margin: 0;
  6606. font-size: 18px;
  6607. font-weight: 700;
  6608. border: none;
  6609. line-height: 40px; }
  6610. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  6611. display: moz-inline-stack;
  6612. display: inline-block;
  6613. vertical-align: top;
  6614. zoom: 1;
  6615. *display: inline; }
  6616. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  6617. width: auto; }
  6618. #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 {
  6619. margin: 0; }
  6620. #webform-client-form-11186 #edit-submitted-terms-of-services {
  6621. margin-bottom: 0.5em; }
  6622. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6623. margin: 0 0.3em 0 0; }
  6624. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6625. width: auto; }
  6626. /*
  6627. _____ _____ _____ _____ _____ _____ _____ _____ _____ _ _ _ _____ _____ _____ _____
  6628. | | | | | | _ | __ |_ _| | | | | __| | | | | __| | __ | |
  6629. | | | --| | --| | -| | | | | |- -| __| | | | | __| | | -| | | |
  6630. |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_|
  6631. */
  6632. #uc-cart-view-form {
  6633. background-color: #e6e6e6;
  6634. padding: 10px, 30px;
  6635. display: inline-block; }
  6636. #uc-cart-view-form table {
  6637. width: auto;
  6638. display: table;
  6639. background-color: #fff; }
  6640. #uc-cart-view-form table thead th {
  6641. border-bottom: none;
  6642. padding: 1em; }
  6643. #uc-cart-view-form table tbody {
  6644. border-top: none; }
  6645. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  6646. background-color: #fff;
  6647. border-bottom: none; }
  6648. #uc-cart-view-form table tbody td {
  6649. padding: 1em; }
  6650. #uc-cart-view-form fieldset {
  6651. border: none !important; }
  6652. #uc-cart-view-form .form-type-uc-quantity input {
  6653. width: 2em; }
  6654. #uc-cart-view-form .form-actions {
  6655. padding: 0;
  6656. margin: 0;
  6657. border: 0px;
  6658. background-color: transparent;
  6659. text-align: right;
  6660. display: block;
  6661. width: 100%; }
  6662. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  6663. display: block; }
  6664. #uc-cart-view-form .form-actions .form-submit {
  6665. font-size: 16px;
  6666. font-weight: bold;
  6667. padding: 0.1em 0.3em 0.2em;
  6668. border-radius: 0.3em;
  6669. background-clip: padding-box;
  6670. border: 2px solid #ccc;
  6671. background-color: #ccc;
  6672. color: #4D4D4D;
  6673. cursor: pointer;
  6674. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6675. transition: text-shadow 0.3s ease-out;
  6676. text-align: center;
  6677. text-decoration: none;
  6678. margin-left: 1em; }
  6679. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  6680. text-shadow: 0 0 3px white; }
  6681. #uc-cart-view-form .form-actions .form-submit:active {
  6682. transition: text-shadow 0s ease-out;
  6683. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6684. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  6685. font-size: 16px;
  6686. font-weight: bold;
  6687. padding: 0.1em 0.3em 0.2em;
  6688. border-radius: 0.3em;
  6689. background-clip: padding-box;
  6690. border: 2px solid #ccc;
  6691. background-color: #ccc;
  6692. color: #4D4D4D;
  6693. cursor: pointer;
  6694. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6695. transition: text-shadow 0.3s ease-out;
  6696. text-align: center;
  6697. text-decoration: none;
  6698. cursor: pointer;
  6699. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6700. transition: text-shadow 0.2s ease-out;
  6701. border-color: #69CDCF;
  6702. background-color: #69CDCF;
  6703. color: #fff; }
  6704. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6705. text-shadow: 0 0 3px white; }
  6706. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6707. transition: text-shadow 0s ease-out;
  6708. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6709. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6710. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6711. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6712. transition: text-shadow 0s ease-out;
  6713. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6714. /*
  6715. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6716. | | | | | | | | __| | | | | | |_ _| | __| | __ | |
  6717. | | | --| | --| | __| --| -| | | | | | | | __| | | -| | | |
  6718. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_|
  6719. */
  6720. #uc-cart-checkout-form {
  6721. background-color: #e6e6e6;
  6722. padding: 10px, 30px; }
  6723. #uc-cart-checkout-form fieldset {
  6724. border: none !important; }
  6725. #uc-cart-checkout-form fieldset.form-row {
  6726. padding-bottom: 20px;
  6727. margin-bottom: 20px; }
  6728. #uc-cart-checkout-form fieldset.form-column {
  6729. display: moz-inline-stack;
  6730. display: inline-block;
  6731. vertical-align: top;
  6732. zoom: 1;
  6733. *display: inline;
  6734. max-width: 39%;
  6735. clear: both;
  6736. float: none;
  6737. margin: 15px 1em; }
  6738. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  6739. margin: 10px 0; }
  6740. #uc-cart-checkout-form fieldset.form-column-right {
  6741. border-left: 1px solid #ccc;
  6742. margin-left: 2em;
  6743. padding-left: 2em; }
  6744. #uc-cart-checkout-form legend {
  6745. margin: 0;
  6746. font-size: 18px;
  6747. font-weight: 700;
  6748. border: none;
  6749. line-height: 2; }
  6750. #uc-cart-checkout-form .fieldset-description {
  6751. font-size: 12px; }
  6752. #uc-cart-checkout-form .fieldset-wrapper {
  6753. font-size: 12px; }
  6754. #uc-cart-checkout-form .form-item {
  6755. margin: 0 20px 0 0; }
  6756. #uc-cart-checkout-form .description {
  6757. font-size: 10px;
  6758. width: 25em;
  6759. display: moz-inline-stack;
  6760. display: inline-block;
  6761. vertical-align: top;
  6762. zoom: 1;
  6763. *display: inline;
  6764. vertical-align: bottom;
  6765. margin-left: 1em;
  6766. color: #7f7f7f; }
  6767. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  6768. display: moz-inline-stack;
  6769. display: inline-block;
  6770. vertical-align: top;
  6771. zoom: 1;
  6772. *display: inline;
  6773. border-radius: 5px;
  6774. background-clip: padding-box;
  6775. padding: 10px;
  6776. background-color: #fff; }
  6777. #uc-cart-checkout-form #cart-pane table {
  6778. font-size: 14px;
  6779. min-width: 20em; }
  6780. #uc-cart-checkout-form #cart-pane table td.price {
  6781. width: 4em; }
  6782. #uc-cart-checkout-form #cart-pane tbody {
  6783. border: none; }
  6784. #uc-cart-checkout-form #cart-pane tr {
  6785. background-color: transparent;
  6786. border: none; }
  6787. #uc-cart-checkout-form #cart-pane td {
  6788. padding: 0 5px;
  6789. vertical-align: bottom; }
  6790. #uc-cart-checkout-form #cart-pane td.products {
  6791. width: auto; }
  6792. #uc-cart-checkout-form #cart-pane td.products a {
  6793. color: inherit;
  6794. font-weight: 700; }
  6795. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  6796. margin: 0;
  6797. font-size: 12px; }
  6798. #uc-cart-checkout-form #cart-pane td.products li {
  6799. list-style: none; }
  6800. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  6801. font-size: 16px;
  6802. font-weight: 700; }
  6803. #uc-cart-checkout-form #customer-pane {
  6804. width: 35em; }
  6805. #uc-cart-checkout-form #billing-pane label {
  6806. font-size: 12px;
  6807. width: 8em;
  6808. display: moz-inline-stack;
  6809. display: inline-block;
  6810. vertical-align: top;
  6811. zoom: 1;
  6812. *display: inline;
  6813. vertical-align: middle;
  6814. margin-right: 1em;
  6815. border-bottom: 1px solid #cccccc; }
  6816. #uc-cart-checkout-form #billing-pane input.form-text {
  6817. width: 13em; }
  6818. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  6819. background-color: #fff;
  6820. border-radius: 5px;
  6821. background-clip: padding-box;
  6822. padding: 10px; }
  6823. #uc-cart-checkout-form #payment-pane #line-items-div {
  6824. float: none;
  6825. border: none;
  6826. display: moz-inline-stack;
  6827. display: inline-block;
  6828. vertical-align: top;
  6829. zoom: 1;
  6830. *display: inline;
  6831. margin: 10px 0 20px; }
  6832. #uc-cart-checkout-form #payment-pane #line-items-div table {
  6833. font-size: 14px;
  6834. min-width: 20em; }
  6835. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  6836. width: 4em; }
  6837. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  6838. border: none; }
  6839. #uc-cart-checkout-form #payment-pane #line-items-div td {
  6840. padding: 0 5px; }
  6841. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  6842. font-weight: 500; }
  6843. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  6844. font-size: 16px;
  6845. font-weight: 700;
  6846. text-align: right; }
  6847. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  6848. width: auto;
  6849. border-bottom: none; }
  6850. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  6851. border: 1px solid #ddd;
  6852. border-radius: 5px;
  6853. margin: 0.5em;
  6854. padding: 0.5em; }
  6855. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  6856. font-weight: bold; }
  6857. #uc-cart-checkout-form #payment-pane #payment-details {
  6858. width: 25em;
  6859. border-top: none;
  6860. padding: 0;
  6861. margin: 0; }
  6862. #uc-cart-checkout-form #edit-actions {
  6863. width: 100%;
  6864. padding: 1em 0;
  6865. margin: 0;
  6866. border: 0px;
  6867. background-color: transparent;
  6868. text-align: center; }
  6869. #uc-cart-checkout-form #edit-actions .form-submit {
  6870. font-size: 16px;
  6871. font-weight: bold;
  6872. padding: 0.1em 0.3em 0.2em;
  6873. border-radius: 0.3em;
  6874. background-clip: padding-box;
  6875. border: 2px solid #ccc;
  6876. background-color: #ccc;
  6877. color: #4D4D4D;
  6878. cursor: pointer;
  6879. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6880. transition: text-shadow 0.3s ease-out;
  6881. text-align: center;
  6882. text-decoration: none;
  6883. margin-left: 1em; }
  6884. #uc-cart-checkout-form #edit-actions .form-submit:hover, #uc-cart-checkout-form #edit-actions .form-submit:focus {
  6885. text-shadow: 0 0 3px white; }
  6886. #uc-cart-checkout-form #edit-actions .form-submit:active {
  6887. transition: text-shadow 0s ease-out;
  6888. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6889. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue {
  6890. font-size: 16px;
  6891. font-weight: bold;
  6892. padding: 0.1em 0.3em 0.2em;
  6893. border-radius: 0.3em;
  6894. background-clip: padding-box;
  6895. border: 2px solid #ccc;
  6896. background-color: #ccc;
  6897. color: #4D4D4D;
  6898. cursor: pointer;
  6899. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6900. transition: text-shadow 0.3s ease-out;
  6901. text-align: center;
  6902. text-decoration: none;
  6903. cursor: pointer;
  6904. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6905. transition: text-shadow 0.2s ease-out;
  6906. border-color: #69CDCF;
  6907. background-color: #69CDCF;
  6908. color: #fff; }
  6909. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  6910. text-shadow: 0 0 3px white; }
  6911. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  6912. transition: text-shadow 0s ease-out;
  6913. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6914. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  6915. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6916. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  6917. transition: text-shadow 0s ease-out;
  6918. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6919. /*
  6920. _____ _____ _____ _____ _____ _____
  6921. | | | | | | _ | __ |_ _|
  6922. | | | --| | --| | -| | |
  6923. |_____|_____| |_____|__|__|__|__| |_|
  6924. &&
  6925. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ ____ _____ _____ _____ _____ _____
  6926. | | | | | | | | __| | | | | | |_ _| | | | _ | | | | \| _ |_ _| | | | |
  6927. | | | --| | --| | __| --| -| | | | | | | | | | | |__|- -| | | | | | |- -| | | | | |
  6928. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___|
  6929. */
  6930. .page-cart-checkout-review #content > .inner-content {
  6931. display: inline-block;
  6932. padding: 1em; }
  6933. .page-cart-checkout-review #edit-actions {
  6934. margin: 0;
  6935. padding: 0; }
  6936. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  6937. display: block; }
  6938. .page-cart-checkout-review #review-instructions {
  6939. width: 30em;
  6940. padding: 1em 0; }
  6941. .page-cart-checkout-review table.order-review-table {
  6942. border: none; }
  6943. .page-cart-checkout-review table.order-review-table .pane-title-row {
  6944. border: none;
  6945. background-color: transparent;
  6946. text-align: left;
  6947. font-size: 18px; }
  6948. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  6949. padding: 1em 0 0 0; }
  6950. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  6951. background-color: transparent;
  6952. border: none; }
  6953. .page-cart-checkout-review table.order-review-table td.title-col {
  6954. padding: 0;
  6955. text-align: left; }
  6956. .page-cart-checkout-review table.order-review-table td.data-col {
  6957. padding: 0;
  6958. width: 75%; }
  6959. .page-cart-checkout-review table.order-review-table .review-button-row {
  6960. border: none;
  6961. background-color: transparent; }
  6962. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  6963. padding: 3em 0 0 0; }
  6964. .page-cart-checkout-review table.order-review-table .review-button-row form {
  6965. margin: 0 0.5em 0 0;
  6966. display: moz-inline-stack;
  6967. display: inline-block;
  6968. vertical-align: top;
  6969. zoom: 1;
  6970. *display: inline; }
  6971. .page-cart-checkout-review #edit-actions {
  6972. border: 0px;
  6973. background-color: transparent;
  6974. text-align: right; }
  6975. .page-cart-checkout-review input.form-submit {
  6976. font-size: 16px;
  6977. font-weight: bold;
  6978. padding: 0.1em 0.3em 0.2em;
  6979. border-radius: 0.3em;
  6980. background-clip: padding-box;
  6981. border: 2px solid #ccc;
  6982. background-color: #ccc;
  6983. color: #4D4D4D;
  6984. cursor: pointer;
  6985. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6986. transition: text-shadow 0.3s ease-out;
  6987. text-align: center;
  6988. text-decoration: none;
  6989. margin-left: 1em; }
  6990. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  6991. text-shadow: 0 0 3px white; }
  6992. .page-cart-checkout-review input.form-submit:active {
  6993. transition: text-shadow 0s ease-out;
  6994. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6995. .page-cart-checkout-review input.form-submit#edit-submit {
  6996. font-size: 16px;
  6997. font-weight: bold;
  6998. padding: 0.1em 0.3em 0.2em;
  6999. border-radius: 0.3em;
  7000. background-clip: padding-box;
  7001. border: 2px solid #ccc;
  7002. background-color: #ccc;
  7003. color: #4D4D4D;
  7004. cursor: pointer;
  7005. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7006. transition: text-shadow 0.3s ease-out;
  7007. text-align: center;
  7008. text-decoration: none;
  7009. cursor: pointer;
  7010. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7011. transition: text-shadow 0.2s ease-out;
  7012. border-color: #69CDCF;
  7013. background-color: #69CDCF;
  7014. color: #fff; }
  7015. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7016. text-shadow: 0 0 3px white; }
  7017. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7018. transition: text-shadow 0s ease-out;
  7019. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7020. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7021. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7022. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7023. transition: text-shadow 0s ease-out;
  7024. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7025. /*
  7026. ____ _____ ____ _____ _____ _____ _____ _____ _____ _____
  7027. | \| | \| _ | |_ _| | | | | __|
  7028. | | |- -| | | | --| | | |- -| | | | | __|
  7029. |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____|
  7030. |__|
  7031. */
  7032. #didactique-page .node-didactique {
  7033. border-radius: 5px;
  7034. background-clip: padding-box;
  7035. background-color: #FFF;
  7036. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7037. max-width: 850px;
  7038. font-size: 14px;
  7039. background-color: #fff;
  7040. margin: 1em auto;
  7041. padding: 1em; }
  7042. #didactique-page .node-didactique .field-name-field-emvideo {
  7043. margin: 1em 0; }
  7044. #didactique-page .node-didactique .field-name-title-field {
  7045. font-size: 24px;
  7046. font-weight: 900;
  7047. font-style: italic;
  7048. padding: 5px 0; }
  7049. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  7050. max-width: 100%; }
  7051. @media only screen and (min-width: 40.063em) {
  7052. #didactique-page .side {
  7053. display: moz-inline-stack;
  7054. display: inline-block;
  7055. vertical-align: top;
  7056. zoom: 1;
  7057. *display: inline;
  7058. vertical-align: top; }
  7059. #didactique-page .group-sideleft {
  7060. width: 60%; }
  7061. #didactique-page .group-sideright {
  7062. width: 39%; } }
  7063. /*
  7064. _ _ _ _____ _____ _ _ _ _____ _____ _____ _____
  7065. | | | | | | | | | | | __| | _ | __ | __|
  7066. | | | | | | | | | | | __| | | -| __|
  7067. |_____|__|__|_____| |_____|_____| |__|__|__|__|_____|
  7068. */
  7069. @media only screen and (max-width: 40em) {
  7070. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  7071. display: none; } }
  7072. /*
  7073. _ _
  7074. _____ ___|_|___| |_ ___ ___ ___ ___ ___ ___
  7075. | | .'| | | _| -_| | .'| | _| -_|
  7076. |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___|
  7077. */
  7078. .maintenance-page #container, .maintenance-page #header {
  7079. text-align: center;
  7080. padding: 0;
  7081. position: relative; }
  7082. .maintenance-page #main {
  7083. background-color: transparent; }
  7084. .maintenance-page #header h1.site-name {
  7085. font-size: 36px;
  7086. margin: 0;
  7087. padding-left: 0; }
  7088. .maintenance-page h2.site-slogan {
  7089. font-size: 16px;
  7090. font-weight: 300;
  7091. margin: 0;
  7092. line-height: 1.1; }
  7093. /*
  7094. _____ _____ _____
  7095. | __| _ | |
  7096. | __| | | |
  7097. |__| |__|__|__ _|
  7098. |__|
  7099. */
  7100. .page-faq-page #main {
  7101. background: #fff url("../img/bg-faq.png") no-repeat bottom right; }
  7102. #content .faq-content .faq-description {
  7103. font-size: 12px;
  7104. padding-bottom: 2em; }
  7105. #content .faq-content ul.faq-ul-questions-top {
  7106. margin: 0; }
  7107. #content .faq-content ul.faq-ul-questions-top li {
  7108. list-style: none; }
  7109. #content .faq-content ul.faq-ul-questions-top li a {
  7110. font-size: 18px;
  7111. font-weight: 500; }
  7112. #content .faq-content h3.faq-header {
  7113. font-size: 20px;
  7114. font-weight: 700;
  7115. line-height: 1.2;
  7116. margin: 0; }
  7117. #content .faq-content h3.faq-header a {
  7118. color: #000; }
  7119. #content .faq-content .faq-dl-hide-answer {
  7120. padding: 0; }
  7121. #content .faq-content .faq-category-group {
  7122. padding-bottom: 1em; }
  7123. #content .faq-content .faq-question-answer {
  7124. padding: 0.3em 0 0 0.8em; }
  7125. #content .faq-content .faq-question-answer .faq-question {
  7126. font-size: 16px;
  7127. padding: 0;
  7128. font-weight: 500; }
  7129. #content .faq-content .faq-question-answer .faq-question a {
  7130. color: #000; }
  7131. #content .faq-content .faq-question-answer .faq-answer {
  7132. padding: 0;
  7133. margin-bottom: 2em;
  7134. font-size: 12px; }
  7135. #content .faq-content .field-name-body img {
  7136. max-width: 50%;
  7137. height: auto; }
  7138. /*
  7139. __ __ _ _____
  7140. / / / /___ ____ ___ ___ | | / /__ / /_/ / __ \/ __ `__ \/ _ \ | | / /__/ /
  7141. / __ / /_/ / / / / / / __/ | |/ // __/
  7142. /_/ /_/\____/_/ /_/ /_/\___/ |___//____/
  7143. */
  7144. body.home-v2 #center {
  7145. background-color: transparent;
  7146. padding: 0; }
  7147. #home-v2 h2 {
  7148. font-size: 2.1em;
  7149. font-weight: 300; }
  7150. #home-v2 a {
  7151. color: #000; }
  7152. #home-v2 .field-name-field-liens {
  7153. margin-top: 1em; }
  7154. #home-v2 .field-name-field-liens .field-item {
  7155. display: moz-inline-stack;
  7156. display: inline-block;
  7157. vertical-align: top;
  7158. zoom: 1;
  7159. *display: inline;
  7160. margin: 0 0.5em 0.5em 0; }
  7161. #home-v2 .field-name-field-liens a {
  7162. font-weight: 700;
  7163. display: moz-inline-stack;
  7164. display: inline-block;
  7165. vertical-align: top;
  7166. zoom: 1;
  7167. *display: inline;
  7168. padding: 0.5em 1em 0.7em;
  7169. border-radius: 5px;
  7170. background-clip: padding-box;
  7171. background-color: rgba(255, 255, 255, 0.8); }
  7172. body.logged-in #home-v2 .field-name-field-liens a.visitor {
  7173. display: none; }
  7174. body.not-logged-in #home-v2 .field-name-field-liens a.member {
  7175. display: none; }
  7176. #home-v2 .panel-separator {
  7177. clear: both; }
  7178. #home-v2 > .panel-panel > div > .panel-pane {
  7179. overflow: hidden; }
  7180. #home-v2 > .panel-panel > div > .panel-pane.pane-node {
  7181. border-radius: 5px;
  7182. background-clip: padding-box;
  7183. overflow: hidden; }
  7184. #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node {
  7185. position: relative;
  7186. width: 100%;
  7187. height: 100%;
  7188. overflow: hidden; }
  7189. #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a {
  7190. background-color: rgba(255, 255, 255, 0.7);
  7191. border-radius: 5px;
  7192. background-clip: padding-box;
  7193. padding: 15px; }
  7194. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7195. height: auto;
  7196. background-color: #f7f4ed;
  7197. margin-top: 2em;
  7198. margin-bottom: 2em;
  7199. padding-top: 0; }
  7200. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7201. margin: 0 auto; }
  7202. @media only screen and (max-width: 40em) {
  7203. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7204. width: 320px;
  7205. height: 180px; } }
  7206. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7207. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7208. width: 640px;
  7209. height: 360px; } }
  7210. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  7211. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7212. width: 800px;
  7213. height: 450px; } }
  7214. @media only screen and (min-width: 90.063em) {
  7215. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7216. width: 1024px;
  7217. height: 576px; } }
  7218. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video .player, #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video iframe {
  7219. width: 100%;
  7220. height: 100%; }
  7221. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field {
  7222. display: none; }
  7223. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body {
  7224. margin-top: 1em;
  7225. text-align: center; }
  7226. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7227. text-align: left;
  7228. display: moz-inline-stack;
  7229. display: inline-block;
  7230. vertical-align: top;
  7231. zoom: 1;
  7232. *display: inline;
  7233. width: 35%;
  7234. margin-left: 2%;
  7235. font-size: 0.756em; }
  7236. @media only screen and (max-width: 40em) {
  7237. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7238. width: 100%;
  7239. text-align: center; } }
  7240. @media only screen and (max-width: 40em) {
  7241. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7242. margin-top: 0.5em; } }
  7243. #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2, #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-menu-home-member {
  7244. margin: 2em 0; }
  7245. #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 ul.menu, #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-menu-home-member ul.menu {
  7246. margin: 0px;
  7247. text-align: center; }
  7248. #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li, #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-menu-home-member li {
  7249. margin: 0 1em 0 0;
  7250. padding: 0px;
  7251. list-style: none;
  7252. height: 2.5em;
  7253. display: moz-inline-stack;
  7254. display: inline-block;
  7255. vertical-align: top;
  7256. zoom: 1;
  7257. *display: inline; }
  7258. #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li a, #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-menu-home-member li a {
  7259. background-color: #4d4d4d;
  7260. border-radius: 5px;
  7261. background-clip: padding-box;
  7262. padding: 5px 12px 7px;
  7263. color: #f7f4ed;
  7264. font-size: 18px;
  7265. font-weight: 500;
  7266. transition: opacity,background-color 0.2s ease-out; }
  7267. #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li a[href="/fr/actuality"], #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-menu-home-member li a[href="/fr/actuality"] {
  7268. background-color: #e6de1c;
  7269. cursor: pointer;
  7270. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7271. transition: text-shadow 0.2s ease-out; }
  7272. #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li a[href="/fr/actuality"]:hover, #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li a[href="/fr/actuality"]:focus, #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-menu-home-member li a[href="/fr/actuality"]:hover, #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-menu-home-member li a[href="/fr/actuality"]:focus {
  7273. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7274. #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-home-v2 li a[href="/fr/actuality"]:active, #home-v2 > .panel-panel > div > .panel-pane.pane-menu-menu-menu-home-member li a[href="/fr/actuality"]:active {
  7275. transition: text-shadow 0s ease-out;
  7276. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7277. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7278. padding: 2em 0;
  7279. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  7280. text-align: center; }
  7281. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content {
  7282. display: moz-inline-stack;
  7283. display: inline-block;
  7284. vertical-align: top;
  7285. zoom: 1;
  7286. *display: inline;
  7287. text-align: left; }
  7288. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 {
  7289. font-weight: 900;
  7290. font-style: italic;
  7291. padding: 5px 0;
  7292. margin: 0;
  7293. line-height: 1;
  7294. display: moz-inline-stack;
  7295. display: inline-block;
  7296. vertical-align: top;
  7297. zoom: 1;
  7298. *display: inline;
  7299. vertical-align: middle; }
  7300. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 {
  7301. font-size: 24px; }
  7302. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 {
  7303. font-size: 16px; }
  7304. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form {
  7305. margin: 0 1em;
  7306. padding: 0px;
  7307. display: moz-inline-stack;
  7308. display: inline-block;
  7309. vertical-align: top;
  7310. zoom: 1;
  7311. *display: inline;
  7312. vertical-align: middle; }
  7313. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-wrapper {
  7314. margin: 0;
  7315. position: relative;
  7316. display: moz-inline-stack;
  7317. display: inline-block;
  7318. vertical-align: top;
  7319. zoom: 1;
  7320. *display: inline;
  7321. vertical-align: middle; }
  7322. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-account {
  7323. margin-right: 5px; }
  7324. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7325. font-size: 12px;
  7326. border-radius: 5px;
  7327. background-clip: padding-box;
  7328. margin-bottom: 4px; }
  7329. .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7330. margin-right: 5px; }
  7331. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-mail input.form-text, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-name input.form-text {
  7332. width: 11em; }
  7333. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text {
  7334. width: 7em; }
  7335. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check {
  7336. position: absolute;
  7337. bottom: 100%;
  7338. z-index: 9999;
  7339. background-image: none;
  7340. height: auto;
  7341. padding: 5px;
  7342. border-radius: 5px;
  7343. background-clip: padding-box;
  7344. margin-bottom: 10px;
  7345. font-size: 10px;
  7346. background-color: #fff;
  7347. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  7348. transition: bottom 0.1s ease-out; }
  7349. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error {
  7350. background-color: #f3968d;
  7351. color: #fff; }
  7352. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok {
  7353. display: none; }
  7354. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit {
  7355. font-size: 16px;
  7356. padding: 0.1em 0.6em 0.2em;
  7357. border-radius: 0.3em;
  7358. background-clip: padding-box;
  7359. font-weight: bold;
  7360. margin-bottom: 4px; }
  7361. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter {
  7362. margin-bottom: 0;
  7363. display: block;
  7364. line-height: 1; }
  7365. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices > *, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter > * {
  7366. display: moz-inline-stack;
  7367. display: inline-block;
  7368. vertical-align: top;
  7369. zoom: 1;
  7370. *display: inline;
  7371. vertical-align: middle;
  7372. margin: 0; }
  7373. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-termsofservices label, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-field-newsletter label {
  7374. font-size: 10px;
  7375. background-color: #fff;
  7376. border-radius: 3px;
  7377. background-clip: padding-box; }
  7378. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit {
  7379. border: 2px solid #69CDCF;
  7380. background-color: #69CDCF;
  7381. color: #fff;
  7382. cursor: pointer;
  7383. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7384. transition: text-shadow 0.2s ease-out; }
  7385. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:hover, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:focus {
  7386. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7387. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:active {
  7388. transition: text-shadow 0s ease-out;
  7389. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7390. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] {
  7391. background-color: #ddd;
  7392. border: 2px solid #ddd; }
  7393. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit {
  7394. border: 2px solid #E6DE1C;
  7395. background-color: #E6DE1C;
  7396. color: #fff;
  7397. cursor: pointer;
  7398. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7399. transition: text-shadow 0.2s ease-out; }
  7400. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:hover, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:focus {
  7401. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7402. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:active {
  7403. transition: text-shadow 0s ease-out;
  7404. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7405. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews {
  7406. display: none; }
  7407. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join {
  7408. display: moz-inline-stack;
  7409. display: inline-block;
  7410. vertical-align: top;
  7411. zoom: 1;
  7412. *display: inline;
  7413. vertical-align: middle;
  7414. margin: 0 1em;
  7415. font-size: 16px;
  7416. padding: 0.1em 0.3em 0.2em;
  7417. border-radius: 0.3em;
  7418. background-clip: padding-box;
  7419. font-weight: bold;
  7420. border: 2px solid #69CDCF;
  7421. background-color: #69CDCF;
  7422. color: #fff;
  7423. cursor: pointer;
  7424. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7425. transition: text-shadow 0.2s ease-out;
  7426. text-align: center;
  7427. text-decoration: none; }
  7428. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:hover, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:focus {
  7429. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7430. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:active {
  7431. transition: text-shadow 0s ease-out;
  7432. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7433. @media only screen and (max-width: 40em) {
  7434. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7435. background-position: 160% 50%;
  7436. min-height: 60px;
  7437. padding: 15px 0; }
  7438. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-mail input.form-text, #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-name input.form-text {
  7439. width: 7em; } }
  7440. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error {
  7441. color: #b94a48;
  7442. font-size: 12px; }
  7443. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7444. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7445. transition: box-shadow 0.3s ease-out;
  7446. height: 450px;
  7447. margin-top: 15px;
  7448. background-color: #fff;
  7449. position: relative; }
  7450. #home-v2 > .panel-panel > div > .panel-pane.showroom:hover {
  7451. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7452. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content {
  7453. width: 100%;
  7454. height: 100%;
  7455. position: relative; }
  7456. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node {
  7457. position: absolute;
  7458. height: 100%;
  7459. width: 100%; }
  7460. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7461. position: absolute;
  7462. width: 100%;
  7463. height: 100%;
  7464. overflow: hidden; }
  7465. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img {
  7466. width: 100%;
  7467. margin-top: -10%; }
  7468. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7469. position: relative;
  7470. z-index: 2;
  7471. width: 30%;
  7472. margin: 3em 2em; }
  7473. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content {
  7474. background-color: rgba(255, 255, 255, 0.8);
  7475. padding: 1em;
  7476. border-radius: 5px;
  7477. background-clip: padding-box; }
  7478. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field {
  7479. font-size: 2.1em;
  7480. font-weight: 300; }
  7481. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body {
  7482. margin-top: 0.5em; }
  7483. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7484. content: url("../img/bulle.png");
  7485. -webkit-transform: scale(0.8);
  7486. transform: scale(0.8);
  7487. position: absolute;
  7488. bottom: -120px;
  7489. right: -20px;
  7490. z-index: 10; }
  7491. @media only screen and (max-width: 40em) {
  7492. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7493. margin-top: 10px; }
  7494. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7495. position: absolute;
  7496. width: 400%;
  7497. height: 100%;
  7498. overflow: hidden; }
  7499. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7500. width: auto;
  7501. padding: 2%;
  7502. margin: 2%; }
  7503. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body {
  7504. font-size: 0.756em;
  7505. margin-top: 0.5em; }
  7506. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7507. opacity: 0.4; } }
  7508. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7509. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7510. transition: box-shadow 0.3s ease-out;
  7511. height: 450px;
  7512. margin-top: 30px;
  7513. background-color: #FFF;
  7514. position: relative; }
  7515. #home-v2 > .panel-panel > div > .panel-pane.bdd:hover {
  7516. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7517. #home-v2 > .panel-panel > div > .panel-pane.bdd .links a {
  7518. background-color: #e6e6e6; }
  7519. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7520. display: moz-inline-stack;
  7521. display: inline-block;
  7522. vertical-align: top;
  7523. zoom: 1;
  7524. *display: inline;
  7525. width: 60%;
  7526. height: 100%;
  7527. overflow: hidden; }
  7528. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img {
  7529. max-width: 2000px; }
  7530. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7531. display: moz-inline-stack;
  7532. display: inline-block;
  7533. vertical-align: top;
  7534. zoom: 1;
  7535. *display: inline;
  7536. width: 35%;
  7537. padding: 1em;
  7538. border-radius: 5px;
  7539. background-clip: padding-box; }
  7540. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field {
  7541. font-size: 2.1em;
  7542. font-weight: 300; }
  7543. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body {
  7544. margin-top: 1em; }
  7545. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a {
  7546. background-color: rgba(230, 230, 230, 0.8); }
  7547. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7548. content: url("../img/boule.png");
  7549. -webkit-transform: scale(0.8);
  7550. transform: scale(0.8);
  7551. position: absolute;
  7552. bottom: -50px;
  7553. left: -50px; }
  7554. @media only screen and (max-width: 40em) {
  7555. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7556. height: auto; }
  7557. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7558. width: 100%;
  7559. display: block;
  7560. height: 310px;
  7561. overflow: hidden; }
  7562. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7563. display: block;
  7564. width: 100%;
  7565. z-index: 1;
  7566. padding: 0; }
  7567. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper > * {
  7568. padding: 1em; }
  7569. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7570. opacity: 0.6;
  7571. z-index: 0; } }
  7572. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7573. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7574. transition: box-shadow 0.3s ease-out;
  7575. position: relative;
  7576. height: 300px;
  7577. margin-top: 30px;
  7578. background-color: #000;
  7579. color: #FFF; }
  7580. #home-v2 > .panel-panel > div > .panel-pane.formations:hover {
  7581. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7582. #home-v2 > .panel-panel > div > .panel-pane.formations a {
  7583. color: #FFF; }
  7584. #home-v2 > .panel-panel > div > .panel-pane.formations .node {
  7585. padding: 0 0 0 30%;
  7586. width: 70%; }
  7587. #home-v2 > .panel-panel > div > .panel-pane.formations .node:before {
  7588. content: " ";
  7589. background: transparent url("../img/formations.png") no-repeat center center;
  7590. background-clip: padding-box;
  7591. background-size: contain;
  7592. position: absolute;
  7593. left: 0;
  7594. z-index: 2;
  7595. width: 30%;
  7596. height: 100%; }
  7597. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper {
  7598. padding: 1em;
  7599. position: relative; }
  7600. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field {
  7601. font-size: 2.1em;
  7602. font-weight: 300; }
  7603. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body {
  7604. margin-top: 1em; }
  7605. @media only screen and (max-width: 40em) {
  7606. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7607. height: auto; } }
  7608. #home-v2 > .panel-panel > div > .panel-pane.services {
  7609. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7610. transition: box-shadow 0.3s ease-out;
  7611. background-color: #FFF;
  7612. height: 300px;
  7613. margin-top: 30px; }
  7614. #home-v2 > .panel-panel > div > .panel-pane.services:hover {
  7615. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7616. #home-v2 > .panel-panel > div > .panel-pane.services .node {
  7617. padding: 0 30% 0 0;
  7618. width: 70%; }
  7619. #home-v2 > .panel-panel > div > .panel-pane.services .node:before {
  7620. content: " ";
  7621. background: transparent url("../img/services.png") no-repeat center center;
  7622. background-clip: padding-box;
  7623. background-size: contain;
  7624. position: absolute;
  7625. right: 0;
  7626. z-index: 2;
  7627. width: 30%;
  7628. height: 100%; }
  7629. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper {
  7630. padding: 1em;
  7631. position: relative; }
  7632. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field {
  7633. font-size: 2.1em;
  7634. font-weight: 300; }
  7635. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body {
  7636. margin-top: 1em; }
  7637. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-field-liens a {
  7638. background-color: rgba(230, 230, 230, 0.8); }
  7639. @media only screen and (max-width: 40em) {
  7640. #home-v2 > .panel-panel > div > .panel-pane.services {
  7641. height: auto; } }
  7642. #home-v2 > .panel-panel > div > .panel-pane.publication {
  7643. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7644. transition: box-shadow 0.3s ease-out;
  7645. position: relative;
  7646. margin-top: 30px;
  7647. padding: 1em;
  7648. background-color: #000;
  7649. border-radius: 10px;
  7650. background-clip: padding-box; }
  7651. #home-v2 > .panel-panel > div > .panel-pane.publication:hover {
  7652. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7653. #home-v2 > .panel-panel > div > .panel-pane.publication, #home-v2 > .panel-panel > div > .panel-pane.publication a, #home-v2 > .panel-panel > div > .panel-pane.publication h1, #home-v2 > .panel-panel > div > .panel-pane.publication h2 {
  7654. color: #fff; }
  7655. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7656. display: moz-inline-stack;
  7657. display: inline-block;
  7658. vertical-align: top;
  7659. zoom: 1;
  7660. *display: inline;
  7661. width: 30%; }
  7662. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 {
  7663. display: none; }
  7664. @media only screen and (max-width: 40em) {
  7665. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7666. display: block;
  7667. width: 90%;
  7668. margin-bottom: 1em; } }
  7669. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7670. background-color: #e6e6e6;
  7671. border-radius: 10px;
  7672. background-clip: padding-box;
  7673. margin-top: 30px;
  7674. padding-top: 1em;
  7675. padding-bottom: 1em;
  7676. position: relative; }
  7677. #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 {
  7678. font-size: 30px; }
  7679. @media only screen and (min-width: 40.063em) {
  7680. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper {
  7681. width: 100%;
  7682. margin-left: auto;
  7683. margin-right: auto;
  7684. margin-top: 0;
  7685. margin-bottom: 0;
  7686. max-width: 80rem; }
  7687. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:before, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after {
  7688. content: " ";
  7689. display: table; }
  7690. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after {
  7691. clear: both; }
  7692. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7693. overflow: hidden;
  7694. padding-left: 0.9375rem;
  7695. padding-right: 0.9375rem;
  7696. width: 33.33333%;
  7697. float: left;
  7698. padding: 0em;
  7699. margin-left: 1em; }
  7700. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first {
  7701. width: auto; }
  7702. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) {
  7703. width: 31%; }
  7704. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7705. margin: 0; }
  7706. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel article.node, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel article.node-breve.vm-cardbig {
  7707. margin: 0;
  7708. height: 610px; } }
  7709. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom {
  7710. width: 100%;
  7711. margin-left: auto;
  7712. margin-right: auto;
  7713. margin-top: 0;
  7714. margin-bottom: 0;
  7715. max-width: 80rem;
  7716. margin-top: 1.5em;
  7717. margin-bottom: 1.5em; }
  7718. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:before, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after {
  7719. content: " ";
  7720. display: table; }
  7721. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after {
  7722. clear: both; }
  7723. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside {
  7724. padding-left: 0.9375rem;
  7725. padding-right: 0.9375rem;
  7726. width: 100%;
  7727. float: left; }
  7728. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p {
  7729. display: none; }
  7730. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes {
  7731. margin: 0 0 0.5em 0; }
  7732. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item {
  7733. display: moz-inline-stack;
  7734. display: inline-block;
  7735. vertical-align: top;
  7736. zoom: 1;
  7737. *display: inline;
  7738. margin-right: 1em; }
  7739. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item label, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item input {
  7740. vertical-align: middle; }
  7741. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail {
  7742. display: moz-inline-stack;
  7743. display: inline-block;
  7744. vertical-align: top;
  7745. zoom: 1;
  7746. *display: inline;
  7747. margin: 0; }
  7748. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail label, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail input {
  7749. display: moz-inline-stack;
  7750. display: inline-block;
  7751. vertical-align: top;
  7752. zoom: 1;
  7753. *display: inline;
  7754. margin-right: 1em; }
  7755. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom #edit-subscribe, #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom #edit-unsubscribe {
  7756. display: moz-inline-stack;
  7757. display: inline-block;
  7758. vertical-align: top;
  7759. zoom: 1;
  7760. *display: inline; }
  7761. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews {
  7762. border-radius: 5px;
  7763. background-clip: padding-box;
  7764. background-color: #FFF;
  7765. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7766. transition: box-shadow 0.3s ease-out;
  7767. overflow: hidden;
  7768. position: relative;
  7769. margin: 7px; }
  7770. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a {
  7771. position: absolute;
  7772. bottom: 0;
  7773. width: 100%;
  7774. background-color: #FFF;
  7775. text-align: center; }
  7776. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 {
  7777. padding: 10px;
  7778. margin: 0;
  7779. font-size: 1em; }
  7780. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7781. content: url("../img/point.png");
  7782. position: absolute;
  7783. bottom: 20px;
  7784. right: 10px; }
  7785. @media only screen and (max-width: 40em) {
  7786. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7787. background-color: transparent; }
  7788. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7789. width: 100%; }
  7790. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7791. margin: 0; }
  7792. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node {
  7793. max-width: 100%;
  7794. margin: 0; }
  7795. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body {
  7796. width: 100%;
  7797. padding: 0; }
  7798. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body p {
  7799. max-width: 100%;
  7800. padding: 1em; }
  7801. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a {
  7802. padding: 0;
  7803. display: block;
  7804. height: 100%; }
  7805. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a img {
  7806. max-width: 100%; }
  7807. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7808. z-index: -1;
  7809. opacity: 0.4; } }
  7810. #home-v2 #contact-pane {
  7811. margin: 2em 0;
  7812. padding: 1em;
  7813. background-color: #e6e6e6; }
  7814. #home-v2 #contact-pane .field-name-body {
  7815. text-align: center; }
  7816. #home-v2 #contact-pane .field-name-body p {
  7817. display: moz-inline-stack;
  7818. display: inline-block;
  7819. vertical-align: top;
  7820. zoom: 1;
  7821. *display: inline;
  7822. min-width: 20%; }
  7823. /*
  7824. _ _ _ _ _
  7825. | | | (_) | | (_)
  7826. _ __ _ _| |__ | |_ ___ __ _| |_ _ ___ _ __ ___
  7827. | '_ \| | | | '_ \| | |/ __/ _` | __| |/ _ \| '_ \/ __|
  7828. | |_) | |_| | |_) | | | (_| (_| | |_| | (_) | | | \__ | .__/ \__,_|_.__/|_|_|\___\__,_|\__|_|\___/|_| |_|___/
  7829. | |
  7830. |_|
  7831. */
  7832. body.node-type-publication article.node-publication .field figure, body.node-type-publication article.node-publication .field img {
  7833. max-width: 100%; }
  7834. @media only screen and (min-width: 64.063em) {
  7835. body.node-type-publication article.node-publication .field {
  7836. display: moz-inline-stack;
  7837. display: inline-block;
  7838. vertical-align: top;
  7839. zoom: 1;
  7840. *display: inline; }
  7841. body.node-type-publication article.node-publication .field-name-field-couverture {
  7842. width: 25%; }
  7843. body.node-type-publication article.node-publication .field-name-body {
  7844. margin-left: 1em;
  7845. width: 70%; } }
  7846. /*
  7847. __ ___
  7848. / |/ /__ ______________ _____ ____ _____
  7849. / /|_/ / _ \/ ___/ ___/ __ `/ __ `/ _ \/ ___/
  7850. / / / / __(__ |__ ) /_/ / /_/ / __(__ )
  7851. /_/ /_/\___/____/____/\__,_/\__, /\___/____/
  7852. /____/
  7853. */
  7854. div.messages {
  7855. padding: 9px;
  7856. margin: 0.5em 0 0;
  7857. color: #3a87ad;
  7858. background: #d9edf7;
  7859. border: 1px solid #bce8f1;
  7860. border-radius: 5px;
  7861. font-size: 12px; }
  7862. div.messages.warning {
  7863. color: #c09853;
  7864. background-color: #fcf8e3;
  7865. border-color: #fbeed5; }
  7866. div.messages.error {
  7867. color: #b94a48;
  7868. background-color: #f2dede;
  7869. border-color: #eed3d7; }
  7870. div.messages.status {
  7871. color: #468847;
  7872. background-color: #dff0d8;
  7873. border-color: #d6e9c6;
  7874. font-size: 14px; }
  7875. .messages-label {
  7876. display: none; }
  7877. #better-messages-wrapper {
  7878. background-color: rgba(255, 255, 255, 0.7);
  7879. padding: 10px;
  7880. border-radius: 5px;
  7881. background-clip: padding-box;
  7882. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }
  7883. #better-messages-wrapper #better-messages-default div.messages {
  7884. padding: 9px;
  7885. margin: 0.5em 0 0;
  7886. color: #3a87ad;
  7887. background: #d9edf7;
  7888. border: 1px solid #bce8f1;
  7889. border-radius: 5px;
  7890. font-size: 12px;
  7891. margin: 0 0 10px 0; }
  7892. #better-messages-wrapper #better-messages-default div.messages.warning {
  7893. color: #c09853;
  7894. background-color: #fcf8e3;
  7895. border-color: #fbeed5; }
  7896. #better-messages-wrapper #better-messages-default div.messages.error {
  7897. color: #b94a48;
  7898. background-color: #f2dede;
  7899. border-color: #eed3d7; }
  7900. #better-messages-wrapper #better-messages-default div.messages.status {
  7901. color: #468847;
  7902. background-color: #dff0d8;
  7903. border-color: #d6e9c6;
  7904. font-size: 14px; }
  7905. #better-messages-wrapper #better-messages-default .footer {
  7906. border: none;
  7907. padding: 0;
  7908. margin: 0; }
  7909. #better-messages-wrapper #better-messages-default .footer a.message-close {
  7910. background: #fff url("../img/close.png") no-repeat center center;
  7911. width: 15px;
  7912. height: 15px;
  7913. border-radius: 3px;
  7914. background-clip: padding-box;
  7915. display: block; }
  7916. /** Tab navigation */
  7917. /**
  7918. * icons
  7919. */
  7920. /**
  7921. * figures
  7922. */
  7923. figure figcaption {
  7924. display: none; }
  7925. figure .blank {
  7926. position: absolute;
  7927. top: 0;
  7928. left: 0;
  7929. width: 100%;
  7930. height: 100%; }
  7931. /* ==|== print styles =======================================================
  7932. Print styles.
  7933. Inlined to avoid required HTTP connection: h5bp.com/r
  7934. ========================================================================== */
  7935. a:focus {
  7936. outline: 0; }
  7937. /*
  7938. * Improves readability when focused and also mouse hovered in all browsers.
  7939. */
  7940. a:active,
  7941. a:hover {
  7942. outline: 0; }
  7943. i {
  7944. transition: color 0.3s; }
  7945. i:hover {
  7946. color: #606060;
  7947. text-shadow: 1px 4px 6px #FFF,0 0 0 #000,1px 4px 6px #FFF; }
  7948. /** COLORBOX */
  7949. #colorbox {
  7950. border-radius: 2px;
  7951. background-clip: padding-box;
  7952. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7953. #colorbox #cboxLoadedContent {
  7954. background-color: #fff; }
  7955. /** embed player */
  7956. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7957. .embedded-video .player iframe {
  7958. max-width: 100%;
  7959. height: auto; } }
  7960. /** devel */
  7961. .not-logged-in #tasks ul.tabs.primary {
  7962. display: none; }
  7963. /*
  7964. __ _
  7965. ____ _____/ /___ ___ (_)___ ____ ___ ___ ____ __ __
  7966. / __ `/ __ / __ `__ \/ / __ \ / __ `__ \/ _ \/ __ \/ / / /
  7967. / /_/ / /_/ / / / / / / / / / / / / / / / / __/ / / / /_/ /
  7968. \__,_/\__,_/_/ /_/ /_/_/_/ /_/ /_/ /_/ /_/\___/_/ /_/\__,_/
  7969. */
  7970. #admin-menu {
  7971. top: 0; }