styles.css 341 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280
  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: none; } }
  2705. .ie8 #header .logo span.slogan {
  2706. position: absolute;
  2707. margin-top: 22px; }
  2708. #header #header-blocks {
  2709. padding-top: 17px;
  2710. float: right;
  2711. text-align: right;
  2712. text-transform: capitalize; }
  2713. #header #header-blocks > .region {
  2714. display: moz-inline-stack;
  2715. display: inline-block;
  2716. vertical-align: top;
  2717. zoom: 1;
  2718. *display: inline;
  2719. vertical-align: middle;
  2720. padding-right: 1em;
  2721. margin-right: 1em;
  2722. border-right: 1px solid #707070; }
  2723. @media only screen and (max-width: 40em) {
  2724. #header #header-blocks > .region {
  2725. padding-right: 0.3em;
  2726. margin-right: 0.3em; } }
  2727. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2728. #header #header-blocks > .region {
  2729. padding-right: 0.3em;
  2730. margin-right: 0.3em; } }
  2731. #header #header-blocks > .region:last-child {
  2732. border: none;
  2733. padding: 0;
  2734. margin: 0; }
  2735. #header #header-blocks .block {
  2736. display: moz-inline-stack;
  2737. display: inline-block;
  2738. vertical-align: top;
  2739. zoom: 1;
  2740. *display: inline;
  2741. vertical-align: middle; }
  2742. #header #header-blocks .block h2 {
  2743. font-size: 12px;
  2744. margin: 0;
  2745. line-height: 1.2;
  2746. font-weight: normal; }
  2747. #header #header-blocks .block:not(:last-child) {
  2748. padding-right: 0.8em; }
  2749. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  2750. #header #header-blocks .block:not(:last-child) {
  2751. padding-right: 0.3em; } }
  2752. #header #header-blocks #block-materio-user-front-link a {
  2753. font-size: 12px; }
  2754. #header #header-blocks #block-materio-user-front-link span.text {
  2755. display: none; }
  2756. #header #header-blocks #block-user-login {
  2757. font-size: 12px;
  2758. text-align: left;
  2759. position: relative; }
  2760. #header #header-blocks #block-user-login h2 {
  2761. padding-right: 5px; }
  2762. #header #header-blocks #block-user-login h2 i {
  2763. vertical-align: text-bottom;
  2764. margin: 0 2px 2px 0; }
  2765. #header #header-blocks #block-user-login form#user-login-form {
  2766. position: absolute;
  2767. overflow: hidden;
  2768. right: 0;
  2769. margin: 0;
  2770. height: 0;
  2771. transition: height 0.3s ease-out; }
  2772. #header #header-blocks #block-user-login form#user-login-form > div {
  2773. padding: 5px;
  2774. margin: 5px;
  2775. background-color: #e6e6e6;
  2776. border-radius: 5px;
  2777. background-clip: padding-box;
  2778. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  2779. #header #header-blocks #block-user-login form#user-login-form .form-item {
  2780. margin: 0;
  2781. padding-bottom: 5px; }
  2782. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  2783. margin: 0;
  2784. font-size: 10px; }
  2785. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  2786. width: 150px;
  2787. height: 2em; }
  2788. #header #header-blocks #block-user-login form#user-login-form .form-actions {
  2789. margin: 5px 0;
  2790. padding: 0;
  2791. background-color: transparent;
  2792. text-align: right; }
  2793. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit {
  2794. font-size: 16px;
  2795. padding: 0.1em 0.6em 0.2em;
  2796. border-radius: 0.3em;
  2797. background-clip: padding-box;
  2798. font-weight: bold;
  2799. margin-bottom: 4px;
  2800. border: 2px solid #E6DE1C;
  2801. background-color: #E6DE1C;
  2802. color: #fff;
  2803. cursor: pointer;
  2804. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  2805. transition: text-shadow 0.2s ease-out; }
  2806. #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 {
  2807. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  2808. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:active {
  2809. transition: text-shadow 0s ease-out;
  2810. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  2811. #header #header-blocks #block-user-login form#user-login-form div.newpass {
  2812. text-align: right; }
  2813. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  2814. font-size: 10px;
  2815. color: #686868;
  2816. text-transform: lowercase; }
  2817. 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 {
  2818. height: 300px;
  2819. z-index: 1000; }
  2820. @media only screen and (max-width: 40em) {
  2821. #header #header-blocks #block-user-login span.login {
  2822. display: none; } }
  2823. #header #header-blocks #block-ajax-register-ajax-register-block {
  2824. font-size: 12px;
  2825. text-transform: lowercase; }
  2826. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2827. font-size: 12px;
  2828. line-height: 1.5; }
  2829. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2830. vertical-align: text-bottom;
  2831. margin: 0 5px 1px 0;
  2832. line-height: 1; }
  2833. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2834. text-transform: lowercase; }
  2835. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2836. display: none;
  2837. margin-left: 5px; }
  2838. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2839. margin: 0 0.5em 0 0.5em; }
  2840. @media only screen and (max-width: 40em) {
  2841. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2842. display: none; } }
  2843. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2844. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2845. display: none; } }
  2846. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  2847. position: relative; }
  2848. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  2849. margin: 0;
  2850. font-size: 12px;
  2851. line-height: 1.5; }
  2852. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2853. line-height: 1; }
  2854. @media only screen and (max-width: 40em) {
  2855. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2856. display: none; } }
  2857. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2858. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2859. display: none; } }
  2860. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2861. position: absolute;
  2862. z-index: 20;
  2863. background-color: rgba(255, 255, 255, 0.9);
  2864. min-width: 100%;
  2865. margin: 0 0 0 -5px;
  2866. border-radius: 3px;
  2867. background-clip: padding-box;
  2868. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  2869. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2870. background: #FFF; }
  2871. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2872. margin: 0; }
  2873. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2874. list-style: none;
  2875. font-size: 12px;
  2876. font-weight: 700;
  2877. padding: 0 10px;
  2878. text-align: left;
  2879. width: 200px;
  2880. height: 0;
  2881. overflow: hidden;
  2882. transition: height 0.3s ease-out; }
  2883. #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 {
  2884. white-space: nowrap;
  2885. cursor: pointer; }
  2886. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2887. max-width: 150px; }
  2888. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2889. font-weight: 300;
  2890. padding: 0 5px; }
  2891. #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 {
  2892. padding-right: 5px; }
  2893. .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 {
  2894. visibility: hidden; }
  2895. .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 > * {
  2896. margin-top: -100000px; }
  2897. .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 {
  2898. opacity: 0;
  2899. transition: visibility 0s 0.3s; }
  2900. .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 > * {
  2901. transition: margin-top 0s 0.3s; }
  2902. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2903. padding-bottom: 5px; }
  2904. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2905. height: 15px;
  2906. padding: 3px 10px; }
  2907. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2908. vertical-align: text-bottom;
  2909. margin: 0 2px 2px 0; }
  2910. @media only screen and (max-width: 40em) {
  2911. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2912. display: none; } }
  2913. #header #header-blocks #headerblock-right .block {
  2914. display: moz-inline-stack;
  2915. display: inline-block;
  2916. vertical-align: top;
  2917. zoom: 1;
  2918. *display: inline;
  2919. vertical-align: middle;
  2920. padding: 0; }
  2921. #header #header-blocks #headerblock-right .block:first-child {
  2922. padding: 0; }
  2923. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  2924. margin: 0;
  2925. padding: 0;
  2926. list-style-type: none;
  2927. font-size: 12px;
  2928. line-height: 1; }
  2929. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  2930. display: none; }
  2931. .ie8 #header #header-blocks #block-locale-language {
  2932. padding-top: 5px; }
  2933. #header #header-blocks #block-locale-language ul {
  2934. padding-top: 0.155em; }
  2935. #header #header-blocks #block-locale-language li {
  2936. font-size: 0.9em;
  2937. padding: 0.33em 0.35em 0.3em;
  2938. border-radius: 3px;
  2939. background-clip: padding-box;
  2940. background-color: #808080;
  2941. transition: background-color 0.3s ease-out; }
  2942. #header #header-blocks #block-locale-language li, #header #header-blocks #block-locale-language li > * {
  2943. color: #fff;
  2944. text-transform: uppercase; }
  2945. #header #header-blocks #block-locale-language li:hover {
  2946. background-color: #1A1A1A; }
  2947. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2948. display: none; }
  2949. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2950. vertical-align: text-bottom;
  2951. margin: 0 0 2px 0; }
  2952. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2953. font-size: 12px;
  2954. list-style: none; }
  2955. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2956. display: inline; }
  2957. @media only screen and (min-width: 40.063em) {
  2958. #header #header-blocks #block-menu-menu-top-menu h2 {
  2959. display: none; }
  2960. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2961. display: moz-inline-stack;
  2962. display: inline-block;
  2963. vertical-align: top;
  2964. zoom: 1;
  2965. *display: inline;
  2966. vertical-align: middle;
  2967. padding: 0;
  2968. margin: 0; }
  2969. #header #header-blocks #block-menu-menu-top-menu a {
  2970. padding: 0 0.5em 0 0; } }
  2971. @media only screen and (max-width: 40em) {
  2972. #header #header-blocks #block-menu-menu-top-menu {
  2973. position: relative; }
  2974. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  2975. display: none; }
  2976. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  2977. position: absolute;
  2978. width: 150px;
  2979. display: none;
  2980. right: 0;
  2981. padding-top: 5px; }
  2982. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  2983. background-color: #e6e6e6;
  2984. border-radius: 5px;
  2985. background-clip: padding-box;
  2986. padding: 0 5px 5px 5px;
  2987. margin: 0;
  2988. text-align: right; }
  2989. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  2990. height: 0;
  2991. overflow: hidden;
  2992. transition: height 0.3s ease-out; }
  2993. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  2994. display: block;
  2995. width: 100%;
  2996. padding: 2px 5px;
  2997. font-size: 12px; }
  2998. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  2999. z-index: 1000; }
  3000. 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 {
  3001. display: block; }
  3002. 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 {
  3003. height: 25px; } }
  3004. #header #header-blocks #block-materio-user-old-database-link a {
  3005. font-size: 12px; }
  3006. #header #header-blocks #block-social-media-links-social-media-links ul.social-media-links {
  3007. margin: 0;
  3008. line-height: 0; }
  3009. #header #header-blocks #block-social-media-links-social-media-links li {
  3010. line-height: 1; }
  3011. #header #header-blocks #block-social-media-links-social-media-links li.facebook a {
  3012. background-image: url("../img/socialicons/svg/Facebook-color.svg"); }
  3013. #header #header-blocks #block-social-media-links-social-media-links li.twitter a {
  3014. background-image: url("../img/socialicons/svg/Twitter-color.svg"); }
  3015. #header #header-blocks #block-social-media-links-social-media-links li.linkedin a {
  3016. background-image: url("../img/socialicons/svg/LinkedIn-color.svg"); }
  3017. #header #header-blocks #block-social-media-links-social-media-links li.pinterest a {
  3018. background-image: url("../img/socialicons/svg/Pinterest-color.svg"); }
  3019. #header #header-blocks #block-social-media-links-social-media-links li.vimeo a {
  3020. background-image: url("../img/socialicons/svg/Vimeo-color.svg"); }
  3021. #header #header-blocks #block-social-media-links-social-media-links li.rss a {
  3022. background-image: url("../img/socialicons/svg/RSS-color.svg"); }
  3023. #header #header-blocks #block-social-media-links-social-media-links a {
  3024. display: block;
  3025. width: 16px;
  3026. height: 16px;
  3027. background-position: center;
  3028. background-repeat: no-repeat;
  3029. background-size: contain; }
  3030. #header #header-blocks #block-social-media-links-social-media-links img {
  3031. display: none; }
  3032. /*
  3033. __ _ ___ __ _
  3034. __ __/ /_(_) (_) /_(_)__ _____
  3035. / / / / __/ / / / __/ / _ \/ ___/
  3036. / /_/ / /_/ / / / /_/ / __(__ )
  3037. \__,_/\__/_/_/_/\__/_/\___/____/
  3038. */
  3039. #utilities {
  3040. background-color: #fff;
  3041. margin-top: 60px; }
  3042. .not-logged-in #utilities {
  3043. overflow: hidden; }
  3044. #utilities > .inner {
  3045. padding: 0.5em 0; }
  3046. #utilities.closed {
  3047. height: 0; }
  3048. #utilities.closed .tabs, #utilities.closed .node-didactique {
  3049. display: none; }
  3050. @media only screen and (max-width: 40em) {
  3051. #utilities {
  3052. margin-top: 0; } }
  3053. /*
  3054. _
  3055. ____ ___ ____ _(_)___
  3056. / __ `__ \/ __ `/ / __ / / / / / / /_/ / / / / /
  3057. /_/ /_/ /_/\__,_/_/_/ /_/
  3058. */
  3059. body.home-v2 #main {
  3060. padding-top: 60px; }
  3061. /*
  3062. __ _ __ ___ __ __ __
  3063. / /_ (_)___ _/ /_ / (_)___ _/ /_ / /____ ____/ /
  3064. / __ \/ / __ `/ __ \/ / / __ `/ __ \/ __/ _ \/ __ /
  3065. / / / / / /_/ / / / / / / /_/ / / / / /_/ __/ /_/ /
  3066. /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/
  3067. /____/ /____/
  3068. */
  3069. #highlighted {
  3070. border-radius: 5px;
  3071. background-clip: padding-box;
  3072. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  3073. padding: 0.5em;
  3074. position: relative; }
  3075. @media only screen and (min-width: 40.063em) {
  3076. #highlighted {
  3077. margin: 20px 0 6px; }
  3078. #highlighted .block {
  3079. display: moz-inline-stack;
  3080. display: inline-block;
  3081. vertical-align: top;
  3082. zoom: 1;
  3083. *display: inline;
  3084. vertical-align: top; }
  3085. #highlighted .block-materio-didactique {
  3086. width: 65%; }
  3087. #highlighted .block-materio-didactique .side {
  3088. display: moz-inline-stack;
  3089. display: inline-block;
  3090. vertical-align: top;
  3091. zoom: 1;
  3092. *display: inline;
  3093. vertical-align: top;
  3094. position: relative; }
  3095. #highlighted .block-materio-didactique .group-sideleft {
  3096. width: 65%; }
  3097. #highlighted .block-materio-didactique .group-sideright {
  3098. width: 30%; }
  3099. #highlighted .block-materio-didactique .field-name-title-field {
  3100. font-size: 24px; }
  3101. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3102. width: 47%; }
  3103. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3104. margin-right: 2%; }
  3105. #highlighted #block-materio-user-user-register {
  3106. width: 30%;
  3107. padding: 5px;
  3108. height: 290px; } }
  3109. @media only screen {
  3110. #highlighted .block-materio-didactique .side {
  3111. display: moz-inline-stack;
  3112. display: inline-block;
  3113. vertical-align: top;
  3114. zoom: 1;
  3115. *display: inline;
  3116. vertical-align: top; } }
  3117. @media only screen and (max-width: 40em) {
  3118. #highlighted {
  3119. margin: 10px 0 6px; }
  3120. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3121. width: 100%; }
  3122. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3123. font-size: 20px;
  3124. font-weight: normal !important; }
  3125. #highlighted .block-materio-didactique .node-didactique .field-name-title-field:after {
  3126. content: "\a0\f10b";
  3127. font-family: "foundation-icons";
  3128. font-style: normal;
  3129. font-weight: normal;
  3130. font-variant: normal;
  3131. text-transform: none;
  3132. line-height: 1;
  3133. -webkit-font-smoothing: antialiased;
  3134. display: inline-block;
  3135. text-decoration: inherit;
  3136. font-size: 16px; }
  3137. html.js #highlighted .block-materio-didactique .node-didactique {
  3138. height: auto;
  3139. height: 30px;
  3140. overflow: hidden; }
  3141. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3142. height: auto; } }
  3143. .oldie #highlighted .block {
  3144. display: moz-inline-stack;
  3145. display: inline-block;
  3146. vertical-align: top;
  3147. zoom: 1;
  3148. *display: inline; }
  3149. #highlighted .block-materio-didactique .node-didactique {
  3150. font-size: 14px;
  3151. background-color: #fff;
  3152. margin: 0 auto; }
  3153. #highlighted .block-materio-didactique .node-didactique .side {
  3154. position: relative; }
  3155. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3156. font-weight: 900;
  3157. font-style: italic;
  3158. padding: 5px 0; }
  3159. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3160. text-align: center; }
  3161. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3162. display: inline; }
  3163. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3164. display: none; }
  3165. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3166. display: none; }
  3167. html.js #highlighted .block-materio-didactique {
  3168. position: relative;
  3169. overflow: hidden; }
  3170. html.js #highlighted .block-materio-didactique .slides {
  3171. height: 270px;
  3172. margin: 0;
  3173. position: relative;
  3174. width: 100%;
  3175. overflow: hidden; }
  3176. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3177. position: absolute;
  3178. width: 100%;
  3179. height: 100%;
  3180. top: 0;
  3181. left: 0; }
  3182. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3183. height: 30px; }
  3184. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3185. height: 240px; }
  3186. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3187. height: 100%; }
  3188. @media only screen and (max-width: 40em) {
  3189. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3190. width: 290px;
  3191. height: 163.125px; } }
  3192. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  3193. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3194. width: 216px;
  3195. height: 121.5px; } }
  3196. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  3197. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3198. width: 216px;
  3199. height: 121.5px; } }
  3200. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  3201. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3202. width: 280px;
  3203. height: 157.5px; } }
  3204. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  3205. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3206. width: 340px;
  3207. height: 191.25px; } }
  3208. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3209. height: 100%;
  3210. width: 100%; }
  3211. html.js #highlighted .block-materio-didactique .tabs {
  3212. height: 30px;
  3213. margin: 0;
  3214. text-align: left; }
  3215. html.js #highlighted .block-materio-didactique .tabs > * {
  3216. display: moz-inline-stack;
  3217. display: inline-block;
  3218. vertical-align: top;
  3219. zoom: 1;
  3220. *display: inline;
  3221. vertical-align: top;
  3222. padding: 5px 10px;
  3223. font-size: 12px;
  3224. cursor: pointer;
  3225. color: #bfbfbf; }
  3226. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3227. color: #3f3f3f; }
  3228. /*
  3229. __ __ __ _ __
  3230. / /_ / /___ _____/ /__ ________ ____ _(_)____/ /____ _____
  3231. / __ \/ / __ \/ ___/ //_/ / ___/ _ \/ __ `/ / ___/ __/ _ \/ ___/
  3232. / /_/ / / /_/ / /__/ ,< / / / __/ /_/ / (__ ) /_/ __/ /
  3233. /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/
  3234. /____/
  3235. */
  3236. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3237. min-height: 120px;
  3238. padding: 5px;
  3239. background: transparent url("../img/register-block.png") no-repeat 100% 90%; }
  3240. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3241. max-width: 250px;
  3242. float: right;
  3243. background-image: none; }
  3244. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3245. font-weight: 900;
  3246. font-style: italic;
  3247. padding: 5px 0;
  3248. margin: 0;
  3249. line-height: 1;
  3250. background-color: #fff;
  3251. display: moz-inline-stack;
  3252. display: inline-block;
  3253. vertical-align: top;
  3254. zoom: 1;
  3255. *display: inline;
  3256. min-width: 50%; }
  3257. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3258. font-size: 24px; }
  3259. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3260. font-size: 16px; }
  3261. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3262. margin: 0;
  3263. background-color: rgba(255, 255, 255, 0.7);
  3264. padding-bottom: 5px;
  3265. display: moz-inline-stack;
  3266. display: inline-block;
  3267. vertical-align: top;
  3268. zoom: 1;
  3269. *display: inline; }
  3270. #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 {
  3271. margin: 0;
  3272. display: moz-inline-stack;
  3273. display: inline-block;
  3274. vertical-align: top;
  3275. zoom: 1;
  3276. *display: inline;
  3277. vertical-align: middle;
  3278. position: relative; }
  3279. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3280. margin-right: 5px; }
  3281. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3282. font-size: 12px;
  3283. border-radius: 5px;
  3284. background-clip: padding-box;
  3285. margin-bottom: 4px; }
  3286. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3287. margin-right: 5px; }
  3288. #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 {
  3289. width: 11em; }
  3290. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3291. width: 7em; }
  3292. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3293. position: absolute;
  3294. bottom: 100%;
  3295. z-index: 9999;
  3296. background-image: none;
  3297. height: auto;
  3298. padding: 5px;
  3299. border-radius: 5px;
  3300. background-clip: padding-box;
  3301. margin-bottom: 10px;
  3302. font-size: 10px;
  3303. background-color: #fff;
  3304. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3305. transition: bottom 0.1s ease-out; }
  3306. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3307. background-color: #f3968d;
  3308. color: #fff; }
  3309. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3310. display: none; }
  3311. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3312. font-size: 16px;
  3313. padding: 0.1em 0.6em 0.2em;
  3314. border-radius: 0.3em;
  3315. background-clip: padding-box;
  3316. font-weight: bold;
  3317. margin-bottom: 4px; }
  3318. #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 {
  3319. margin-bottom: 0;
  3320. display: block;
  3321. line-height: 1; }
  3322. #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 > * {
  3323. display: moz-inline-stack;
  3324. display: inline-block;
  3325. vertical-align: top;
  3326. zoom: 1;
  3327. *display: inline;
  3328. vertical-align: middle;
  3329. margin: 0; }
  3330. #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 {
  3331. font-size: 10px;
  3332. background-color: #fff;
  3333. border-radius: 3px;
  3334. background-clip: padding-box; }
  3335. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3336. border: 2px solid #69CDCF;
  3337. background-color: #69CDCF;
  3338. color: #fff;
  3339. cursor: pointer;
  3340. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3341. transition: text-shadow 0.2s ease-out; }
  3342. #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 {
  3343. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3344. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3345. transition: text-shadow 0s ease-out;
  3346. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3347. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3348. background-color: #ddd;
  3349. border: 2px solid #ddd; }
  3350. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3351. border: 2px solid #E6DE1C;
  3352. background-color: #E6DE1C;
  3353. color: #fff;
  3354. cursor: pointer;
  3355. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3356. transition: text-shadow 0.2s ease-out; }
  3357. #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 {
  3358. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3359. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3360. transition: text-shadow 0s ease-out;
  3361. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3362. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3363. padding-top: 0.5em; }
  3364. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3365. font-size: 12px; }
  3366. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3367. display: block; }
  3368. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3369. font-size: 12px; }
  3370. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3371. display: block;
  3372. width: 5em;
  3373. font-size: 16px;
  3374. padding: 0.1em 0.3em 0.2em;
  3375. border-radius: 0.3em;
  3376. background-clip: padding-box;
  3377. font-weight: bold;
  3378. border: 2px solid #69CDCF;
  3379. background-color: #69CDCF;
  3380. color: #fff;
  3381. cursor: pointer;
  3382. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3383. transition: text-shadow 0.2s ease-out;
  3384. text-align: center;
  3385. text-decoration: none; }
  3386. #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 {
  3387. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3388. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3389. transition: text-shadow 0s ease-out;
  3390. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3391. @media only screen and (max-width: 40em) {
  3392. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3393. background-position: 160% 50%;
  3394. min-height: 60px;
  3395. padding: 15px 0; }
  3396. #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 {
  3397. width: 7em; } }
  3398. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3399. color: #b94a48;
  3400. font-size: 12px; }
  3401. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3402. padding: 2em;
  3403. width: 400px;
  3404. background-color: #fff;
  3405. padding: 5px;
  3406. border-radius: 5px;
  3407. background-clip: padding-box;
  3408. box-shadow: 0 0 7px rgba(0, 0, 0, 0.4); }
  3409. .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 {
  3410. display: none; }
  3411. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3412. font-size: 12px; }
  3413. /*
  3414. __ __ __
  3415. _________ ____ / /____ ____ / /_ / /_____ ____
  3416. / ___/ __ \/ __ \/ __/ _ \/ __ \/ __/_____/ __/ __ \/ __ / /__/ /_/ / / / / /_/ __/ / / / /_/_____/ /_/ /_/ / /_/ /
  3417. \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/
  3418. /_/
  3419. */
  3420. #content-top {
  3421. /*
  3422. ___ _ _ _ _
  3423. | _| |___ ___ ___| |_|___| |_
  3424. | _| | .'| . |___| | |_ -| _|
  3425. |_| |_|__,|_ | |_|_|___|_|
  3426. |___|
  3427. */ }
  3428. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3429. font-size: 10px;
  3430. color: #666666;
  3431. font-weight: 300; }
  3432. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3433. margin-top: 40px; }
  3434. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3435. font-size: 12px;
  3436. font-weight: 700;
  3437. margin: 0 0 0.5em 0;
  3438. line-height: 1.2;
  3439. color: #000; }
  3440. #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 {
  3441. display: moz-inline-stack;
  3442. display: inline-block;
  3443. vertical-align: top;
  3444. zoom: 1;
  3445. *display: inline;
  3446. cursor: pointer;
  3447. color: #000;
  3448. margin-left: 0.5em;
  3449. opacity: 0;
  3450. transition: opacity 0.1s ease-out; }
  3451. #content-top #block-materio-flag-materio-flag-mybookmarks h2 i:before, #content-top #block-materio-flag-materio-flag-mylists h2 i:before {
  3452. font-size: 14px; }
  3453. #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 {
  3454. opacity: 1; }
  3455. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3456. cursor: pointer; }
  3457. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3458. height: 0;
  3459. overflow: hidden; }
  3460. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3461. height: auto; }
  3462. #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 {
  3463. overflow: hidden; }
  3464. #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 {
  3465. height: 0;
  3466. overflow: hidden; }
  3467. #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 {
  3468. height: auto; }
  3469. #tool-bar {
  3470. position: relative; }
  3471. #tool-bar .inner-content {
  3472. padding-top: 10px;
  3473. padding-bottom: 10px; }
  3474. #tool-bar .inner-content > * {
  3475. display: moz-inline-stack;
  3476. display: inline-block;
  3477. vertical-align: top;
  3478. zoom: 1;
  3479. *display: inline;
  3480. vertical-align: middle; }
  3481. @media only screen and (max-width: 40em) {
  3482. #tool-bar .inner-content {
  3483. padding: 0; } }
  3484. .oldie #tool-bar {
  3485. background-color: #B1ADAD;
  3486. padding: 0 10px; }
  3487. #tool-bar .btn-group {
  3488. padding: 0;
  3489. border-radius: 3px;
  3490. background-clip: padding-box;
  3491. background-color: #fff;
  3492. margin: 4px;
  3493. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3494. transition: box-shadow 0.3s ease-out; }
  3495. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3496. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3497. #tool-bar .btn-group:active {
  3498. transition: box-shadow 0s ease-out;
  3499. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3500. #tool-bar #block-materio-page-title-materio-page-title {
  3501. margin: 0 10px 0 0; }
  3502. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3503. margin: 0;
  3504. font-size: 24px;
  3505. text-transform: capitalize;
  3506. font-weight: 300; }
  3507. #tool-bar #block-materio-page-title-materio-page-title i {
  3508. vertical-align: middle;
  3509. margin-right: 5px; }
  3510. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3511. visibility: hidden; }
  3512. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3513. margin-top: -100000px; }
  3514. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3515. opacity: 0;
  3516. transition: visibility 0s 0.3s; }
  3517. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3518. transition: margin-top 0s 0.3s; }
  3519. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3520. margin: 0 0 0 5px; }
  3521. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3522. visibility: visible; }
  3523. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3524. opacity: 1;
  3525. transition: opacity 0.3s ease-out; }
  3526. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  3527. #tool-bar #block-materio-page-title-materio-page-title {
  3528. display: block; } }
  3529. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3530. display: moz-inline-stack;
  3531. display: inline-block;
  3532. vertical-align: top;
  3533. zoom: 1;
  3534. *display: inline;
  3535. margin: 0 2px; }
  3536. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3537. cursor: normal; }
  3538. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3539. display: none;
  3540. font-size: 10px; }
  3541. @media only screen and (max-width: 40em) {
  3542. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3543. display: block; }
  3544. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3545. display: none; } }
  3546. @media only screen and (max-width: 40em) {
  3547. 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 {
  3548. display: block; } }
  3549. @media only screen and (max-width: 40em) {
  3550. 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 {
  3551. display: block; } }
  3552. #tool-bar #block-materio-search-api-materio-search-api-search {
  3553. float: right; }
  3554. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3555. display: moz-inline-stack;
  3556. display: inline-block;
  3557. vertical-align: top;
  3558. zoom: 1;
  3559. *display: inline;
  3560. margin: 0 0 0 10px;
  3561. padding: 3px 10px;
  3562. background-color: #fff;
  3563. border-radius: 3px;
  3564. background-clip: padding-box;
  3565. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3566. transition: box-shadow 0.3s ease-out;
  3567. text-align: right; }
  3568. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3569. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3570. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3571. transition: box-shadow 0s ease-out;
  3572. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3573. #tool-bar #materio-search-api-search-form {
  3574. text-align: right;
  3575. display: moz-inline-stack;
  3576. display: inline-block;
  3577. vertical-align: top;
  3578. zoom: 1;
  3579. *display: inline;
  3580. margin: 0; }
  3581. #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 {
  3582. display: moz-inline-stack;
  3583. display: inline-block;
  3584. vertical-align: top;
  3585. zoom: 1;
  3586. *display: inline;
  3587. margin: 0;
  3588. vertical-align: middle;
  3589. padding: 0; }
  3590. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3591. padding: 3px;
  3592. font-size: 12px; }
  3593. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3594. margin: 0 5px; }
  3595. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3596. font-size: 10px; }
  3597. #tool-bar #materio-search-api-search-form a.back-search-home {
  3598. display: inline-block;
  3599. vertical-align: middle;
  3600. color: #000;
  3601. padding: 0 0.5em 0 0.2em; }
  3602. #tool-bar #materio-search-api-search-form a.back-search-home i:before {
  3603. font-size: 1.3em; }
  3604. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3605. border: 1px solid #ccc;
  3606. border-radius: 15px;
  3607. background-clip: padding-box;
  3608. margin: 3px 0 3px 3px;
  3609. padding: 4px 5px;
  3610. height: 20px;
  3611. font-size: 12px;
  3612. line-height: 1;
  3613. background-position: 100% 7px; }
  3614. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3615. background-position: 100% -15px; }
  3616. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3617. background-color: #1a1a1a; }
  3618. #tool-bar #materio-search-api-search-form input#edit-create {
  3619. padding: 3px; }
  3620. #tool-bar #materio-search-api-search-form.loading {
  3621. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  3622. #tool-bar #materio-search-api-search-form.loading input#edit-create {
  3623. visibility: hidden; }
  3624. @media only screen and (max-width: 40em) {
  3625. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3626. width: 16em; }
  3627. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3628. display: none; } }
  3629. #center {
  3630. border-radius: 10px;
  3631. background-clip: padding-box; }
  3632. .node-type-page:not(.page-node-11187) #center {
  3633. background-color: #fff; }
  3634. .ie8 #center {
  3635. height: 100%;
  3636. margin-top: 20px; }
  3637. #content {
  3638. padding: 1em;
  3639. transition: height 0.3s ease-out; }
  3640. #content.faded {
  3641. opacity: 0.5;
  3642. transition: opacity 0.3s ease-out; }
  3643. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3644. padding: 0 0 30px 0;
  3645. margin: 0 0 20px 0; }
  3646. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3647. background-image: url("../img/ajax-loader.gif");
  3648. background-position: center bottom;
  3649. background-repeat: no-repeat; }
  3650. #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 {
  3651. font-size: 12px;
  3652. font-weight: 500;
  3653. margin: 0;
  3654. padding: 10px 0 5px 15px; }
  3655. #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 {
  3656. font-size: 0;
  3657. text-align: center; }
  3658. #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 > * {
  3659. font-size: 16px; }
  3660. #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 > * {
  3661. text-align: left; }
  3662. #content ul.pager {
  3663. padding: 1em 0;
  3664. text-align: left; }
  3665. .ie8 #content ul.pager {
  3666. position: absolute;
  3667. left: 37px;
  3668. bottom: 35px; }
  3669. #content ul.pager li {
  3670. margin: 0;
  3671. display: moz-inline-stack;
  3672. display: inline-block;
  3673. vertical-align: top;
  3674. zoom: 1;
  3675. *display: inline;
  3676. vertical-align: middle; }
  3677. #content ul.pager .pager-current, #content ul.pager a {
  3678. color: #000;
  3679. font-size: 12px; }
  3680. #content ul.pager .pager-current {
  3681. font-weight: 900;
  3682. font-size: 14px; }
  3683. .ie8 #content ul.pager .pager-current {
  3684. background: #fff;
  3685. padding: 0.3em 1em 0.3em 1em;
  3686. margin-top: 0.05em;
  3687. border: 1px solid #333333; }
  3688. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3689. font-size: 24px;
  3690. font-weight: 300; }
  3691. /** #content-bottom */
  3692. #content-bottom {
  3693. padding-top: 10px; }
  3694. /*
  3695. _________ ____ ____ _____
  3696. / ____/ | / __ \/ __ \/ ___/
  3697. / / / /| | / /_/ / / / /\__ / /___/ ___ |/ _, _/ /_/ /___/ /
  3698. \____/_/ |_/_/ |_/_____//____/
  3699. */
  3700. /*
  3701. _ _ ___
  3702. ___ ___ ___ _| | ___ ___ ___ ___ ___| |_ ___ ___ ___| _|___ ___ _____ ___ ___ ___ ___
  3703. | _| .'| _| . | |_ -| -_| .'| _| _| | | . | -_| _| _| . | _| | .'| | _| -_|
  3704. |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___|
  3705. |_|
  3706. */
  3707. article.search-performance .inner {
  3708. padding: 1em; }
  3709. article.search-performance p {
  3710. font-size: 14px; }
  3711. article.search-performance a.button {
  3712. display: block;
  3713. margin: 10px auto;
  3714. max-width: 10em;
  3715. font-size: 18px;
  3716. padding: 0.1em 0.6em 0.2em;
  3717. border-radius: 0.3em;
  3718. background-clip: padding-box;
  3719. font-weight: bold;
  3720. border: 2px solid #69CDCF;
  3721. background-color: #69CDCF;
  3722. color: #fff;
  3723. cursor: pointer;
  3724. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3725. transition: text-shadow 0.2s ease-out;
  3726. text-align: center;
  3727. text-decoration: none; }
  3728. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3729. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3730. article.search-performance a.button:active {
  3731. transition: text-shadow 0s ease-out;
  3732. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3733. article.search-performance.view-mode-cardsmall {
  3734. width: 327px;
  3735. height: 140px;
  3736. display: moz-inline-stack;
  3737. display: inline-block;
  3738. vertical-align: top;
  3739. zoom: 1;
  3740. *display: inline;
  3741. position: relative;
  3742. margin: 7px;
  3743. border-radius: 5px;
  3744. background-clip: padding-box;
  3745. background-color: #FFF;
  3746. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3747. transition: box-shadow 0.3s ease-out; }
  3748. article.search-performance.view-mode-cardmedium {
  3749. width: 210px;
  3750. height: 295px;
  3751. display: moz-inline-stack;
  3752. display: inline-block;
  3753. vertical-align: top;
  3754. zoom: 1;
  3755. *display: inline;
  3756. position: relative;
  3757. margin: 7px;
  3758. border-radius: 5px;
  3759. background-clip: padding-box;
  3760. background-color: #FFF;
  3761. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3762. transition: box-shadow 0.3s ease-out; }
  3763. article.search-performance.view-mode-cardmedium .inner {
  3764. padding: 4em 1em 0; }
  3765. article.search-performance.view-mode-cardbig {
  3766. width: 425px;
  3767. height: 115px;
  3768. display: moz-inline-stack;
  3769. display: inline-block;
  3770. vertical-align: top;
  3771. zoom: 1;
  3772. *display: inline;
  3773. position: relative;
  3774. margin: 7px;
  3775. border-radius: 5px;
  3776. background-clip: padding-box;
  3777. background-color: #FFF;
  3778. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3779. transition: box-shadow 0.3s ease-out;
  3780. display: block;
  3781. margin: 0 auto; }
  3782. article.search-performance.view-mode-cardfull {
  3783. width: 850px;
  3784. height: 115px;
  3785. display: moz-inline-stack;
  3786. display: inline-block;
  3787. vertical-align: top;
  3788. zoom: 1;
  3789. *display: inline;
  3790. position: relative;
  3791. margin: 7px;
  3792. border-radius: 5px;
  3793. background-clip: padding-box;
  3794. background-color: #FFF;
  3795. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3796. transition: box-shadow 0.3s ease-out;
  3797. display: block;
  3798. margin: 0 auto; }
  3799. article.search-performance.view-mode-cardfull .inner {
  3800. padding: 1em 212px; }
  3801. /*
  3802. _____ _____ _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  3803. | | _ | __ | \ | __ | | | | | | _ | __ | | | __|
  3804. | --| | -| | | | __ -| | | | | -| | | | | -| -|__ |
  3805. |_____|__|__|__|__|____/ |_____|_____|_____|__|__|_|_|_|__|__|__|__|__|__|_____|
  3806. */
  3807. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  3808. width: 50px;
  3809. height: 70px;
  3810. display: moz-inline-stack;
  3811. display: inline-block;
  3812. vertical-align: top;
  3813. zoom: 1;
  3814. *display: inline;
  3815. position: relative;
  3816. margin: 7px;
  3817. border-radius: 5px;
  3818. background-clip: padding-box;
  3819. background-color: #FFF;
  3820. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3821. transition: box-shadow 0.3s ease-out;
  3822. margin: 3px; }
  3823. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  3824. border-radius: 5px;
  3825. background-clip: padding-box;
  3826. overflow: hidden; }
  3827. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  3828. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  3829. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  3830. opacity: 0; }
  3831. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  3832. transition: margin 0.3s ease-out; }
  3833. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  3834. margin-left: -50px;
  3835. margin-right: 50px; }
  3836. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  3837. position: absolute;
  3838. top: 0;
  3839. left: 0;
  3840. z-index: 999; }
  3841. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  3842. transition: width 0.3s ease-out;
  3843. width: 0;
  3844. padding-left: 0;
  3845. padding-right: 0;
  3846. margin-right: 0;
  3847. margin-left: 0;
  3848. overflow: hidden; }
  3849. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  3850. position: absolute;
  3851. top: 0;
  3852. right: 0;
  3853. z-index: 11;
  3854. padding: 5px 0;
  3855. border-radius: 0 5px 0 3px;
  3856. background-clip: padding-box;
  3857. font-size: 10px;
  3858. background-color: rgba(255, 255, 255, 0.9);
  3859. color: #000; }
  3860. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  3861. color: #000; }
  3862. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3863. background-color: rgba(255, 255, 255, 0.9); }
  3864. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  3865. font-weight: 900;
  3866. font-size: 14px; }
  3867. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3868. padding: 0;
  3869. margin: 0; }
  3870. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  3871. position: relative; }
  3872. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  3873. margin: 0 5px; }
  3874. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  3875. cursor: pointer; }
  3876. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3877. position: absolute;
  3878. right: 0;
  3879. top: 0;
  3880. margin-right: 22px;
  3881. min-width: 80px;
  3882. padding: 0;
  3883. display: block;
  3884. border-radius: 3px;
  3885. background-clip: padding-box;
  3886. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  3887. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  3888. padding: 0;
  3889. margin: 0;
  3890. line-height: 1;
  3891. display: block;
  3892. height: 0;
  3893. overflow: hidden;
  3894. transition: height 0.2s ease-out; }
  3895. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  3896. display: block; }
  3897. article.node-materiau.vm-bookmark nav.nav ul.links a, article.node-breve.vm-bookmark nav.nav ul.links a {
  3898. font-size: 12px; }
  3899. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  3900. width: 160px;
  3901. font-size: 0; }
  3902. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  3903. font-size: 11px; }
  3904. 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 {
  3905. display: moz-inline-stack;
  3906. display: inline-block;
  3907. vertical-align: top;
  3908. zoom: 1;
  3909. *display: inline;
  3910. min-width: 48%;
  3911. max-width: 98%;
  3912. padding-left: 2px; }
  3913. 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 {
  3914. color: #a6a6a6;
  3915. transition: color 0.2s ease-out; }
  3916. 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 {
  3917. color: #000;
  3918. text-decoration: none; }
  3919. 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 {
  3920. display: block;
  3921. width: 100%; }
  3922. 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 > * {
  3923. margin-top: 1px;
  3924. padding-top: 1px;
  3925. border-top: 1px solid #e6e6e6; }
  3926. 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 {
  3927. color: #000; }
  3928. 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 {
  3929. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  3930. 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 {
  3931. visibility: hidden; }
  3932. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  3933. background: #FFF; }
  3934. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  3935. padding: 5px 5px; }
  3936. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  3937. height: 17px; }
  3938. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  3939. position: absolute;
  3940. top: 0;
  3941. left: 0;
  3942. z-index: 11;
  3943. padding: 5px;
  3944. border-radius: 5px 0 3px 0;
  3945. background-clip: padding-box;
  3946. font-size: 10px;
  3947. vertical-align: top;
  3948. background-color: rgba(255, 255, 255, 0.9);
  3949. color: #000; }
  3950. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  3951. padding: 3px 0 0 4px;
  3952. display: moz-inline-stack;
  3953. display: inline-block;
  3954. vertical-align: top;
  3955. zoom: 1;
  3956. *display: inline; }
  3957. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  3958. font-size: 12px;
  3959. padding-top: 4em;
  3960. margin-top: -4.5em;
  3961. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  3962. position: relative; }
  3963. 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 {
  3964. padding: 10px;
  3965. font-size: 12px; }
  3966. 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 {
  3967. display: block;
  3968. margin: 10px 0;
  3969. font-size: 18px;
  3970. padding: 0.1em 0.6em 0.2em;
  3971. border-radius: 0.3em;
  3972. background-clip: padding-box;
  3973. font-weight: bold;
  3974. border: 2px solid #69CDCF;
  3975. background-color: #69CDCF;
  3976. color: #fff;
  3977. cursor: pointer;
  3978. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3979. transition: text-shadow 0.2s ease-out;
  3980. text-align: center;
  3981. text-decoration: none; }
  3982. 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 {
  3983. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3984. 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 {
  3985. transition: text-shadow 0s ease-out;
  3986. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3987. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  3988. display: none; }
  3989. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  3990. position: relative;
  3991. z-index: 1;
  3992. background-color: #fff; }
  3993. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  3994. position: absolute;
  3995. top: 0;
  3996. left: 0; }
  3997. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  3998. position: relative;
  3999. z-index: 1; }
  4000. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4001. display: none; }
  4002. /*
  4003. _____ _____ _____ ____ _____ _____ _____ __ __
  4004. | | _ | __ | \ | __| | _ | | | |
  4005. | --| | -| | | |__ | | | | | |__| |__
  4006. |_____|__|__|__|__|____/ |_____|_|_|_|__|__|_____|_____|
  4007. */
  4008. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4009. width: 100px;
  4010. height: 140px;
  4011. display: moz-inline-stack;
  4012. display: inline-block;
  4013. vertical-align: top;
  4014. zoom: 1;
  4015. *display: inline;
  4016. position: relative;
  4017. margin: 7px;
  4018. border-radius: 5px;
  4019. background-clip: padding-box;
  4020. background-color: #FFF;
  4021. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4022. transition: box-shadow 0.3s ease-out; }
  4023. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4024. border-radius: 5px;
  4025. background-clip: padding-box;
  4026. overflow: hidden; }
  4027. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4028. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4029. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4030. opacity: 0; }
  4031. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4032. transition: margin 0.3s ease-out; }
  4033. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4034. margin-left: -100px;
  4035. margin-right: 100px; }
  4036. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4037. position: absolute;
  4038. top: 0;
  4039. left: 0;
  4040. z-index: 999; }
  4041. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4042. transition: width 0.3s ease-out;
  4043. width: 0;
  4044. padding-left: 0;
  4045. padding-right: 0;
  4046. margin-right: 0;
  4047. margin-left: 0;
  4048. overflow: hidden; }
  4049. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4050. position: absolute;
  4051. top: 0;
  4052. right: 0;
  4053. z-index: 11;
  4054. padding: 5px 0;
  4055. border-radius: 0 5px 0 3px;
  4056. background-clip: padding-box;
  4057. font-size: 10px;
  4058. background-color: rgba(255, 255, 255, 0.9);
  4059. color: #000; }
  4060. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4061. color: #000; }
  4062. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4063. background-color: rgba(255, 255, 255, 0.9); }
  4064. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4065. font-weight: 900;
  4066. font-size: 14px; }
  4067. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4068. padding: 0;
  4069. margin: 0; }
  4070. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4071. position: relative; }
  4072. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4073. margin: 0 5px; }
  4074. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4075. cursor: pointer; }
  4076. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4077. position: absolute;
  4078. right: 0;
  4079. top: 0;
  4080. margin-right: 22px;
  4081. min-width: 80px;
  4082. padding: 0;
  4083. display: block;
  4084. border-radius: 3px;
  4085. background-clip: padding-box;
  4086. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4087. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4088. padding: 0;
  4089. margin: 0;
  4090. line-height: 1;
  4091. display: block;
  4092. height: 0;
  4093. overflow: hidden;
  4094. transition: height 0.2s ease-out; }
  4095. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4096. display: block; }
  4097. article.node-materiau.vm-cardsmall nav.nav ul.links a, article.node-breve.vm-cardsmall nav.nav ul.links a {
  4098. font-size: 12px; }
  4099. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4100. width: 160px;
  4101. font-size: 0; }
  4102. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4103. font-size: 11px; }
  4104. 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 {
  4105. display: moz-inline-stack;
  4106. display: inline-block;
  4107. vertical-align: top;
  4108. zoom: 1;
  4109. *display: inline;
  4110. min-width: 48%;
  4111. max-width: 98%;
  4112. padding-left: 2px; }
  4113. 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 {
  4114. color: #a6a6a6;
  4115. transition: color 0.2s ease-out; }
  4116. 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 {
  4117. color: #000;
  4118. text-decoration: none; }
  4119. 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 {
  4120. display: block;
  4121. width: 100%; }
  4122. 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 > * {
  4123. margin-top: 1px;
  4124. padding-top: 1px;
  4125. border-top: 1px solid #e6e6e6; }
  4126. 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 {
  4127. color: #000; }
  4128. 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 {
  4129. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4130. 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 {
  4131. visibility: hidden; }
  4132. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4133. background: #FFF; }
  4134. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4135. padding: 5px 5px; }
  4136. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4137. height: 17px; }
  4138. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4139. position: absolute;
  4140. top: 0;
  4141. left: 0;
  4142. z-index: 11;
  4143. padding: 5px;
  4144. border-radius: 5px 0 3px 0;
  4145. background-clip: padding-box;
  4146. font-size: 10px;
  4147. vertical-align: top;
  4148. background-color: rgba(255, 255, 255, 0.9);
  4149. color: #000; }
  4150. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4151. padding: 3px 0 0 4px;
  4152. display: moz-inline-stack;
  4153. display: inline-block;
  4154. vertical-align: top;
  4155. zoom: 1;
  4156. *display: inline; }
  4157. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4158. font-size: 12px;
  4159. padding-top: 4em;
  4160. margin-top: -4.5em;
  4161. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4162. position: relative; }
  4163. 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 {
  4164. padding: 10px;
  4165. font-size: 12px; }
  4166. 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 {
  4167. display: block;
  4168. margin: 10px 0;
  4169. font-size: 18px;
  4170. padding: 0.1em 0.6em 0.2em;
  4171. border-radius: 0.3em;
  4172. background-clip: padding-box;
  4173. font-weight: bold;
  4174. border: 2px solid #69CDCF;
  4175. background-color: #69CDCF;
  4176. color: #fff;
  4177. cursor: pointer;
  4178. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4179. transition: text-shadow 0.2s ease-out;
  4180. text-align: center;
  4181. text-decoration: none; }
  4182. 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 {
  4183. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4184. 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 {
  4185. transition: text-shadow 0s ease-out;
  4186. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4187. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4188. display: none;
  4189. position: absolute;
  4190. font-size: 14px;
  4191. font-weight: 500; }
  4192. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4193. font-weight: 700; }
  4194. 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 {
  4195. display: moz-inline-stack;
  4196. display: inline-block;
  4197. vertical-align: top;
  4198. zoom: 1;
  4199. *display: inline;
  4200. font-size: 12px; }
  4201. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4202. float: right; }
  4203. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4204. position: relative;
  4205. z-index: 1;
  4206. background-color: #fff;
  4207. border-radius: 5px;
  4208. background-clip: padding-box;
  4209. overflow: hidden; }
  4210. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4211. position: absolute;
  4212. top: 0;
  4213. left: 0; }
  4214. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4215. position: relative;
  4216. z-index: 1; }
  4217. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4218. width: 75px;
  4219. min-width: 75px; }
  4220. 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 {
  4221. width: 98%; }
  4222. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4223. background: #FFF; }
  4224. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4225. visibility: hidden; }
  4226. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4227. margin-top: -100000px; }
  4228. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4229. opacity: 0;
  4230. transition: visibility 0s 0.3s; }
  4231. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4232. transition: margin-top 0s 0.3s; }
  4233. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4234. visibility: hidden; }
  4235. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4236. margin-top: -100000px; }
  4237. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4238. opacity: 0;
  4239. transition: visibility 0s 0.3s; }
  4240. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4241. transition: margin-top 0s 0.3s; }
  4242. /*
  4243. _____ _____ _____ __ _____ _____ _____ _____ _____ _____ __ __ _____ _____ _____ ____
  4244. |_ _| | | ||_ _| | _ | | __| | _ | | | | | | _ | __ | | | | | | | | |__| | |- -| __| |__ | | | | | |__| |__ | --| | -| | |
  4245. |_| |_____|_____|_____|_| |_____|__| |_____|_|_|_|__|__|_____|_____| |_____|__|__|__|__|____/
  4246. */
  4247. #tooltip .group-header.smallcard {
  4248. font-size: 14px;
  4249. font-weight: 500; }
  4250. #tooltip .group-header.smallcard .field-name-title-field {
  4251. font-weight: 700; }
  4252. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4253. display: moz-inline-stack;
  4254. display: inline-block;
  4255. vertical-align: top;
  4256. zoom: 1;
  4257. *display: inline;
  4258. font-size: 12px; }
  4259. #tooltip .group-header.smallcard .field-name-field-localisation {
  4260. float: right; }
  4261. /*
  4262. _____ _____ _____ ____ _____ _____ ____ _____ _____ _____
  4263. | | _ | __ | \ | | __| \| | | | |
  4264. | --| | -| | | | | | | __| | |- -| | | | | |
  4265. |_____|__|__|__|__|____/ |_|_|_|_____|____/|_____|_____|_|_|_|
  4266. */
  4267. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4268. width: 210px;
  4269. height: 295px;
  4270. display: moz-inline-stack;
  4271. display: inline-block;
  4272. vertical-align: top;
  4273. zoom: 1;
  4274. *display: inline;
  4275. position: relative;
  4276. margin: 7px;
  4277. border-radius: 5px;
  4278. background-clip: padding-box;
  4279. background-color: #FFF;
  4280. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4281. transition: box-shadow 0.3s ease-out; }
  4282. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4283. border-radius: 5px;
  4284. background-clip: padding-box;
  4285. overflow: hidden; }
  4286. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4287. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4288. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4289. opacity: 0; }
  4290. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4291. transition: margin 0.3s ease-out; }
  4292. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4293. margin-left: -210px;
  4294. margin-right: 210px; }
  4295. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4296. position: absolute;
  4297. top: 0;
  4298. left: 0;
  4299. z-index: 999; }
  4300. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4301. transition: width 0.3s ease-out;
  4302. width: 0;
  4303. padding-left: 0;
  4304. padding-right: 0;
  4305. margin-right: 0;
  4306. margin-left: 0;
  4307. overflow: hidden; }
  4308. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4309. position: absolute;
  4310. top: 0;
  4311. right: 0;
  4312. z-index: 11;
  4313. padding: 5px 0;
  4314. border-radius: 0 5px 0 3px;
  4315. background-clip: padding-box;
  4316. font-size: 10px;
  4317. background-color: rgba(255, 255, 255, 0.9);
  4318. color: #000; }
  4319. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4320. color: #000; }
  4321. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4322. background-color: rgba(255, 255, 255, 0.9); }
  4323. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4324. font-weight: 900;
  4325. font-size: 14px; }
  4326. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4327. padding: 0;
  4328. margin: 0; }
  4329. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4330. position: relative; }
  4331. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4332. margin: 0 5px; }
  4333. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4334. cursor: pointer; }
  4335. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4336. position: absolute;
  4337. right: 0;
  4338. top: 0;
  4339. margin-right: 22px;
  4340. min-width: 80px;
  4341. padding: 0;
  4342. display: block;
  4343. border-radius: 3px;
  4344. background-clip: padding-box;
  4345. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4346. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4347. padding: 0;
  4348. margin: 0;
  4349. line-height: 1;
  4350. display: block;
  4351. height: 0;
  4352. overflow: hidden;
  4353. transition: height 0.2s ease-out; }
  4354. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4355. display: block; }
  4356. article.node-materiau.vm-cardmedium nav.nav ul.links a, article.node-breve.vm-cardmedium nav.nav ul.links a {
  4357. font-size: 12px; }
  4358. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4359. width: 160px;
  4360. font-size: 0; }
  4361. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4362. font-size: 11px; }
  4363. 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 {
  4364. display: moz-inline-stack;
  4365. display: inline-block;
  4366. vertical-align: top;
  4367. zoom: 1;
  4368. *display: inline;
  4369. min-width: 48%;
  4370. max-width: 98%;
  4371. padding-left: 2px; }
  4372. 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 {
  4373. color: #a6a6a6;
  4374. transition: color 0.2s ease-out; }
  4375. 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 {
  4376. color: #000;
  4377. text-decoration: none; }
  4378. 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 {
  4379. display: block;
  4380. width: 100%; }
  4381. 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 > * {
  4382. margin-top: 1px;
  4383. padding-top: 1px;
  4384. border-top: 1px solid #e6e6e6; }
  4385. 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 {
  4386. color: #000; }
  4387. 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 {
  4388. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4389. 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 {
  4390. visibility: hidden; }
  4391. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4392. background: #FFF; }
  4393. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4394. padding: 5px 5px; }
  4395. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4396. height: 17px; }
  4397. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4398. position: absolute;
  4399. top: 0;
  4400. left: 0;
  4401. z-index: 11;
  4402. padding: 5px;
  4403. border-radius: 5px 0 3px 0;
  4404. background-clip: padding-box;
  4405. font-size: 10px;
  4406. vertical-align: top;
  4407. background-color: rgba(255, 255, 255, 0.9);
  4408. color: #000; }
  4409. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4410. padding: 3px 0 0 4px;
  4411. display: moz-inline-stack;
  4412. display: inline-block;
  4413. vertical-align: top;
  4414. zoom: 1;
  4415. *display: inline; }
  4416. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4417. font-size: 12px;
  4418. padding-top: 4em;
  4419. margin-top: -4.5em;
  4420. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4421. position: relative; }
  4422. 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 {
  4423. padding: 10px;
  4424. font-size: 12px; }
  4425. 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 {
  4426. display: block;
  4427. margin: 10px 0;
  4428. font-size: 18px;
  4429. padding: 0.1em 0.6em 0.2em;
  4430. border-radius: 0.3em;
  4431. background-clip: padding-box;
  4432. font-weight: bold;
  4433. border: 2px solid #69CDCF;
  4434. background-color: #69CDCF;
  4435. color: #fff;
  4436. cursor: pointer;
  4437. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4438. transition: text-shadow 0.2s ease-out;
  4439. text-align: center;
  4440. text-decoration: none; }
  4441. 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 {
  4442. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4443. 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 {
  4444. transition: text-shadow 0s ease-out;
  4445. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4446. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  4447. position: absolute;
  4448. width: 100%;
  4449. height: 100%;
  4450. top: 0;
  4451. left: 0;
  4452. background-color: #fff;
  4453. cursor: pointer; }
  4454. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  4455. z-index: 1; }
  4456. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  4457. position: absolute;
  4458. bottom: 0;
  4459. z-index: 2;
  4460. width: 190px;
  4461. padding: 5px 15px 5px 5px;
  4462. min-height: 55px;
  4463. font-size: 20px;
  4464. font-weight: 300;
  4465. line-height: 1;
  4466. background-color: rgba(255, 255, 255, 0.8);
  4467. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4468. transition: background-color 0.2s ease-out;
  4469. border-radius: 0 0 4px 4px;
  4470. background-clip: padding-box;
  4471. overflow: hidden; }
  4472. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  4473. font-weight: 700; }
  4474. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  4475. font-size: 14px; }
  4476. 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 {
  4477. display: moz-inline-stack;
  4478. display: inline-block;
  4479. vertical-align: top;
  4480. zoom: 1;
  4481. *display: inline;
  4482. font-size: 12px;
  4483. vertical-align: bottom;
  4484. width: 48%; }
  4485. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  4486. text-align: right; }
  4487. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  4488. background: #fff;
  4489. font-color: #000;
  4490. line-height: 1em;
  4491. padding: 10px; }
  4492. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  4493. color: #fff;
  4494. background-color: rgba(0, 0, 0, 0.7);
  4495. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4496. transition: background-color 0.2s ease-out; }
  4497. 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 {
  4498. font-size: 12px;
  4499. font-weight: 500; }
  4500. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  4501. background: #000;
  4502. font-size: 15px;
  4503. line-height: 1.2em; }
  4504. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  4505. position: relative;
  4506. z-index: 1;
  4507. background-color: #fff; }
  4508. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  4509. position: absolute;
  4510. top: 0;
  4511. left: 0; }
  4512. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  4513. position: relative;
  4514. z-index: 1; }
  4515. 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 {
  4516. font-size: 12px;
  4517. font-weight: 300;
  4518. overflow: hidden;
  4519. z-index: -1;
  4520. padding: 5px; }
  4521. 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 {
  4522. padding: 0;
  4523. transition: margin-left 0.3s ease-out; }
  4524. 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 > * {
  4525. padding: 5px; }
  4526. 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 {
  4527. display: inline-block;
  4528. border-radius: 3px;
  4529. background-clip: padding-box;
  4530. color: #fff;
  4531. background-color: #3e3e3e;
  4532. vertical-align: middle;
  4533. font-weight: 700;
  4534. font-size: 22px;
  4535. padding: 0.05em 0.15em 0.2em 0.2em;
  4536. line-height: 0.5;
  4537. font-weight: normal; }
  4538. 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 {
  4539. cursor: w-resize; }
  4540. 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 {
  4541. cursor: e-resize; }
  4542. 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 > * {
  4543. padding-right: 25px; }
  4544. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  4545. padding: 5px; }
  4546. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  4547. padding: 0;
  4548. transition: margin-left 0.3s ease-out; }
  4549. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  4550. padding: 5px; }
  4551. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  4552. display: inline-block;
  4553. border-radius: 3px;
  4554. background-clip: padding-box;
  4555. color: #fff;
  4556. background-color: #3e3e3e;
  4557. vertical-align: middle;
  4558. font-weight: 700;
  4559. font-size: 22px;
  4560. padding: 0.05em 0.15em 0.2em 0.2em;
  4561. line-height: 0.5;
  4562. font-weight: normal; }
  4563. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  4564. cursor: w-resize; }
  4565. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  4566. cursor: e-resize; }
  4567. 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 {
  4568. font-size: 12px;
  4569. padding: 5px;
  4570. font-weight: 300; }
  4571. 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 {
  4572. font-size: 10px;
  4573. text-transform: lowercase;
  4574. margin: 0; }
  4575. 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 {
  4576. font-size: 14px; }
  4577. 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 {
  4578. font-size: 12px;
  4579. padding: 5px;
  4580. font-weight: 300; }
  4581. 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 {
  4582. color: #000; }
  4583. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  4584. font-weight: 900;
  4585. margin: 1em 0 0.5em; }
  4586. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4587. visibility: hidden; }
  4588. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4589. margin-top: -100000px; }
  4590. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4591. opacity: 0;
  4592. transition: visibility 0s 0.3s; }
  4593. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4594. transition: margin-top 0s 0.3s; }
  4595. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4596. visibility: hidden; }
  4597. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4598. margin-top: -100000px; }
  4599. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4600. opacity: 0;
  4601. transition: visibility 0s 0.3s; }
  4602. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4603. transition: margin-top 0s 0.3s; }
  4604. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  4605. background: #FFF; }
  4606. /*
  4607. _____ _____ _____ ____ _____ _____ _____
  4608. | | _ | __ | \ | __ | | __|
  4609. | --| | -| | | | __ -|- -| | |
  4610. |_____|__|__|__|__|____/ |_____|_____|_____|
  4611. */
  4612. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  4613. width: 425px;
  4614. height: 610px;
  4615. display: moz-inline-stack;
  4616. display: inline-block;
  4617. vertical-align: top;
  4618. zoom: 1;
  4619. *display: inline;
  4620. position: relative;
  4621. margin: 7px;
  4622. border-radius: 5px;
  4623. background-clip: padding-box;
  4624. background-color: #FFF;
  4625. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4626. transition: box-shadow 0.3s ease-out; }
  4627. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  4628. border-radius: 5px;
  4629. background-clip: padding-box;
  4630. overflow: hidden; }
  4631. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  4632. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4633. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  4634. opacity: 0; }
  4635. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  4636. transition: margin 0.3s ease-out; }
  4637. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  4638. margin-left: -425px;
  4639. margin-right: 425px; }
  4640. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  4641. position: absolute;
  4642. top: 0;
  4643. left: 0;
  4644. z-index: 999; }
  4645. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  4646. transition: width 0.3s ease-out;
  4647. width: 0;
  4648. padding-left: 0;
  4649. padding-right: 0;
  4650. margin-right: 0;
  4651. margin-left: 0;
  4652. overflow: hidden; }
  4653. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  4654. position: absolute;
  4655. top: 0;
  4656. right: 0;
  4657. z-index: 11;
  4658. padding: 5px 0;
  4659. border-radius: 0 5px 0 3px;
  4660. background-clip: padding-box;
  4661. font-size: 10px;
  4662. background-color: rgba(255, 255, 255, 0.9);
  4663. color: #000; }
  4664. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  4665. color: #000; }
  4666. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4667. background-color: rgba(255, 255, 255, 0.9); }
  4668. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  4669. font-weight: 900;
  4670. font-size: 14px; }
  4671. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4672. padding: 0;
  4673. margin: 0; }
  4674. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  4675. position: relative; }
  4676. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  4677. margin: 0 5px; }
  4678. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  4679. cursor: pointer; }
  4680. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4681. position: absolute;
  4682. right: 0;
  4683. top: 0;
  4684. margin-right: 22px;
  4685. min-width: 80px;
  4686. padding: 0;
  4687. display: block;
  4688. border-radius: 3px;
  4689. background-clip: padding-box;
  4690. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4691. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  4692. padding: 0;
  4693. margin: 0;
  4694. line-height: 1;
  4695. display: block;
  4696. height: 0;
  4697. overflow: hidden;
  4698. transition: height 0.2s ease-out; }
  4699. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  4700. display: block; }
  4701. article.node-materiau.vm-cardbig nav.nav ul.links a, article.node-breve.vm-cardbig nav.nav ul.links a {
  4702. font-size: 12px; }
  4703. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  4704. width: 160px;
  4705. font-size: 0; }
  4706. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  4707. font-size: 11px; }
  4708. 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 {
  4709. display: moz-inline-stack;
  4710. display: inline-block;
  4711. vertical-align: top;
  4712. zoom: 1;
  4713. *display: inline;
  4714. min-width: 48%;
  4715. max-width: 98%;
  4716. padding-left: 2px; }
  4717. 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 {
  4718. color: #a6a6a6;
  4719. transition: color 0.2s ease-out; }
  4720. 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 {
  4721. color: #000;
  4722. text-decoration: none; }
  4723. 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 {
  4724. display: block;
  4725. width: 100%; }
  4726. 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 > * {
  4727. margin-top: 1px;
  4728. padding-top: 1px;
  4729. border-top: 1px solid #e6e6e6; }
  4730. 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 {
  4731. color: #000; }
  4732. 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 {
  4733. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4734. 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 {
  4735. visibility: hidden; }
  4736. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  4737. background: #FFF; }
  4738. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  4739. padding: 5px 5px; }
  4740. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  4741. height: 17px; }
  4742. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  4743. position: absolute;
  4744. top: 0;
  4745. left: 0;
  4746. z-index: 11;
  4747. padding: 5px;
  4748. border-radius: 5px 0 3px 0;
  4749. background-clip: padding-box;
  4750. font-size: 10px;
  4751. vertical-align: top;
  4752. background-color: rgba(255, 255, 255, 0.9);
  4753. color: #000; }
  4754. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  4755. padding: 3px 0 0 4px;
  4756. display: moz-inline-stack;
  4757. display: inline-block;
  4758. vertical-align: top;
  4759. zoom: 1;
  4760. *display: inline; }
  4761. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  4762. font-size: 12px;
  4763. padding-top: 4em;
  4764. margin-top: -4.5em;
  4765. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4766. position: relative; }
  4767. 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 {
  4768. padding: 10px;
  4769. font-size: 12px; }
  4770. 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 {
  4771. display: block;
  4772. margin: 10px 0;
  4773. font-size: 18px;
  4774. padding: 0.1em 0.6em 0.2em;
  4775. border-radius: 0.3em;
  4776. background-clip: padding-box;
  4777. font-weight: bold;
  4778. border: 2px solid #69CDCF;
  4779. background-color: #69CDCF;
  4780. color: #fff;
  4781. cursor: pointer;
  4782. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4783. transition: text-shadow 0.2s ease-out;
  4784. text-align: center;
  4785. text-decoration: none; }
  4786. 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 {
  4787. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4788. 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 {
  4789. transition: text-shadow 0s ease-out;
  4790. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4791. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  4792. position: absolute;
  4793. width: 100%;
  4794. height: 100%;
  4795. top: 0;
  4796. left: 0;
  4797. background-color: #fff;
  4798. height: 270px;
  4799. top: 340px;
  4800. cursor: pointer; }
  4801. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  4802. z-index: 1; }
  4803. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  4804. position: relative;
  4805. border-radius: 5px 5px 0 0;
  4806. background-clip: padding-box;
  4807. overflow: hidden; }
  4808. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  4809. position: absolute;
  4810. bottom: 0;
  4811. z-index: 2;
  4812. width: 405px;
  4813. padding: 10px;
  4814. font-size: 20px;
  4815. font-weight: 300;
  4816. line-height: 1.1;
  4817. background-color: rgba(255, 255, 255, 0.8);
  4818. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4819. transition: background-color 0.2s ease-out; }
  4820. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  4821. font-weight: 700; }
  4822. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  4823. font-size: 14px; }
  4824. 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 {
  4825. display: moz-inline-stack;
  4826. display: inline-block;
  4827. vertical-align: top;
  4828. zoom: 1;
  4829. *display: inline;
  4830. font-size: 12px;
  4831. vertical-align: bottom;
  4832. width: 48%; }
  4833. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  4834. text-align: right; }
  4835. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  4836. background: #fff;
  4837. font-color: #000;
  4838. line-height: 1em;
  4839. padding: 20px;
  4840. border-bottom: 1px solid #C6C6C6; }
  4841. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  4842. color: #fff;
  4843. background-color: rgba(0, 0, 0, 0.7);
  4844. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4845. transition: background-color 0.2s ease-out; }
  4846. 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 {
  4847. font-size: 12px;
  4848. font-weight: 500; }
  4849. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  4850. background: #000;
  4851. font-color: #fff;
  4852. line-height: 1em;
  4853. padding: 20px; }
  4854. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  4855. position: relative;
  4856. z-index: 1;
  4857. background-color: #fff;
  4858. height: auto; }
  4859. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  4860. position: absolute;
  4861. top: 0;
  4862. left: 0; }
  4863. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  4864. position: relative;
  4865. z-index: 1; }
  4866. 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 {
  4867. font-size: 12px;
  4868. font-weight: 300;
  4869. padding: 10px; }
  4870. 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 {
  4871. padding: 0;
  4872. transition: margin-left 0.3s ease-out; }
  4873. 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 > * {
  4874. padding: 10px; }
  4875. 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 {
  4876. display: inline-block;
  4877. border-radius: 3px;
  4878. background-clip: padding-box;
  4879. color: #fff;
  4880. background-color: #3e3e3e;
  4881. vertical-align: middle;
  4882. font-weight: 700;
  4883. font-size: 22px;
  4884. padding: 0.05em 0.15em 0.2em 0.2em;
  4885. line-height: 0.5;
  4886. font-weight: normal; }
  4887. 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 {
  4888. cursor: w-resize; }
  4889. 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 {
  4890. cursor: e-resize; }
  4891. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  4892. padding: 10px; }
  4893. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  4894. padding: 0;
  4895. transition: margin-left 0.3s ease-out; }
  4896. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  4897. padding: 10px; }
  4898. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  4899. display: inline-block;
  4900. border-radius: 3px;
  4901. background-clip: padding-box;
  4902. color: #fff;
  4903. background-color: #3e3e3e;
  4904. vertical-align: middle;
  4905. font-weight: 700;
  4906. font-size: 22px;
  4907. padding: 0.05em 0.15em 0.2em 0.2em;
  4908. line-height: 0.5;
  4909. font-weight: normal; }
  4910. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  4911. cursor: w-resize; }
  4912. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  4913. cursor: e-resize; }
  4914. 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 {
  4915. font-size: 12px;
  4916. padding: 10px;
  4917. font-weight: 300; }
  4918. 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 {
  4919. font-size: 10px;
  4920. text-transform: lowercase;
  4921. float: none; }
  4922. 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 {
  4923. font-size: 14px; }
  4924. 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 {
  4925. font-size: 12px;
  4926. padding: 10px;
  4927. font-weight: 300; }
  4928. 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 {
  4929. color: #000; }
  4930. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  4931. font-weight: 900;
  4932. margin: 0 0 0.5em; }
  4933. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  4934. background: #FFF; }
  4935. 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 {
  4936. padding: 3em; }
  4937. 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 {
  4938. border: 2px solid #eee;
  4939. background-color: #eee;
  4940. color: #fff;
  4941. transition: border 0.3s ease-out;
  4942. transition: background-color 0.3s ease-out; }
  4943. 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 {
  4944. border: 2px solid #69CDCF;
  4945. background-color: #69CDCF; }
  4946. /*
  4947. _____ _____ _____ ____ _____ _____ __ __
  4948. | | _ | __ | \ | __| | | | | |
  4949. | --| | -| | | | __| | | |__| |__
  4950. |_____|__|__|__|__|____/ |__| |_____|_____|_____|
  4951. */
  4952. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  4953. width: 850px;
  4954. height: 610px;
  4955. display: moz-inline-stack;
  4956. display: inline-block;
  4957. vertical-align: top;
  4958. zoom: 1;
  4959. *display: inline;
  4960. position: relative;
  4961. margin: 7px;
  4962. border-radius: 5px;
  4963. background-clip: padding-box;
  4964. background-color: #FFF;
  4965. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4966. transition: box-shadow 0.3s ease-out;
  4967. font-size: 0px; }
  4968. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  4969. border-radius: 5px;
  4970. background-clip: padding-box;
  4971. overflow: hidden; }
  4972. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  4973. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4974. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  4975. opacity: 0; }
  4976. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  4977. transition: margin 0.3s ease-out; }
  4978. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  4979. margin-left: -850px;
  4980. margin-right: 850px; }
  4981. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  4982. position: absolute;
  4983. top: 0;
  4984. left: 0;
  4985. z-index: 999; }
  4986. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  4987. transition: width 0.3s ease-out;
  4988. width: 0;
  4989. padding-left: 0;
  4990. padding-right: 0;
  4991. margin-right: 0;
  4992. margin-left: 0;
  4993. overflow: hidden; }
  4994. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  4995. position: absolute;
  4996. top: 0;
  4997. right: 0;
  4998. z-index: 11;
  4999. padding: 5px 0;
  5000. border-radius: 0 5px 0 3px;
  5001. background-clip: padding-box;
  5002. font-size: 10px;
  5003. background-color: rgba(255, 255, 255, 0.9);
  5004. color: #000; }
  5005. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5006. color: #000; }
  5007. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5008. background-color: rgba(255, 255, 255, 0.9); }
  5009. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5010. font-weight: 900;
  5011. font-size: 14px; }
  5012. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5013. padding: 0;
  5014. margin: 0; }
  5015. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5016. position: relative; }
  5017. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5018. margin: 0 5px; }
  5019. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5020. cursor: pointer; }
  5021. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5022. position: absolute;
  5023. right: 0;
  5024. top: 0;
  5025. margin-right: 22px;
  5026. min-width: 80px;
  5027. padding: 0;
  5028. display: block;
  5029. border-radius: 3px;
  5030. background-clip: padding-box;
  5031. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5032. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5033. padding: 0;
  5034. margin: 0;
  5035. line-height: 1;
  5036. display: block;
  5037. height: 0;
  5038. overflow: hidden;
  5039. transition: height 0.2s ease-out; }
  5040. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5041. display: block; }
  5042. article.node-materiau.vm-cardfull nav.nav ul.links a, article.node-breve.vm-cardfull nav.nav ul.links a {
  5043. font-size: 12px; }
  5044. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5045. width: 160px;
  5046. font-size: 0; }
  5047. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5048. font-size: 11px; }
  5049. 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 {
  5050. display: moz-inline-stack;
  5051. display: inline-block;
  5052. vertical-align: top;
  5053. zoom: 1;
  5054. *display: inline;
  5055. min-width: 48%;
  5056. max-width: 98%;
  5057. padding-left: 2px; }
  5058. 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 {
  5059. color: #a6a6a6;
  5060. transition: color 0.2s ease-out; }
  5061. 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 {
  5062. color: #000;
  5063. text-decoration: none; }
  5064. 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 {
  5065. display: block;
  5066. width: 100%; }
  5067. 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 > * {
  5068. margin-top: 1px;
  5069. padding-top: 1px;
  5070. border-top: 1px solid #e6e6e6; }
  5071. 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 {
  5072. color: #000; }
  5073. 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 {
  5074. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5075. 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 {
  5076. visibility: hidden; }
  5077. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5078. background: #FFF; }
  5079. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5080. padding: 5px 5px; }
  5081. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5082. height: 17px; }
  5083. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5084. position: absolute;
  5085. top: 0;
  5086. left: 0;
  5087. z-index: 11;
  5088. padding: 5px;
  5089. border-radius: 5px 0 3px 0;
  5090. background-clip: padding-box;
  5091. font-size: 10px;
  5092. vertical-align: top;
  5093. background-color: rgba(255, 255, 255, 0.9);
  5094. color: #000; }
  5095. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5096. padding: 3px 0 0 4px;
  5097. display: moz-inline-stack;
  5098. display: inline-block;
  5099. vertical-align: top;
  5100. zoom: 1;
  5101. *display: inline; }
  5102. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5103. font-size: 12px;
  5104. padding-top: 4em;
  5105. margin-top: -4.5em;
  5106. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5107. position: relative; }
  5108. 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 {
  5109. padding: 10px;
  5110. font-size: 12px; }
  5111. 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 {
  5112. display: block;
  5113. margin: 10px 0;
  5114. font-size: 18px;
  5115. padding: 0.1em 0.6em 0.2em;
  5116. border-radius: 0.3em;
  5117. background-clip: padding-box;
  5118. font-weight: bold;
  5119. border: 2px solid #69CDCF;
  5120. background-color: #69CDCF;
  5121. color: #fff;
  5122. cursor: pointer;
  5123. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5124. transition: text-shadow 0.2s ease-out;
  5125. text-align: center;
  5126. text-decoration: none; }
  5127. 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 {
  5128. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5129. 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 {
  5130. transition: text-shadow 0s ease-out;
  5131. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  5132. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5133. top: 0; }
  5134. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  5135. font-size: 16px; }
  5136. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  5137. display: moz-inline-stack;
  5138. display: inline-block;
  5139. vertical-align: top;
  5140. zoom: 1;
  5141. *display: inline;
  5142. width: 50%; }
  5143. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  5144. border-radius: 5px 0 0 5px;
  5145. background-clip: padding-box; }
  5146. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  5147. border-radius: 0 5px 5px 0;
  5148. background-clip: padding-box; }
  5149. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  5150. position: relative;
  5151. z-index: 1;
  5152. background-color: #fff; }
  5153. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  5154. position: absolute;
  5155. top: 0;
  5156. left: 0; }
  5157. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  5158. position: relative;
  5159. z-index: 1; }
  5160. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  5161. font-size: 20px;
  5162. font-weight: 300;
  5163. padding: 10px; }
  5164. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  5165. font-weight: 700; }
  5166. 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 {
  5167. display: moz-inline-stack;
  5168. display: inline-block;
  5169. vertical-align: top;
  5170. zoom: 1;
  5171. *display: inline;
  5172. font-size: 12px;
  5173. padding-right: 15px; }
  5174. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  5175. color: #fff;
  5176. background-color: rgba(0, 0, 0, 0.7);
  5177. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5178. transition: background-color 0.2s ease-out; }
  5179. 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 {
  5180. font-weight: 500; }
  5181. 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 {
  5182. font-size: 12px;
  5183. font-weight: 300;
  5184. padding: 10px; }
  5185. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  5186. padding: 10px;
  5187. font-size: 12px; }
  5188. 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 {
  5189. font-size: 12px;
  5190. padding: 10px;
  5191. font-weight: 300;
  5192. display: moz-inline-stack;
  5193. display: inline-block;
  5194. vertical-align: top;
  5195. zoom: 1;
  5196. *display: inline;
  5197. width: 40%; }
  5198. 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 {
  5199. margin-top: 1em; }
  5200. 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 {
  5201. font-size: 10px;
  5202. text-transform: lowercase;
  5203. float: none; }
  5204. 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 {
  5205. font-size: 14px; }
  5206. 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 {
  5207. font-size: 12px;
  5208. padding: 10px;
  5209. font-weight: 300; }
  5210. 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 {
  5211. color: #000; }
  5212. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  5213. font-weight: 900;
  5214. margin: 0 0 0.5em; }
  5215. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5216. margin: 5px; }
  5217. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5218. margin: 5px; }
  5219. 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 {
  5220. padding: 3em; }
  5221. 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 {
  5222. border: 2px solid #eee;
  5223. background-color: #eee;
  5224. color: #fff;
  5225. transition: border 0.3s ease-out;
  5226. transition: background-color 0.3s ease-out; }
  5227. 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 {
  5228. border: 2px solid #69CDCF;
  5229. background-color: #69CDCF; }
  5230. /*
  5231. _ _ _
  5232. ___ ___ ___ _| | ___ ___|_|___| |_
  5233. | _| .'| _| . | | . | _| | | _|
  5234. |___|__,|_| |___| | _|_| |_|_|_|_|
  5235. |_|
  5236. */
  5237. .print-node-materiau {
  5238. margin: 0 auto; }
  5239. @media screen {
  5240. .print-node-materiau {
  5241. width: 850px;
  5242. height: auto;
  5243. display: moz-inline-stack;
  5244. display: inline-block;
  5245. vertical-align: top;
  5246. zoom: 1;
  5247. *display: inline;
  5248. position: relative;
  5249. margin: 7px;
  5250. border-radius: 5px;
  5251. background-clip: padding-box;
  5252. background-color: #FFF;
  5253. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5254. transition: box-shadow 0.3s ease-out;
  5255. width: 1024px;
  5256. padding: 1em; }
  5257. .print-node-materiau > div.side {
  5258. border-radius: 5px;
  5259. background-clip: padding-box;
  5260. overflow: hidden; }
  5261. .print-node-materiau.focused {
  5262. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5263. .print-node-materiau.just-added {
  5264. opacity: 0; }
  5265. .print-node-materiau.associated {
  5266. transition: margin 0.3s ease-out; }
  5267. .print-node-materiau.associated.just-added {
  5268. margin-left: -850px;
  5269. margin-right: 850px; }
  5270. .modal-content .print-node-materiau.associated {
  5271. position: absolute;
  5272. top: 0;
  5273. left: 0;
  5274. z-index: 999; }
  5275. .print-node-materiau.removed {
  5276. transition: width 0.3s ease-out;
  5277. width: 0;
  5278. padding-left: 0;
  5279. padding-right: 0;
  5280. margin-right: 0;
  5281. margin-left: 0;
  5282. overflow: hidden; }
  5283. .print-node-materiau nav.nav {
  5284. position: absolute;
  5285. top: 0;
  5286. right: 0;
  5287. z-index: 11;
  5288. padding: 5px 0;
  5289. border-radius: 0 5px 0 3px;
  5290. background-clip: padding-box;
  5291. font-size: 10px;
  5292. background-color: rgba(255, 255, 255, 0.9);
  5293. color: #000; }
  5294. .print-node-materiau nav.nav a {
  5295. color: #000; }
  5296. .print-node-materiau nav.nav ul {
  5297. background-color: rgba(255, 255, 255, 0.9); }
  5298. .print-node-materiau nav.nav span.op {
  5299. font-weight: 900;
  5300. font-size: 14px; }
  5301. .print-node-materiau nav.nav ul {
  5302. padding: 0;
  5303. margin: 0; }
  5304. .print-node-materiau nav.nav section {
  5305. position: relative; }
  5306. .print-node-materiau nav.nav section > i {
  5307. margin: 0 5px; }
  5308. .print-node-materiau nav.nav section > i:hover {
  5309. cursor: pointer; }
  5310. .print-node-materiau nav.nav ul {
  5311. position: absolute;
  5312. right: 0;
  5313. top: 0;
  5314. margin-right: 22px;
  5315. min-width: 80px;
  5316. padding: 0;
  5317. display: block;
  5318. border-radius: 3px;
  5319. background-clip: padding-box;
  5320. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5321. .print-node-materiau nav.nav ul li {
  5322. padding: 0;
  5323. margin: 0;
  5324. line-height: 1;
  5325. display: block;
  5326. height: 0;
  5327. overflow: hidden;
  5328. transition: height 0.2s ease-out; }
  5329. .print-node-materiau nav.nav ul li a {
  5330. display: block; }
  5331. .print-node-materiau nav.nav ul.links a {
  5332. font-size: 12px; }
  5333. .print-node-materiau nav.nav ul.flag-lists-entity-links {
  5334. width: 160px;
  5335. font-size: 0; }
  5336. .print-node-materiau nav.nav ul.flag-lists-entity-links > * {
  5337. font-size: 11px; }
  5338. .print-node-materiau nav.nav ul.flag-lists-entity-links li {
  5339. display: moz-inline-stack;
  5340. display: inline-block;
  5341. vertical-align: top;
  5342. zoom: 1;
  5343. *display: inline;
  5344. min-width: 48%;
  5345. max-width: 98%;
  5346. padding-left: 2px; }
  5347. .print-node-materiau nav.nav ul.flag-lists-entity-links li a {
  5348. color: #a6a6a6;
  5349. transition: color 0.2s ease-out; }
  5350. .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 {
  5351. color: #000;
  5352. text-decoration: none; }
  5353. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5354. display: block;
  5355. width: 100%; }
  5356. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5357. margin-top: 1px;
  5358. padding-top: 1px;
  5359. border-top: 1px solid #e6e6e6; }
  5360. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5361. color: #000; }
  5362. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading {
  5363. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5364. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading a {
  5365. visibility: hidden; }
  5366. .ie8 .print-node-materiau nav.nav ul {
  5367. background: #FFF; }
  5368. .print-node-materiau nav.nav section:hover ul {
  5369. padding: 5px 5px; }
  5370. .print-node-materiau nav.nav section:hover ul li {
  5371. height: 17px; }
  5372. .print-node-materiau div.workflow {
  5373. position: absolute;
  5374. top: 0;
  5375. left: 0;
  5376. z-index: 11;
  5377. padding: 5px;
  5378. border-radius: 5px 0 3px 0;
  5379. background-clip: padding-box;
  5380. font-size: 10px;
  5381. vertical-align: top;
  5382. background-color: rgba(255, 255, 255, 0.9);
  5383. color: #000; }
  5384. .print-node-materiau div.workflow span {
  5385. padding: 3px 0 0 4px;
  5386. display: moz-inline-stack;
  5387. display: inline-block;
  5388. vertical-align: top;
  5389. zoom: 1;
  5390. *display: inline; }
  5391. .print-node-materiau .field-name-field-description .upgrade {
  5392. font-size: 12px;
  5393. padding-top: 4em;
  5394. margin-top: -4.5em;
  5395. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5396. position: relative; }
  5397. .print-node-materiau .side.oops p, .print-node-materiau .side .upgrade p {
  5398. padding: 10px;
  5399. font-size: 12px; }
  5400. .print-node-materiau .side.oops p a, .print-node-materiau .side .upgrade p a {
  5401. display: block;
  5402. margin: 10px 0;
  5403. font-size: 18px;
  5404. padding: 0.1em 0.6em 0.2em;
  5405. border-radius: 0.3em;
  5406. background-clip: padding-box;
  5407. font-weight: bold;
  5408. border: 2px solid #69CDCF;
  5409. background-color: #69CDCF;
  5410. color: #fff;
  5411. cursor: pointer;
  5412. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5413. transition: text-shadow 0.2s ease-out;
  5414. text-align: center;
  5415. text-decoration: none; }
  5416. .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 {
  5417. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5418. .print-node-materiau .side.oops p a:active, .print-node-materiau .side .upgrade p a:active {
  5419. transition: text-shadow 0s ease-out;
  5420. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } }
  5421. .print-content .node-materiau.vm-print {
  5422. margin: 0;
  5423. position: relative; }
  5424. .print-content .node-materiau.vm-print .field-name-title-field {
  5425. font-weight: 500;
  5426. font-size: 1.4em; }
  5427. .print-content .node-materiau.vm-print .field-name-field-nature-titre {
  5428. font-weight: 500;
  5429. font-size: 1em;
  5430. margin-bottom: 0.5em; }
  5431. .print-content .node-materiau.vm-print .group-head-right {
  5432. position: absolute;
  5433. top: 0;
  5434. right: 0;
  5435. padding-top: 1em;
  5436. text-align: right;
  5437. font-size: 0.8em; }
  5438. .print-content .node-materiau.vm-print .group-head-right .field-name-field-reference-materio {
  5439. font-weight: 800;
  5440. font-size: 1.2em; }
  5441. .print-content .node-materiau.vm-print .side.group-side-left {
  5442. width: 45%;
  5443. position: absolute; }
  5444. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-description {
  5445. font-size: 0.8em; }
  5446. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference {
  5447. display: inline-block;
  5448. vertical-align: top;
  5449. width: 45%;
  5450. margin: 0.5em 1em 0 0;
  5451. font-size: 0.7em; }
  5452. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .field-label {
  5453. font-size: 0.8em;
  5454. font-weight: 300; }
  5455. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-name-field-tode-company {
  5456. font-size: 1.2em; }
  5457. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-label {
  5458. display: none; }
  5459. .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 {
  5460. max-width: 100%; }
  5461. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image {
  5462. text-align: right; }
  5463. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure {
  5464. display: inline-block;
  5465. max-width: 19%;
  5466. margin: 0.5em 0 0 0.5em;
  5467. max-width: 100%;
  5468. margin-left: 50%; }
  5469. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure img {
  5470. max-width: 100%; }
  5471. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item {
  5472. display: none;
  5473. max-width: 19%;
  5474. margin: 0.5em 0 0 0.5em; }
  5475. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+7) {
  5476. display: inline-block; }
  5477. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+2) {
  5478. max-width: 100%;
  5479. margin-left: 50%; }
  5480. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item img {
  5481. max-width: 100%; }
  5482. .print-content .node-materiau.vm-print .field-name-field-tode-company {
  5483. font-size: 1.5em;
  5484. font-weight: 700; }
  5485. .print-content .node-materiau.vm-print .field-name-field-description,
  5486. .print-content .node-materiau.vm-print .field-name-field-company-fab,
  5487. .print-content .node-materiau.vm-print .field-name-field-reference-distrib {
  5488. padding-bottom: 1em; }
  5489. /*
  5490. ____ ____ _____ ________
  5491. / __ \/ __ \/ _/ | / /_ __/
  5492. / /_/ / /_/ // // |/ / / /
  5493. / ____/ _, _// // /| / / /
  5494. /_/ /_/ |_/___/_/ |_/ /_/
  5495. */
  5496. @media print {
  5497. @page {
  5498. margin: 1.5cm 7mm 8mm; } }
  5499. .print-site_name {
  5500. width: 100%;
  5501. vertical-align: bottom;
  5502. margin-bottom: 0.5em; }
  5503. .print-site_name h1 {
  5504. margin: 0 0 0 0;
  5505. font-size: 1.4em;
  5506. text-align: center; }
  5507. .print-site_name h1 a {
  5508. color: inherit; }
  5509. .print-site_name h1 a:hover {
  5510. text-decoration: none; }
  5511. .print-site_name span.slogan {
  5512. display: none;
  5513. font-size: 0.8em;
  5514. margin-top: -3px;
  5515. margin-left: -0.5em;
  5516. font-weight: 900; }
  5517. .ie8 .print-site_name span.slogan {
  5518. position: absolute;
  5519. margin-top: 22px; }
  5520. .print-content {
  5521. margin-bottom: 1em; }
  5522. .print-footer {
  5523. position: absolute;
  5524. bottom: 0;
  5525. text-align: center;
  5526. width: 100%; }
  5527. .print-footer p {
  5528. display: inline-block;
  5529. width: 45%;
  5530. text-align: center; }
  5531. /*
  5532. ___ __ ____________ __________ __ _______ __ __________________
  5533. / | / / / /_ __/ __ \/ ____/ __ \/ |/ / __ \/ / / ____/_ __/ ____/
  5534. / /| |/ / / / / / / / / / / / / / / /|_/ / /_/ / / / __/ / / / __/
  5535. / ___ / /_/ / / / / /_/ / /___/ /_/ / / / / ____/ /___/ /___ / / / /___
  5536. /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/
  5537. */
  5538. #autocomplete {
  5539. border: 0;
  5540. border-radius: 3px;
  5541. background-clip: padding-box;
  5542. background-color: rgba(0, 0, 0, 0.6);
  5543. text-align: left;
  5544. margin-left: 2px; }
  5545. .oldie #autocomplete {
  5546. background-color: #545454; }
  5547. #autocomplete li {
  5548. color: #FFF;
  5549. background-color: transparent;
  5550. font-size: 12px; }
  5551. #autocomplete li.selected {
  5552. background-color: rgba(0, 0, 0, 0.8); }
  5553. #autocomplete li div {
  5554. padding: 0.1em 5px; }
  5555. /**
  5556. * the old modal api (balck bg) for contextual forms (create new flag list)
  5557. */
  5558. #modal {
  5559. background-color: rgba(0, 0, 0, 0.7);
  5560. border-radius: 5px;
  5561. background-clip: padding-box;
  5562. border: 0;
  5563. font-size: 12px; }
  5564. #modal * {
  5565. color: #fff;
  5566. background-color: transparent; }
  5567. #modal form {
  5568. background-color: transparent;
  5569. color: #fff;
  5570. border: 0px; }
  5571. #modal form .form-actions {
  5572. background-color: transparent;
  5573. margin: 0;
  5574. padding: 0;
  5575. border: 0; }
  5576. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  5577. background-color: #fff;
  5578. color: #000;
  5579. border: 0; }
  5580. #modal form .form-actions {
  5581. text-align: right; }
  5582. #modal form input.form-submit {
  5583. border-style: solid;
  5584. border-width: 0;
  5585. cursor: pointer;
  5586. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5587. font-weight: normal;
  5588. line-height: normal;
  5589. margin: 0 0 1.25rem;
  5590. position: relative;
  5591. text-decoration: none;
  5592. text-align: center;
  5593. -webkit-appearance: none;
  5594. -moz-appearance: none;
  5595. border-radius: 0;
  5596. display: inline-block;
  5597. padding-top: 0.625rem;
  5598. padding-right: 1.25rem;
  5599. padding-bottom: 0.6875rem;
  5600. padding-left: 1.25rem;
  5601. font-size: 0.6875rem;
  5602. background-color: #008CBA;
  5603. border-color: #007095;
  5604. color: #FFFFFF;
  5605. transition: background-color 300ms ease-out; }
  5606. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5607. background-color: #007095; }
  5608. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5609. color: #FFFFFF; }
  5610. #modal form input.form-submit[name="create"] {
  5611. border-style: solid;
  5612. border-width: 0;
  5613. cursor: pointer;
  5614. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5615. font-weight: normal;
  5616. line-height: normal;
  5617. margin: 0 0 1.25rem;
  5618. position: relative;
  5619. text-decoration: none;
  5620. text-align: center;
  5621. -webkit-appearance: none;
  5622. -moz-appearance: none;
  5623. border-radius: 0;
  5624. display: inline-block;
  5625. padding-top: 0.625rem;
  5626. padding-right: 1.25rem;
  5627. padding-bottom: 0.6875rem;
  5628. padding-left: 1.25rem;
  5629. font-size: 0.6875rem;
  5630. background-color: #43AC6A;
  5631. border-color: #368a55;
  5632. color: #FFFFFF;
  5633. transition: background-color 300ms ease-out; }
  5634. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5635. background-color: #368a55; }
  5636. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5637. color: #FFFFFF; }
  5638. #modal form input.form-submit[name="save"] {
  5639. border-style: solid;
  5640. border-width: 0;
  5641. cursor: pointer;
  5642. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5643. font-weight: normal;
  5644. line-height: normal;
  5645. margin: 0 0 1.25rem;
  5646. position: relative;
  5647. text-decoration: none;
  5648. text-align: center;
  5649. -webkit-appearance: none;
  5650. -moz-appearance: none;
  5651. border-radius: 0;
  5652. display: inline-block;
  5653. padding-top: 0.625rem;
  5654. padding-right: 1.25rem;
  5655. padding-bottom: 0.6875rem;
  5656. padding-left: 1.25rem;
  5657. font-size: 0.6875rem;
  5658. background-color: #43AC6A;
  5659. border-color: #368a55;
  5660. color: #FFFFFF;
  5661. transition: background-color 300ms ease-out; }
  5662. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5663. background-color: #368a55; }
  5664. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5665. color: #FFFFFF; }
  5666. #modal form input.form-submit[name="delete"] {
  5667. border-style: solid;
  5668. border-width: 0;
  5669. cursor: pointer;
  5670. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5671. font-weight: normal;
  5672. line-height: normal;
  5673. margin: 0 0 1.25rem;
  5674. position: relative;
  5675. text-decoration: none;
  5676. text-align: center;
  5677. -webkit-appearance: none;
  5678. -moz-appearance: none;
  5679. border-radius: 0;
  5680. display: inline-block;
  5681. padding-top: 0.625rem;
  5682. padding-right: 1.25rem;
  5683. padding-bottom: 0.6875rem;
  5684. padding-left: 1.25rem;
  5685. font-size: 0.6875rem;
  5686. background-color: #f04124;
  5687. border-color: #cf2a0e;
  5688. color: #FFFFFF;
  5689. transition: background-color 300ms ease-out; }
  5690. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5691. background-color: #cf2a0e; }
  5692. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5693. color: #FFFFFF; }
  5694. #modal form input.form-submit[name="cancel"] {
  5695. border-style: solid;
  5696. border-width: 0;
  5697. cursor: pointer;
  5698. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5699. font-weight: normal;
  5700. line-height: normal;
  5701. margin: 0 0 1.25rem;
  5702. position: relative;
  5703. text-decoration: none;
  5704. text-align: center;
  5705. -webkit-appearance: none;
  5706. -moz-appearance: none;
  5707. border-radius: 0;
  5708. display: inline-block;
  5709. padding-top: 0.625rem;
  5710. padding-right: 1.25rem;
  5711. padding-bottom: 0.6875rem;
  5712. padding-left: 1.25rem;
  5713. font-size: 0.6875rem;
  5714. background-color: #e7e7e7;
  5715. border-color: #b9b9b9;
  5716. color: #333333;
  5717. transition: background-color 300ms ease-out; }
  5718. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5719. background-color: #b9b9b9; }
  5720. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5721. color: #333333; }
  5722. #modal > * {
  5723. padding: 10px; }
  5724. #modal #flag-lists-form .form-item-title input {
  5725. width: 95%; }
  5726. #modal .actions {
  5727. text-align: right; }
  5728. /**
  5729. * the new modal api used for preview and register modal
  5730. */
  5731. .modal-wrapper {
  5732. bottom: 0;
  5733. left: 0;
  5734. position: fixed;
  5735. right: 0;
  5736. text-align: center;
  5737. top: 0;
  5738. white-space: nowrap;
  5739. z-index: 99998; }
  5740. .modal-wrapper:before {
  5741. content: "";
  5742. display: inline-block;
  5743. height: 100%;
  5744. margin-right: -0.25em;
  5745. vertical-align: middle; }
  5746. .modal-wrapper:after, .modal-wrapper:before {
  5747. -moz-box-sizing: border-box; }
  5748. .modal-wrapper .modal-bg {
  5749. background-color: #000;
  5750. position: absolute;
  5751. top: 0;
  5752. left: 0;
  5753. width: 100%;
  5754. height: 100%;
  5755. opacity: 0.5; }
  5756. .modal-wrapper .modal-content {
  5757. position: relative;
  5758. display: inline-block;
  5759. margin: 0 auto;
  5760. text-align: left;
  5761. vertical-align: middle;
  5762. white-space: normal;
  5763. min-height: 200px; }
  5764. /*
  5765. _______ __________ ____ __ __ ____ ___ _ __
  5766. / / ___// ____/ __ \/ __ \/ / / / / __ \/ | / | / /
  5767. __ / /\__ \/ / / /_/ / / / / / / / / /_/ / /| | / |/ /
  5768. / /_/ /___/ / /___/ _, _/ /_/ / /___/ /___/ ____/ ___ |/ /| /
  5769. \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/
  5770. */
  5771. .jspContainer .jspVerticalBar {
  5772. background-color: transparent;
  5773. width: 5px; }
  5774. .jspContainer .jspVerticalBar .jspTrack {
  5775. background-color: transparent; }
  5776. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  5777. background-color: #ccc;
  5778. border-radius: 3px;
  5779. background-clip: padding-box; }
  5780. /*
  5781. __________ ____ __ ______________
  5782. /_ __/ __ \/ __ \/ / /_ __/ _/ __ / / / / / / / / / / / / / // /_/ /
  5783. / / / /_/ / /_/ / /___/ / _/ // ____/
  5784. /_/ \____/\____/_____/_/ /___/_/
  5785. */
  5786. #tooltip {
  5787. position: absolute;
  5788. z-index: 999;
  5789. max-width: 180px;
  5790. background-color: white;
  5791. padding: 5px;
  5792. border-radius: 3px;
  5793. background-clip: padding-box;
  5794. font-size: 12px;
  5795. font-weight: 500;
  5796. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  5797. #tooltip.op-visible {
  5798. transition: opacity 0.1s ease-out; }
  5799. /*
  5800. ______________________ ____ ___ ________ __
  5801. / ____/ ____/ ____/ __ \/ __ )/ | / ____/ //_/
  5802. / /_ / __/ / __/ / / / / __ / /| |/ / / ,<
  5803. / __/ / /___/ /___/ /_/ / /_/ / ___ / /___/ /| |
  5804. /_/ /_____/_____/_____/_____/_/ |_\____/_/ |_|
  5805. */
  5806. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  5807. #block-feedback-form {
  5808. bottom: 5px;
  5809. left: 5px;
  5810. right: auto; } }
  5811. #block-feedback-form h2 {
  5812. line-height: 1.2;
  5813. font-size: 14px;
  5814. margin: 0; }
  5815. #block-feedback-form h2 .title {
  5816. display: none; }
  5817. #block-feedback-form #feedback-form-toggle {
  5818. padding: 2px 3px;
  5819. border-radius: 3px;
  5820. background-clip: padding-box;
  5821. background-color: #ff7600;
  5822. color: #fff;
  5823. line-height: 2;
  5824. font-weight: 900; }
  5825. #block-feedback-form .content {
  5826. background-color: rgba(0, 0, 0, 0.7);
  5827. border-radius: 5px;
  5828. background-clip: padding-box;
  5829. border: 0;
  5830. font-size: 12px; }
  5831. #block-feedback-form .content * {
  5832. color: #fff;
  5833. background-color: transparent; }
  5834. #block-feedback-form .content form {
  5835. background-color: transparent;
  5836. color: #fff;
  5837. border: 0px; }
  5838. #block-feedback-form .content form .form-actions {
  5839. background-color: transparent;
  5840. margin: 0;
  5841. padding: 0;
  5842. border: 0; }
  5843. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  5844. background-color: #fff;
  5845. color: #000;
  5846. border: 0; }
  5847. #block-feedback-form .content form .form-actions {
  5848. text-align: right; }
  5849. #block-feedback-form .content form input.form-submit {
  5850. border-style: solid;
  5851. border-width: 0;
  5852. cursor: pointer;
  5853. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5854. font-weight: normal;
  5855. line-height: normal;
  5856. margin: 0 0 1.25rem;
  5857. position: relative;
  5858. text-decoration: none;
  5859. text-align: center;
  5860. -webkit-appearance: none;
  5861. -moz-appearance: none;
  5862. border-radius: 0;
  5863. display: inline-block;
  5864. padding-top: 0.625rem;
  5865. padding-right: 1.25rem;
  5866. padding-bottom: 0.6875rem;
  5867. padding-left: 1.25rem;
  5868. font-size: 0.6875rem;
  5869. background-color: #008CBA;
  5870. border-color: #007095;
  5871. color: #FFFFFF;
  5872. transition: background-color 300ms ease-out; }
  5873. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  5874. background-color: #007095; }
  5875. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  5876. color: #FFFFFF; }
  5877. #block-feedback-form .content form input.form-submit[name="create"] {
  5878. border-style: solid;
  5879. border-width: 0;
  5880. cursor: pointer;
  5881. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5882. font-weight: normal;
  5883. line-height: normal;
  5884. margin: 0 0 1.25rem;
  5885. position: relative;
  5886. text-decoration: none;
  5887. text-align: center;
  5888. -webkit-appearance: none;
  5889. -moz-appearance: none;
  5890. border-radius: 0;
  5891. display: inline-block;
  5892. padding-top: 0.625rem;
  5893. padding-right: 1.25rem;
  5894. padding-bottom: 0.6875rem;
  5895. padding-left: 1.25rem;
  5896. font-size: 0.6875rem;
  5897. background-color: #43AC6A;
  5898. border-color: #368a55;
  5899. color: #FFFFFF;
  5900. transition: background-color 300ms ease-out; }
  5901. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  5902. background-color: #368a55; }
  5903. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  5904. color: #FFFFFF; }
  5905. #block-feedback-form .content form input.form-submit[name="save"] {
  5906. border-style: solid;
  5907. border-width: 0;
  5908. cursor: pointer;
  5909. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5910. font-weight: normal;
  5911. line-height: normal;
  5912. margin: 0 0 1.25rem;
  5913. position: relative;
  5914. text-decoration: none;
  5915. text-align: center;
  5916. -webkit-appearance: none;
  5917. -moz-appearance: none;
  5918. border-radius: 0;
  5919. display: inline-block;
  5920. padding-top: 0.625rem;
  5921. padding-right: 1.25rem;
  5922. padding-bottom: 0.6875rem;
  5923. padding-left: 1.25rem;
  5924. font-size: 0.6875rem;
  5925. background-color: #43AC6A;
  5926. border-color: #368a55;
  5927. color: #FFFFFF;
  5928. transition: background-color 300ms ease-out; }
  5929. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  5930. background-color: #368a55; }
  5931. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  5932. color: #FFFFFF; }
  5933. #block-feedback-form .content form input.form-submit[name="delete"] {
  5934. border-style: solid;
  5935. border-width: 0;
  5936. cursor: pointer;
  5937. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5938. font-weight: normal;
  5939. line-height: normal;
  5940. margin: 0 0 1.25rem;
  5941. position: relative;
  5942. text-decoration: none;
  5943. text-align: center;
  5944. -webkit-appearance: none;
  5945. -moz-appearance: none;
  5946. border-radius: 0;
  5947. display: inline-block;
  5948. padding-top: 0.625rem;
  5949. padding-right: 1.25rem;
  5950. padding-bottom: 0.6875rem;
  5951. padding-left: 1.25rem;
  5952. font-size: 0.6875rem;
  5953. background-color: #f04124;
  5954. border-color: #cf2a0e;
  5955. color: #FFFFFF;
  5956. transition: background-color 300ms ease-out; }
  5957. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  5958. background-color: #cf2a0e; }
  5959. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  5960. color: #FFFFFF; }
  5961. #block-feedback-form .content form input.form-submit[name="cancel"] {
  5962. border-style: solid;
  5963. border-width: 0;
  5964. cursor: pointer;
  5965. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5966. font-weight: normal;
  5967. line-height: normal;
  5968. margin: 0 0 1.25rem;
  5969. position: relative;
  5970. text-decoration: none;
  5971. text-align: center;
  5972. -webkit-appearance: none;
  5973. -moz-appearance: none;
  5974. border-radius: 0;
  5975. display: inline-block;
  5976. padding-top: 0.625rem;
  5977. padding-right: 1.25rem;
  5978. padding-bottom: 0.6875rem;
  5979. padding-left: 1.25rem;
  5980. font-size: 0.6875rem;
  5981. background-color: #e7e7e7;
  5982. border-color: #b9b9b9;
  5983. color: #333333;
  5984. transition: background-color 300ms ease-out; }
  5985. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  5986. background-color: #b9b9b9; }
  5987. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  5988. color: #333333; }
  5989. .ie8 #block-feedback-form .content {
  5990. background: #000; }
  5991. #block-feedback-form #feedback-status-message {
  5992. background-color: #fff;
  5993. padding: 5px; }
  5994. /*
  5995. _________ _____ __ __ __ _________ ____ _____
  5996. /_ __/ | / ___// //_/ _/_/ /_ __/ | / __ ) ___/
  5997. / / / /| | \__ \/ ,< _/_/ / / / /| | / __ \__ / / / ___ |___/ / /| | _/_/ / / / ___ |/ /_/ /__/ /
  5998. /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/
  5999. */
  6000. #tasks ul.tabs {
  6001. display: moz-inline-stack;
  6002. display: inline-block;
  6003. vertical-align: top;
  6004. zoom: 1;
  6005. *display: inline;
  6006. border: 0 solid #fff;
  6007. padding: 0;
  6008. margin: 0; }
  6009. #tasks ul.tabs li {
  6010. padding: 0;
  6011. margin: 2px 5px;
  6012. border: 0 solid #fff; }
  6013. #tasks ul.tabs a {
  6014. border: 0;
  6015. color: #7f7f7f; }
  6016. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6017. font-weight: 900;
  6018. color: #000; }
  6019. #tasks ul.tabs.primary a {
  6020. font-size: 12px;
  6021. padding: 5px 10px;
  6022. background-color: #e6e6e6;
  6023. border-radius: 3px;
  6024. background-clip: padding-box; }
  6025. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6026. background-color: #e6e6e6; }
  6027. #tasks ul.tabs.secondary {
  6028. font-size: 10px;
  6029. padding: 0.5em 1em; }
  6030. /*
  6031. ______________ _____________________
  6032. / ___/_ __/ |/_ __/ _/ ____/ ___/
  6033. \__ \ / / / /| | / / / // / \__ ___/ // / / ___ |/ / _/ // /___ ___/ /
  6034. /____//_/ /_/ |_/_/ /___/\____//____/
  6035. */
  6036. /*
  6037. _ _ ___ ___ ___
  6038. | | |_ -| -_| _|
  6039. |___|___|___|_|
  6040. */
  6041. .page-user #center, .page-user-edit #center, .page-user-password #center, .page-user-reset #center, .page-toboggan #center {
  6042. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right; }
  6043. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6044. width: 800px;
  6045. margin: 0 auto; }
  6046. .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 {
  6047. display: none; }
  6048. .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 {
  6049. font-size: 12px;
  6050. padding: 5px 10px;
  6051. background-color: #e6e6e6;
  6052. border-radius: 3px;
  6053. background-clip: padding-box; }
  6054. .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 {
  6055. background-color: #e6e6e6; }
  6056. .page-user #center > *, .page-user-edit #center > *, .page-user-password #center > *, .page-user-reset #center > *, .page-toboggan #center > * {
  6057. width: 800px;
  6058. margin: 0 auto;
  6059. padding-top: 1em;
  6060. font-size: 14px; }
  6061. .page-user #center > * fieldset, .page-user-edit #center > * fieldset, .page-user-password #center > * fieldset, .page-user-reset #center > * fieldset, .page-toboggan #center > * fieldset {
  6062. margin-bottom: 1em;
  6063. border: none; }
  6064. .page-user #center > * legend, .page-user-edit #center > * legend, .page-user-password #center > * legend, .page-user-reset #center > * legend, .page-toboggan #center > * legend {
  6065. font-size: 16px;
  6066. margin: 0;
  6067. padding: 10px 0 5px 0;
  6068. line-height: 1;
  6069. border: 0 solid #fff; }
  6070. .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 {
  6071. color: #000; }
  6072. .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 {
  6073. margin: 0 0 0.5em 0;
  6074. width: 100%; }
  6075. .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 {
  6076. display: moz-inline-stack;
  6077. display: inline-block;
  6078. vertical-align: top;
  6079. zoom: 1;
  6080. *display: inline;
  6081. vertical-align: middle; }
  6082. .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 {
  6083. margin-right: 1em; }
  6084. .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 {
  6085. padding: 2px 4px;
  6086. width: 20em; }
  6087. .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 {
  6088. margin: 0 0 2em 0; }
  6089. .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 {
  6090. width: 9em; }
  6091. .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 {
  6092. width: auto; }
  6093. .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 {
  6094. width: 15em;
  6095. margin-top: 0; }
  6096. .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 {
  6097. margin: 0; }
  6098. .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 {
  6099. font-size: 14px;
  6100. margin: 0; }
  6101. .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 {
  6102. display: moz-inline-stack;
  6103. display: inline-block;
  6104. vertical-align: top;
  6105. zoom: 1;
  6106. *display: inline;
  6107. width: auto;
  6108. margin-right: 1em; }
  6109. .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 {
  6110. margin: 0; }
  6111. .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 {
  6112. width: auto;
  6113. padding: 2px 4px;
  6114. height: auto; }
  6115. .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 {
  6116. font-size: 10px; }
  6117. .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 {
  6118. margin: 0;
  6119. text-align: right;
  6120. padding: 1em 0.5em; }
  6121. .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 {
  6122. min-width: 10em; }
  6123. .page-user #center > * #edit-profile-adherent-field-first-name, .page-user #center > * #edit-profile-adherent-field-name,
  6124. .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,
  6125. .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,
  6126. .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,
  6127. .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,
  6128. .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,
  6129. .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,
  6130. .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,
  6131. .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,
  6132. .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,
  6133. .page-toboggan #center > * #edit-profile-adherent-field-naf, .page-toboggan #center > * #edit-profile-adherent-field-siret {
  6134. display: moz-inline-stack;
  6135. display: inline-block;
  6136. vertical-align: top;
  6137. zoom: 1;
  6138. *display: inline;
  6139. vertical-align: middle;
  6140. width: auto;
  6141. margin: 0 1em 0.5em 0; }
  6142. .page-user #center > * #edit-profile-adherent-field-first-name div, .page-user #center > * #edit-profile-adherent-field-name div,
  6143. .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,
  6144. .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,
  6145. .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,
  6146. .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,
  6147. .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,
  6148. .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,
  6149. .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,
  6150. .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,
  6151. .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,
  6152. .page-toboggan #center > * #edit-profile-adherent-field-naf div, .page-toboggan #center > * #edit-profile-adherent-field-siret div {
  6153. width: auto;
  6154. margin: 0;
  6155. padding: 0; }
  6156. .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 {
  6157. width: auto; }
  6158. .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 {
  6159. width: 8em; }
  6160. .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 {
  6161. width: 13em; }
  6162. .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 {
  6163. margin: 2em 0 0 0; }
  6164. .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 {
  6165. width: auto; }
  6166. .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 {
  6167. width: 4em; }
  6168. .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 {
  6169. display: moz-inline-stack;
  6170. display: inline-block;
  6171. vertical-align: top;
  6172. zoom: 1;
  6173. *display: inline;
  6174. vertical-align: middle; }
  6175. .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 {
  6176. width: 10em; }
  6177. .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 {
  6178. padding: 0; }
  6179. .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 {
  6180. width: 35em; }
  6181. .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 {
  6182. width: auto;
  6183. margin-right: 1em; }
  6184. .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 {
  6185. margin: 2em 0 0 0; }
  6186. .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 > * {
  6187. display: moz-inline-stack;
  6188. display: inline-block;
  6189. vertical-align: top;
  6190. zoom: 1;
  6191. *display: inline;
  6192. vertical-align: middle; }
  6193. .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 {
  6194. width: 35em; }
  6195. .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 {
  6196. border: 0 solid transparent; }
  6197. .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 {
  6198. display: inline; }
  6199. .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 {
  6200. padding: 0; }
  6201. /*
  6202. _ __
  6203. _____(_)___ ___ ____ / /__ ____ ___ _ _______
  6204. / ___/ / __ `__ \/ __ \/ / _ \/ __ \/ _ \ | /| / / ___/
  6205. (__ ) / / / / / / /_/ / / __/ / / / __/ |/ |/ (__ )
  6206. /____/_/_/ /_/ /_/ .___/_/\___/_/ /_/\___/|__/|__/____/
  6207. /_/
  6208. */
  6209. body.node-type-simplenews #content .inner-content {
  6210. text-align: center; }
  6211. body.node-type-simplenews #content article.node.node-simplenews {
  6212. display: moz-inline-stack;
  6213. display: inline-block;
  6214. vertical-align: top;
  6215. zoom: 1;
  6216. *display: inline;
  6217. max-width: 600px;
  6218. padding: 1em 0; }
  6219. body.node-type-simplenews #content article.node.node-simplenews tbody {
  6220. border-top: 0px; }
  6221. body.node-type-simplenews #content article.node.node-simplenews img {
  6222. max-width: 9999px; }
  6223. @media only screen and (max-width: 40em) {
  6224. body.node-type-simplenews #content article.node.node-simplenews {
  6225. max-width: 100%;
  6226. overflow-x: hidden; }
  6227. body.node-type-simplenews #content article.node.node-simplenews table, body.node-type-simplenews #content article.node.node-simplenews tbody, body.node-type-simplenews #content article.node.node-simplenews tr, body.node-type-simplenews #content article.node.node-simplenews td {
  6228. display: block;
  6229. max-width: 100%; }
  6230. body.node-type-simplenews #content article.node.node-simplenews img {
  6231. max-width: 100%; }
  6232. body.node-type-simplenews #content article.node.node-simplenews p {
  6233. padding-right: 1em; } }
  6234. /*
  6235. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6236. | _ | _ | __| __| | | | | |_ _| _ | |_ _|
  6237. | __| | | | __| | --| | | | | | | | | | --| | |
  6238. |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_|
  6239. */
  6240. .page-node-11175 #main #center {
  6241. background: #fff url("../img/bg-contact.gif") no-repeat bottom right; }
  6242. .page-node-11175 #main .field-name-body p {
  6243. display: moz-inline-stack;
  6244. display: inline-block;
  6245. vertical-align: top;
  6246. zoom: 1;
  6247. *display: inline;
  6248. margin: 15px; }
  6249. .page-node-11175 #main .field-name-body p strong {
  6250. font-size: 18px; }
  6251. /*
  6252. _____ _____ _____ _____ _____ _____ _____
  6253. | _ | __ | | | | | | __|
  6254. | __| -|- -| --|- -| | | | | |
  6255. |__| |__|__|_____|_____|_____|_|___|_____|
  6256. */
  6257. @media only screen and (min-width: 40.063em) {
  6258. 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 {
  6259. display: moz-inline-stack;
  6260. display: inline-block;
  6261. vertical-align: top;
  6262. zoom: 1;
  6263. *display: inline;
  6264. margin: 10px;
  6265. float: none; }
  6266. body.page-node-11187 .node-11187 .field-name-body div.column {
  6267. width: 22.4%; }
  6268. 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 {
  6269. min-height: 170px; }
  6270. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  6271. width: 46%; }
  6272. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  6273. min-height: 110px; }
  6274. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  6275. width: 92%; }
  6276. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  6277. width: auto;
  6278. max-width: 98%; }
  6279. body.page-node-11187 #block-materio-user-user-register {
  6280. width: 600px;
  6281. margin: 0 auto;
  6282. padding: 2em; } }
  6283. @media only screen and (max-width: 40em) {
  6284. body.page-node-11187 #block-system-help {
  6285. text-align: center; } }
  6286. body.page-node-11187 .node-11187 .field-name-body {
  6287. text-align: center; }
  6288. body.page-node-11187 .node-11187 .field-name-body > * {
  6289. text-align: left; }
  6290. 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 {
  6291. position: relative;
  6292. background-color: #fff;
  6293. border-radius: 5px;
  6294. background-clip: padding-box;
  6295. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  6296. overflow: hidden; }
  6297. .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 {
  6298. max-width: 500px;
  6299. margin: auto;
  6300. margin-bottom: 15px;
  6301. border: 1px solid #C6C6C6; }
  6302. 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 > * {
  6303. padding: 0 10px; }
  6304. 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 {
  6305. text-align: left;
  6306. margin: 5px 0 0 15px; }
  6307. 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 {
  6308. padding: 0 0 0 15px;
  6309. font-size: 18px;
  6310. font-style: italic;
  6311. font-weight: bold;
  6312. line-height: 1; }
  6313. 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 {
  6314. margin: 0;
  6315. padding: 0 15px; }
  6316. 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 {
  6317. list-style: none;
  6318. font-size: 12px; }
  6319. 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 {
  6320. content: "+ ";
  6321. font-weight: 900; }
  6322. 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 {
  6323. font-size: 12px;
  6324. margin: 0;
  6325. padding: 0 15px; }
  6326. 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 {
  6327. margin: 0;
  6328. border-radius: 0 0 5px 5px 0 0 0;
  6329. background-clip: padding-box;
  6330. border: 1px solid #fff;
  6331. min-height: 92px; }
  6332. 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 {
  6333. display: block;
  6334. width: 100%;
  6335. padding: 15px 0;
  6336. color: #1A1A1A;
  6337. text-decoration: none; }
  6338. 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 {
  6339. background-color: #C8C8C8; }
  6340. 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 {
  6341. background-color: #69CDCF; }
  6342. 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 {
  6343. background-color: #D476AE; }
  6344. 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 {
  6345. background-color: #E6DE1C; }
  6346. 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 {
  6347. background-color: #4BA13D; }
  6348. 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 {
  6349. min-height: 62px;
  6350. padding: 15px 0; }
  6351. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  6352. padding: 10px 0 0;
  6353. font-size: 24px; }
  6354. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  6355. padding: 0;
  6356. font-size: 24px;
  6357. text-align: center;
  6358. font-style: italic;
  6359. font-weight: 900;
  6360. cursor: pointer;
  6361. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6362. transition: text-shadow 0.3s ease-out; }
  6363. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  6364. font-size: 20px; }
  6365. 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 {
  6366. text-shadow: 0 0 3px white; }
  6367. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  6368. transition: text-shadow 0s ease-out;
  6369. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6370. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  6371. padding: 10px 0 0;
  6372. font-size: 24px;
  6373. top: 0; }
  6374. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  6375. min-height: 2em; }
  6376. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  6377. font-size: 14px;
  6378. min-height: 120px; }
  6379. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  6380. font-size: 14px;
  6381. text-align: left;
  6382. padding: 0 1em;
  6383. background-color: #ddd; }
  6384. /*
  6385. _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6386. | _ | \| | | __| __| | | | | | __| | __ | |
  6387. | | | | | __|__ |- -| | | | | | | __| | | -| | | |
  6388. |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_|
  6389. */
  6390. .node-11186 nav ul.links a.language-link {
  6391. display: none; }
  6392. #webform-client-form-11186 {
  6393. background-color: #e6e6e6;
  6394. border-radius: 10px;
  6395. background-clip: padding-box; }
  6396. @media only screen and (min-width: 40.063em) {
  6397. #webform-client-form-11186 {
  6398. padding: 10px 30px; }
  6399. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6400. margin: 10px 0; }
  6401. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6402. width: auto; }
  6403. #webform-client-form-11186 fieldset {
  6404. border-radius: 5px;
  6405. background-clip: padding-box;
  6406. border-left: 1px solid #cccccc;
  6407. border-bottom: 1px solid #cccccc;
  6408. padding: 10px;
  6409. border-top-width: 0;
  6410. border-right-width: 0;
  6411. border-bottom-width: 0; }
  6412. #webform-client-form-11186 fieldset fieldset {
  6413. border: 0 solid #ddd;
  6414. padding: 0; }
  6415. #webform-client-form-11186 legend {
  6416. margin: 0;
  6417. font-size: 18px;
  6418. font-weight: 700; }
  6419. #webform-client-form-11186 .form-item {
  6420. margin: 0 20px 0 0; }
  6421. #webform-client-form-11186 label {
  6422. font-size: 12px;
  6423. width: 10em;
  6424. display: moz-inline-stack;
  6425. display: inline-block;
  6426. vertical-align: top;
  6427. zoom: 1;
  6428. *display: inline;
  6429. vertical-align: middle;
  6430. margin-right: 1em;
  6431. border-bottom: 1px solid #cccccc; }
  6432. #webform-client-form-11186 .description {
  6433. font-size: 10px;
  6434. width: 25em;
  6435. display: moz-inline-stack;
  6436. display: inline-block;
  6437. vertical-align: top;
  6438. zoom: 1;
  6439. *display: inline;
  6440. vertical-align: bottom;
  6441. margin-left: 1em;
  6442. color: #7f7f7f; }
  6443. #webform-client-form-11186 input.form-text {
  6444. width: 13em; } }
  6445. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  6446. #webform-client-form-11186 {
  6447. padding: 10px; }
  6448. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6449. margin: 0 0 10px 0; }
  6450. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  6451. width: 100%; }
  6452. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6453. width: 75%; }
  6454. #webform-client-form-11186 legend {
  6455. margin: 0;
  6456. font-size: 16px;
  6457. font-weight: 700; }
  6458. #webform-client-form-11186 .form-item {
  6459. margin: 0;
  6460. float: none; }
  6461. #webform-client-form-11186 label {
  6462. font-size: 12px;
  6463. width: 30%;
  6464. display: moz-inline-stack;
  6465. display: inline-block;
  6466. vertical-align: top;
  6467. zoom: 1;
  6468. *display: inline;
  6469. vertical-align: middle;
  6470. margin-right: 0.5em; }
  6471. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  6472. width: 60%; }
  6473. #webform-client-form-11186 #webform-component-infos {
  6474. font-size: 14px; } }
  6475. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  6476. display: moz-inline-stack;
  6477. display: inline-block;
  6478. vertical-align: top;
  6479. zoom: 1;
  6480. *display: inline; }
  6481. #webform-client-form-11186 #webform-component-column-left {
  6482. display: moz-inline-stack;
  6483. display: inline-block;
  6484. vertical-align: top;
  6485. zoom: 1;
  6486. *display: inline;
  6487. width: 25%;
  6488. border: none; }
  6489. #webform-client-form-11186 #webform-component-column-right {
  6490. display: moz-inline-stack;
  6491. display: inline-block;
  6492. vertical-align: top;
  6493. zoom: 1;
  6494. *display: inline;
  6495. min-width: 70%; }
  6496. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  6497. border: 1px solid #ddd;
  6498. border-radius: 5px;
  6499. background-clip: padding-box;
  6500. padding: 10px 5px;
  6501. margin: 5px 0;
  6502. background-color: #fff; }
  6503. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  6504. display: moz-inline-stack;
  6505. display: inline-block;
  6506. vertical-align: top;
  6507. zoom: 1;
  6508. *display: inline;
  6509. vertical-align: middle;
  6510. margin: 0px 5px; }
  6511. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  6512. font-size: 20px;
  6513. font-weight: 700;
  6514. display: moz-inline-stack;
  6515. display: inline-block;
  6516. vertical-align: top;
  6517. zoom: 1;
  6518. *display: inline;
  6519. vertical-align: middle;
  6520. margin: 0; }
  6521. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  6522. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  6523. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  6524. background-color: #69CDCF; }
  6525. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  6526. background-color: #D476AE; }
  6527. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  6528. background-color: #E6DE1C; }
  6529. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  6530. opacity: 0.4; }
  6531. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  6532. width: 200px;
  6533. font-size: 18px;
  6534. font-weight: 700; }
  6535. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6536. border: 0; }
  6537. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  6538. display: block; }
  6539. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  6540. display: moz-inline-stack;
  6541. display: inline-block;
  6542. vertical-align: top;
  6543. zoom: 1;
  6544. *display: inline; }
  6545. #webform-client-form-11186 #addressfield-wrapper {
  6546. margin-top: 1em; }
  6547. #webform-client-form-11186 .street-block .form-item {
  6548. display: moz-inline-stack;
  6549. display: inline-block;
  6550. vertical-align: top;
  6551. zoom: 1;
  6552. *display: inline; }
  6553. #webform-client-form-11186 #webform-component-column-right--collaborators {
  6554. margin: 20px 0;
  6555. overflow: hidden; }
  6556. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  6557. display: moz-inline-stack;
  6558. display: inline-block;
  6559. vertical-align: top;
  6560. zoom: 1;
  6561. *display: inline;
  6562. width: 33%; }
  6563. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  6564. display: block; }
  6565. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  6566. width: 6em; }
  6567. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  6568. width: 11em; }
  6569. #webform-client-form-11186 #webform-component-infos {
  6570. margin: 20px 0; }
  6571. #webform-client-form-11186 .form-actions {
  6572. padding: 0;
  6573. margin: 0;
  6574. border: 0px;
  6575. background-color: transparent;
  6576. text-align: left; }
  6577. #webform-client-form-11186 .form-actions .form-submit {
  6578. border: 2px solid #69CDCF;
  6579. background-color: #69CDCF;
  6580. color: #fff;
  6581. font-size: 18px;
  6582. padding: 0.2em 1em 0.3em;
  6583. border-radius: 0.3em;
  6584. background-clip: padding-box;
  6585. font-weight: bold;
  6586. margin-bottom: 9px;
  6587. cursor: pointer;
  6588. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6589. transition: text-shadow 0.2s ease-out; }
  6590. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  6591. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6592. #webform-client-form-11186 .form-actions .form-submit:active {
  6593. transition: text-shadow 0s ease-out;
  6594. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6595. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  6596. margin: 0;
  6597. font-size: 18px;
  6598. font-weight: 700;
  6599. border: none;
  6600. line-height: 40px; }
  6601. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  6602. display: moz-inline-stack;
  6603. display: inline-block;
  6604. vertical-align: top;
  6605. zoom: 1;
  6606. *display: inline; }
  6607. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  6608. width: auto; }
  6609. #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 {
  6610. margin: 0; }
  6611. #webform-client-form-11186 #edit-submitted-terms-of-services {
  6612. margin-bottom: 0.5em; }
  6613. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6614. margin: 0 0.3em 0 0; }
  6615. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6616. width: auto; }
  6617. /*
  6618. _____ _____ _____ _____ _____ _____ _____ _____ _____ _ _ _ _____ _____ _____ _____
  6619. | | | | | | _ | __ |_ _| | | | | __| | | | | __| | __ | |
  6620. | | | --| | --| | -| | | | | |- -| __| | | | | __| | | -| | | |
  6621. |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_|
  6622. */
  6623. #uc-cart-view-form {
  6624. background-color: #e6e6e6;
  6625. padding: 10px, 30px;
  6626. display: inline-block; }
  6627. #uc-cart-view-form table {
  6628. width: auto;
  6629. display: table;
  6630. background-color: #fff; }
  6631. #uc-cart-view-form table thead th {
  6632. border-bottom: none;
  6633. padding: 1em; }
  6634. #uc-cart-view-form table tbody {
  6635. border-top: none; }
  6636. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  6637. background-color: #fff;
  6638. border-bottom: none; }
  6639. #uc-cart-view-form table tbody td {
  6640. padding: 1em; }
  6641. #uc-cart-view-form fieldset {
  6642. border: none !important; }
  6643. #uc-cart-view-form .form-type-uc-quantity input {
  6644. width: 2em; }
  6645. #uc-cart-view-form .form-actions {
  6646. padding: 0;
  6647. margin: 0;
  6648. border: 0px;
  6649. background-color: transparent;
  6650. text-align: right;
  6651. display: block;
  6652. width: 100%; }
  6653. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  6654. display: block; }
  6655. #uc-cart-view-form .form-actions .form-submit {
  6656. font-size: 16px;
  6657. font-weight: bold;
  6658. padding: 0.1em 0.3em 0.2em;
  6659. border-radius: 0.3em;
  6660. background-clip: padding-box;
  6661. border: 2px solid #ccc;
  6662. background-color: #ccc;
  6663. color: #4D4D4D;
  6664. cursor: pointer;
  6665. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6666. transition: text-shadow 0.3s ease-out;
  6667. text-align: center;
  6668. text-decoration: none;
  6669. margin-left: 1em; }
  6670. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  6671. text-shadow: 0 0 3px white; }
  6672. #uc-cart-view-form .form-actions .form-submit:active {
  6673. transition: text-shadow 0s ease-out;
  6674. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6675. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  6676. font-size: 16px;
  6677. font-weight: bold;
  6678. padding: 0.1em 0.3em 0.2em;
  6679. border-radius: 0.3em;
  6680. background-clip: padding-box;
  6681. border: 2px solid #ccc;
  6682. background-color: #ccc;
  6683. color: #4D4D4D;
  6684. cursor: pointer;
  6685. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6686. transition: text-shadow 0.3s ease-out;
  6687. text-align: center;
  6688. text-decoration: none;
  6689. cursor: pointer;
  6690. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6691. transition: text-shadow 0.2s ease-out;
  6692. border-color: #69CDCF;
  6693. background-color: #69CDCF;
  6694. color: #fff; }
  6695. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6696. text-shadow: 0 0 3px white; }
  6697. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6698. transition: text-shadow 0s ease-out;
  6699. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6700. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6701. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6702. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6703. transition: text-shadow 0s ease-out;
  6704. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6705. /*
  6706. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6707. | | | | | | | | __| | | | | | |_ _| | __| | __ | |
  6708. | | | --| | --| | __| --| -| | | | | | | | __| | | -| | | |
  6709. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_|
  6710. */
  6711. #uc-cart-checkout-form {
  6712. background-color: #e6e6e6;
  6713. padding: 10px, 30px; }
  6714. #uc-cart-checkout-form fieldset {
  6715. border: none !important; }
  6716. #uc-cart-checkout-form fieldset.form-row {
  6717. padding-bottom: 20px;
  6718. margin-bottom: 20px; }
  6719. #uc-cart-checkout-form fieldset.form-column {
  6720. display: moz-inline-stack;
  6721. display: inline-block;
  6722. vertical-align: top;
  6723. zoom: 1;
  6724. *display: inline;
  6725. max-width: 39%;
  6726. clear: both;
  6727. float: none;
  6728. margin: 15px 1em; }
  6729. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  6730. margin: 10px 0; }
  6731. #uc-cart-checkout-form fieldset.form-column-right {
  6732. border-left: 1px solid #ccc;
  6733. margin-left: 2em;
  6734. padding-left: 2em; }
  6735. #uc-cart-checkout-form legend {
  6736. margin: 0;
  6737. font-size: 18px;
  6738. font-weight: 700;
  6739. border: none;
  6740. line-height: 2; }
  6741. #uc-cart-checkout-form .fieldset-description {
  6742. font-size: 12px; }
  6743. #uc-cart-checkout-form .fieldset-wrapper {
  6744. font-size: 12px; }
  6745. #uc-cart-checkout-form .form-item {
  6746. margin: 0 20px 0 0; }
  6747. #uc-cart-checkout-form .description {
  6748. font-size: 10px;
  6749. width: 25em;
  6750. display: moz-inline-stack;
  6751. display: inline-block;
  6752. vertical-align: top;
  6753. zoom: 1;
  6754. *display: inline;
  6755. vertical-align: bottom;
  6756. margin-left: 1em;
  6757. color: #7f7f7f; }
  6758. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  6759. display: moz-inline-stack;
  6760. display: inline-block;
  6761. vertical-align: top;
  6762. zoom: 1;
  6763. *display: inline;
  6764. border-radius: 5px;
  6765. background-clip: padding-box;
  6766. padding: 10px;
  6767. background-color: #fff; }
  6768. #uc-cart-checkout-form #cart-pane table {
  6769. font-size: 14px;
  6770. min-width: 20em; }
  6771. #uc-cart-checkout-form #cart-pane table td.price {
  6772. width: 4em; }
  6773. #uc-cart-checkout-form #cart-pane tbody {
  6774. border: none; }
  6775. #uc-cart-checkout-form #cart-pane tr {
  6776. background-color: transparent;
  6777. border: none; }
  6778. #uc-cart-checkout-form #cart-pane td {
  6779. padding: 0 5px;
  6780. vertical-align: bottom; }
  6781. #uc-cart-checkout-form #cart-pane td.products {
  6782. width: auto; }
  6783. #uc-cart-checkout-form #cart-pane td.products a {
  6784. color: inherit;
  6785. font-weight: 700; }
  6786. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  6787. margin: 0;
  6788. font-size: 12px; }
  6789. #uc-cart-checkout-form #cart-pane td.products li {
  6790. list-style: none; }
  6791. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  6792. font-size: 16px;
  6793. font-weight: 700; }
  6794. #uc-cart-checkout-form #customer-pane {
  6795. width: 35em; }
  6796. #uc-cart-checkout-form #billing-pane label {
  6797. font-size: 12px;
  6798. width: 8em;
  6799. display: moz-inline-stack;
  6800. display: inline-block;
  6801. vertical-align: top;
  6802. zoom: 1;
  6803. *display: inline;
  6804. vertical-align: middle;
  6805. margin-right: 1em;
  6806. border-bottom: 1px solid #cccccc; }
  6807. #uc-cart-checkout-form #billing-pane input.form-text {
  6808. width: 13em; }
  6809. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  6810. background-color: #fff;
  6811. border-radius: 5px;
  6812. background-clip: padding-box;
  6813. padding: 10px; }
  6814. #uc-cart-checkout-form #payment-pane #line-items-div {
  6815. float: none;
  6816. border: none;
  6817. display: moz-inline-stack;
  6818. display: inline-block;
  6819. vertical-align: top;
  6820. zoom: 1;
  6821. *display: inline;
  6822. margin: 10px 0 20px; }
  6823. #uc-cart-checkout-form #payment-pane #line-items-div table {
  6824. font-size: 14px;
  6825. min-width: 20em; }
  6826. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  6827. width: 4em; }
  6828. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  6829. border: none; }
  6830. #uc-cart-checkout-form #payment-pane #line-items-div td {
  6831. padding: 0 5px; }
  6832. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  6833. font-weight: 500; }
  6834. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  6835. font-size: 16px;
  6836. font-weight: 700;
  6837. text-align: right; }
  6838. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  6839. width: auto;
  6840. border-bottom: none; }
  6841. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  6842. border: 1px solid #ddd;
  6843. border-radius: 5px;
  6844. margin: 0.5em;
  6845. padding: 0.5em; }
  6846. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  6847. font-weight: bold; }
  6848. #uc-cart-checkout-form #payment-pane #payment-details {
  6849. width: 25em;
  6850. border-top: none;
  6851. padding: 0;
  6852. margin: 0; }
  6853. #uc-cart-checkout-form #edit-actions {
  6854. width: 100%;
  6855. padding: 1em 0;
  6856. margin: 0;
  6857. border: 0px;
  6858. background-color: transparent;
  6859. text-align: center; }
  6860. #uc-cart-checkout-form #edit-actions .form-submit {
  6861. font-size: 16px;
  6862. font-weight: bold;
  6863. padding: 0.1em 0.3em 0.2em;
  6864. border-radius: 0.3em;
  6865. background-clip: padding-box;
  6866. border: 2px solid #ccc;
  6867. background-color: #ccc;
  6868. color: #4D4D4D;
  6869. cursor: pointer;
  6870. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6871. transition: text-shadow 0.3s ease-out;
  6872. text-align: center;
  6873. text-decoration: none;
  6874. margin-left: 1em; }
  6875. #uc-cart-checkout-form #edit-actions .form-submit:hover, #uc-cart-checkout-form #edit-actions .form-submit:focus {
  6876. text-shadow: 0 0 3px white; }
  6877. #uc-cart-checkout-form #edit-actions .form-submit:active {
  6878. transition: text-shadow 0s ease-out;
  6879. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6880. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue {
  6881. font-size: 16px;
  6882. font-weight: bold;
  6883. padding: 0.1em 0.3em 0.2em;
  6884. border-radius: 0.3em;
  6885. background-clip: padding-box;
  6886. border: 2px solid #ccc;
  6887. background-color: #ccc;
  6888. color: #4D4D4D;
  6889. cursor: pointer;
  6890. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6891. transition: text-shadow 0.3s ease-out;
  6892. text-align: center;
  6893. text-decoration: none;
  6894. cursor: pointer;
  6895. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6896. transition: text-shadow 0.2s ease-out;
  6897. border-color: #69CDCF;
  6898. background-color: #69CDCF;
  6899. color: #fff; }
  6900. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  6901. text-shadow: 0 0 3px white; }
  6902. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  6903. transition: text-shadow 0s ease-out;
  6904. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6905. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  6906. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6907. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  6908. transition: text-shadow 0s ease-out;
  6909. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6910. /*
  6911. _____ _____ _____ _____ _____ _____
  6912. | | | | | | _ | __ |_ _|
  6913. | | | --| | --| | -| | |
  6914. |_____|_____| |_____|__|__|__|__| |_|
  6915. &&
  6916. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ ____ _____ _____ _____ _____ _____
  6917. | | | | | | | | __| | | | | | |_ _| | | | _ | | | | \| _ |_ _| | | | |
  6918. | | | --| | --| | __| --| -| | | | | | | | | | | |__|- -| | | | | | |- -| | | | | |
  6919. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___|
  6920. */
  6921. .page-cart-checkout-review #content > .inner-content {
  6922. display: inline-block;
  6923. padding: 1em; }
  6924. .page-cart-checkout-review #edit-actions {
  6925. margin: 0;
  6926. padding: 0; }
  6927. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  6928. display: block; }
  6929. .page-cart-checkout-review #review-instructions {
  6930. width: 30em;
  6931. padding: 1em 0; }
  6932. .page-cart-checkout-review table.order-review-table {
  6933. border: none; }
  6934. .page-cart-checkout-review table.order-review-table .pane-title-row {
  6935. border: none;
  6936. background-color: transparent;
  6937. text-align: left;
  6938. font-size: 18px; }
  6939. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  6940. padding: 1em 0 0 0; }
  6941. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  6942. background-color: transparent;
  6943. border: none; }
  6944. .page-cart-checkout-review table.order-review-table td.title-col {
  6945. padding: 0;
  6946. text-align: left; }
  6947. .page-cart-checkout-review table.order-review-table td.data-col {
  6948. padding: 0;
  6949. width: 75%; }
  6950. .page-cart-checkout-review table.order-review-table .review-button-row {
  6951. border: none;
  6952. background-color: transparent; }
  6953. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  6954. padding: 3em 0 0 0; }
  6955. .page-cart-checkout-review table.order-review-table .review-button-row form {
  6956. margin: 0 0.5em 0 0;
  6957. display: moz-inline-stack;
  6958. display: inline-block;
  6959. vertical-align: top;
  6960. zoom: 1;
  6961. *display: inline; }
  6962. .page-cart-checkout-review #edit-actions {
  6963. border: 0px;
  6964. background-color: transparent;
  6965. text-align: right; }
  6966. .page-cart-checkout-review input.form-submit {
  6967. font-size: 16px;
  6968. font-weight: bold;
  6969. padding: 0.1em 0.3em 0.2em;
  6970. border-radius: 0.3em;
  6971. background-clip: padding-box;
  6972. border: 2px solid #ccc;
  6973. background-color: #ccc;
  6974. color: #4D4D4D;
  6975. cursor: pointer;
  6976. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6977. transition: text-shadow 0.3s ease-out;
  6978. text-align: center;
  6979. text-decoration: none;
  6980. margin-left: 1em; }
  6981. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  6982. text-shadow: 0 0 3px white; }
  6983. .page-cart-checkout-review input.form-submit:active {
  6984. transition: text-shadow 0s ease-out;
  6985. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6986. .page-cart-checkout-review input.form-submit#edit-submit {
  6987. font-size: 16px;
  6988. font-weight: bold;
  6989. padding: 0.1em 0.3em 0.2em;
  6990. border-radius: 0.3em;
  6991. background-clip: padding-box;
  6992. border: 2px solid #ccc;
  6993. background-color: #ccc;
  6994. color: #4D4D4D;
  6995. cursor: pointer;
  6996. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6997. transition: text-shadow 0.3s ease-out;
  6998. text-align: center;
  6999. text-decoration: none;
  7000. cursor: pointer;
  7001. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7002. transition: text-shadow 0.2s ease-out;
  7003. border-color: #69CDCF;
  7004. background-color: #69CDCF;
  7005. color: #fff; }
  7006. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7007. text-shadow: 0 0 3px white; }
  7008. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7009. transition: text-shadow 0s ease-out;
  7010. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7011. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7012. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7013. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7014. transition: text-shadow 0s ease-out;
  7015. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7016. /*
  7017. ____ _____ ____ _____ _____ _____ _____ _____ _____ _____
  7018. | \| | \| _ | |_ _| | | | | __|
  7019. | | |- -| | | | --| | | |- -| | | | | __|
  7020. |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____|
  7021. |__|
  7022. */
  7023. #didactique-page .node-didactique {
  7024. border-radius: 5px;
  7025. background-clip: padding-box;
  7026. background-color: #FFF;
  7027. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7028. max-width: 850px;
  7029. font-size: 14px;
  7030. background-color: #fff;
  7031. margin: 1em auto;
  7032. padding: 1em; }
  7033. #didactique-page .node-didactique .field-name-field-emvideo {
  7034. margin: 1em 0; }
  7035. #didactique-page .node-didactique .field-name-title-field {
  7036. font-size: 24px;
  7037. font-weight: 900;
  7038. font-style: italic;
  7039. padding: 5px 0; }
  7040. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  7041. max-width: 100%; }
  7042. @media only screen and (min-width: 40.063em) {
  7043. #didactique-page .side {
  7044. display: moz-inline-stack;
  7045. display: inline-block;
  7046. vertical-align: top;
  7047. zoom: 1;
  7048. *display: inline;
  7049. vertical-align: top; }
  7050. #didactique-page .group-sideleft {
  7051. width: 60%; }
  7052. #didactique-page .group-sideright {
  7053. width: 39%; } }
  7054. /*
  7055. _ _ _ _____ _____ _ _ _ _____ _____ _____ _____
  7056. | | | | | | | | | | | __| | _ | __ | __|
  7057. | | | | | | | | | | | __| | | -| __|
  7058. |_____|__|__|_____| |_____|_____| |__|__|__|__|_____|
  7059. */
  7060. @media only screen and (max-width: 40em) {
  7061. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  7062. display: none; } }
  7063. /*
  7064. _ _
  7065. _____ ___|_|___| |_ ___ ___ ___ ___ ___ ___
  7066. | | .'| | | _| -_| | .'| | _| -_|
  7067. |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___|
  7068. */
  7069. .maintenance-page #container, .maintenance-page #header {
  7070. text-align: center;
  7071. padding: 0;
  7072. position: relative; }
  7073. .maintenance-page #main {
  7074. background-color: transparent; }
  7075. .maintenance-page #header h1.site-name {
  7076. font-size: 36px;
  7077. margin: 0;
  7078. padding-left: 0; }
  7079. .maintenance-page h2.site-slogan {
  7080. font-size: 16px;
  7081. font-weight: 300;
  7082. margin: 0;
  7083. line-height: 1.1; }
  7084. /*
  7085. _____ _____ _____
  7086. | __| _ | |
  7087. | __| | | |
  7088. |__| |__|__|__ _|
  7089. |__|
  7090. */
  7091. .page-faq-page #main {
  7092. background: #fff url("../img/bg-faq.png") no-repeat bottom right; }
  7093. #content .faq-content .faq-description {
  7094. font-size: 12px;
  7095. padding-bottom: 2em; }
  7096. #content .faq-content ul.faq-ul-questions-top {
  7097. margin: 0; }
  7098. #content .faq-content ul.faq-ul-questions-top li {
  7099. list-style: none; }
  7100. #content .faq-content ul.faq-ul-questions-top li a {
  7101. font-size: 18px;
  7102. font-weight: 500; }
  7103. #content .faq-content h3.faq-header {
  7104. font-size: 20px;
  7105. font-weight: 700;
  7106. line-height: 1.2;
  7107. margin: 0; }
  7108. #content .faq-content h3.faq-header a {
  7109. color: #000; }
  7110. #content .faq-content .faq-dl-hide-answer {
  7111. padding: 0; }
  7112. #content .faq-content .faq-category-group {
  7113. padding-bottom: 1em; }
  7114. #content .faq-content .faq-question-answer {
  7115. padding: 0.3em 0 0 0.8em; }
  7116. #content .faq-content .faq-question-answer .faq-question {
  7117. font-size: 16px;
  7118. padding: 0;
  7119. font-weight: 500; }
  7120. #content .faq-content .faq-question-answer .faq-question a {
  7121. color: #000; }
  7122. #content .faq-content .faq-question-answer .faq-answer {
  7123. padding: 0;
  7124. margin-bottom: 2em;
  7125. font-size: 12px; }
  7126. #content .faq-content .field-name-body img {
  7127. max-width: 50%;
  7128. height: auto; }
  7129. /*
  7130. __ __ _ _____
  7131. / / / /___ ____ ___ ___ | | / /__ / /_/ / __ \/ __ `__ \/ _ \ | | / /__/ /
  7132. / __ / /_/ / / / / / / __/ | |/ // __/
  7133. /_/ /_/\____/_/ /_/ /_/\___/ |___//____/
  7134. */
  7135. body.home-v2 #center {
  7136. background-color: transparent;
  7137. padding: 0; }
  7138. #home-v2 h2 {
  7139. font-size: 2.1em;
  7140. font-weight: 300; }
  7141. #home-v2 a {
  7142. color: #000; }
  7143. #home-v2 .field-name-field-liens {
  7144. margin-top: 1em; }
  7145. #home-v2 .field-name-field-liens .field-item {
  7146. display: moz-inline-stack;
  7147. display: inline-block;
  7148. vertical-align: top;
  7149. zoom: 1;
  7150. *display: inline;
  7151. margin: 0 0.5em 0.5em 0; }
  7152. #home-v2 .field-name-field-liens a {
  7153. font-weight: 700;
  7154. display: moz-inline-stack;
  7155. display: inline-block;
  7156. vertical-align: top;
  7157. zoom: 1;
  7158. *display: inline;
  7159. padding: 0.5em 1em 0.7em;
  7160. border-radius: 5px;
  7161. background-clip: padding-box;
  7162. background-color: rgba(255, 255, 255, 0.8); }
  7163. body.logged-in #home-v2 .field-name-field-liens a.visitor {
  7164. display: none; }
  7165. body.not-logged-in #home-v2 .field-name-field-liens a.member {
  7166. display: none; }
  7167. #home-v2 .panel-separator {
  7168. clear: both; }
  7169. #home-v2 > .panel-panel > div > .panel-pane {
  7170. overflow: hidden; }
  7171. #home-v2 > .panel-panel > div > .panel-pane.pane-node {
  7172. border-radius: 5px;
  7173. background-clip: padding-box;
  7174. overflow: hidden; }
  7175. #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node {
  7176. position: relative;
  7177. width: 100%;
  7178. height: 100%;
  7179. overflow: hidden; }
  7180. #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a {
  7181. background-color: rgba(255, 255, 255, 0.7);
  7182. border-radius: 5px;
  7183. background-clip: padding-box;
  7184. padding: 15px; }
  7185. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7186. height: auto;
  7187. background-color: #f7f4ed;
  7188. margin-top: 2em;
  7189. margin-bottom: 2em;
  7190. padding-top: 0; }
  7191. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7192. margin: 0 auto; }
  7193. @media only screen and (max-width: 40em) {
  7194. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7195. width: 320px;
  7196. height: 180px; } }
  7197. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7198. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7199. width: 640px;
  7200. height: 360px; } }
  7201. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  7202. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7203. width: 800px;
  7204. height: 450px; } }
  7205. @media only screen and (min-width: 90.063em) {
  7206. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7207. width: 1024px;
  7208. height: 576px; } }
  7209. #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 {
  7210. width: 100%;
  7211. height: 100%; }
  7212. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field {
  7213. display: none; }
  7214. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body {
  7215. margin-top: 1em;
  7216. text-align: center; }
  7217. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7218. text-align: left;
  7219. display: moz-inline-stack;
  7220. display: inline-block;
  7221. vertical-align: top;
  7222. zoom: 1;
  7223. *display: inline;
  7224. width: 35%;
  7225. margin-left: 2%;
  7226. font-size: 0.756em; }
  7227. @media only screen and (max-width: 40em) {
  7228. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7229. width: 100%;
  7230. text-align: center; } }
  7231. @media only screen and (max-width: 40em) {
  7232. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7233. margin-top: 0.5em; } }
  7234. #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 {
  7235. margin: 2em 0; }
  7236. #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 {
  7237. margin: 0px;
  7238. text-align: center; }
  7239. #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 {
  7240. margin: 0 1em 0 0;
  7241. padding: 0px;
  7242. list-style: none;
  7243. height: 2.5em;
  7244. display: moz-inline-stack;
  7245. display: inline-block;
  7246. vertical-align: top;
  7247. zoom: 1;
  7248. *display: inline; }
  7249. #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 {
  7250. background-color: #4d4d4d;
  7251. border-radius: 5px;
  7252. background-clip: padding-box;
  7253. padding: 5px 12px 7px;
  7254. color: #f7f4ed;
  7255. font-size: 18px;
  7256. font-weight: 500;
  7257. transition: opacity,background-color 0.2s ease-out; }
  7258. #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"] {
  7259. background-color: #e6de1c;
  7260. cursor: pointer;
  7261. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7262. transition: text-shadow 0.2s ease-out; }
  7263. #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 {
  7264. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7265. #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 {
  7266. transition: text-shadow 0s ease-out;
  7267. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7268. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7269. padding: 2em 0;
  7270. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  7271. text-align: center; }
  7272. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content {
  7273. display: moz-inline-stack;
  7274. display: inline-block;
  7275. vertical-align: top;
  7276. zoom: 1;
  7277. *display: inline;
  7278. text-align: left; }
  7279. #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 {
  7280. font-weight: 900;
  7281. font-style: italic;
  7282. padding: 5px 0;
  7283. margin: 0;
  7284. line-height: 1;
  7285. display: moz-inline-stack;
  7286. display: inline-block;
  7287. vertical-align: top;
  7288. zoom: 1;
  7289. *display: inline;
  7290. vertical-align: middle; }
  7291. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 {
  7292. font-size: 24px; }
  7293. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 {
  7294. font-size: 16px; }
  7295. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form {
  7296. margin: 0 1em;
  7297. padding: 0px;
  7298. display: moz-inline-stack;
  7299. display: inline-block;
  7300. vertical-align: top;
  7301. zoom: 1;
  7302. *display: inline;
  7303. vertical-align: middle; }
  7304. #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 {
  7305. margin: 0;
  7306. position: relative;
  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 #edit-account {
  7314. margin-right: 5px; }
  7315. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7316. font-size: 12px;
  7317. border-radius: 5px;
  7318. background-clip: padding-box;
  7319. margin-bottom: 4px; }
  7320. .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7321. margin-right: 5px; }
  7322. #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 {
  7323. width: 11em; }
  7324. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text {
  7325. width: 7em; }
  7326. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check {
  7327. position: absolute;
  7328. bottom: 100%;
  7329. z-index: 9999;
  7330. background-image: none;
  7331. height: auto;
  7332. padding: 5px;
  7333. border-radius: 5px;
  7334. background-clip: padding-box;
  7335. margin-bottom: 10px;
  7336. font-size: 10px;
  7337. background-color: #fff;
  7338. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  7339. transition: bottom 0.1s ease-out; }
  7340. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error {
  7341. background-color: #f3968d;
  7342. color: #fff; }
  7343. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok {
  7344. display: none; }
  7345. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit {
  7346. font-size: 16px;
  7347. padding: 0.1em 0.6em 0.2em;
  7348. border-radius: 0.3em;
  7349. background-clip: padding-box;
  7350. font-weight: bold;
  7351. margin-bottom: 4px; }
  7352. #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 {
  7353. margin-bottom: 0;
  7354. display: block;
  7355. line-height: 1; }
  7356. #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 > * {
  7357. display: moz-inline-stack;
  7358. display: inline-block;
  7359. vertical-align: top;
  7360. zoom: 1;
  7361. *display: inline;
  7362. vertical-align: middle;
  7363. margin: 0; }
  7364. #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 {
  7365. font-size: 10px;
  7366. background-color: #fff;
  7367. border-radius: 3px;
  7368. background-clip: padding-box; }
  7369. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit {
  7370. border: 2px solid #69CDCF;
  7371. background-color: #69CDCF;
  7372. color: #fff;
  7373. cursor: pointer;
  7374. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7375. transition: text-shadow 0.2s ease-out; }
  7376. #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 {
  7377. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7378. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:active {
  7379. transition: text-shadow 0s ease-out;
  7380. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7381. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] {
  7382. background-color: #ddd;
  7383. border: 2px solid #ddd; }
  7384. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit {
  7385. border: 2px solid #E6DE1C;
  7386. background-color: #E6DE1C;
  7387. color: #fff;
  7388. cursor: pointer;
  7389. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7390. transition: text-shadow 0.2s ease-out; }
  7391. #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 {
  7392. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7393. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:active {
  7394. transition: text-shadow 0s ease-out;
  7395. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7396. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews {
  7397. display: none; }
  7398. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join {
  7399. display: moz-inline-stack;
  7400. display: inline-block;
  7401. vertical-align: top;
  7402. zoom: 1;
  7403. *display: inline;
  7404. vertical-align: middle;
  7405. margin: 0 1em;
  7406. font-size: 16px;
  7407. padding: 0.1em 0.3em 0.2em;
  7408. border-radius: 0.3em;
  7409. background-clip: padding-box;
  7410. font-weight: bold;
  7411. border: 2px solid #69CDCF;
  7412. background-color: #69CDCF;
  7413. color: #fff;
  7414. cursor: pointer;
  7415. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7416. transition: text-shadow 0.2s ease-out;
  7417. text-align: center;
  7418. text-decoration: none; }
  7419. #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 {
  7420. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7421. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:active {
  7422. transition: text-shadow 0s ease-out;
  7423. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7424. @media only screen and (max-width: 40em) {
  7425. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7426. background-position: 160% 50%;
  7427. min-height: 60px;
  7428. padding: 15px 0; }
  7429. #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 {
  7430. width: 7em; } }
  7431. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error {
  7432. color: #b94a48;
  7433. font-size: 12px; }
  7434. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7435. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7436. transition: box-shadow 0.3s ease-out;
  7437. height: 450px;
  7438. margin-top: 15px;
  7439. background-color: #fff;
  7440. position: relative; }
  7441. #home-v2 > .panel-panel > div > .panel-pane.showroom:hover {
  7442. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7443. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content {
  7444. width: 100%;
  7445. height: 100%;
  7446. position: relative; }
  7447. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node {
  7448. position: absolute;
  7449. height: 100%;
  7450. width: 100%; }
  7451. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7452. position: absolute;
  7453. width: 100%;
  7454. height: 100%;
  7455. overflow: hidden; }
  7456. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img {
  7457. width: 100%;
  7458. margin-top: -10%; }
  7459. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7460. position: relative;
  7461. z-index: 2;
  7462. width: 30%;
  7463. margin: 3em 2em; }
  7464. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content {
  7465. background-color: rgba(255, 255, 255, 0.8);
  7466. padding: 1em;
  7467. border-radius: 5px;
  7468. background-clip: padding-box; }
  7469. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field {
  7470. font-size: 2.1em;
  7471. font-weight: 300; }
  7472. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body {
  7473. margin-top: 0.5em; }
  7474. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7475. content: url("../img/bulle.png");
  7476. -webkit-transform: scale(0.8);
  7477. transform: scale(0.8);
  7478. position: absolute;
  7479. bottom: -120px;
  7480. right: -20px;
  7481. z-index: 10; }
  7482. @media only screen and (max-width: 40em) {
  7483. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7484. margin-top: 10px; }
  7485. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7486. position: absolute;
  7487. width: 400%;
  7488. height: 100%;
  7489. overflow: hidden; }
  7490. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7491. width: auto;
  7492. padding: 2%;
  7493. margin: 2%; }
  7494. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body {
  7495. font-size: 0.756em;
  7496. margin-top: 0.5em; }
  7497. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7498. opacity: 0.4; } }
  7499. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7500. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7501. transition: box-shadow 0.3s ease-out;
  7502. height: 450px;
  7503. margin-top: 30px;
  7504. background-color: #FFF;
  7505. position: relative; }
  7506. #home-v2 > .panel-panel > div > .panel-pane.bdd:hover {
  7507. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7508. #home-v2 > .panel-panel > div > .panel-pane.bdd .links a {
  7509. background-color: #e6e6e6; }
  7510. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7511. display: moz-inline-stack;
  7512. display: inline-block;
  7513. vertical-align: top;
  7514. zoom: 1;
  7515. *display: inline;
  7516. width: 60%;
  7517. height: 100%;
  7518. overflow: hidden; }
  7519. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img {
  7520. max-width: 2000px; }
  7521. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7522. display: moz-inline-stack;
  7523. display: inline-block;
  7524. vertical-align: top;
  7525. zoom: 1;
  7526. *display: inline;
  7527. width: 35%;
  7528. padding: 1em;
  7529. border-radius: 5px;
  7530. background-clip: padding-box; }
  7531. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field {
  7532. font-size: 2.1em;
  7533. font-weight: 300; }
  7534. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body {
  7535. margin-top: 1em; }
  7536. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a {
  7537. background-color: rgba(230, 230, 230, 0.8); }
  7538. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7539. content: url("../img/boule.png");
  7540. -webkit-transform: scale(0.8);
  7541. transform: scale(0.8);
  7542. position: absolute;
  7543. bottom: -50px;
  7544. left: -50px; }
  7545. @media only screen and (max-width: 40em) {
  7546. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7547. height: auto; }
  7548. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7549. width: 100%;
  7550. display: block;
  7551. height: 310px;
  7552. overflow: hidden; }
  7553. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7554. display: block;
  7555. width: 100%;
  7556. z-index: 1;
  7557. padding: 0; }
  7558. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper > * {
  7559. padding: 1em; }
  7560. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7561. opacity: 0.6;
  7562. z-index: 0; } }
  7563. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7564. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7565. transition: box-shadow 0.3s ease-out;
  7566. position: relative;
  7567. height: 300px;
  7568. margin-top: 30px;
  7569. background-color: #000;
  7570. color: #FFF; }
  7571. #home-v2 > .panel-panel > div > .panel-pane.formations:hover {
  7572. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7573. #home-v2 > .panel-panel > div > .panel-pane.formations a {
  7574. color: #FFF; }
  7575. #home-v2 > .panel-panel > div > .panel-pane.formations .node {
  7576. padding: 0 0 0 30%;
  7577. width: 70%; }
  7578. #home-v2 > .panel-panel > div > .panel-pane.formations .node:before {
  7579. content: " ";
  7580. background: transparent url("../img/formations.png") no-repeat center center;
  7581. background-clip: padding-box;
  7582. background-size: contain;
  7583. position: absolute;
  7584. left: 0;
  7585. z-index: 2;
  7586. width: 30%;
  7587. height: 100%; }
  7588. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper {
  7589. padding: 1em;
  7590. position: relative; }
  7591. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field {
  7592. font-size: 2.1em;
  7593. font-weight: 300; }
  7594. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body {
  7595. margin-top: 1em; }
  7596. @media only screen and (max-width: 40em) {
  7597. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7598. height: auto; } }
  7599. #home-v2 > .panel-panel > div > .panel-pane.services {
  7600. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7601. transition: box-shadow 0.3s ease-out;
  7602. background-color: #FFF;
  7603. height: 300px;
  7604. margin-top: 30px; }
  7605. #home-v2 > .panel-panel > div > .panel-pane.services:hover {
  7606. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7607. #home-v2 > .panel-panel > div > .panel-pane.services .node {
  7608. padding: 0 30% 0 0;
  7609. width: 70%; }
  7610. #home-v2 > .panel-panel > div > .panel-pane.services .node:before {
  7611. content: " ";
  7612. background: transparent url("../img/services.png") no-repeat center center;
  7613. background-clip: padding-box;
  7614. background-size: contain;
  7615. position: absolute;
  7616. right: 0;
  7617. z-index: 2;
  7618. width: 30%;
  7619. height: 100%; }
  7620. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper {
  7621. padding: 1em;
  7622. position: relative; }
  7623. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field {
  7624. font-size: 2.1em;
  7625. font-weight: 300; }
  7626. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body {
  7627. margin-top: 1em; }
  7628. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-field-liens a {
  7629. background-color: rgba(230, 230, 230, 0.8); }
  7630. @media only screen and (max-width: 40em) {
  7631. #home-v2 > .panel-panel > div > .panel-pane.services {
  7632. height: auto; } }
  7633. #home-v2 > .panel-panel > div > .panel-pane.publication {
  7634. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7635. transition: box-shadow 0.3s ease-out;
  7636. position: relative;
  7637. margin-top: 30px;
  7638. padding: 1em;
  7639. background-color: #000;
  7640. border-radius: 10px;
  7641. background-clip: padding-box; }
  7642. #home-v2 > .panel-panel > div > .panel-pane.publication:hover {
  7643. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7644. #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 {
  7645. color: #fff; }
  7646. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7647. display: moz-inline-stack;
  7648. display: inline-block;
  7649. vertical-align: top;
  7650. zoom: 1;
  7651. *display: inline;
  7652. width: 30%; }
  7653. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 {
  7654. display: none; }
  7655. @media only screen and (max-width: 40em) {
  7656. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7657. display: block;
  7658. width: 90%;
  7659. margin-bottom: 1em; } }
  7660. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7661. background-color: #e6e6e6;
  7662. border-radius: 10px;
  7663. background-clip: padding-box;
  7664. margin-top: 30px;
  7665. padding-top: 1em;
  7666. padding-bottom: 1em;
  7667. position: relative; }
  7668. #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 {
  7669. font-size: 30px; }
  7670. @media only screen and (min-width: 40.063em) {
  7671. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper {
  7672. width: 100%;
  7673. margin-left: auto;
  7674. margin-right: auto;
  7675. margin-top: 0;
  7676. margin-bottom: 0;
  7677. max-width: 80rem; }
  7678. #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 {
  7679. content: " ";
  7680. display: table; }
  7681. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after {
  7682. clear: both; }
  7683. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7684. overflow: hidden;
  7685. padding-left: 0.9375rem;
  7686. padding-right: 0.9375rem;
  7687. width: 33.33333%;
  7688. float: left;
  7689. padding: 0em;
  7690. margin-left: 1em; }
  7691. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first {
  7692. width: auto; }
  7693. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) {
  7694. width: 31%; }
  7695. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7696. margin: 0; }
  7697. #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 {
  7698. margin: 0;
  7699. height: 610px; } }
  7700. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom {
  7701. width: 100%;
  7702. margin-left: auto;
  7703. margin-right: auto;
  7704. margin-top: 0;
  7705. margin-bottom: 0;
  7706. max-width: 80rem;
  7707. margin-top: 1.5em;
  7708. margin-bottom: 1.5em; }
  7709. #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 {
  7710. content: " ";
  7711. display: table; }
  7712. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after {
  7713. clear: both; }
  7714. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside {
  7715. padding-left: 0.9375rem;
  7716. padding-right: 0.9375rem;
  7717. width: 100%;
  7718. float: left; }
  7719. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p {
  7720. display: none; }
  7721. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes {
  7722. margin: 0 0 0.5em 0; }
  7723. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item {
  7724. display: moz-inline-stack;
  7725. display: inline-block;
  7726. vertical-align: top;
  7727. zoom: 1;
  7728. *display: inline;
  7729. margin-right: 1em; }
  7730. #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 {
  7731. vertical-align: middle; }
  7732. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail {
  7733. display: moz-inline-stack;
  7734. display: inline-block;
  7735. vertical-align: top;
  7736. zoom: 1;
  7737. *display: inline;
  7738. margin: 0; }
  7739. #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 {
  7740. display: moz-inline-stack;
  7741. display: inline-block;
  7742. vertical-align: top;
  7743. zoom: 1;
  7744. *display: inline;
  7745. margin-right: 1em; }
  7746. #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 {
  7747. display: moz-inline-stack;
  7748. display: inline-block;
  7749. vertical-align: top;
  7750. zoom: 1;
  7751. *display: inline; }
  7752. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews {
  7753. border-radius: 5px;
  7754. background-clip: padding-box;
  7755. background-color: #FFF;
  7756. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7757. transition: box-shadow 0.3s ease-out;
  7758. overflow: hidden;
  7759. position: relative;
  7760. margin: 7px; }
  7761. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a {
  7762. position: absolute;
  7763. bottom: 0;
  7764. width: 100%;
  7765. background-color: #FFF;
  7766. text-align: center; }
  7767. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 {
  7768. padding: 10px;
  7769. margin: 0;
  7770. font-size: 1em; }
  7771. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7772. content: url("../img/point.png");
  7773. position: absolute;
  7774. bottom: 20px;
  7775. right: 10px; }
  7776. @media only screen and (max-width: 40em) {
  7777. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7778. background-color: transparent; }
  7779. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7780. width: 100%; }
  7781. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7782. margin: 0; }
  7783. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node {
  7784. max-width: 100%;
  7785. margin: 0; }
  7786. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body {
  7787. width: 100%;
  7788. padding: 0; }
  7789. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body p {
  7790. max-width: 100%;
  7791. padding: 1em; }
  7792. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a {
  7793. padding: 0;
  7794. display: block;
  7795. height: 100%; }
  7796. #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 {
  7797. max-width: 100%; }
  7798. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7799. z-index: -1;
  7800. opacity: 0.4; } }
  7801. #home-v2 #contact-pane {
  7802. margin: 2em 0;
  7803. padding: 1em;
  7804. background-color: #e6e6e6; }
  7805. #home-v2 #contact-pane .field-name-body {
  7806. text-align: center; }
  7807. #home-v2 #contact-pane .field-name-body p {
  7808. display: moz-inline-stack;
  7809. display: inline-block;
  7810. vertical-align: top;
  7811. zoom: 1;
  7812. *display: inline;
  7813. min-width: 20%; }
  7814. /*
  7815. _ _ _ _ _
  7816. | | | (_) | | (_)
  7817. _ __ _ _| |__ | |_ ___ __ _| |_ _ ___ _ __ ___
  7818. | '_ \| | | | '_ \| | |/ __/ _` | __| |/ _ \| '_ \/ __|
  7819. | |_) | |_| | |_) | | | (_| (_| | |_| | (_) | | | \__ | .__/ \__,_|_.__/|_|_|\___\__,_|\__|_|\___/|_| |_|___/
  7820. | |
  7821. |_|
  7822. */
  7823. body.node-type-publication article.node-publication .field figure, body.node-type-publication article.node-publication .field img {
  7824. max-width: 100%; }
  7825. @media only screen and (min-width: 64.063em) {
  7826. body.node-type-publication article.node-publication .field {
  7827. display: moz-inline-stack;
  7828. display: inline-block;
  7829. vertical-align: top;
  7830. zoom: 1;
  7831. *display: inline; }
  7832. body.node-type-publication article.node-publication .field-name-field-couverture {
  7833. width: 25%; }
  7834. body.node-type-publication article.node-publication .field-name-body {
  7835. margin-left: 1em;
  7836. width: 70%; } }
  7837. /*
  7838. __ ___
  7839. / |/ /__ ______________ _____ ____ _____
  7840. / /|_/ / _ \/ ___/ ___/ __ `/ __ `/ _ \/ ___/
  7841. / / / / __(__ |__ ) /_/ / /_/ / __(__ )
  7842. /_/ /_/\___/____/____/\__,_/\__, /\___/____/
  7843. /____/
  7844. */
  7845. div.messages {
  7846. padding: 9px;
  7847. margin: 0.5em 0 0;
  7848. color: #3a87ad;
  7849. background: #d9edf7;
  7850. border: 1px solid #bce8f1;
  7851. border-radius: 5px;
  7852. font-size: 12px; }
  7853. div.messages.warning {
  7854. color: #c09853;
  7855. background-color: #fcf8e3;
  7856. border-color: #fbeed5; }
  7857. div.messages.error {
  7858. color: #b94a48;
  7859. background-color: #f2dede;
  7860. border-color: #eed3d7; }
  7861. div.messages.status {
  7862. color: #468847;
  7863. background-color: #dff0d8;
  7864. border-color: #d6e9c6;
  7865. font-size: 14px; }
  7866. .messages-label {
  7867. display: none; }
  7868. #better-messages-wrapper {
  7869. background-color: rgba(255, 255, 255, 0.7);
  7870. padding: 10px;
  7871. border-radius: 5px;
  7872. background-clip: padding-box;
  7873. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }
  7874. #better-messages-wrapper #better-messages-default div.messages {
  7875. padding: 9px;
  7876. margin: 0.5em 0 0;
  7877. color: #3a87ad;
  7878. background: #d9edf7;
  7879. border: 1px solid #bce8f1;
  7880. border-radius: 5px;
  7881. font-size: 12px;
  7882. margin: 0 0 10px 0; }
  7883. #better-messages-wrapper #better-messages-default div.messages.warning {
  7884. color: #c09853;
  7885. background-color: #fcf8e3;
  7886. border-color: #fbeed5; }
  7887. #better-messages-wrapper #better-messages-default div.messages.error {
  7888. color: #b94a48;
  7889. background-color: #f2dede;
  7890. border-color: #eed3d7; }
  7891. #better-messages-wrapper #better-messages-default div.messages.status {
  7892. color: #468847;
  7893. background-color: #dff0d8;
  7894. border-color: #d6e9c6;
  7895. font-size: 14px; }
  7896. #better-messages-wrapper #better-messages-default .footer {
  7897. border: none;
  7898. padding: 0;
  7899. margin: 0; }
  7900. #better-messages-wrapper #better-messages-default .footer a.message-close {
  7901. background: #fff url("../img/close.png") no-repeat center center;
  7902. width: 15px;
  7903. height: 15px;
  7904. border-radius: 3px;
  7905. background-clip: padding-box;
  7906. display: block; }
  7907. /** Tab navigation */
  7908. /**
  7909. * icons
  7910. */
  7911. /**
  7912. * figures
  7913. */
  7914. figure figcaption {
  7915. display: none; }
  7916. figure .blank {
  7917. position: absolute;
  7918. top: 0;
  7919. left: 0;
  7920. width: 100%;
  7921. height: 100%; }
  7922. /* ==|== print styles =======================================================
  7923. Print styles.
  7924. Inlined to avoid required HTTP connection: h5bp.com/r
  7925. ========================================================================== */
  7926. a:focus {
  7927. outline: 0; }
  7928. /*
  7929. * Improves readability when focused and also mouse hovered in all browsers.
  7930. */
  7931. a:active,
  7932. a:hover {
  7933. outline: 0; }
  7934. i {
  7935. transition: color 0.3s; }
  7936. i:hover {
  7937. color: #606060;
  7938. text-shadow: 1px 4px 6px #FFF,0 0 0 #000,1px 4px 6px #FFF; }
  7939. /** COLORBOX */
  7940. #colorbox {
  7941. border-radius: 2px;
  7942. background-clip: padding-box;
  7943. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7944. #colorbox #cboxLoadedContent {
  7945. background-color: #fff; }
  7946. /** embed player */
  7947. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7948. .embedded-video .player iframe {
  7949. max-width: 100%;
  7950. height: auto; } }
  7951. /** devel */
  7952. .not-logged-in #tasks ul.tabs.primary {
  7953. display: none; }
  7954. /*
  7955. __ _
  7956. ____ _____/ /___ ___ (_)___ ____ ___ ___ ____ __ __
  7957. / __ `/ __ / __ `__ \/ / __ \ / __ `__ \/ _ \/ __ \/ / / /
  7958. / /_/ / /_/ / / / / / / / / / / / / / / / / __/ / / / /_/ /
  7959. \__,_/\__,_/_/ /_/ /_/_/_/ /_/ /_/ /_/ /_/\___/_/ /_/\__,_/
  7960. */
  7961. #admin-menu {
  7962. top: 0; }