styles.css 338 KB

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