styles.css 339 KB

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