styles.css 349 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  6. /**
  7. * 1. Set default font family to sans-serif.
  8. * 2. Prevent iOS and IE text size adjust after device orientation change,
  9. * without disabling 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/10/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 of focused elements when they are also in an
  81. * active/hover state.
  82. */
  83. a:active,
  84. a:hover {
  85. outline: 0; }
  86. /* Text-level semantics
  87. ========================================================================== */
  88. /**
  89. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  90. */
  91. abbr[title] {
  92. border-bottom: 1px dotted; }
  93. /**
  94. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  95. */
  96. b,
  97. strong {
  98. font-weight: bold; }
  99. /**
  100. * Address styling not present in Safari and Chrome.
  101. */
  102. dfn {
  103. font-style: italic; }
  104. /**
  105. * Address variable `h1` font-size and margin within `section` and `article`
  106. * contexts in Firefox 4+, Safari, and Chrome.
  107. */
  108. h1 {
  109. font-size: 2em;
  110. margin: 0.67em 0; }
  111. /**
  112. * Address styling not present in IE 8/9.
  113. */
  114. mark {
  115. background: #ff0;
  116. color: #000; }
  117. /**
  118. * Address inconsistent and variable font size in all browsers.
  119. */
  120. small {
  121. font-size: 80%; }
  122. /**
  123. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  124. */
  125. sub,
  126. sup {
  127. font-size: 75%;
  128. line-height: 0;
  129. position: relative;
  130. vertical-align: baseline; }
  131. sup {
  132. top: -0.5em; }
  133. sub {
  134. bottom: -0.25em; }
  135. /* Embedded content
  136. ========================================================================== */
  137. /**
  138. * Remove border when inside `a` element in IE 8/9/10.
  139. */
  140. img {
  141. border: 0; }
  142. /**
  143. * Correct overflow not hidden in IE 9/10/11.
  144. */
  145. svg:not(:root) {
  146. overflow: hidden; }
  147. /* Grouping content
  148. ========================================================================== */
  149. /**
  150. * Address margin not present in IE 8/9 and Safari.
  151. */
  152. figure {
  153. margin: 1em 40px; }
  154. /**
  155. * Address differences between Firefox and other browsers.
  156. */
  157. hr {
  158. box-sizing: content-box;
  159. height: 0; }
  160. /**
  161. * Contain overflow in all browsers.
  162. */
  163. pre {
  164. overflow: auto; }
  165. /**
  166. * Address odd `em`-unit font size rendering in all browsers.
  167. */
  168. code,
  169. kbd,
  170. pre,
  171. samp {
  172. font-family: monospace, monospace;
  173. font-size: 1em; }
  174. /* Forms
  175. ========================================================================== */
  176. /**
  177. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  178. * styling of `select`, unless a `border` property is set.
  179. */
  180. /**
  181. * 1. Correct color not being inherited.
  182. * Known issue: affects color of disabled elements.
  183. * 2. Correct font properties not being inherited.
  184. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  185. */
  186. button,
  187. input,
  188. optgroup,
  189. select,
  190. textarea {
  191. color: inherit;
  192. /* 1 */
  193. font: inherit;
  194. /* 2 */
  195. margin: 0;
  196. /* 3 */ }
  197. /**
  198. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  199. */
  200. button {
  201. overflow: visible; }
  202. /**
  203. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  204. * All other form control elements do not inherit `text-transform` values.
  205. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  206. * Correct `select` style inheritance in Firefox.
  207. */
  208. button,
  209. select {
  210. text-transform: none; }
  211. /**
  212. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  213. * and `video` controls.
  214. * 2. Correct inability to style clickable `input` types in iOS.
  215. * 3. Improve usability and consistency of cursor style between image-type
  216. * `input` and others.
  217. */
  218. button,
  219. html input[type="button"],
  220. input[type="reset"],
  221. input[type="submit"] {
  222. -webkit-appearance: button;
  223. /* 2 */
  224. cursor: pointer;
  225. /* 3 */ }
  226. /**
  227. * Re-set default cursor for disabled elements.
  228. */
  229. button[disabled],
  230. html input[disabled] {
  231. cursor: default; }
  232. /**
  233. * Remove inner padding and border in Firefox 4+.
  234. */
  235. button::-moz-focus-inner,
  236. input::-moz-focus-inner {
  237. border: 0;
  238. padding: 0; }
  239. /**
  240. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  241. * the UA stylesheet.
  242. */
  243. input {
  244. line-height: normal; }
  245. /**
  246. * It's recommended that you don't attempt to style these elements.
  247. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  248. *
  249. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  250. * 2. Remove excess padding in IE 8/9/10.
  251. */
  252. input[type="checkbox"],
  253. input[type="radio"] {
  254. box-sizing: border-box;
  255. /* 1 */
  256. padding: 0;
  257. /* 2 */ }
  258. /**
  259. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  260. * `font-size` values of the `input`, it causes the cursor style of the
  261. * decrement button to change from `default` to `text`.
  262. */
  263. input[type="number"]::-webkit-inner-spin-button,
  264. input[type="number"]::-webkit-outer-spin-button {
  265. height: auto; }
  266. /**
  267. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  268. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
  269. */
  270. input[type="search"] {
  271. -webkit-appearance: textfield;
  272. /* 1 */
  273. box-sizing: content-box;
  274. /* 2 */ }
  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.3/"; }
  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.0625em)/";
  331. width: 40.0625em; }
  332. meta.foundation-mq-medium-only {
  333. font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  334. width: 40.0625em; }
  335. meta.foundation-mq-large {
  336. font-family: "/only screen and (min-width:64.0625em)/";
  337. width: 64.0625em; }
  338. meta.foundation-mq-large-only {
  339. font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  340. width: 64.0625em; }
  341. meta.foundation-mq-xlarge {
  342. font-family: "/only screen and (min-width:90.0625em)/";
  343. width: 90.0625em; }
  344. meta.foundation-mq-xlarge-only {
  345. font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  346. width: 90.0625em; }
  347. meta.foundation-mq-xxlarge {
  348. font-family: "/only screen and (min-width:120.0625em)/";
  349. width: 120.0625em; }
  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. cursor: auto;
  365. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  366. font-style: normal;
  367. font-weight: normal;
  368. line-height: 1.5;
  369. margin: 0;
  370. padding: 0;
  371. position: relative; }
  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. .mqa-display img,
  386. .mqa-display embed,
  387. .mqa-display object {
  388. max-width: none !important; }
  389. .left {
  390. float: left !important; }
  391. .right {
  392. float: right !important; }
  393. .clearfix:before, .clearfix:after {
  394. content: " ";
  395. display: table; }
  396. .clearfix:after {
  397. clear: both; }
  398. .hide {
  399. display: none; }
  400. .invisible {
  401. visibility: hidden; }
  402. .antialiased {
  403. -webkit-font-smoothing: antialiased;
  404. -moz-osx-font-smoothing: grayscale; }
  405. img {
  406. display: inline-block;
  407. vertical-align: middle; }
  408. textarea {
  409. height: auto;
  410. min-height: 50px; }
  411. select {
  412. width: 100%; }
  413. .text-left {
  414. text-align: left !important; }
  415. .text-right {
  416. text-align: right !important; }
  417. .text-center {
  418. text-align: center !important; }
  419. .text-justify {
  420. text-align: justify !important; }
  421. @media only screen and (max-width: 40em) {
  422. .small-only-text-left {
  423. text-align: left !important; }
  424. .small-only-text-right {
  425. text-align: right !important; }
  426. .small-only-text-center {
  427. text-align: center !important; }
  428. .small-only-text-justify {
  429. text-align: justify !important; } }
  430. @media only screen {
  431. .small-text-left {
  432. text-align: left !important; }
  433. .small-text-right {
  434. text-align: right !important; }
  435. .small-text-center {
  436. text-align: center !important; }
  437. .small-text-justify {
  438. text-align: justify !important; } }
  439. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  440. .medium-only-text-left {
  441. text-align: left !important; }
  442. .medium-only-text-right {
  443. text-align: right !important; }
  444. .medium-only-text-center {
  445. text-align: center !important; }
  446. .medium-only-text-justify {
  447. text-align: justify !important; } }
  448. @media only screen and (min-width: 40.0625em) {
  449. .medium-text-left {
  450. text-align: left !important; }
  451. .medium-text-right {
  452. text-align: right !important; }
  453. .medium-text-center {
  454. text-align: center !important; }
  455. .medium-text-justify {
  456. text-align: justify !important; } }
  457. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  458. .large-only-text-left {
  459. text-align: left !important; }
  460. .large-only-text-right {
  461. text-align: right !important; }
  462. .large-only-text-center {
  463. text-align: center !important; }
  464. .large-only-text-justify {
  465. text-align: justify !important; } }
  466. @media only screen and (min-width: 64.0625em) {
  467. .large-text-left {
  468. text-align: left !important; }
  469. .large-text-right {
  470. text-align: right !important; }
  471. .large-text-center {
  472. text-align: center !important; }
  473. .large-text-justify {
  474. text-align: justify !important; } }
  475. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  476. .xlarge-only-text-left {
  477. text-align: left !important; }
  478. .xlarge-only-text-right {
  479. text-align: right !important; }
  480. .xlarge-only-text-center {
  481. text-align: center !important; }
  482. .xlarge-only-text-justify {
  483. text-align: justify !important; } }
  484. @media only screen and (min-width: 90.0625em) {
  485. .xlarge-text-left {
  486. text-align: left !important; }
  487. .xlarge-text-right {
  488. text-align: right !important; }
  489. .xlarge-text-center {
  490. text-align: center !important; }
  491. .xlarge-text-justify {
  492. text-align: justify !important; } }
  493. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  494. .xxlarge-only-text-left {
  495. text-align: left !important; }
  496. .xxlarge-only-text-right {
  497. text-align: right !important; }
  498. .xxlarge-only-text-center {
  499. text-align: center !important; }
  500. .xxlarge-only-text-justify {
  501. text-align: justify !important; } }
  502. @media only screen and (min-width: 120.0625em) {
  503. .xxlarge-text-left {
  504. text-align: left !important; }
  505. .xxlarge-text-right {
  506. text-align: right !important; }
  507. .xxlarge-text-center {
  508. text-align: center !important; }
  509. .xxlarge-text-justify {
  510. text-align: justify !important; } }
  511. /* Typography resets */
  512. div,
  513. dl,
  514. dt,
  515. dd,
  516. ul,
  517. ol,
  518. li,
  519. h1,
  520. h2,
  521. h3,
  522. h4,
  523. h5,
  524. h6,
  525. pre,
  526. form,
  527. p,
  528. blockquote,
  529. th,
  530. td {
  531. margin: 0;
  532. padding: 0; }
  533. /* Default Link Styles */
  534. a {
  535. color: #008CBA;
  536. line-height: inherit;
  537. text-decoration: none; }
  538. a:hover, a:focus {
  539. color: #0078a0; }
  540. a img {
  541. border: none; }
  542. /* Default paragraph styles */
  543. p {
  544. font-family: inherit;
  545. font-size: 1rem;
  546. font-weight: normal;
  547. line-height: 1.6;
  548. margin-bottom: 1.25rem;
  549. text-rendering: optimizeLegibility; }
  550. p.lead {
  551. font-size: 1.21875rem;
  552. line-height: 1.6; }
  553. p aside {
  554. font-size: 0.875rem;
  555. font-style: italic;
  556. line-height: 1.35; }
  557. /* Default header styles */
  558. h1, h2, h3, h4, h5, h6 {
  559. color: #222222;
  560. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  561. font-style: normal;
  562. font-weight: normal;
  563. line-height: 1.4;
  564. margin-bottom: 0.5rem;
  565. margin-top: 0.2rem;
  566. text-rendering: optimizeLegibility; }
  567. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  568. color: #6f6f6f;
  569. font-size: 60%;
  570. line-height: 0; }
  571. h1 {
  572. font-size: 2.125rem; }
  573. h2 {
  574. font-size: 1.6875rem; }
  575. h3 {
  576. font-size: 1.375rem; }
  577. h4 {
  578. font-size: 1.125rem; }
  579. h5 {
  580. font-size: 1.125rem; }
  581. h6 {
  582. font-size: 1rem; }
  583. .subheader {
  584. line-height: 1.4;
  585. color: #6f6f6f;
  586. font-weight: normal;
  587. margin-top: 0.2rem;
  588. margin-bottom: 0.5rem; }
  589. hr {
  590. border: solid #DDDDDD;
  591. border-width: 1px 0 0;
  592. clear: both;
  593. height: 0;
  594. margin: 1.25rem 0 1.1875rem; }
  595. /* Helpful Typography Defaults */
  596. em,
  597. i {
  598. font-style: italic;
  599. line-height: inherit; }
  600. strong,
  601. b {
  602. font-weight: bold;
  603. line-height: inherit; }
  604. small {
  605. font-size: 60%;
  606. line-height: inherit; }
  607. code {
  608. background-color: #f8f8f8;
  609. border-color: #dfdfdf;
  610. border-style: solid;
  611. border-width: 1px;
  612. color: #333333;
  613. font-family: Consolas, "Liberation Mono", Courier, monospace;
  614. font-weight: normal;
  615. padding: 0.125rem 0.3125rem 0.0625rem; }
  616. /* Lists */
  617. ul,
  618. ol,
  619. dl {
  620. font-family: inherit;
  621. font-size: 1rem;
  622. line-height: 1.6;
  623. list-style-position: outside;
  624. margin-bottom: 1.25rem; }
  625. ul {
  626. margin-left: 1.1rem; }
  627. /* Unordered Lists */
  628. ul li ul,
  629. ul li ol {
  630. margin-left: 1.25rem;
  631. margin-bottom: 0; }
  632. ul.square li ul, ul.circle li ul, ul.disc li ul {
  633. list-style: inherit; }
  634. ul.square {
  635. list-style-type: square;
  636. margin-left: 1.1rem; }
  637. ul.circle {
  638. list-style-type: circle;
  639. margin-left: 1.1rem; }
  640. ul.disc {
  641. list-style-type: disc;
  642. margin-left: 1.1rem; }
  643. /* Ordered Lists */
  644. ol {
  645. margin-left: 1.4rem; }
  646. ol li ul,
  647. ol li ol {
  648. margin-left: 1.25rem;
  649. margin-bottom: 0; }
  650. .no-bullet {
  651. list-style-type: none;
  652. margin-left: 0; }
  653. .no-bullet li ul,
  654. .no-bullet li ol {
  655. margin-left: 1.25rem;
  656. margin-bottom: 0;
  657. list-style: none; }
  658. /* Definition Lists */
  659. dl dt {
  660. margin-bottom: 0.3rem;
  661. font-weight: bold; }
  662. dl dd {
  663. margin-bottom: 0.75rem; }
  664. /* Abbreviations */
  665. abbr,
  666. acronym {
  667. text-transform: uppercase;
  668. font-size: 90%;
  669. color: #222;
  670. cursor: help; }
  671. abbr {
  672. text-transform: none; }
  673. abbr[title] {
  674. border-bottom: 1px dotted #DDDDDD; }
  675. /* Blockquotes */
  676. blockquote {
  677. margin: 0 0 1.25rem;
  678. padding: 0.5625rem 1.25rem 0 1.1875rem;
  679. border-left: 1px solid #DDDDDD; }
  680. blockquote cite {
  681. display: block;
  682. font-size: 0.8125rem;
  683. color: #555555; }
  684. blockquote cite:before {
  685. content: "\2014 \0020"; }
  686. blockquote cite a,
  687. blockquote cite a:visited {
  688. color: #555555; }
  689. blockquote,
  690. blockquote p {
  691. line-height: 1.6;
  692. color: #6f6f6f; }
  693. /* Microformats */
  694. .vcard {
  695. display: inline-block;
  696. margin: 0 0 1.25rem 0;
  697. border: 1px solid #DDDDDD;
  698. padding: 0.625rem 0.75rem; }
  699. .vcard li {
  700. margin: 0;
  701. display: block; }
  702. .vcard .fn {
  703. font-weight: bold;
  704. font-size: 0.9375rem; }
  705. .vevent .summary {
  706. font-weight: bold; }
  707. .vevent abbr {
  708. cursor: default;
  709. text-decoration: none;
  710. font-weight: bold;
  711. border: none;
  712. padding: 0 0.0625rem; }
  713. @media only screen and (min-width: 40.0625em) {
  714. h1, h2, h3, h4, h5, h6 {
  715. line-height: 1.4; }
  716. h1 {
  717. font-size: 2.75rem; }
  718. h2 {
  719. font-size: 2.3125rem; }
  720. h3 {
  721. font-size: 1.6875rem; }
  722. h4 {
  723. font-size: 1.4375rem; }
  724. h5 {
  725. font-size: 1.125rem; }
  726. h6 {
  727. font-size: 1rem; } }
  728. /*
  729. * Print styles.
  730. *
  731. * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
  732. * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
  733. */
  734. @media print {
  735. * {
  736. background: transparent !important;
  737. color: #000000 !important;
  738. /* Black prints faster: h5bp.com/s */
  739. box-shadow: none !important;
  740. text-shadow: none !important; }
  741. a,
  742. a:visited {
  743. text-decoration: underline; }
  744. a[href]:after {
  745. content: " (" attr(href) ")"; }
  746. abbr[title]:after {
  747. content: " (" attr(title) ")"; }
  748. .ir a:after,
  749. a[href^="javascript:"]:after,
  750. a[href^="#"]:after {
  751. content: ""; }
  752. pre,
  753. blockquote {
  754. border: 1px solid #999999;
  755. page-break-inside: avoid; }
  756. thead {
  757. display: table-header-group;
  758. /* h5bp.com/t */ }
  759. tr,
  760. img {
  761. page-break-inside: avoid; }
  762. img {
  763. max-width: 100% !important; }
  764. @page {
  765. margin: 0.34in; }
  766. p,
  767. h2,
  768. h3 {
  769. orphans: 3;
  770. widows: 3; }
  771. h2,
  772. h3 {
  773. page-break-after: avoid; } }
  774. /* Clearing Styles */
  775. .clearing-thumbs, [data-clearing] {
  776. list-style: none;
  777. margin-left: 0;
  778. margin-bottom: 0; }
  779. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  780. content: " ";
  781. display: table; }
  782. .clearing-thumbs:after, [data-clearing]:after {
  783. clear: both; }
  784. .clearing-thumbs li, [data-clearing] li {
  785. float: left;
  786. margin-right: 10px; }
  787. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  788. margin-right: 0; }
  789. .clearing-blackout {
  790. background: #333333;
  791. height: 100%;
  792. position: fixed;
  793. top: 0;
  794. width: 100%;
  795. z-index: 998;
  796. left: 0; }
  797. .clearing-blackout .clearing-close {
  798. display: block; }
  799. .clearing-container {
  800. height: 100%;
  801. margin: 0;
  802. overflow: hidden;
  803. position: relative;
  804. z-index: 998; }
  805. .clearing-touch-label {
  806. color: #AAAAAA;
  807. font-size: .6em;
  808. left: 50%;
  809. position: absolute;
  810. top: 50%; }
  811. .visible-img {
  812. height: 95%;
  813. position: relative; }
  814. .visible-img img {
  815. position: absolute;
  816. left: 50%;
  817. top: 50%;
  818. transform: translateY(-50%) translateX(-50%);
  819. max-height: 100%;
  820. max-width: 100%; }
  821. .clearing-caption {
  822. background: #333333;
  823. bottom: 0;
  824. color: #CCCCCC;
  825. font-size: 0.875em;
  826. line-height: 1.3;
  827. margin-bottom: 0;
  828. padding: 10px 30px 20px;
  829. position: absolute;
  830. text-align: center;
  831. width: 100%;
  832. left: 0; }
  833. .clearing-close {
  834. color: #CCCCCC;
  835. display: none;
  836. font-size: 30px;
  837. line-height: 1;
  838. padding-left: 20px;
  839. padding-top: 10px;
  840. z-index: 999; }
  841. .clearing-close:hover, .clearing-close:focus {
  842. color: #CCCCCC; }
  843. .clearing-assembled .clearing-container {
  844. height: 100%; }
  845. .clearing-assembled .clearing-container .carousel > ul {
  846. display: none; }
  847. .clearing-feature li {
  848. display: none; }
  849. .clearing-feature li.clearing-featured-img {
  850. display: block; }
  851. @media only screen and (min-width: 40.0625em) {
  852. .clearing-main-prev,
  853. .clearing-main-next {
  854. height: 100%;
  855. position: absolute;
  856. top: 0;
  857. width: 40px; }
  858. .clearing-main-prev > span,
  859. .clearing-main-next > span {
  860. border: solid 12px;
  861. display: block;
  862. height: 0;
  863. position: absolute;
  864. top: 50%;
  865. width: 0; }
  866. .clearing-main-prev > span:hover,
  867. .clearing-main-next > span:hover {
  868. opacity: .8; }
  869. .clearing-main-prev {
  870. left: 0; }
  871. .clearing-main-prev > span {
  872. left: 5px;
  873. border-color: transparent;
  874. border-right-color: #CCCCCC; }
  875. .clearing-main-next {
  876. right: 0; }
  877. .clearing-main-next > span {
  878. border-color: transparent;
  879. border-left-color: #CCCCCC; }
  880. .clearing-main-prev.disabled,
  881. .clearing-main-next.disabled {
  882. opacity: .3; }
  883. .clearing-assembled .clearing-container .carousel {
  884. background: rgba(51, 51, 51, 0.8);
  885. height: 120px;
  886. margin-top: 10px;
  887. text-align: center; }
  888. .clearing-assembled .clearing-container .carousel > ul {
  889. display: inline-block;
  890. z-index: 999;
  891. height: 100%;
  892. position: relative;
  893. float: none; }
  894. .clearing-assembled .clearing-container .carousel > ul li {
  895. clear: none;
  896. cursor: pointer;
  897. display: block;
  898. float: left;
  899. margin-right: 0;
  900. min-height: inherit;
  901. opacity: .4;
  902. overflow: hidden;
  903. padding: 0;
  904. position: relative;
  905. width: 120px; }
  906. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  907. height: 100%;
  908. max-width: none; }
  909. .clearing-assembled .clearing-container .carousel > ul li a.th {
  910. border: none;
  911. box-shadow: none;
  912. display: block; }
  913. .clearing-assembled .clearing-container .carousel > ul li img {
  914. cursor: pointer !important;
  915. width: 100% !important; }
  916. .clearing-assembled .clearing-container .carousel > ul li.visible {
  917. opacity: 1; }
  918. .clearing-assembled .clearing-container .carousel > ul li:hover {
  919. opacity: .8; }
  920. .clearing-assembled .clearing-container .visible-img {
  921. background: #333333;
  922. height: 85%;
  923. overflow: hidden; }
  924. .clearing-close {
  925. padding-left: 0;
  926. padding-top: 0;
  927. position: absolute;
  928. top: 10px;
  929. right: 20px; } }
  930. .inline-list {
  931. list-style: none;
  932. margin-top: 0;
  933. margin-bottom: 1.0625rem;
  934. margin-left: -1.375rem;
  935. margin-right: 0;
  936. overflow: hidden;
  937. padding: 0; }
  938. .inline-list > li {
  939. display: block;
  940. float: left;
  941. list-style: none;
  942. margin-left: 1.375rem; }
  943. .inline-list > li > * {
  944. display: block; }
  945. button, .button {
  946. -webkit-appearance: none;
  947. -moz-appearance: none;
  948. border-radius: 0;
  949. border-style: solid;
  950. border-width: 0;
  951. cursor: pointer;
  952. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  953. font-weight: normal;
  954. line-height: normal;
  955. margin: 0 0 1.25rem;
  956. position: relative;
  957. text-align: center;
  958. text-decoration: none;
  959. display: inline-block;
  960. padding: 1rem 2rem 1.0625rem 2rem;
  961. font-size: 1rem;
  962. background-color: #008CBA;
  963. border-color: #007095;
  964. color: #FFFFFF;
  965. transition: background-color 300ms ease-out; }
  966. button:hover, button:focus, .button:hover, .button:focus {
  967. background-color: #007095; }
  968. button:hover, button:focus, .button:hover, .button:focus {
  969. color: #FFFFFF; }
  970. button.secondary, .button.secondary {
  971. background-color: #e7e7e7;
  972. border-color: #b9b9b9;
  973. color: #333333; }
  974. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  975. background-color: #b9b9b9; }
  976. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  977. color: #333333; }
  978. button.success, .button.success {
  979. background-color: #43AC6A;
  980. border-color: #368a55;
  981. color: #FFFFFF; }
  982. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  983. background-color: #368a55; }
  984. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  985. color: #FFFFFF; }
  986. button.alert, .button.alert {
  987. background-color: #f04124;
  988. border-color: #cf2a0e;
  989. color: #FFFFFF; }
  990. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  991. background-color: #cf2a0e; }
  992. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  993. color: #FFFFFF; }
  994. button.warning, .button.warning {
  995. background-color: #f08a24;
  996. border-color: #cf6e0e;
  997. color: #FFFFFF; }
  998. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  999. background-color: #cf6e0e; }
  1000. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  1001. color: #FFFFFF; }
  1002. button.info, .button.info {
  1003. background-color: #a0d3e8;
  1004. border-color: #61b6d9;
  1005. color: #333333; }
  1006. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1007. background-color: #61b6d9; }
  1008. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1009. color: #FFFFFF; }
  1010. button.large, .button.large {
  1011. padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  1012. font-size: 1.25rem; }
  1013. button.small, .button.small {
  1014. padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  1015. font-size: 0.8125rem; }
  1016. button.tiny, .button.tiny {
  1017. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  1018. font-size: 0.6875rem; }
  1019. button.expand, .button.expand {
  1020. padding: 1rem 2rem 1.0625rem 2rem;
  1021. font-size: 1rem;
  1022. padding-bottom: 1.0625rem;
  1023. padding-top: 1rem;
  1024. padding-left: 1rem;
  1025. padding-right: 1rem;
  1026. width: 100%; }
  1027. button.left-align, .button.left-align {
  1028. text-align: left;
  1029. text-indent: 0.75rem; }
  1030. button.right-align, .button.right-align {
  1031. text-align: right;
  1032. padding-right: 0.75rem; }
  1033. button.radius, .button.radius {
  1034. border-radius: 3px; }
  1035. button.round, .button.round {
  1036. border-radius: 1000px; }
  1037. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  1038. background-color: #008CBA;
  1039. border-color: #007095;
  1040. color: #FFFFFF;
  1041. box-shadow: none;
  1042. cursor: default;
  1043. opacity: 0.7; }
  1044. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1045. background-color: #007095; }
  1046. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1047. color: #FFFFFF; }
  1048. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1049. background-color: #008CBA; }
  1050. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  1051. background-color: #e7e7e7;
  1052. border-color: #b9b9b9;
  1053. color: #333333;
  1054. box-shadow: none;
  1055. cursor: default;
  1056. opacity: 0.7; }
  1057. 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 {
  1058. background-color: #b9b9b9; }
  1059. 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 {
  1060. color: #333333; }
  1061. 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 {
  1062. background-color: #e7e7e7; }
  1063. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  1064. background-color: #43AC6A;
  1065. border-color: #368a55;
  1066. color: #FFFFFF;
  1067. box-shadow: none;
  1068. cursor: default;
  1069. opacity: 0.7; }
  1070. 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 {
  1071. background-color: #368a55; }
  1072. 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 {
  1073. color: #FFFFFF; }
  1074. 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 {
  1075. background-color: #43AC6A; }
  1076. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  1077. background-color: #f04124;
  1078. border-color: #cf2a0e;
  1079. color: #FFFFFF;
  1080. box-shadow: none;
  1081. cursor: default;
  1082. opacity: 0.7; }
  1083. 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 {
  1084. background-color: #cf2a0e; }
  1085. 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 {
  1086. color: #FFFFFF; }
  1087. 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 {
  1088. background-color: #f04124; }
  1089. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  1090. background-color: #f08a24;
  1091. border-color: #cf6e0e;
  1092. color: #FFFFFF;
  1093. box-shadow: none;
  1094. cursor: default;
  1095. opacity: 0.7; }
  1096. 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 {
  1097. background-color: #cf6e0e; }
  1098. 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 {
  1099. color: #FFFFFF; }
  1100. 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 {
  1101. background-color: #f08a24; }
  1102. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  1103. background-color: #a0d3e8;
  1104. border-color: #61b6d9;
  1105. color: #333333;
  1106. box-shadow: none;
  1107. cursor: default;
  1108. opacity: 0.7; }
  1109. 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 {
  1110. background-color: #61b6d9; }
  1111. 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 {
  1112. color: #FFFFFF; }
  1113. 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 {
  1114. background-color: #a0d3e8; }
  1115. button::-moz-focus-inner {
  1116. border: 0;
  1117. padding: 0; }
  1118. @media only screen and (min-width: 40.0625em) {
  1119. button, .button {
  1120. display: inline-block; } }
  1121. .button-group {
  1122. list-style: none;
  1123. margin: 0;
  1124. left: 0; }
  1125. .button-group:before, .button-group:after {
  1126. content: " ";
  1127. display: table; }
  1128. .button-group:after {
  1129. clear: both; }
  1130. .button-group.even-2 li {
  1131. display: inline-block;
  1132. margin: 0 -2px;
  1133. width: 50%; }
  1134. .button-group.even-2 li > button, .button-group.even-2 li .button {
  1135. border-left: 1px solid;
  1136. border-color: rgba(255, 255, 255, 0.5); }
  1137. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  1138. border-left: 0; }
  1139. .button-group.even-2 li button, .button-group.even-2 li .button {
  1140. width: 100%; }
  1141. .button-group.even-3 li {
  1142. display: inline-block;
  1143. margin: 0 -2px;
  1144. width: 33.33333%; }
  1145. .button-group.even-3 li > button, .button-group.even-3 li .button {
  1146. border-left: 1px solid;
  1147. border-color: rgba(255, 255, 255, 0.5); }
  1148. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  1149. border-left: 0; }
  1150. .button-group.even-3 li button, .button-group.even-3 li .button {
  1151. width: 100%; }
  1152. .button-group.even-4 li {
  1153. display: inline-block;
  1154. margin: 0 -2px;
  1155. width: 25%; }
  1156. .button-group.even-4 li > button, .button-group.even-4 li .button {
  1157. border-left: 1px solid;
  1158. border-color: rgba(255, 255, 255, 0.5); }
  1159. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  1160. border-left: 0; }
  1161. .button-group.even-4 li button, .button-group.even-4 li .button {
  1162. width: 100%; }
  1163. .button-group.even-5 li {
  1164. display: inline-block;
  1165. margin: 0 -2px;
  1166. width: 20%; }
  1167. .button-group.even-5 li > button, .button-group.even-5 li .button {
  1168. border-left: 1px solid;
  1169. border-color: rgba(255, 255, 255, 0.5); }
  1170. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  1171. border-left: 0; }
  1172. .button-group.even-5 li button, .button-group.even-5 li .button {
  1173. width: 100%; }
  1174. .button-group.even-6 li {
  1175. display: inline-block;
  1176. margin: 0 -2px;
  1177. width: 16.66667%; }
  1178. .button-group.even-6 li > button, .button-group.even-6 li .button {
  1179. border-left: 1px solid;
  1180. border-color: rgba(255, 255, 255, 0.5); }
  1181. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  1182. border-left: 0; }
  1183. .button-group.even-6 li button, .button-group.even-6 li .button {
  1184. width: 100%; }
  1185. .button-group.even-7 li {
  1186. display: inline-block;
  1187. margin: 0 -2px;
  1188. width: 14.28571%; }
  1189. .button-group.even-7 li > button, .button-group.even-7 li .button {
  1190. border-left: 1px solid;
  1191. border-color: rgba(255, 255, 255, 0.5); }
  1192. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  1193. border-left: 0; }
  1194. .button-group.even-7 li button, .button-group.even-7 li .button {
  1195. width: 100%; }
  1196. .button-group.even-8 li {
  1197. display: inline-block;
  1198. margin: 0 -2px;
  1199. width: 12.5%; }
  1200. .button-group.even-8 li > button, .button-group.even-8 li .button {
  1201. border-left: 1px solid;
  1202. border-color: rgba(255, 255, 255, 0.5); }
  1203. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  1204. border-left: 0; }
  1205. .button-group.even-8 li button, .button-group.even-8 li .button {
  1206. width: 100%; }
  1207. .button-group > li {
  1208. display: inline-block;
  1209. margin: 0 -2px; }
  1210. .button-group > li > button, .button-group > li .button {
  1211. border-left: 1px solid;
  1212. border-color: rgba(255, 255, 255, 0.5); }
  1213. .button-group > li:first-child button, .button-group > li:first-child .button {
  1214. border-left: 0; }
  1215. .button-group.stack > li {
  1216. display: block;
  1217. margin: 0;
  1218. float: none; }
  1219. .button-group.stack > li > button, .button-group.stack > li .button {
  1220. border-left: 1px solid;
  1221. border-color: rgba(255, 255, 255, 0.5); }
  1222. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1223. border-left: 0; }
  1224. .button-group.stack > li > button, .button-group.stack > li .button {
  1225. border-color: rgba(255, 255, 255, 0.5);
  1226. border-left-width: 0;
  1227. border-top: 1px solid;
  1228. display: block;
  1229. margin: 0; }
  1230. .button-group.stack > li > button {
  1231. width: 100%; }
  1232. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1233. border-top: 0; }
  1234. .button-group.stack-for-small > li {
  1235. display: inline-block;
  1236. margin: 0 -2px; }
  1237. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1238. border-left: 1px solid;
  1239. border-color: rgba(255, 255, 255, 0.5); }
  1240. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1241. border-left: 0; }
  1242. @media only screen and (max-width: 40em) {
  1243. .button-group.stack-for-small > li {
  1244. display: block;
  1245. margin: 0;
  1246. width: 100%; }
  1247. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1248. border-left: 1px solid;
  1249. border-color: rgba(255, 255, 255, 0.5); }
  1250. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1251. border-left: 0; }
  1252. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1253. border-color: rgba(255, 255, 255, 0.5);
  1254. border-left-width: 0;
  1255. border-top: 1px solid;
  1256. display: block;
  1257. margin: 0; }
  1258. .button-group.stack-for-small > li > button {
  1259. width: 100%; }
  1260. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1261. border-top: 0; } }
  1262. .button-group.radius > * {
  1263. display: inline-block;
  1264. margin: 0 -2px; }
  1265. .button-group.radius > * > button, .button-group.radius > * .button {
  1266. border-left: 1px solid;
  1267. border-color: rgba(255, 255, 255, 0.5); }
  1268. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  1269. border-left: 0; }
  1270. .button-group.radius > *,
  1271. .button-group.radius > * > a,
  1272. .button-group.radius > * > button,
  1273. .button-group.radius > * > .button {
  1274. border-radius: 0; }
  1275. .button-group.radius > *:first-child,
  1276. .button-group.radius > *:first-child > a,
  1277. .button-group.radius > *:first-child > button,
  1278. .button-group.radius > *:first-child > .button {
  1279. -webkit-border-bottom-left-radius: 3px;
  1280. -webkit-border-top-left-radius: 3px;
  1281. border-bottom-left-radius: 3px;
  1282. border-top-left-radius: 3px; }
  1283. .button-group.radius > *:last-child,
  1284. .button-group.radius > *:last-child > a,
  1285. .button-group.radius > *:last-child > button,
  1286. .button-group.radius > *:last-child > .button {
  1287. -webkit-border-bottom-right-radius: 3px;
  1288. -webkit-border-top-right-radius: 3px;
  1289. border-bottom-right-radius: 3px;
  1290. border-top-right-radius: 3px; }
  1291. .button-group.radius.stack > * {
  1292. display: block;
  1293. margin: 0; }
  1294. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1295. border-left: 1px solid;
  1296. border-color: rgba(255, 255, 255, 0.5); }
  1297. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1298. border-left: 0; }
  1299. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1300. border-color: rgba(255, 255, 255, 0.5);
  1301. border-left-width: 0;
  1302. border-top: 1px solid;
  1303. display: block;
  1304. margin: 0; }
  1305. .button-group.radius.stack > * > button {
  1306. width: 100%; }
  1307. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1308. border-top: 0; }
  1309. .button-group.radius.stack > *,
  1310. .button-group.radius.stack > * > a,
  1311. .button-group.radius.stack > * > button,
  1312. .button-group.radius.stack > * > .button {
  1313. border-radius: 0; }
  1314. .button-group.radius.stack > *:first-child,
  1315. .button-group.radius.stack > *:first-child > a,
  1316. .button-group.radius.stack > *:first-child > button,
  1317. .button-group.radius.stack > *:first-child > .button {
  1318. -webkit-top-left-radius: 3px;
  1319. -webkit-top-right-radius: 3px;
  1320. border-top-left-radius: 3px;
  1321. border-top-right-radius: 3px; }
  1322. .button-group.radius.stack > *:last-child,
  1323. .button-group.radius.stack > *:last-child > a,
  1324. .button-group.radius.stack > *:last-child > button,
  1325. .button-group.radius.stack > *:last-child > .button {
  1326. -webkit-bottom-left-radius: 3px;
  1327. -webkit-bottom-right-radius: 3px;
  1328. border-bottom-left-radius: 3px;
  1329. border-bottom-right-radius: 3px; }
  1330. @media only screen and (min-width: 40.0625em) {
  1331. .button-group.radius.stack-for-small > * {
  1332. display: inline-block;
  1333. margin: 0 -2px; }
  1334. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1335. border-left: 1px solid;
  1336. border-color: rgba(255, 255, 255, 0.5); }
  1337. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1338. border-left: 0; }
  1339. .button-group.radius.stack-for-small > *,
  1340. .button-group.radius.stack-for-small > * > a,
  1341. .button-group.radius.stack-for-small > * > button,
  1342. .button-group.radius.stack-for-small > * > .button {
  1343. border-radius: 0; }
  1344. .button-group.radius.stack-for-small > *:first-child,
  1345. .button-group.radius.stack-for-small > *:first-child > a,
  1346. .button-group.radius.stack-for-small > *:first-child > button,
  1347. .button-group.radius.stack-for-small > *:first-child > .button {
  1348. -webkit-border-bottom-left-radius: 3px;
  1349. -webkit-border-top-left-radius: 3px;
  1350. border-bottom-left-radius: 3px;
  1351. border-top-left-radius: 3px; }
  1352. .button-group.radius.stack-for-small > *:last-child,
  1353. .button-group.radius.stack-for-small > *:last-child > a,
  1354. .button-group.radius.stack-for-small > *:last-child > button,
  1355. .button-group.radius.stack-for-small > *:last-child > .button {
  1356. -webkit-border-bottom-right-radius: 3px;
  1357. -webkit-border-top-right-radius: 3px;
  1358. border-bottom-right-radius: 3px;
  1359. border-top-right-radius: 3px; } }
  1360. @media only screen and (max-width: 40em) {
  1361. .button-group.radius.stack-for-small > * {
  1362. display: block;
  1363. margin: 0; }
  1364. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1365. border-left: 1px solid;
  1366. border-color: rgba(255, 255, 255, 0.5); }
  1367. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1368. border-left: 0; }
  1369. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1370. border-color: rgba(255, 255, 255, 0.5);
  1371. border-left-width: 0;
  1372. border-top: 1px solid;
  1373. display: block;
  1374. margin: 0; }
  1375. .button-group.radius.stack-for-small > * > button {
  1376. width: 100%; }
  1377. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1378. border-top: 0; }
  1379. .button-group.radius.stack-for-small > *,
  1380. .button-group.radius.stack-for-small > * > a,
  1381. .button-group.radius.stack-for-small > * > button,
  1382. .button-group.radius.stack-for-small > * > .button {
  1383. border-radius: 0; }
  1384. .button-group.radius.stack-for-small > *:first-child,
  1385. .button-group.radius.stack-for-small > *:first-child > a,
  1386. .button-group.radius.stack-for-small > *:first-child > button,
  1387. .button-group.radius.stack-for-small > *:first-child > .button {
  1388. -webkit-top-left-radius: 3px;
  1389. -webkit-top-right-radius: 3px;
  1390. border-top-left-radius: 3px;
  1391. border-top-right-radius: 3px; }
  1392. .button-group.radius.stack-for-small > *:last-child,
  1393. .button-group.radius.stack-for-small > *:last-child > a,
  1394. .button-group.radius.stack-for-small > *:last-child > button,
  1395. .button-group.radius.stack-for-small > *:last-child > .button {
  1396. -webkit-bottom-left-radius: 3px;
  1397. -webkit-bottom-right-radius: 3px;
  1398. border-bottom-left-radius: 3px;
  1399. border-bottom-right-radius: 3px; } }
  1400. .button-group.round > * {
  1401. display: inline-block;
  1402. margin: 0 -2px; }
  1403. .button-group.round > * > button, .button-group.round > * .button {
  1404. border-left: 1px solid;
  1405. border-color: rgba(255, 255, 255, 0.5); }
  1406. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  1407. border-left: 0; }
  1408. .button-group.round > *,
  1409. .button-group.round > * > a,
  1410. .button-group.round > * > button,
  1411. .button-group.round > * > .button {
  1412. border-radius: 0; }
  1413. .button-group.round > *:first-child,
  1414. .button-group.round > *:first-child > a,
  1415. .button-group.round > *:first-child > button,
  1416. .button-group.round > *:first-child > .button {
  1417. -webkit-border-bottom-left-radius: 1000px;
  1418. -webkit-border-top-left-radius: 1000px;
  1419. border-bottom-left-radius: 1000px;
  1420. border-top-left-radius: 1000px; }
  1421. .button-group.round > *:last-child,
  1422. .button-group.round > *:last-child > a,
  1423. .button-group.round > *:last-child > button,
  1424. .button-group.round > *:last-child > .button {
  1425. -webkit-border-bottom-right-radius: 1000px;
  1426. -webkit-border-top-right-radius: 1000px;
  1427. border-bottom-right-radius: 1000px;
  1428. border-top-right-radius: 1000px; }
  1429. .button-group.round.stack > * {
  1430. display: block;
  1431. margin: 0; }
  1432. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1433. border-left: 1px solid;
  1434. border-color: rgba(255, 255, 255, 0.5); }
  1435. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1436. border-left: 0; }
  1437. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1438. border-color: rgba(255, 255, 255, 0.5);
  1439. border-left-width: 0;
  1440. border-top: 1px solid;
  1441. display: block;
  1442. margin: 0; }
  1443. .button-group.round.stack > * > button {
  1444. width: 100%; }
  1445. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1446. border-top: 0; }
  1447. .button-group.round.stack > *,
  1448. .button-group.round.stack > * > a,
  1449. .button-group.round.stack > * > button,
  1450. .button-group.round.stack > * > .button {
  1451. border-radius: 0; }
  1452. .button-group.round.stack > *:first-child,
  1453. .button-group.round.stack > *:first-child > a,
  1454. .button-group.round.stack > *:first-child > button,
  1455. .button-group.round.stack > *:first-child > .button {
  1456. -webkit-top-left-radius: 1rem;
  1457. -webkit-top-right-radius: 1rem;
  1458. border-top-left-radius: 1rem;
  1459. border-top-right-radius: 1rem; }
  1460. .button-group.round.stack > *:last-child,
  1461. .button-group.round.stack > *:last-child > a,
  1462. .button-group.round.stack > *:last-child > button,
  1463. .button-group.round.stack > *:last-child > .button {
  1464. -webkit-bottom-left-radius: 1rem;
  1465. -webkit-bottom-right-radius: 1rem;
  1466. border-bottom-left-radius: 1rem;
  1467. border-bottom-right-radius: 1rem; }
  1468. @media only screen and (min-width: 40.0625em) {
  1469. .button-group.round.stack-for-small > * {
  1470. display: inline-block;
  1471. margin: 0 -2px; }
  1472. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1473. border-left: 1px solid;
  1474. border-color: rgba(255, 255, 255, 0.5); }
  1475. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1476. border-left: 0; }
  1477. .button-group.round.stack-for-small > *,
  1478. .button-group.round.stack-for-small > * > a,
  1479. .button-group.round.stack-for-small > * > button,
  1480. .button-group.round.stack-for-small > * > .button {
  1481. border-radius: 0; }
  1482. .button-group.round.stack-for-small > *:first-child,
  1483. .button-group.round.stack-for-small > *:first-child > a,
  1484. .button-group.round.stack-for-small > *:first-child > button,
  1485. .button-group.round.stack-for-small > *:first-child > .button {
  1486. -webkit-border-bottom-left-radius: 1000px;
  1487. -webkit-border-top-left-radius: 1000px;
  1488. border-bottom-left-radius: 1000px;
  1489. border-top-left-radius: 1000px; }
  1490. .button-group.round.stack-for-small > *:last-child,
  1491. .button-group.round.stack-for-small > *:last-child > a,
  1492. .button-group.round.stack-for-small > *:last-child > button,
  1493. .button-group.round.stack-for-small > *:last-child > .button {
  1494. -webkit-border-bottom-right-radius: 1000px;
  1495. -webkit-border-top-right-radius: 1000px;
  1496. border-bottom-right-radius: 1000px;
  1497. border-top-right-radius: 1000px; } }
  1498. @media only screen and (max-width: 40em) {
  1499. .button-group.round.stack-for-small > * {
  1500. display: block;
  1501. margin: 0; }
  1502. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1503. border-left: 1px solid;
  1504. border-color: rgba(255, 255, 255, 0.5); }
  1505. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1506. border-left: 0; }
  1507. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1508. border-color: rgba(255, 255, 255, 0.5);
  1509. border-left-width: 0;
  1510. border-top: 1px solid;
  1511. display: block;
  1512. margin: 0; }
  1513. .button-group.round.stack-for-small > * > button {
  1514. width: 100%; }
  1515. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1516. border-top: 0; }
  1517. .button-group.round.stack-for-small > *,
  1518. .button-group.round.stack-for-small > * > a,
  1519. .button-group.round.stack-for-small > * > button,
  1520. .button-group.round.stack-for-small > * > .button {
  1521. border-radius: 0; }
  1522. .button-group.round.stack-for-small > *:first-child,
  1523. .button-group.round.stack-for-small > *:first-child > a,
  1524. .button-group.round.stack-for-small > *:first-child > button,
  1525. .button-group.round.stack-for-small > *:first-child > .button {
  1526. -webkit-top-left-radius: 1rem;
  1527. -webkit-top-right-radius: 1rem;
  1528. border-top-left-radius: 1rem;
  1529. border-top-right-radius: 1rem; }
  1530. .button-group.round.stack-for-small > *:last-child,
  1531. .button-group.round.stack-for-small > *:last-child > a,
  1532. .button-group.round.stack-for-small > *:last-child > button,
  1533. .button-group.round.stack-for-small > *:last-child > .button {
  1534. -webkit-bottom-left-radius: 1rem;
  1535. -webkit-bottom-right-radius: 1rem;
  1536. border-bottom-left-radius: 1rem;
  1537. border-bottom-right-radius: 1rem; } }
  1538. .button-bar:before, .button-bar:after {
  1539. content: " ";
  1540. display: table; }
  1541. .button-bar:after {
  1542. clear: both; }
  1543. .button-bar .button-group {
  1544. float: left;
  1545. margin-right: 0.625rem; }
  1546. .button-bar .button-group div {
  1547. overflow: hidden; }
  1548. .row {
  1549. margin: 0 auto;
  1550. max-width: 62.5rem;
  1551. width: 100%; }
  1552. .row:before, .row:after {
  1553. content: " ";
  1554. display: table; }
  1555. .row:after {
  1556. clear: both; }
  1557. .row.collapse > .column,
  1558. .row.collapse > .columns {
  1559. padding-left: 0;
  1560. padding-right: 0; }
  1561. .row.collapse .row {
  1562. margin-left: 0;
  1563. margin-right: 0; }
  1564. .row .row {
  1565. margin: 0 -0.9375rem;
  1566. max-width: none;
  1567. width: auto; }
  1568. .row .row:before, .row .row:after {
  1569. content: " ";
  1570. display: table; }
  1571. .row .row:after {
  1572. clear: both; }
  1573. .row .row.collapse {
  1574. margin: 0;
  1575. max-width: none;
  1576. width: auto; }
  1577. .row .row.collapse:before, .row .row.collapse:after {
  1578. content: " ";
  1579. display: table; }
  1580. .row .row.collapse:after {
  1581. clear: both; }
  1582. .column,
  1583. .columns {
  1584. padding-left: 0.9375rem;
  1585. padding-right: 0.9375rem;
  1586. width: 100%;
  1587. float: left; }
  1588. .column + .column:last-child,
  1589. .columns + .column:last-child, .column +
  1590. .columns:last-child,
  1591. .columns +
  1592. .columns:last-child {
  1593. float: right; }
  1594. .column + .column.end,
  1595. .columns + .column.end, .column +
  1596. .columns.end,
  1597. .columns +
  1598. .columns.end {
  1599. float: left; }
  1600. @media only screen {
  1601. .small-push-0 {
  1602. position: relative;
  1603. left: 0;
  1604. right: auto; }
  1605. .small-pull-0 {
  1606. position: relative;
  1607. right: 0;
  1608. left: auto; }
  1609. .small-push-1 {
  1610. position: relative;
  1611. left: 8.33333%;
  1612. right: auto; }
  1613. .small-pull-1 {
  1614. position: relative;
  1615. right: 8.33333%;
  1616. left: auto; }
  1617. .small-push-2 {
  1618. position: relative;
  1619. left: 16.66667%;
  1620. right: auto; }
  1621. .small-pull-2 {
  1622. position: relative;
  1623. right: 16.66667%;
  1624. left: auto; }
  1625. .small-push-3 {
  1626. position: relative;
  1627. left: 25%;
  1628. right: auto; }
  1629. .small-pull-3 {
  1630. position: relative;
  1631. right: 25%;
  1632. left: auto; }
  1633. .small-push-4 {
  1634. position: relative;
  1635. left: 33.33333%;
  1636. right: auto; }
  1637. .small-pull-4 {
  1638. position: relative;
  1639. right: 33.33333%;
  1640. left: auto; }
  1641. .small-push-5 {
  1642. position: relative;
  1643. left: 41.66667%;
  1644. right: auto; }
  1645. .small-pull-5 {
  1646. position: relative;
  1647. right: 41.66667%;
  1648. left: auto; }
  1649. .small-push-6 {
  1650. position: relative;
  1651. left: 50%;
  1652. right: auto; }
  1653. .small-pull-6 {
  1654. position: relative;
  1655. right: 50%;
  1656. left: auto; }
  1657. .small-push-7 {
  1658. position: relative;
  1659. left: 58.33333%;
  1660. right: auto; }
  1661. .small-pull-7 {
  1662. position: relative;
  1663. right: 58.33333%;
  1664. left: auto; }
  1665. .small-push-8 {
  1666. position: relative;
  1667. left: 66.66667%;
  1668. right: auto; }
  1669. .small-pull-8 {
  1670. position: relative;
  1671. right: 66.66667%;
  1672. left: auto; }
  1673. .small-push-9 {
  1674. position: relative;
  1675. left: 75%;
  1676. right: auto; }
  1677. .small-pull-9 {
  1678. position: relative;
  1679. right: 75%;
  1680. left: auto; }
  1681. .small-push-10 {
  1682. position: relative;
  1683. left: 83.33333%;
  1684. right: auto; }
  1685. .small-pull-10 {
  1686. position: relative;
  1687. right: 83.33333%;
  1688. left: auto; }
  1689. .small-push-11 {
  1690. position: relative;
  1691. left: 91.66667%;
  1692. right: auto; }
  1693. .small-pull-11 {
  1694. position: relative;
  1695. right: 91.66667%;
  1696. left: auto; }
  1697. .column,
  1698. .columns {
  1699. position: relative;
  1700. padding-left: 0.9375rem;
  1701. padding-right: 0.9375rem;
  1702. float: left; }
  1703. .small-1 {
  1704. width: 8.33333%; }
  1705. .small-2 {
  1706. width: 16.66667%; }
  1707. .small-3 {
  1708. width: 25%; }
  1709. .small-4 {
  1710. width: 33.33333%; }
  1711. .small-5 {
  1712. width: 41.66667%; }
  1713. .small-6 {
  1714. width: 50%; }
  1715. .small-7 {
  1716. width: 58.33333%; }
  1717. .small-8 {
  1718. width: 66.66667%; }
  1719. .small-9 {
  1720. width: 75%; }
  1721. .small-10 {
  1722. width: 83.33333%; }
  1723. .small-11 {
  1724. width: 91.66667%; }
  1725. .small-12 {
  1726. width: 100%; }
  1727. .small-offset-0 {
  1728. margin-left: 0 !important; }
  1729. .small-offset-1 {
  1730. margin-left: 8.33333% !important; }
  1731. .small-offset-2 {
  1732. margin-left: 16.66667% !important; }
  1733. .small-offset-3 {
  1734. margin-left: 25% !important; }
  1735. .small-offset-4 {
  1736. margin-left: 33.33333% !important; }
  1737. .small-offset-5 {
  1738. margin-left: 41.66667% !important; }
  1739. .small-offset-6 {
  1740. margin-left: 50% !important; }
  1741. .small-offset-7 {
  1742. margin-left: 58.33333% !important; }
  1743. .small-offset-8 {
  1744. margin-left: 66.66667% !important; }
  1745. .small-offset-9 {
  1746. margin-left: 75% !important; }
  1747. .small-offset-10 {
  1748. margin-left: 83.33333% !important; }
  1749. .small-offset-11 {
  1750. margin-left: 91.66667% !important; }
  1751. .small-reset-order {
  1752. float: left;
  1753. left: auto;
  1754. margin-left: 0;
  1755. margin-right: 0;
  1756. right: auto; }
  1757. .column.small-centered,
  1758. .columns.small-centered {
  1759. margin-left: auto;
  1760. margin-right: auto;
  1761. float: none; }
  1762. .column.small-uncentered,
  1763. .columns.small-uncentered {
  1764. float: left;
  1765. margin-left: 0;
  1766. margin-right: 0; }
  1767. .column.small-centered:last-child,
  1768. .columns.small-centered:last-child {
  1769. float: none; }
  1770. .column.small-uncentered:last-child,
  1771. .columns.small-uncentered:last-child {
  1772. float: left; }
  1773. .column.small-uncentered.opposite,
  1774. .columns.small-uncentered.opposite {
  1775. float: right; }
  1776. .row.small-collapse > .column,
  1777. .row.small-collapse > .columns {
  1778. padding-left: 0;
  1779. padding-right: 0; }
  1780. .row.small-collapse .row {
  1781. margin-left: 0;
  1782. margin-right: 0; }
  1783. .row.small-uncollapse > .column,
  1784. .row.small-uncollapse > .columns {
  1785. padding-left: 0.9375rem;
  1786. padding-right: 0.9375rem;
  1787. float: left; } }
  1788. @media only screen and (min-width: 40.0625em) {
  1789. .medium-push-0 {
  1790. position: relative;
  1791. left: 0;
  1792. right: auto; }
  1793. .medium-pull-0 {
  1794. position: relative;
  1795. right: 0;
  1796. left: auto; }
  1797. .medium-push-1 {
  1798. position: relative;
  1799. left: 8.33333%;
  1800. right: auto; }
  1801. .medium-pull-1 {
  1802. position: relative;
  1803. right: 8.33333%;
  1804. left: auto; }
  1805. .medium-push-2 {
  1806. position: relative;
  1807. left: 16.66667%;
  1808. right: auto; }
  1809. .medium-pull-2 {
  1810. position: relative;
  1811. right: 16.66667%;
  1812. left: auto; }
  1813. .medium-push-3 {
  1814. position: relative;
  1815. left: 25%;
  1816. right: auto; }
  1817. .medium-pull-3 {
  1818. position: relative;
  1819. right: 25%;
  1820. left: auto; }
  1821. .medium-push-4 {
  1822. position: relative;
  1823. left: 33.33333%;
  1824. right: auto; }
  1825. .medium-pull-4 {
  1826. position: relative;
  1827. right: 33.33333%;
  1828. left: auto; }
  1829. .medium-push-5 {
  1830. position: relative;
  1831. left: 41.66667%;
  1832. right: auto; }
  1833. .medium-pull-5 {
  1834. position: relative;
  1835. right: 41.66667%;
  1836. left: auto; }
  1837. .medium-push-6 {
  1838. position: relative;
  1839. left: 50%;
  1840. right: auto; }
  1841. .medium-pull-6 {
  1842. position: relative;
  1843. right: 50%;
  1844. left: auto; }
  1845. .medium-push-7 {
  1846. position: relative;
  1847. left: 58.33333%;
  1848. right: auto; }
  1849. .medium-pull-7 {
  1850. position: relative;
  1851. right: 58.33333%;
  1852. left: auto; }
  1853. .medium-push-8 {
  1854. position: relative;
  1855. left: 66.66667%;
  1856. right: auto; }
  1857. .medium-pull-8 {
  1858. position: relative;
  1859. right: 66.66667%;
  1860. left: auto; }
  1861. .medium-push-9 {
  1862. position: relative;
  1863. left: 75%;
  1864. right: auto; }
  1865. .medium-pull-9 {
  1866. position: relative;
  1867. right: 75%;
  1868. left: auto; }
  1869. .medium-push-10 {
  1870. position: relative;
  1871. left: 83.33333%;
  1872. right: auto; }
  1873. .medium-pull-10 {
  1874. position: relative;
  1875. right: 83.33333%;
  1876. left: auto; }
  1877. .medium-push-11 {
  1878. position: relative;
  1879. left: 91.66667%;
  1880. right: auto; }
  1881. .medium-pull-11 {
  1882. position: relative;
  1883. right: 91.66667%;
  1884. left: auto; }
  1885. .column,
  1886. .columns {
  1887. position: relative;
  1888. padding-left: 0.9375rem;
  1889. padding-right: 0.9375rem;
  1890. float: left; }
  1891. .medium-1 {
  1892. width: 8.33333%; }
  1893. .medium-2 {
  1894. width: 16.66667%; }
  1895. .medium-3 {
  1896. width: 25%; }
  1897. .medium-4 {
  1898. width: 33.33333%; }
  1899. .medium-5 {
  1900. width: 41.66667%; }
  1901. .medium-6 {
  1902. width: 50%; }
  1903. .medium-7 {
  1904. width: 58.33333%; }
  1905. .medium-8 {
  1906. width: 66.66667%; }
  1907. .medium-9 {
  1908. width: 75%; }
  1909. .medium-10 {
  1910. width: 83.33333%; }
  1911. .medium-11 {
  1912. width: 91.66667%; }
  1913. .medium-12 {
  1914. width: 100%; }
  1915. .medium-offset-0 {
  1916. margin-left: 0 !important; }
  1917. .medium-offset-1 {
  1918. margin-left: 8.33333% !important; }
  1919. .medium-offset-2 {
  1920. margin-left: 16.66667% !important; }
  1921. .medium-offset-3 {
  1922. margin-left: 25% !important; }
  1923. .medium-offset-4 {
  1924. margin-left: 33.33333% !important; }
  1925. .medium-offset-5 {
  1926. margin-left: 41.66667% !important; }
  1927. .medium-offset-6 {
  1928. margin-left: 50% !important; }
  1929. .medium-offset-7 {
  1930. margin-left: 58.33333% !important; }
  1931. .medium-offset-8 {
  1932. margin-left: 66.66667% !important; }
  1933. .medium-offset-9 {
  1934. margin-left: 75% !important; }
  1935. .medium-offset-10 {
  1936. margin-left: 83.33333% !important; }
  1937. .medium-offset-11 {
  1938. margin-left: 91.66667% !important; }
  1939. .medium-reset-order {
  1940. float: left;
  1941. left: auto;
  1942. margin-left: 0;
  1943. margin-right: 0;
  1944. right: auto; }
  1945. .column.medium-centered,
  1946. .columns.medium-centered {
  1947. margin-left: auto;
  1948. margin-right: auto;
  1949. float: none; }
  1950. .column.medium-uncentered,
  1951. .columns.medium-uncentered {
  1952. float: left;
  1953. margin-left: 0;
  1954. margin-right: 0; }
  1955. .column.medium-centered:last-child,
  1956. .columns.medium-centered:last-child {
  1957. float: none; }
  1958. .column.medium-uncentered:last-child,
  1959. .columns.medium-uncentered:last-child {
  1960. float: left; }
  1961. .column.medium-uncentered.opposite,
  1962. .columns.medium-uncentered.opposite {
  1963. float: right; }
  1964. .row.medium-collapse > .column,
  1965. .row.medium-collapse > .columns {
  1966. padding-left: 0;
  1967. padding-right: 0; }
  1968. .row.medium-collapse .row {
  1969. margin-left: 0;
  1970. margin-right: 0; }
  1971. .row.medium-uncollapse > .column,
  1972. .row.medium-uncollapse > .columns {
  1973. padding-left: 0.9375rem;
  1974. padding-right: 0.9375rem;
  1975. float: left; }
  1976. .push-0 {
  1977. position: relative;
  1978. left: 0;
  1979. right: auto; }
  1980. .pull-0 {
  1981. position: relative;
  1982. right: 0;
  1983. left: auto; }
  1984. .push-1 {
  1985. position: relative;
  1986. left: 8.33333%;
  1987. right: auto; }
  1988. .pull-1 {
  1989. position: relative;
  1990. right: 8.33333%;
  1991. left: auto; }
  1992. .push-2 {
  1993. position: relative;
  1994. left: 16.66667%;
  1995. right: auto; }
  1996. .pull-2 {
  1997. position: relative;
  1998. right: 16.66667%;
  1999. left: auto; }
  2000. .push-3 {
  2001. position: relative;
  2002. left: 25%;
  2003. right: auto; }
  2004. .pull-3 {
  2005. position: relative;
  2006. right: 25%;
  2007. left: auto; }
  2008. .push-4 {
  2009. position: relative;
  2010. left: 33.33333%;
  2011. right: auto; }
  2012. .pull-4 {
  2013. position: relative;
  2014. right: 33.33333%;
  2015. left: auto; }
  2016. .push-5 {
  2017. position: relative;
  2018. left: 41.66667%;
  2019. right: auto; }
  2020. .pull-5 {
  2021. position: relative;
  2022. right: 41.66667%;
  2023. left: auto; }
  2024. .push-6 {
  2025. position: relative;
  2026. left: 50%;
  2027. right: auto; }
  2028. .pull-6 {
  2029. position: relative;
  2030. right: 50%;
  2031. left: auto; }
  2032. .push-7 {
  2033. position: relative;
  2034. left: 58.33333%;
  2035. right: auto; }
  2036. .pull-7 {
  2037. position: relative;
  2038. right: 58.33333%;
  2039. left: auto; }
  2040. .push-8 {
  2041. position: relative;
  2042. left: 66.66667%;
  2043. right: auto; }
  2044. .pull-8 {
  2045. position: relative;
  2046. right: 66.66667%;
  2047. left: auto; }
  2048. .push-9 {
  2049. position: relative;
  2050. left: 75%;
  2051. right: auto; }
  2052. .pull-9 {
  2053. position: relative;
  2054. right: 75%;
  2055. left: auto; }
  2056. .push-10 {
  2057. position: relative;
  2058. left: 83.33333%;
  2059. right: auto; }
  2060. .pull-10 {
  2061. position: relative;
  2062. right: 83.33333%;
  2063. left: auto; }
  2064. .push-11 {
  2065. position: relative;
  2066. left: 91.66667%;
  2067. right: auto; }
  2068. .pull-11 {
  2069. position: relative;
  2070. right: 91.66667%;
  2071. left: auto; } }
  2072. @media only screen and (min-width: 64.0625em) {
  2073. .large-push-0 {
  2074. position: relative;
  2075. left: 0;
  2076. right: auto; }
  2077. .large-pull-0 {
  2078. position: relative;
  2079. right: 0;
  2080. left: auto; }
  2081. .large-push-1 {
  2082. position: relative;
  2083. left: 8.33333%;
  2084. right: auto; }
  2085. .large-pull-1 {
  2086. position: relative;
  2087. right: 8.33333%;
  2088. left: auto; }
  2089. .large-push-2 {
  2090. position: relative;
  2091. left: 16.66667%;
  2092. right: auto; }
  2093. .large-pull-2 {
  2094. position: relative;
  2095. right: 16.66667%;
  2096. left: auto; }
  2097. .large-push-3 {
  2098. position: relative;
  2099. left: 25%;
  2100. right: auto; }
  2101. .large-pull-3 {
  2102. position: relative;
  2103. right: 25%;
  2104. left: auto; }
  2105. .large-push-4 {
  2106. position: relative;
  2107. left: 33.33333%;
  2108. right: auto; }
  2109. .large-pull-4 {
  2110. position: relative;
  2111. right: 33.33333%;
  2112. left: auto; }
  2113. .large-push-5 {
  2114. position: relative;
  2115. left: 41.66667%;
  2116. right: auto; }
  2117. .large-pull-5 {
  2118. position: relative;
  2119. right: 41.66667%;
  2120. left: auto; }
  2121. .large-push-6 {
  2122. position: relative;
  2123. left: 50%;
  2124. right: auto; }
  2125. .large-pull-6 {
  2126. position: relative;
  2127. right: 50%;
  2128. left: auto; }
  2129. .large-push-7 {
  2130. position: relative;
  2131. left: 58.33333%;
  2132. right: auto; }
  2133. .large-pull-7 {
  2134. position: relative;
  2135. right: 58.33333%;
  2136. left: auto; }
  2137. .large-push-8 {
  2138. position: relative;
  2139. left: 66.66667%;
  2140. right: auto; }
  2141. .large-pull-8 {
  2142. position: relative;
  2143. right: 66.66667%;
  2144. left: auto; }
  2145. .large-push-9 {
  2146. position: relative;
  2147. left: 75%;
  2148. right: auto; }
  2149. .large-pull-9 {
  2150. position: relative;
  2151. right: 75%;
  2152. left: auto; }
  2153. .large-push-10 {
  2154. position: relative;
  2155. left: 83.33333%;
  2156. right: auto; }
  2157. .large-pull-10 {
  2158. position: relative;
  2159. right: 83.33333%;
  2160. left: auto; }
  2161. .large-push-11 {
  2162. position: relative;
  2163. left: 91.66667%;
  2164. right: auto; }
  2165. .large-pull-11 {
  2166. position: relative;
  2167. right: 91.66667%;
  2168. left: auto; }
  2169. .column,
  2170. .columns {
  2171. position: relative;
  2172. padding-left: 0.9375rem;
  2173. padding-right: 0.9375rem;
  2174. float: left; }
  2175. .large-1 {
  2176. width: 8.33333%; }
  2177. .large-2 {
  2178. width: 16.66667%; }
  2179. .large-3 {
  2180. width: 25%; }
  2181. .large-4 {
  2182. width: 33.33333%; }
  2183. .large-5 {
  2184. width: 41.66667%; }
  2185. .large-6 {
  2186. width: 50%; }
  2187. .large-7 {
  2188. width: 58.33333%; }
  2189. .large-8 {
  2190. width: 66.66667%; }
  2191. .large-9 {
  2192. width: 75%; }
  2193. .large-10 {
  2194. width: 83.33333%; }
  2195. .large-11 {
  2196. width: 91.66667%; }
  2197. .large-12 {
  2198. width: 100%; }
  2199. .large-offset-0 {
  2200. margin-left: 0 !important; }
  2201. .large-offset-1 {
  2202. margin-left: 8.33333% !important; }
  2203. .large-offset-2 {
  2204. margin-left: 16.66667% !important; }
  2205. .large-offset-3 {
  2206. margin-left: 25% !important; }
  2207. .large-offset-4 {
  2208. margin-left: 33.33333% !important; }
  2209. .large-offset-5 {
  2210. margin-left: 41.66667% !important; }
  2211. .large-offset-6 {
  2212. margin-left: 50% !important; }
  2213. .large-offset-7 {
  2214. margin-left: 58.33333% !important; }
  2215. .large-offset-8 {
  2216. margin-left: 66.66667% !important; }
  2217. .large-offset-9 {
  2218. margin-left: 75% !important; }
  2219. .large-offset-10 {
  2220. margin-left: 83.33333% !important; }
  2221. .large-offset-11 {
  2222. margin-left: 91.66667% !important; }
  2223. .large-reset-order {
  2224. float: left;
  2225. left: auto;
  2226. margin-left: 0;
  2227. margin-right: 0;
  2228. right: auto; }
  2229. .column.large-centered,
  2230. .columns.large-centered {
  2231. margin-left: auto;
  2232. margin-right: auto;
  2233. float: none; }
  2234. .column.large-uncentered,
  2235. .columns.large-uncentered {
  2236. float: left;
  2237. margin-left: 0;
  2238. margin-right: 0; }
  2239. .column.large-centered:last-child,
  2240. .columns.large-centered:last-child {
  2241. float: none; }
  2242. .column.large-uncentered:last-child,
  2243. .columns.large-uncentered:last-child {
  2244. float: left; }
  2245. .column.large-uncentered.opposite,
  2246. .columns.large-uncentered.opposite {
  2247. float: right; }
  2248. .row.large-collapse > .column,
  2249. .row.large-collapse > .columns {
  2250. padding-left: 0;
  2251. padding-right: 0; }
  2252. .row.large-collapse .row {
  2253. margin-left: 0;
  2254. margin-right: 0; }
  2255. .row.large-uncollapse > .column,
  2256. .row.large-uncollapse > .columns {
  2257. padding-left: 0.9375rem;
  2258. padding-right: 0.9375rem;
  2259. float: left; }
  2260. .push-0 {
  2261. position: relative;
  2262. left: 0;
  2263. right: auto; }
  2264. .pull-0 {
  2265. position: relative;
  2266. right: 0;
  2267. left: auto; }
  2268. .push-1 {
  2269. position: relative;
  2270. left: 8.33333%;
  2271. right: auto; }
  2272. .pull-1 {
  2273. position: relative;
  2274. right: 8.33333%;
  2275. left: auto; }
  2276. .push-2 {
  2277. position: relative;
  2278. left: 16.66667%;
  2279. right: auto; }
  2280. .pull-2 {
  2281. position: relative;
  2282. right: 16.66667%;
  2283. left: auto; }
  2284. .push-3 {
  2285. position: relative;
  2286. left: 25%;
  2287. right: auto; }
  2288. .pull-3 {
  2289. position: relative;
  2290. right: 25%;
  2291. left: auto; }
  2292. .push-4 {
  2293. position: relative;
  2294. left: 33.33333%;
  2295. right: auto; }
  2296. .pull-4 {
  2297. position: relative;
  2298. right: 33.33333%;
  2299. left: auto; }
  2300. .push-5 {
  2301. position: relative;
  2302. left: 41.66667%;
  2303. right: auto; }
  2304. .pull-5 {
  2305. position: relative;
  2306. right: 41.66667%;
  2307. left: auto; }
  2308. .push-6 {
  2309. position: relative;
  2310. left: 50%;
  2311. right: auto; }
  2312. .pull-6 {
  2313. position: relative;
  2314. right: 50%;
  2315. left: auto; }
  2316. .push-7 {
  2317. position: relative;
  2318. left: 58.33333%;
  2319. right: auto; }
  2320. .pull-7 {
  2321. position: relative;
  2322. right: 58.33333%;
  2323. left: auto; }
  2324. .push-8 {
  2325. position: relative;
  2326. left: 66.66667%;
  2327. right: auto; }
  2328. .pull-8 {
  2329. position: relative;
  2330. right: 66.66667%;
  2331. left: auto; }
  2332. .push-9 {
  2333. position: relative;
  2334. left: 75%;
  2335. right: auto; }
  2336. .pull-9 {
  2337. position: relative;
  2338. right: 75%;
  2339. left: auto; }
  2340. .push-10 {
  2341. position: relative;
  2342. left: 83.33333%;
  2343. right: auto; }
  2344. .pull-10 {
  2345. position: relative;
  2346. right: 83.33333%;
  2347. left: auto; }
  2348. .push-11 {
  2349. position: relative;
  2350. left: 91.66667%;
  2351. right: auto; }
  2352. .pull-11 {
  2353. position: relative;
  2354. right: 91.66667%;
  2355. left: auto; } }
  2356. /*
  2357. * www.g-u-i.net
  2358. */
  2359. /*
  2360. __
  2361. _________ / /___ __________
  2362. / ___/ __ \/ / __ \/ ___/ ___/
  2363. / /__/ /_/ / / /_/ / / (__ )
  2364. \___/\____/_/\____/_/ /____/
  2365. */
  2366. body {
  2367. font-size: 16px;
  2368. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2369. font-weight: 500;
  2370. font-style: normal;
  2371. line-height: 1.3; }
  2372. a {
  2373. color: #007BC2;
  2374. text-decoration: none; }
  2375. h1 {
  2376. font-size: 1.6em; }
  2377. h2 {
  2378. font-size: 1.5em; }
  2379. h3 {
  2380. font-size: 1.4em; }
  2381. h4 {
  2382. font-size: 1.3em; }
  2383. h5 {
  2384. font-size: 1.2em; }
  2385. h6 {
  2386. font-size: 1.1em; }
  2387. input, button, select, textarea {
  2388. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2389. font-weight: 500;
  2390. font-style: normal; }
  2391. #footer #footer-bottom {
  2392. text-align: center; }
  2393. #footer #footer-bottom .block {
  2394. font-size: 8px; }
  2395. /** RESPONSIVE break points */
  2396. /*
  2397. $small-breakpoint: em-calc(480) !default;
  2398. $medium-breakpoint: em-calc(768) !default;
  2399. $large-breakpoint: em-calc(980) !default;
  2400. $xlarge-breakpoint: em-calc(1200) !default;
  2401. $small-range: (0, $small-breakpoint) !default; // 0, 480px
  2402. $medium-range: ($small-breakpoint + em-calc(1), $medium-breakpoint) !default; 481px, 768px //
  2403. $large-range: ($medium-breakpoint + em-calc(1), $large-breakpoint) !default; // 769px, 980px
  2404. $xlarge-range: ($large-breakpoint + em-calc(1), $xlarge-breakpoint) !default; // 981px, 1200px
  2405. $xxlarge-range: ($xlarge-breakpoint + em-calc(1), em-calc(99999999)) !default; // 1201px, ...
  2406. // Media Queries
  2407. $screen: "only screen" !default;
  2408. $landscape: "only screen and (orientation: landscape)" !default;
  2409. $portrait: "only screen and (orientation: portrait)" !default;
  2410. $small-up: $screen !default;
  2411. $small-only: "only screen and (max-width: 40em)" !default;
  2412. $medium-up: "only screen and (min-width:40.0625em)" !default;
  2413. $medium-only: "only screen and (min-width:40.0625em) and (max-width:64em)" !default;
  2414. $large-up: "only screen and (min-width:64.0625em)" !default;
  2415. $large-only: "only screen and (min-width:64.0625em) and (max-width:90em)" !default;
  2416. $xlarge-up: "only screen and (min-width:90.0625em)" !default;
  2417. $xlarge-only: "only screen and (min-width:90.0625em) and (max-width:120em)" !default;
  2418. $xxlarge-up: "only screen and (min-width:120.0625em)" !default;
  2419. $xxlarge-only: "only screen and (min-width:120.0625em) and (max-width:6249999.9375em)" !default;
  2420. $retina: (
  2421. "only screen and (-webkit-min-device-pixel-ratio: 2)",
  2422. "only screen and (min--moz-device-pixel-ratio: 2)",
  2423. "only screen and (-o-min-device-pixel-ratio: 2/1)",
  2424. "only screen and (min-device-pixel-ratio: 2)",
  2425. "only screen and (min-resolution: 192dpi)",
  2426. "only screen and (min-resolution: 2dppx)"
  2427. );
  2428. */
  2429. * {
  2430. box-sizing: content-box; }
  2431. *:before, *:after {
  2432. box-sizing: content-box; }
  2433. body {
  2434. overflow-y: scroll;
  2435. top: 0;
  2436. background-color: #f7f4ed; }
  2437. h1, h2, h3, h4, h5, h6 {
  2438. font-family: inherit; }
  2439. h1 {
  2440. font-weight: bold; }
  2441. figure {
  2442. margin: 0; }
  2443. input[type="checkbox"] + label {
  2444. margin: 0; }
  2445. p {
  2446. font-family: inherit;
  2447. font-weight: inherit;
  2448. font-size: inherit;
  2449. line-height: inherit;
  2450. margin-bottom: inherit; }
  2451. a {
  2452. font-size: inherit; }
  2453. .column, .columns {
  2454. padding: inherit;
  2455. float: inherit; }
  2456. /** NIVEAU 0 */
  2457. #root {
  2458. min-width: 320px; }
  2459. .ie8 #root {
  2460. min-width: 1024px; }
  2461. /** NIVEAU 1 */
  2462. #container {
  2463. margin: 0 auto;
  2464. position: relative;
  2465. transition: padding-top 0.5s ease-out, 1s, ease-out; }
  2466. /** NIVEAU 2 */
  2467. #header {
  2468. background-color: #fff;
  2469. z-index: 1000;
  2470. width: 96%;
  2471. padding-left: 2%;
  2472. padding-right: 2%; }
  2473. html.no-touch #header {
  2474. position: fixed;
  2475. top: 0;
  2476. margin: 0 auto;
  2477. min-width: 310.4px; }
  2478. .admin-menu #header {
  2479. margin-top: 35px; }
  2480. #utilities {
  2481. z-index: 999;
  2482. width: 96%;
  2483. padding-left: 2%;
  2484. padding-right: 2%; }
  2485. html.no-touch #utilities {
  2486. position: fixed;
  2487. top: 0;
  2488. margin: 0 auto;
  2489. min-width: 310.4px;
  2490. margin-top: 60px; }
  2491. html.no-touch .admin-menu #utilities {
  2492. margin-top: 85px; }
  2493. @media only screen and (max-width: 40em) {
  2494. #utilities > .region {
  2495. padding-top: 5px;
  2496. padding-bottom: 5px; } }
  2497. #main {
  2498. width: 96%;
  2499. padding-left: 2%;
  2500. padding-right: 2%;
  2501. overflow-x: hidden; }
  2502. #footer {
  2503. width: 96%;
  2504. padding-left: 2%;
  2505. padding-right: 2%;
  2506. padding-top: 2em; }
  2507. /** NIVEAU 3 */
  2508. /** NIVEAU 4 */
  2509. /** Z-INDEX */
  2510. #block-feedback-form {
  2511. z-index: 1001; }
  2512. #admin-menu {
  2513. z-index: 1002; }
  2514. #admin-toolbar {
  2515. z-index: 1003; }
  2516. /*
  2517. __ __ ___
  2518. / / / /___ ____ ___ ___ _ _|__ / /_/ / __ \/ __ `__ \/ _ \ | | / /_/ /
  2519. / __ / /_/ / / / / / / __/ | |/ / __/
  2520. /_/ /_/\____/_/ /_/ /_/\___/ |___/____/
  2521. */
  2522. 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,
  2523. body.page-whoweare #header > .inner,
  2524. body.page-whoweare #utilities > .inner,
  2525. body.page-whoweare #center,
  2526. body.page-whoweare #footer,
  2527. body.page-node-11187 #header > .inner,
  2528. body.page-node-11187 #utilities > .inner,
  2529. body.page-node-11187 #center,
  2530. body.page-node-11187 #footer,
  2531. body.page-node-11175 #header > .inner,
  2532. body.page-node-11175 #utilities > .inner,
  2533. body.page-node-11175 #center,
  2534. body.page-node-11175 #footer,
  2535. body.page-node-12324 #header > .inner,
  2536. body.page-node-12324 #utilities > .inner,
  2537. body.page-node-12324 #center,
  2538. body.page-node-12324 #footer,
  2539. body.page-user #header > .inner,
  2540. body.page-user #utilities > .inner,
  2541. body.page-user #center,
  2542. body.page-user #footer,
  2543. body.page-node-11186 #header > .inner,
  2544. body.page-node-11186 #utilities > .inner,
  2545. body.page-node-11186 #center,
  2546. body.page-node-11186 #footer,
  2547. body.page-cart #header > .inner,
  2548. body.page-cart #utilities > .inner,
  2549. body.page-cart #center,
  2550. body.page-cart #footer,
  2551. body.node-type-simplenews #header > .inner,
  2552. body.node-type-simplenews #utilities > .inner,
  2553. body.node-type-simplenews #center,
  2554. body.node-type-simplenews #footer,
  2555. body.node-type-publication #header > .inner,
  2556. body.node-type-publication #utilities > .inner,
  2557. body.node-type-publication #center,
  2558. body.node-type-publication #footer {
  2559. margin: 0 auto;
  2560. max-width: 80rem;
  2561. width: 100%; }
  2562. 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,
  2563. body.page-whoweare #header > .inner:before,
  2564. body.page-whoweare #header > .inner:after,
  2565. body.page-whoweare #utilities > .inner:before,
  2566. body.page-whoweare #utilities > .inner:after,
  2567. body.page-whoweare #center:before,
  2568. body.page-whoweare #center:after,
  2569. body.page-whoweare #footer:before,
  2570. body.page-whoweare #footer:after,
  2571. body.page-node-11187 #header > .inner:before,
  2572. body.page-node-11187 #header > .inner:after,
  2573. body.page-node-11187 #utilities > .inner:before,
  2574. body.page-node-11187 #utilities > .inner:after,
  2575. body.page-node-11187 #center:before,
  2576. body.page-node-11187 #center:after,
  2577. body.page-node-11187 #footer:before,
  2578. body.page-node-11187 #footer:after,
  2579. body.page-node-11175 #header > .inner:before,
  2580. body.page-node-11175 #header > .inner:after,
  2581. body.page-node-11175 #utilities > .inner:before,
  2582. body.page-node-11175 #utilities > .inner:after,
  2583. body.page-node-11175 #center:before,
  2584. body.page-node-11175 #center:after,
  2585. body.page-node-11175 #footer:before,
  2586. body.page-node-11175 #footer:after,
  2587. body.page-node-12324 #header > .inner:before,
  2588. body.page-node-12324 #header > .inner:after,
  2589. body.page-node-12324 #utilities > .inner:before,
  2590. body.page-node-12324 #utilities > .inner:after,
  2591. body.page-node-12324 #center:before,
  2592. body.page-node-12324 #center:after,
  2593. body.page-node-12324 #footer:before,
  2594. body.page-node-12324 #footer:after,
  2595. body.page-user #header > .inner:before,
  2596. body.page-user #header > .inner:after,
  2597. body.page-user #utilities > .inner:before,
  2598. body.page-user #utilities > .inner:after,
  2599. body.page-user #center:before,
  2600. body.page-user #center:after,
  2601. body.page-user #footer:before,
  2602. body.page-user #footer:after,
  2603. body.page-node-11186 #header > .inner:before,
  2604. body.page-node-11186 #header > .inner:after,
  2605. body.page-node-11186 #utilities > .inner:before,
  2606. body.page-node-11186 #utilities > .inner:after,
  2607. body.page-node-11186 #center:before,
  2608. body.page-node-11186 #center:after,
  2609. body.page-node-11186 #footer:before,
  2610. body.page-node-11186 #footer:after,
  2611. body.page-cart #header > .inner:before,
  2612. body.page-cart #header > .inner:after,
  2613. body.page-cart #utilities > .inner:before,
  2614. body.page-cart #utilities > .inner:after,
  2615. body.page-cart #center:before,
  2616. body.page-cart #center:after,
  2617. body.page-cart #footer:before,
  2618. body.page-cart #footer:after,
  2619. body.node-type-simplenews #header > .inner:before,
  2620. body.node-type-simplenews #header > .inner:after,
  2621. body.node-type-simplenews #utilities > .inner:before,
  2622. body.node-type-simplenews #utilities > .inner:after,
  2623. body.node-type-simplenews #center:before,
  2624. body.node-type-simplenews #center:after,
  2625. body.node-type-simplenews #footer:before,
  2626. body.node-type-simplenews #footer:after,
  2627. body.node-type-publication #header > .inner:before,
  2628. body.node-type-publication #header > .inner:after,
  2629. body.node-type-publication #utilities > .inner:before,
  2630. body.node-type-publication #utilities > .inner:after,
  2631. body.node-type-publication #center:before,
  2632. body.node-type-publication #center:after,
  2633. body.node-type-publication #footer:before,
  2634. body.node-type-publication #footer:after {
  2635. content: " ";
  2636. display: table; }
  2637. 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,
  2638. body.page-whoweare #header > .inner:after,
  2639. body.page-whoweare #utilities > .inner:after,
  2640. body.page-whoweare #center:after,
  2641. body.page-whoweare #footer:after,
  2642. body.page-node-11187 #header > .inner:after,
  2643. body.page-node-11187 #utilities > .inner:after,
  2644. body.page-node-11187 #center:after,
  2645. body.page-node-11187 #footer:after,
  2646. body.page-node-11175 #header > .inner:after,
  2647. body.page-node-11175 #utilities > .inner:after,
  2648. body.page-node-11175 #center:after,
  2649. body.page-node-11175 #footer:after,
  2650. body.page-node-12324 #header > .inner:after,
  2651. body.page-node-12324 #utilities > .inner:after,
  2652. body.page-node-12324 #center:after,
  2653. body.page-node-12324 #footer:after,
  2654. body.page-user #header > .inner:after,
  2655. body.page-user #utilities > .inner:after,
  2656. body.page-user #center:after,
  2657. body.page-user #footer:after,
  2658. body.page-node-11186 #header > .inner:after,
  2659. body.page-node-11186 #utilities > .inner:after,
  2660. body.page-node-11186 #center:after,
  2661. body.page-node-11186 #footer:after,
  2662. body.page-cart #header > .inner:after,
  2663. body.page-cart #utilities > .inner:after,
  2664. body.page-cart #center:after,
  2665. body.page-cart #footer:after,
  2666. body.node-type-simplenews #header > .inner:after,
  2667. body.node-type-simplenews #utilities > .inner:after,
  2668. body.node-type-simplenews #center:after,
  2669. body.node-type-simplenews #footer:after,
  2670. body.node-type-publication #header > .inner:after,
  2671. body.node-type-publication #utilities > .inner:after,
  2672. body.node-type-publication #center:after,
  2673. body.node-type-publication #footer:after {
  2674. clear: both; }
  2675. .op-visible {
  2676. visibility: visible; }
  2677. .csstransitions .op-visible {
  2678. opacity: 1;
  2679. transition: opacity 0.3s ease-out; }
  2680. .op-hidden {
  2681. visibility: hidden; }
  2682. .op-hidden > * {
  2683. margin-top: -100000px; }
  2684. .csstransition .op-hidden {
  2685. opacity: 0;
  2686. transition: visibility 0s 0.3s; }
  2687. .csstransition .op-hidden > * {
  2688. transition: margin-top 0s 0.3s; }
  2689. /** colomnized() */
  2690. /*
  2691. __ ___________ ____ __________
  2692. / / / / ____/ | / __ \/ ____/ __ / /_/ / __/ / /| | / / / / __/ / /_/ /
  2693. / __ / /___/ ___ |/ /_/ / /___/ _, _/
  2694. /_/ /_/_____/_/ |_/_____/_____/_/ |_|
  2695. */
  2696. #header {
  2697. padding-top: 5px;
  2698. padding-bottom: 10px;
  2699. height: 45px; }
  2700. #header a, #header a:active, #header a:visited {
  2701. color: #000; }
  2702. #header .logo {
  2703. display: moz-inline-stack;
  2704. display: inline-block;
  2705. vertical-align: top;
  2706. zoom: 1;
  2707. *display: inline; }
  2708. #header .logo h1 {
  2709. margin: 0;
  2710. font-size: 36px;
  2711. display: moz-inline-stack;
  2712. display: inline-block;
  2713. vertical-align: top;
  2714. zoom: 1;
  2715. *display: inline;
  2716. vertical-align: baseline;
  2717. position: relative;
  2718. line-height: 1.25; }
  2719. #header .logo h1 a:hover {
  2720. text-decoration: none; }
  2721. #header .logo span.slogan {
  2722. font-size: 14px;
  2723. margin-top: -3px;
  2724. margin-left: -0.5em;
  2725. font-weight: 900; }
  2726. @media only screen and (max-width: 40em) {
  2727. #header .logo span.slogan {
  2728. display: none; } }
  2729. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2730. #header .logo span.slogan {
  2731. display: block;
  2732. margin-left: 0.1em; } }
  2733. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  2734. #header .logo span.slogan {
  2735. display: block;
  2736. margin-left: 0.1em; } }
  2737. .ie8 #header .logo span.slogan {
  2738. position: absolute;
  2739. margin-top: 22px; }
  2740. #header #header-blocks {
  2741. padding-top: 17px;
  2742. float: right;
  2743. text-align: right;
  2744. text-transform: capitalize; }
  2745. #header #header-blocks > .region {
  2746. display: moz-inline-stack;
  2747. display: inline-block;
  2748. vertical-align: top;
  2749. zoom: 1;
  2750. *display: inline;
  2751. vertical-align: middle;
  2752. padding-right: 1em;
  2753. margin-right: 1em;
  2754. border-right: 1px solid #707070; }
  2755. @media only screen and (max-width: 40em) {
  2756. #header #header-blocks > .region {
  2757. padding-right: 0.3em;
  2758. margin-right: 0.3em; } }
  2759. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2760. #header #header-blocks > .region {
  2761. padding-right: 0.3em;
  2762. margin-right: 0.3em; } }
  2763. #header #header-blocks > .region:last-child {
  2764. border: none;
  2765. padding: 0;
  2766. margin: 0; }
  2767. #header #header-blocks .block {
  2768. display: moz-inline-stack;
  2769. display: inline-block;
  2770. vertical-align: top;
  2771. zoom: 1;
  2772. *display: inline;
  2773. vertical-align: middle; }
  2774. #header #header-blocks .block h2 {
  2775. font-size: 12px;
  2776. margin: 0;
  2777. line-height: 1.2;
  2778. font-weight: normal; }
  2779. #header #header-blocks .block:not(:last-child) {
  2780. padding-right: 0.8em; }
  2781. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  2782. #header #header-blocks .block:not(:last-child) {
  2783. padding-right: 0.3em; } }
  2784. @media only screen and (max-width: 40em) {
  2785. #header #header-blocks #headerblock-left {
  2786. display: none; } }
  2787. #header #header-blocks #block-social-media-links-social-media-links ul.social-media-links {
  2788. margin: 0;
  2789. line-height: 0; }
  2790. #header #header-blocks #block-social-media-links-social-media-links li {
  2791. line-height: 1; }
  2792. #header #header-blocks #block-social-media-links-social-media-links li.facebook a {
  2793. background-image: url("../img/socialicons/svg/Facebook-color.svg"); }
  2794. #header #header-blocks #block-social-media-links-social-media-links li.twitter a {
  2795. background-image: url("../img/socialicons/svg/Twitter-color.svg"); }
  2796. #header #header-blocks #block-social-media-links-social-media-links li.linkedin a {
  2797. background-image: url("../img/socialicons/svg/LinkedIn-color.svg"); }
  2798. #header #header-blocks #block-social-media-links-social-media-links li.pinterest a {
  2799. background-image: url("../img/socialicons/svg/Pinterest-color.svg"); }
  2800. #header #header-blocks #block-social-media-links-social-media-links li.vimeo a {
  2801. background-image: url("../img/socialicons/svg/Vimeo-color.svg"); }
  2802. #header #header-blocks #block-social-media-links-social-media-links li.rss a {
  2803. background-image: url("../img/socialicons/svg/RSS-color.svg"); }
  2804. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2805. #header #header-blocks #block-social-media-links-social-media-links li.linkedin, #header #header-blocks #block-social-media-links-social-media-links li.pinterest, #header #header-blocks #block-social-media-links-social-media-links li.vimeo {
  2806. display: none; } }
  2807. #header #header-blocks #block-social-media-links-social-media-links a {
  2808. display: block;
  2809. width: 16px;
  2810. height: 16px;
  2811. background-position: center;
  2812. background-repeat: no-repeat;
  2813. background-size: contain; }
  2814. #header #header-blocks #block-social-media-links-social-media-links img {
  2815. display: none; }
  2816. #header #header-blocks #block-materio-user-front-link a {
  2817. font-size: 12px; }
  2818. #header #header-blocks #block-materio-user-front-link span.text {
  2819. display: none; }
  2820. #header #header-blocks #block-user-login {
  2821. font-size: 12px;
  2822. text-align: left;
  2823. position: relative; }
  2824. #header #header-blocks #block-user-login h2 {
  2825. padding-right: 5px; }
  2826. #header #header-blocks #block-user-login h2 i {
  2827. vertical-align: text-bottom;
  2828. margin: 0 2px 2px 0; }
  2829. #header #header-blocks #block-user-login form#user-login-form {
  2830. position: absolute;
  2831. overflow: hidden;
  2832. right: 0;
  2833. margin: 0;
  2834. height: 0;
  2835. transition: height 0.3s ease-out; }
  2836. #header #header-blocks #block-user-login form#user-login-form > div {
  2837. padding: 5px;
  2838. margin: 5px;
  2839. background-color: #e6e6e6;
  2840. border-radius: 5px;
  2841. background-clip: padding-box;
  2842. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  2843. #header #header-blocks #block-user-login form#user-login-form .form-item {
  2844. margin: 0;
  2845. padding-bottom: 5px; }
  2846. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  2847. margin: 0;
  2848. font-size: 10px; }
  2849. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  2850. width: 150px;
  2851. height: 2em; }
  2852. #header #header-blocks #block-user-login form#user-login-form .form-actions {
  2853. margin: 5px 0;
  2854. padding: 0;
  2855. background-color: transparent;
  2856. text-align: right; }
  2857. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit {
  2858. font-size: 16px;
  2859. padding: 0.1em 0.6em 0.2em;
  2860. border-radius: 0.3em;
  2861. background-clip: padding-box;
  2862. font-weight: bold;
  2863. margin-bottom: 4px;
  2864. border: 2px solid #E6DE1C;
  2865. background-color: #E6DE1C;
  2866. color: #fff;
  2867. cursor: pointer;
  2868. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  2869. transition: text-shadow 0.2s ease-out; }
  2870. #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 {
  2871. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  2872. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:active {
  2873. transition: text-shadow 0s ease-out;
  2874. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  2875. #header #header-blocks #block-user-login form#user-login-form div.newpass {
  2876. text-align: right; }
  2877. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  2878. font-size: 10px;
  2879. color: #686868;
  2880. text-transform: lowercase; }
  2881. 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 {
  2882. height: 300px;
  2883. z-index: 1000; }
  2884. @media only screen and (max-width: 40em) {
  2885. #header #header-blocks #block-user-login span.login {
  2886. display: none; } }
  2887. #header #header-blocks #block-ajax-register-ajax-register-block {
  2888. font-size: 12px;
  2889. text-transform: lowercase; }
  2890. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2891. font-size: 12px;
  2892. line-height: 1.5; }
  2893. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2894. vertical-align: text-bottom;
  2895. margin: 0 5px 1px 0;
  2896. line-height: 1; }
  2897. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2898. text-transform: lowercase; }
  2899. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2900. display: none;
  2901. margin-left: 5px; }
  2902. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2903. margin: 0 0.5em 0 0.5em; }
  2904. @media only screen and (max-width: 40em) {
  2905. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2906. display: none; } }
  2907. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2908. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2909. display: none; } }
  2910. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  2911. position: relative; }
  2912. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  2913. margin: 0;
  2914. font-size: 12px;
  2915. line-height: 1.5; }
  2916. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2917. line-height: 1; }
  2918. @media only screen and (max-width: 40em) {
  2919. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2920. display: none; } }
  2921. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2922. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2923. display: none; } }
  2924. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2925. position: absolute;
  2926. z-index: 20;
  2927. background-color: rgba(255, 255, 255, 0.9);
  2928. min-width: 100%;
  2929. margin: 0 0 0 -5px;
  2930. border-radius: 3px;
  2931. background-clip: padding-box;
  2932. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  2933. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2934. background: #FFF; }
  2935. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2936. margin: 0; }
  2937. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2938. list-style: none;
  2939. font-size: 12px;
  2940. font-weight: 700;
  2941. padding: 0 10px;
  2942. text-align: left;
  2943. width: 200px;
  2944. height: 0;
  2945. overflow: hidden;
  2946. transition: height 0.3s ease-out; }
  2947. #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 {
  2948. white-space: nowrap;
  2949. cursor: pointer; }
  2950. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2951. max-width: 150px; }
  2952. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2953. font-weight: 300;
  2954. padding: 0 5px; }
  2955. #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 {
  2956. padding-right: 5px; }
  2957. .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 {
  2958. visibility: hidden; }
  2959. .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 > * {
  2960. margin-top: -100000px; }
  2961. .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 {
  2962. opacity: 0;
  2963. transition: visibility 0s 0.3s; }
  2964. .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 > * {
  2965. transition: margin-top 0s 0.3s; }
  2966. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2967. padding-bottom: 5px; }
  2968. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2969. height: 15px;
  2970. padding: 3px 10px; }
  2971. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2972. vertical-align: text-bottom;
  2973. margin: 0 2px 2px 0; }
  2974. @media only screen and (max-width: 40em) {
  2975. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2976. display: none; } }
  2977. #header #header-blocks #headerblock-right .block {
  2978. display: moz-inline-stack;
  2979. display: inline-block;
  2980. vertical-align: top;
  2981. zoom: 1;
  2982. *display: inline;
  2983. padding: 0;
  2984. vertical-align: middle; }
  2985. #header #header-blocks #headerblock-right .block:first-child {
  2986. padding: 0; }
  2987. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2988. display: none; }
  2989. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2990. vertical-align: text-bottom;
  2991. margin: 0 0 2px 0; }
  2992. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2993. font-size: 12px;
  2994. list-style: none; }
  2995. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2996. display: inline; }
  2997. @media only screen and (min-width: 40.0625em) {
  2998. #header #header-blocks #block-menu-menu-top-menu h2 {
  2999. display: none; }
  3000. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  3001. display: moz-inline-stack;
  3002. display: inline-block;
  3003. vertical-align: top;
  3004. zoom: 1;
  3005. *display: inline;
  3006. vertical-align: middle;
  3007. padding: 0;
  3008. margin: 0; }
  3009. #header #header-blocks #block-menu-menu-top-menu a {
  3010. padding: 0 0.5em 0 0; } }
  3011. @media only screen and (max-width: 40em) {
  3012. #header #header-blocks #block-menu-menu-top-menu {
  3013. position: relative; }
  3014. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  3015. display: none; }
  3016. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  3017. position: absolute;
  3018. width: 150px;
  3019. display: none;
  3020. right: 0;
  3021. padding-top: 5px; }
  3022. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  3023. background-color: #e6e6e6;
  3024. border-radius: 5px;
  3025. background-clip: padding-box;
  3026. padding: 0 5px 5px 5px;
  3027. margin: 0;
  3028. text-align: right; }
  3029. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  3030. height: 0;
  3031. overflow: hidden;
  3032. transition: height 0.3s ease-out; }
  3033. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  3034. display: block;
  3035. width: 100%;
  3036. padding: 2px 5px;
  3037. font-size: 12px; }
  3038. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  3039. z-index: 1000; }
  3040. 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 {
  3041. display: block; }
  3042. 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 {
  3043. height: 25px; } }
  3044. #header #header-blocks #block-locale-language {
  3045. position: relative; }
  3046. #header #header-blocks #block-locale-language h2 {
  3047. font-size: 9px;
  3048. line-height: 1.6;
  3049. display: inline-block;
  3050. padding: 0.20em 0.45em 0.10em;
  3051. margin: 0;
  3052. border-radius: 3px;
  3053. background-clip: padding-box;
  3054. color: #fff;
  3055. text-transform: uppercase;
  3056. background-color: #4d4b4b; }
  3057. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  3058. margin: 0;
  3059. padding: 0;
  3060. list-style-type: none;
  3061. font-size: 12px;
  3062. line-height: 0.9; }
  3063. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  3064. display: none; }
  3065. .ie8 #header #header-blocks #block-locale-language {
  3066. padding-top: 5px; }
  3067. #header #header-blocks #block-locale-language ul {
  3068. padding-top: 2.1em;
  3069. position: absolute;
  3070. top: 0;
  3071. left: 0;
  3072. text-align: left; }
  3073. #header #header-blocks #block-locale-language li {
  3074. height: 0;
  3075. overflow: hidden;
  3076. transition: height 0.3s ease-in-out; }
  3077. #header #header-blocks #block-locale-language li a {
  3078. display: inline-block;
  3079. font-size: 0.9em;
  3080. padding: 0.33em 0.34em 0.3em;
  3081. border-radius: 3px;
  3082. background-clip: padding-box;
  3083. color: #fff;
  3084. text-transform: uppercase;
  3085. background-color: #808080;
  3086. transition: background-color 0.3s ease-out; }
  3087. #header #header-blocks #block-locale-language li a:hover {
  3088. background-color: #1A1A1A; }
  3089. #header #header-blocks #block-locale-language:hover li {
  3090. height: 1.5em; }
  3091. #header #header-blocks #block-materio-user-old-database-link a {
  3092. font-size: 12px; }
  3093. /*
  3094. __ _ ___ __ _
  3095. __ __/ /_(_) (_) /_(_)__ _____
  3096. / / / / __/ / / / __/ / _ \/ ___/
  3097. / /_/ / /_/ / / / /_/ / __(__ )
  3098. \__,_/\__/_/_/_/\__/_/\___/____/
  3099. */
  3100. #utilities {
  3101. background-color: #fff;
  3102. margin-top: 60px; }
  3103. .not-logged-in #utilities {
  3104. overflow: hidden; }
  3105. #utilities > .inner {
  3106. padding: 0.5em 0; }
  3107. #utilities.closed {
  3108. height: 0; }
  3109. #utilities.closed .tabs, #utilities.closed .node-didactique {
  3110. display: none; }
  3111. @media only screen and (max-width: 40em) {
  3112. #utilities {
  3113. margin-top: 0; } }
  3114. /*
  3115. _
  3116. ____ ___ ____ _(_)___
  3117. / __ `__ \/ __ `/ / __ / / / / / / /_/ / / / / /
  3118. /_/ /_/ /_/\__,_/_/_/ /_/
  3119. */
  3120. body.home-v2 #main {
  3121. padding-top: 60px; }
  3122. /*
  3123. __ _ __ ___ __ __ __
  3124. / /_ (_)___ _/ /_ / (_)___ _/ /_ / /____ ____/ /
  3125. / __ \/ / __ `/ __ \/ / / __ `/ __ \/ __/ _ \/ __ /
  3126. / / / / / /_/ / / / / / / /_/ / / / / /_/ __/ /_/ /
  3127. /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/
  3128. /____/ /____/
  3129. */
  3130. #highlighted {
  3131. border-radius: 5px;
  3132. background-clip: padding-box;
  3133. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  3134. padding: 0.5em;
  3135. position: relative; }
  3136. @media only screen and (min-width: 40.0625em) {
  3137. #highlighted {
  3138. margin: 20px 0 6px; }
  3139. #highlighted .block {
  3140. display: moz-inline-stack;
  3141. display: inline-block;
  3142. vertical-align: top;
  3143. zoom: 1;
  3144. *display: inline;
  3145. vertical-align: top; }
  3146. #highlighted .block-materio-didactique {
  3147. width: 65%; }
  3148. #highlighted .block-materio-didactique .side {
  3149. display: moz-inline-stack;
  3150. display: inline-block;
  3151. vertical-align: top;
  3152. zoom: 1;
  3153. *display: inline;
  3154. vertical-align: top;
  3155. position: relative; }
  3156. #highlighted .block-materio-didactique .group-sideleft {
  3157. width: 65%; }
  3158. #highlighted .block-materio-didactique .group-sideright {
  3159. width: 30%; }
  3160. #highlighted .block-materio-didactique .field-name-title-field {
  3161. font-size: 24px; }
  3162. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3163. width: 47%; }
  3164. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3165. margin-right: 2%; }
  3166. #highlighted #block-materio-user-user-register {
  3167. width: 30%;
  3168. padding: 5px;
  3169. height: 290px; } }
  3170. @media only screen {
  3171. #highlighted .block-materio-didactique .side {
  3172. display: moz-inline-stack;
  3173. display: inline-block;
  3174. vertical-align: top;
  3175. zoom: 1;
  3176. *display: inline;
  3177. vertical-align: top; } }
  3178. @media only screen and (max-width: 40em) {
  3179. #highlighted {
  3180. margin: 10px 0 6px; }
  3181. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3182. width: 100%; }
  3183. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3184. font-size: 20px;
  3185. font-weight: normal !important; }
  3186. #highlighted .block-materio-didactique .node-didactique .field-name-title-field:after {
  3187. content: "\a0\f10b";
  3188. font-family: "foundation-icons";
  3189. font-style: normal;
  3190. font-weight: normal;
  3191. font-variant: normal;
  3192. text-transform: none;
  3193. line-height: 1;
  3194. -webkit-font-smoothing: antialiased;
  3195. display: inline-block;
  3196. text-decoration: inherit;
  3197. font-size: 16px; }
  3198. html.js #highlighted .block-materio-didactique .node-didactique {
  3199. height: auto;
  3200. height: 30px;
  3201. overflow: hidden; }
  3202. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3203. height: auto; } }
  3204. .oldie #highlighted .block {
  3205. display: moz-inline-stack;
  3206. display: inline-block;
  3207. vertical-align: top;
  3208. zoom: 1;
  3209. *display: inline; }
  3210. #highlighted .block-materio-didactique .node-didactique {
  3211. font-size: 14px;
  3212. background-color: #fff;
  3213. margin: 0 auto; }
  3214. #highlighted .block-materio-didactique .node-didactique .side {
  3215. position: relative; }
  3216. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3217. font-weight: 900;
  3218. font-style: italic;
  3219. padding: 5px 0; }
  3220. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3221. text-align: center; }
  3222. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3223. display: inline; }
  3224. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3225. display: none; }
  3226. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3227. display: none; }
  3228. html.js #highlighted .block-materio-didactique {
  3229. position: relative;
  3230. overflow: hidden; }
  3231. html.js #highlighted .block-materio-didactique .slides {
  3232. height: 270px;
  3233. margin: 0;
  3234. position: relative;
  3235. width: 100%;
  3236. overflow: hidden; }
  3237. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3238. position: absolute;
  3239. width: 100%;
  3240. height: 100%;
  3241. top: 0;
  3242. left: 0; }
  3243. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3244. height: 30px; }
  3245. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3246. height: 240px; }
  3247. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3248. height: 100%; }
  3249. @media only screen and (max-width: 40em) {
  3250. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3251. width: 290px;
  3252. height: 163.125px; } }
  3253. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  3254. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3255. width: 216px;
  3256. height: 121.5px; } }
  3257. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  3258. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3259. width: 216px;
  3260. height: 121.5px; } }
  3261. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  3262. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3263. width: 280px;
  3264. height: 157.5px; } }
  3265. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  3266. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3267. width: 340px;
  3268. height: 191.25px; } }
  3269. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3270. height: 100%;
  3271. width: 100%; }
  3272. html.js #highlighted .block-materio-didactique .tabs {
  3273. height: 30px;
  3274. margin: 0;
  3275. text-align: left; }
  3276. html.js #highlighted .block-materio-didactique .tabs > * {
  3277. display: moz-inline-stack;
  3278. display: inline-block;
  3279. vertical-align: top;
  3280. zoom: 1;
  3281. *display: inline;
  3282. vertical-align: top;
  3283. padding: 5px 10px;
  3284. font-size: 12px;
  3285. cursor: pointer;
  3286. color: #bfbfbf; }
  3287. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3288. color: #3f3f3f; }
  3289. /*
  3290. __ __ __ _ __
  3291. / /_ / /___ _____/ /__ ________ ____ _(_)____/ /____ _____
  3292. / __ \/ / __ \/ ___/ //_/ / ___/ _ \/ __ `/ / ___/ __/ _ \/ ___/
  3293. / /_/ / / /_/ / /__/ ,< / / / __/ /_/ / (__ ) /_/ __/ /
  3294. /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/
  3295. /____/
  3296. */
  3297. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3298. min-height: 120px;
  3299. padding: 5px;
  3300. background: transparent url("../img/register-block.png") no-repeat 100% 90%; }
  3301. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3302. max-width: 250px;
  3303. float: right;
  3304. background-image: none; }
  3305. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3306. font-weight: 900;
  3307. font-style: italic;
  3308. padding: 5px 0;
  3309. margin: 0;
  3310. line-height: 1;
  3311. background-color: #fff;
  3312. display: moz-inline-stack;
  3313. display: inline-block;
  3314. vertical-align: top;
  3315. zoom: 1;
  3316. *display: inline;
  3317. min-width: 50%; }
  3318. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3319. font-size: 24px; }
  3320. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3321. font-size: 16px; }
  3322. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3323. margin: 0;
  3324. background-color: rgba(255, 255, 255, 0.7);
  3325. padding-bottom: 5px;
  3326. display: moz-inline-stack;
  3327. display: inline-block;
  3328. vertical-align: top;
  3329. zoom: 1;
  3330. *display: inline; }
  3331. #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 {
  3332. margin: 0;
  3333. display: moz-inline-stack;
  3334. display: inline-block;
  3335. vertical-align: top;
  3336. zoom: 1;
  3337. *display: inline;
  3338. vertical-align: middle;
  3339. position: relative; }
  3340. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3341. margin-right: 5px; }
  3342. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3343. font-size: 12px;
  3344. border-radius: 5px;
  3345. background-clip: padding-box;
  3346. margin-bottom: 4px; }
  3347. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3348. margin-right: 5px; }
  3349. #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 {
  3350. width: 11em; }
  3351. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3352. width: 7em; }
  3353. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3354. position: absolute;
  3355. bottom: 100%;
  3356. z-index: 9999;
  3357. background-image: none;
  3358. height: auto;
  3359. padding: 5px;
  3360. border-radius: 5px;
  3361. background-clip: padding-box;
  3362. margin-bottom: 10px;
  3363. font-size: 10px;
  3364. background-color: #fff;
  3365. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3366. transition: bottom 0.1s ease-out; }
  3367. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3368. background-color: #f3968d;
  3369. color: #fff; }
  3370. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3371. display: none; }
  3372. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3373. font-size: 16px;
  3374. padding: 0.1em 0.6em 0.2em;
  3375. border-radius: 0.3em;
  3376. background-clip: padding-box;
  3377. font-weight: bold;
  3378. margin-bottom: 4px; }
  3379. #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 {
  3380. margin-bottom: 0;
  3381. display: block;
  3382. line-height: 1; }
  3383. #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 > * {
  3384. display: moz-inline-stack;
  3385. display: inline-block;
  3386. vertical-align: top;
  3387. zoom: 1;
  3388. *display: inline;
  3389. vertical-align: middle;
  3390. margin: 0; }
  3391. #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 {
  3392. font-size: 10px;
  3393. background-color: #fff;
  3394. border-radius: 3px;
  3395. background-clip: padding-box; }
  3396. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3397. border: 2px solid #69CDCF;
  3398. background-color: #69CDCF;
  3399. color: #fff;
  3400. cursor: pointer;
  3401. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3402. transition: text-shadow 0.2s ease-out; }
  3403. #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 {
  3404. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3405. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3406. transition: text-shadow 0s ease-out;
  3407. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3408. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3409. background-color: #ddd;
  3410. border: 2px solid #ddd; }
  3411. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3412. border: 2px solid #E6DE1C;
  3413. background-color: #E6DE1C;
  3414. color: #fff;
  3415. cursor: pointer;
  3416. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3417. transition: text-shadow 0.2s ease-out; }
  3418. #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 {
  3419. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3420. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3421. transition: text-shadow 0s ease-out;
  3422. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3423. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3424. padding-top: 0.5em; }
  3425. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3426. font-size: 12px; }
  3427. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3428. display: block; }
  3429. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3430. font-size: 12px; }
  3431. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3432. display: block;
  3433. width: 5em;
  3434. font-size: 16px;
  3435. padding: 0.1em 0.3em 0.2em;
  3436. border-radius: 0.3em;
  3437. background-clip: padding-box;
  3438. font-weight: bold;
  3439. border: 2px solid #69CDCF;
  3440. background-color: #69CDCF;
  3441. color: #fff;
  3442. cursor: pointer;
  3443. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3444. transition: text-shadow 0.2s ease-out;
  3445. text-align: center;
  3446. text-decoration: none; }
  3447. #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 {
  3448. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3449. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3450. transition: text-shadow 0s ease-out;
  3451. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3452. @media only screen and (max-width: 40em) {
  3453. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3454. background-position: 160% 50%;
  3455. min-height: 60px;
  3456. padding: 15px 0; }
  3457. #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 {
  3458. width: 7em; } }
  3459. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3460. color: #b94a48;
  3461. font-size: 12px; }
  3462. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3463. padding: 2em;
  3464. width: 400px;
  3465. background-color: #fff;
  3466. padding: 5px;
  3467. border-radius: 5px;
  3468. background-clip: padding-box;
  3469. box-shadow: 0 0 7px rgba(0, 0, 0, 0.4); }
  3470. .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 {
  3471. display: none; }
  3472. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3473. font-size: 12px; }
  3474. /*
  3475. __ __ __
  3476. _________ ____ / /____ ____ / /_ / /_____ ____
  3477. / ___/ __ \/ __ \/ __/ _ \/ __ \/ __/_____/ __/ __ \/ __ / /__/ /_/ / / / / /_/ __/ / / / /_/_____/ /_/ /_/ / /_/ /
  3478. \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/
  3479. /_/
  3480. */
  3481. #content-top {
  3482. /*
  3483. ___ _ _ _ _
  3484. | _| |___ ___ ___| |_|___| |_
  3485. | _| | .'| . |___| | |_ -| _|
  3486. |_| |_|__,|_ | |_|_|___|_|
  3487. |___|
  3488. */ }
  3489. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3490. font-size: 10px;
  3491. color: #666666;
  3492. font-weight: 300; }
  3493. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3494. margin-top: 40px; }
  3495. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3496. font-size: 12px;
  3497. font-weight: 700;
  3498. line-height: 1.2;
  3499. margin: 0;
  3500. color: #000; }
  3501. #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 {
  3502. display: moz-inline-stack;
  3503. display: inline-block;
  3504. vertical-align: top;
  3505. zoom: 1;
  3506. *display: inline;
  3507. cursor: pointer;
  3508. color: #000;
  3509. margin-left: 0.5em;
  3510. opacity: 0;
  3511. transition: opacity 0.1s ease-out; }
  3512. #content-top #block-materio-flag-materio-flag-mybookmarks h2 i:before, #content-top #block-materio-flag-materio-flag-mylists h2 i:before {
  3513. font-size: 14px; }
  3514. #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 {
  3515. opacity: 1; }
  3516. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3517. cursor: pointer; }
  3518. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3519. height: 0;
  3520. overflow: hidden; }
  3521. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3522. height: auto; }
  3523. #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 {
  3524. overflow: hidden; }
  3525. #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 {
  3526. height: 0;
  3527. overflow: hidden; }
  3528. #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 {
  3529. height: auto; }
  3530. #tool-bar {
  3531. position: relative; }
  3532. #tool-bar .inner-content {
  3533. padding-top: 10px;
  3534. padding-bottom: 10px; }
  3535. #tool-bar .inner-content > * {
  3536. display: moz-inline-stack;
  3537. display: inline-block;
  3538. vertical-align: top;
  3539. zoom: 1;
  3540. *display: inline;
  3541. vertical-align: middle; }
  3542. .oldie #tool-bar {
  3543. background-color: #B1ADAD;
  3544. padding: 0 10px; }
  3545. #tool-bar .btn-group {
  3546. padding: 0;
  3547. border-radius: 3px;
  3548. background-clip: padding-box;
  3549. background-color: #fff;
  3550. margin: 4px;
  3551. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3552. transition: box-shadow 0.3s ease-out; }
  3553. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3554. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3555. #tool-bar .btn-group:active {
  3556. transition: box-shadow 0s ease-out;
  3557. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3558. #tool-bar #block-materio-page-title-materio-page-title {
  3559. margin: 0 10px 0 0; }
  3560. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3561. margin: 0;
  3562. font-size: 24px;
  3563. text-transform: capitalize;
  3564. font-weight: 300; }
  3565. #tool-bar #block-materio-page-title-materio-page-title i {
  3566. vertical-align: middle;
  3567. margin-right: 5px; }
  3568. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3569. visibility: hidden; }
  3570. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3571. margin-top: -100000px; }
  3572. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3573. opacity: 0;
  3574. transition: visibility 0s 0.3s; }
  3575. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3576. transition: margin-top 0s 0.3s; }
  3577. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3578. margin: 0 0 0 5px; }
  3579. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3580. visibility: visible; }
  3581. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3582. opacity: 1;
  3583. transition: opacity 0.3s ease-out; }
  3584. @media only screen and (max-width: 40em) {
  3585. #tool-bar #block-materio-page-title-materio-page-title {
  3586. display: block; } }
  3587. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3588. display: moz-inline-stack;
  3589. display: inline-block;
  3590. vertical-align: top;
  3591. zoom: 1;
  3592. *display: inline;
  3593. margin: 0 2px; }
  3594. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3595. cursor: normal; }
  3596. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3597. display: none;
  3598. font-size: 10px; }
  3599. @media only screen and (max-width: 40em) {
  3600. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3601. display: block; }
  3602. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3603. display: none; } }
  3604. @media only screen and (max-width: 40em) {
  3605. 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 {
  3606. display: block; } }
  3607. @media only screen and (max-width: 40em) {
  3608. 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 {
  3609. display: block; } }
  3610. #tool-bar #block-materio-search-api-materio-search-api-search {
  3611. float: right; }
  3612. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3613. display: moz-inline-stack;
  3614. display: inline-block;
  3615. vertical-align: top;
  3616. zoom: 1;
  3617. *display: inline;
  3618. margin: 0 0 0 10px;
  3619. min-width: 400px;
  3620. padding: 5px 10px;
  3621. background-color: #fff;
  3622. border-radius: 3px;
  3623. background-clip: padding-box;
  3624. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3625. transition: box-shadow 0.3s ease-out;
  3626. text-align: right; }
  3627. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3628. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3629. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3630. transition: box-shadow 0s ease-out;
  3631. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3632. #tool-bar #block-materio-search-api-materio-search-api-search > .inner h4.form-title {
  3633. padding: 0.2em 0 0.1em 0.2em;
  3634. margin: 0.2em 0 0.1em 0.2em;
  3635. text-align: left;
  3636. font-size: 14px; }
  3637. html.no-js #tool-bar #block-materio-search-api-materio-search-api-search > .inner h4.form-title {
  3638. display: none; }
  3639. html.no-js #tool-bar #block-materio-search-api-materio-search-api-search > .inner.msa-advanced-search {
  3640. display: none; }
  3641. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs {
  3642. text-align: left;
  3643. margin-bottom: 4px; }
  3644. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4 {
  3645. display: moz-inline-stack;
  3646. display: inline-block;
  3647. vertical-align: top;
  3648. zoom: 1;
  3649. *display: inline;
  3650. font-size: 12px;
  3651. cursor: pointer;
  3652. border-radius: 5px 5px 0 0;
  3653. padding: 0.1em 0.5em;
  3654. transition: color 0.5s ease-in-out; }
  3655. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4.active {
  3656. border: 1px solid #ccc;
  3657. border-bottom: 1px solid #FFF;
  3658. background-color: #fff; }
  3659. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4:not(.active) {
  3660. color: #ccc; }
  3661. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4:not(.active):hover {
  3662. color: inherit; }
  3663. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs:after {
  3664. content: "";
  3665. display: block;
  3666. background-color: #fff;
  3667. border-top: 1px solid #ccc;
  3668. margin-top: -3px; }
  3669. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .msa-form-wrapper:not(.active) {
  3670. display: none; }
  3671. #tool-bar #materio-search-api-search-form {
  3672. text-align: right;
  3673. display: moz-inline-stack;
  3674. display: inline-block;
  3675. vertical-align: top;
  3676. zoom: 1;
  3677. *display: inline;
  3678. margin: 0; }
  3679. #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, #tool-bar #materio-search-api-search-form .form-wrapper {
  3680. display: moz-inline-stack;
  3681. display: inline-block;
  3682. vertical-align: top;
  3683. zoom: 1;
  3684. *display: inline;
  3685. margin: 0;
  3686. vertical-align: middle;
  3687. padding: 0; }
  3688. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3689. padding: 3px;
  3690. font-size: 12px; }
  3691. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3692. margin: 0 5px; }
  3693. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3694. font-size: 10px; }
  3695. #tool-bar #materio-search-api-search-form #edit-rightcol {
  3696. padding-left: 0.5em;
  3697. margin-left: 0.5em;
  3698. border-left: 1px solid #ccc; }
  3699. #tool-bar #materio-search-api-search-form a.back-search-home {
  3700. display: inline-block;
  3701. vertical-align: middle;
  3702. color: #000; }
  3703. #tool-bar #materio-search-api-search-form a.back-search-home i:before {
  3704. font-size: 1.3em; }
  3705. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3706. border: 1px solid #ccc;
  3707. border-radius: 15px;
  3708. background-clip: padding-box;
  3709. margin: 3px 0 3px 3px;
  3710. padding: 4px 5px;
  3711. height: 20px;
  3712. font-size: 12px;
  3713. line-height: 1;
  3714. background-position: 100% 7px; }
  3715. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3716. background-position: 100% -15px; }
  3717. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3718. background-color: #1a1a1a; }
  3719. #tool-bar #materio-search-api-search-form input#edit-create {
  3720. padding: 3px; }
  3721. #tool-bar #materio-search-api-search-form.loading {
  3722. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  3723. #tool-bar #materio-search-api-search-form.loading input#edit-create {
  3724. visibility: hidden; }
  3725. @media only screen and (max-width: 40em) {
  3726. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3727. width: 16em; }
  3728. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3729. display: none; } }
  3730. #tool-bar #materio-search-api-advanced-search-form > div {
  3731. position: relative; }
  3732. #tool-bar #materio-search-api-advanced-search-form > div #advancedsearch-filters, #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper {
  3733. display: inline-block;
  3734. vertical-align: top; }
  3735. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper {
  3736. position: relative;
  3737. text-align: center; }
  3738. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper > * {
  3739. display: block; }
  3740. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper a.back-search-home {
  3741. color: #000;
  3742. padding-top: 0.45em; }
  3743. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper a.back-search-home i:before {
  3744. font-size: 1.3em; }
  3745. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper #edit-search {
  3746. margin: 1em 0 0.5em; }
  3747. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters {
  3748. padding-right: 0.5em;
  3749. margin-right: 0.5em;
  3750. border-right: 1px solid #ccc; }
  3751. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .filter-line {
  3752. margin: 0.3em 0;
  3753. padding-top: 0.3em; }
  3754. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .filter-line:not(:first-child) {
  3755. border-top: 1px solid #ccc; }
  3756. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .filter-line .form-item {
  3757. display: inline-block;
  3758. vertical-align: middle;
  3759. font-size: 12px;
  3760. line-height: 1;
  3761. text-transform: capitalize;
  3762. margin: 0 0em 0 0; }
  3763. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .filter-line select {
  3764. width: auto; }
  3765. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .rm-btn {
  3766. float: right;
  3767. margin: 0.4em 0 0.4em 0.4em; }
  3768. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .add-filter {
  3769. margin: 0.5em 0; }
  3770. #center {
  3771. border-radius: 10px;
  3772. background-clip: padding-box; }
  3773. .node-type-page:not(.page-node-11187) #center {
  3774. background-color: #fff; }
  3775. .ie8 #center {
  3776. height: 100%;
  3777. margin-top: 20px; }
  3778. #content {
  3779. padding: 1em;
  3780. transition: height 0.3s ease-out; }
  3781. #content.faded {
  3782. opacity: 0.5;
  3783. transition: opacity 0.3s ease-out; }
  3784. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3785. padding: 0 0 30px 0;
  3786. margin: 0 0 20px 0; }
  3787. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3788. background-image: url("../img/ajax-loader.gif");
  3789. background-position: center bottom;
  3790. background-repeat: no-repeat; }
  3791. #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 {
  3792. font-size: 12px;
  3793. font-weight: 500;
  3794. margin: 0;
  3795. padding: 10px 0 5px 15px; }
  3796. #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 {
  3797. font-size: 0;
  3798. text-align: center; }
  3799. #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 > * {
  3800. font-size: 16px; }
  3801. #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 > * {
  3802. text-align: left; }
  3803. #content ul.pager {
  3804. padding: 1em 0;
  3805. text-align: left; }
  3806. .ie8 #content ul.pager {
  3807. position: absolute;
  3808. left: 37px;
  3809. bottom: 35px; }
  3810. #content ul.pager li {
  3811. margin: 0;
  3812. display: moz-inline-stack;
  3813. display: inline-block;
  3814. vertical-align: top;
  3815. zoom: 1;
  3816. *display: inline;
  3817. vertical-align: middle; }
  3818. #content ul.pager .pager-current, #content ul.pager a {
  3819. color: #000;
  3820. font-size: 12px; }
  3821. #content ul.pager .pager-current {
  3822. font-weight: 900;
  3823. font-size: 14px; }
  3824. .ie8 #content ul.pager .pager-current {
  3825. background: #fff;
  3826. padding: 0.3em 1em 0.3em 1em;
  3827. margin-top: 0.05em;
  3828. border: 1px solid #333333; }
  3829. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3830. font-size: 24px;
  3831. font-weight: 300; }
  3832. /** #content-bottom */
  3833. #content-bottom {
  3834. padding-top: 10px; }
  3835. /*
  3836. _________ ____ ____ _____
  3837. / ____/ | / __ \/ __ \/ ___/
  3838. / / / /| | / /_/ / / / /\__ / /___/ ___ |/ _, _/ /_/ /___/ /
  3839. \____/_/ |_/_/ |_/_____//____/
  3840. */
  3841. /*
  3842. _ _ ___
  3843. ___ ___ ___ _| | ___ ___ ___ ___ ___| |_ ___ ___ ___| _|___ ___ _____ ___ ___ ___ ___
  3844. | _| .'| _| . | |_ -| -_| .'| _| _| | | . | -_| _| _| . | _| | .'| | _| -_|
  3845. |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___|
  3846. |_|
  3847. */
  3848. article.search-performance .inner {
  3849. padding: 1em; }
  3850. article.search-performance p {
  3851. font-size: 14px; }
  3852. article.search-performance a.button {
  3853. display: block;
  3854. margin: 10px auto;
  3855. max-width: 10em;
  3856. font-size: 18px;
  3857. padding: 0.1em 0.6em 0.2em;
  3858. border-radius: 0.3em;
  3859. background-clip: padding-box;
  3860. font-weight: bold;
  3861. border: 2px solid #69CDCF;
  3862. background-color: #69CDCF;
  3863. color: #fff;
  3864. cursor: pointer;
  3865. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3866. transition: text-shadow 0.2s ease-out;
  3867. text-align: center;
  3868. text-decoration: none; }
  3869. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3870. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3871. article.search-performance a.button:active {
  3872. transition: text-shadow 0s ease-out;
  3873. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3874. article.search-performance.view-mode-cardsmall {
  3875. width: 327px;
  3876. height: 140px;
  3877. display: moz-inline-stack;
  3878. display: inline-block;
  3879. vertical-align: top;
  3880. zoom: 1;
  3881. *display: inline;
  3882. position: relative;
  3883. margin: 7px;
  3884. border-radius: 5px;
  3885. background-clip: padding-box;
  3886. background-color: #FFF;
  3887. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3888. transition: box-shadow 0.3s ease-out; }
  3889. article.search-performance.view-mode-cardmedium {
  3890. width: 210px;
  3891. height: 295px;
  3892. display: moz-inline-stack;
  3893. display: inline-block;
  3894. vertical-align: top;
  3895. zoom: 1;
  3896. *display: inline;
  3897. position: relative;
  3898. margin: 7px;
  3899. border-radius: 5px;
  3900. background-clip: padding-box;
  3901. background-color: #FFF;
  3902. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3903. transition: box-shadow 0.3s ease-out; }
  3904. article.search-performance.view-mode-cardmedium .inner {
  3905. padding: 4em 1em 0; }
  3906. article.search-performance.view-mode-cardbig {
  3907. width: 425px;
  3908. height: 115px;
  3909. display: moz-inline-stack;
  3910. display: inline-block;
  3911. vertical-align: top;
  3912. zoom: 1;
  3913. *display: inline;
  3914. position: relative;
  3915. margin: 7px;
  3916. border-radius: 5px;
  3917. background-clip: padding-box;
  3918. background-color: #FFF;
  3919. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3920. transition: box-shadow 0.3s ease-out;
  3921. display: block;
  3922. margin: 0 auto; }
  3923. article.search-performance.view-mode-cardfull {
  3924. width: 850px;
  3925. height: 115px;
  3926. display: moz-inline-stack;
  3927. display: inline-block;
  3928. vertical-align: top;
  3929. zoom: 1;
  3930. *display: inline;
  3931. position: relative;
  3932. margin: 7px;
  3933. border-radius: 5px;
  3934. background-clip: padding-box;
  3935. background-color: #FFF;
  3936. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3937. transition: box-shadow 0.3s ease-out;
  3938. display: block;
  3939. margin: 0 auto; }
  3940. article.search-performance.view-mode-cardfull .inner {
  3941. padding: 1em 212px; }
  3942. /*
  3943. ______ __ ____ __ __
  3944. / ____/___ __________/ / / __ )____ ____ / /______ ___ ____ ______/ /_______
  3945. / / / __ `/ ___/ __ / / __ / __ \/ __ \/ //_/ __ `__ \/ __ `/ ___/ //_/ ___/
  3946. / /___/ /_/ / / / /_/ / / /_/ / /_/ / /_/ / ,< / / / / / / /_/ / / / ,< (__ )
  3947. \____/\__,_/_/ \__,_/ /_____/\____/\____/_/|_/_/ /_/ /_/\__,_/_/ /_/|_/____/
  3948. */
  3949. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  3950. width: 50px;
  3951. height: 70px;
  3952. display: moz-inline-stack;
  3953. display: inline-block;
  3954. vertical-align: top;
  3955. zoom: 1;
  3956. *display: inline;
  3957. position: relative;
  3958. margin: 7px;
  3959. border-radius: 5px;
  3960. background-clip: padding-box;
  3961. background-color: #FFF;
  3962. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3963. transition: box-shadow 0.3s ease-out;
  3964. margin: 3px; }
  3965. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  3966. border-radius: 5px;
  3967. background-clip: padding-box;
  3968. overflow: hidden; }
  3969. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  3970. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  3971. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  3972. opacity: 0; }
  3973. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  3974. transition: margin 0.3s ease-out; }
  3975. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  3976. margin-left: -50px;
  3977. margin-right: 50px; }
  3978. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  3979. position: absolute;
  3980. top: 0;
  3981. left: 0;
  3982. z-index: 999; }
  3983. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  3984. transition: width 0.3s ease-out;
  3985. width: 0;
  3986. padding-left: 0;
  3987. padding-right: 0;
  3988. margin-right: 0;
  3989. margin-left: 0;
  3990. overflow: hidden; }
  3991. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  3992. position: absolute;
  3993. top: 0;
  3994. right: 0;
  3995. z-index: 11;
  3996. padding: 5px 0;
  3997. border-radius: 0 5px 0 3px;
  3998. background-clip: padding-box;
  3999. font-size: 10px;
  4000. background-color: rgba(255, 255, 255, 0.9);
  4001. color: #000; }
  4002. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  4003. color: #000; }
  4004. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4005. background-color: rgba(255, 255, 255, 0.9); }
  4006. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  4007. font-weight: 900;
  4008. font-size: 14px; }
  4009. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4010. padding: 0;
  4011. margin: 0; }
  4012. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  4013. position: relative; }
  4014. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  4015. margin: 0 5px; }
  4016. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  4017. cursor: pointer; }
  4018. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4019. position: absolute;
  4020. right: 0;
  4021. top: 0;
  4022. margin-right: 22px;
  4023. min-width: 80px;
  4024. padding: 0;
  4025. display: block;
  4026. border-radius: 3px;
  4027. background-clip: padding-box;
  4028. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4029. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  4030. padding: 0;
  4031. margin: 0;
  4032. line-height: 1;
  4033. display: block;
  4034. height: 0;
  4035. overflow: hidden;
  4036. transition: height 0.2s ease-out; }
  4037. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  4038. display: block; }
  4039. article.node-materiau.vm-bookmark nav.nav ul.links a, article.node-breve.vm-bookmark nav.nav ul.links a {
  4040. font-size: 12px; }
  4041. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  4042. width: 160px;
  4043. font-size: 0; }
  4044. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  4045. font-size: 11px; }
  4046. 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 {
  4047. display: moz-inline-stack;
  4048. display: inline-block;
  4049. vertical-align: top;
  4050. zoom: 1;
  4051. *display: inline;
  4052. min-width: 48%;
  4053. max-width: 98%;
  4054. padding-left: 2px; }
  4055. 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 {
  4056. color: #a6a6a6;
  4057. transition: color 0.2s ease-out; }
  4058. 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 {
  4059. color: #000;
  4060. text-decoration: none; }
  4061. 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 {
  4062. display: block;
  4063. width: 100%; }
  4064. 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 > * {
  4065. margin-top: 1px;
  4066. padding-top: 1px;
  4067. border-top: 1px solid #e6e6e6; }
  4068. 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 {
  4069. color: #000; }
  4070. 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 {
  4071. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4072. 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 {
  4073. visibility: hidden; }
  4074. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  4075. background: #FFF; }
  4076. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  4077. padding: 5px 5px; }
  4078. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  4079. height: 17px; }
  4080. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4081. position: absolute;
  4082. bottom: 0;
  4083. right: 0;
  4084. z-index: 11;
  4085. padding: 5px;
  4086. border-radius: 3px 0 5px 0;
  4087. background-clip: padding-box;
  4088. font-size: 10px;
  4089. vertical-align: top;
  4090. background-color: rgba(20, 20, 20, 0.9);
  4091. color: #fff; }
  4092. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  4093. padding: 3px 0 0 4px;
  4094. display: moz-inline-stack;
  4095. display: inline-block;
  4096. vertical-align: top;
  4097. zoom: 1;
  4098. *display: inline; }
  4099. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  4100. font-size: 12px;
  4101. padding-top: 4em;
  4102. margin-top: -4.5em;
  4103. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4104. position: relative; }
  4105. 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 {
  4106. padding: 10px;
  4107. font-size: 12px; }
  4108. 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 {
  4109. display: block;
  4110. margin: 10px 0;
  4111. font-size: 18px;
  4112. padding: 0.1em 0.6em 0.2em;
  4113. border-radius: 0.3em;
  4114. background-clip: padding-box;
  4115. font-weight: bold;
  4116. border: 2px solid #69CDCF;
  4117. background-color: #69CDCF;
  4118. color: #fff;
  4119. cursor: pointer;
  4120. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4121. transition: text-shadow 0.2s ease-out;
  4122. text-align: center;
  4123. text-decoration: none; }
  4124. 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 {
  4125. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4126. 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 {
  4127. transition: text-shadow 0s ease-out;
  4128. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4129. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  4130. display: none; }
  4131. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  4132. position: relative;
  4133. z-index: 1;
  4134. background-color: #fff; }
  4135. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  4136. position: absolute;
  4137. top: 0;
  4138. left: 0; }
  4139. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  4140. position: relative;
  4141. z-index: 1; }
  4142. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4143. display: none; }
  4144. /*
  4145. ______ __ _____ ____
  4146. / ____/___ __________/ / / ___/____ ___ ____ _/ / /
  4147. / / / __ `/ ___/ __ / \__ \/ __ `__ \/ __ `/ / /
  4148. / /___/ /_/ / / / /_/ / ___/ / / / / / / /_/ / / /
  4149. \____/\__,_/_/ \__,_/ /____/_/ /_/ /_/\__,_/_/_/
  4150. */
  4151. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4152. width: 100px;
  4153. height: 140px;
  4154. display: moz-inline-stack;
  4155. display: inline-block;
  4156. vertical-align: top;
  4157. zoom: 1;
  4158. *display: inline;
  4159. position: relative;
  4160. margin: 7px;
  4161. border-radius: 5px;
  4162. background-clip: padding-box;
  4163. background-color: #FFF;
  4164. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4165. transition: box-shadow 0.3s ease-out; }
  4166. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4167. border-radius: 5px;
  4168. background-clip: padding-box;
  4169. overflow: hidden; }
  4170. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4171. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4172. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4173. opacity: 0; }
  4174. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4175. transition: margin 0.3s ease-out; }
  4176. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4177. margin-left: -100px;
  4178. margin-right: 100px; }
  4179. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4180. position: absolute;
  4181. top: 0;
  4182. left: 0;
  4183. z-index: 999; }
  4184. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4185. transition: width 0.3s ease-out;
  4186. width: 0;
  4187. padding-left: 0;
  4188. padding-right: 0;
  4189. margin-right: 0;
  4190. margin-left: 0;
  4191. overflow: hidden; }
  4192. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4193. position: absolute;
  4194. top: 0;
  4195. right: 0;
  4196. z-index: 11;
  4197. padding: 5px 0;
  4198. border-radius: 0 5px 0 3px;
  4199. background-clip: padding-box;
  4200. font-size: 10px;
  4201. background-color: rgba(255, 255, 255, 0.9);
  4202. color: #000; }
  4203. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4204. color: #000; }
  4205. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4206. background-color: rgba(255, 255, 255, 0.9); }
  4207. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4208. font-weight: 900;
  4209. font-size: 14px; }
  4210. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4211. padding: 0;
  4212. margin: 0; }
  4213. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4214. position: relative; }
  4215. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4216. margin: 0 5px; }
  4217. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4218. cursor: pointer; }
  4219. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4220. position: absolute;
  4221. right: 0;
  4222. top: 0;
  4223. margin-right: 22px;
  4224. min-width: 80px;
  4225. padding: 0;
  4226. display: block;
  4227. border-radius: 3px;
  4228. background-clip: padding-box;
  4229. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4230. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4231. padding: 0;
  4232. margin: 0;
  4233. line-height: 1;
  4234. display: block;
  4235. height: 0;
  4236. overflow: hidden;
  4237. transition: height 0.2s ease-out; }
  4238. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4239. display: block; }
  4240. article.node-materiau.vm-cardsmall nav.nav ul.links a, article.node-breve.vm-cardsmall nav.nav ul.links a {
  4241. font-size: 12px; }
  4242. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4243. width: 160px;
  4244. font-size: 0; }
  4245. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4246. font-size: 11px; }
  4247. 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 {
  4248. display: moz-inline-stack;
  4249. display: inline-block;
  4250. vertical-align: top;
  4251. zoom: 1;
  4252. *display: inline;
  4253. min-width: 48%;
  4254. max-width: 98%;
  4255. padding-left: 2px; }
  4256. 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 {
  4257. color: #a6a6a6;
  4258. transition: color 0.2s ease-out; }
  4259. 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 {
  4260. color: #000;
  4261. text-decoration: none; }
  4262. 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 {
  4263. display: block;
  4264. width: 100%; }
  4265. 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 > * {
  4266. margin-top: 1px;
  4267. padding-top: 1px;
  4268. border-top: 1px solid #e6e6e6; }
  4269. 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 {
  4270. color: #000; }
  4271. 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 {
  4272. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4273. 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 {
  4274. visibility: hidden; }
  4275. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4276. background: #FFF; }
  4277. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4278. padding: 5px 5px; }
  4279. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4280. height: 17px; }
  4281. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4282. position: absolute;
  4283. bottom: 0;
  4284. right: 0;
  4285. z-index: 11;
  4286. padding: 5px;
  4287. border-radius: 3px 0 5px 0;
  4288. background-clip: padding-box;
  4289. font-size: 10px;
  4290. vertical-align: top;
  4291. background-color: rgba(20, 20, 20, 0.9);
  4292. color: #fff; }
  4293. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4294. padding: 3px 0 0 4px;
  4295. display: moz-inline-stack;
  4296. display: inline-block;
  4297. vertical-align: top;
  4298. zoom: 1;
  4299. *display: inline; }
  4300. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4301. font-size: 12px;
  4302. padding-top: 4em;
  4303. margin-top: -4.5em;
  4304. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4305. position: relative; }
  4306. 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 {
  4307. padding: 10px;
  4308. font-size: 12px; }
  4309. 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 {
  4310. display: block;
  4311. margin: 10px 0;
  4312. font-size: 18px;
  4313. padding: 0.1em 0.6em 0.2em;
  4314. border-radius: 0.3em;
  4315. background-clip: padding-box;
  4316. font-weight: bold;
  4317. border: 2px solid #69CDCF;
  4318. background-color: #69CDCF;
  4319. color: #fff;
  4320. cursor: pointer;
  4321. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4322. transition: text-shadow 0.2s ease-out;
  4323. text-align: center;
  4324. text-decoration: none; }
  4325. 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 {
  4326. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4327. 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 {
  4328. transition: text-shadow 0s ease-out;
  4329. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4330. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4331. display: none;
  4332. position: absolute;
  4333. font-size: 14px;
  4334. font-weight: 500; }
  4335. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4336. font-weight: 700; }
  4337. 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 {
  4338. display: moz-inline-stack;
  4339. display: inline-block;
  4340. vertical-align: top;
  4341. zoom: 1;
  4342. *display: inline;
  4343. font-size: 12px; }
  4344. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4345. float: right; }
  4346. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4347. position: relative;
  4348. z-index: 1;
  4349. background-color: #fff;
  4350. border-radius: 5px;
  4351. background-clip: padding-box;
  4352. overflow: hidden; }
  4353. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4354. position: absolute;
  4355. top: 0;
  4356. left: 0; }
  4357. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4358. position: relative;
  4359. z-index: 1; }
  4360. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4361. width: 75px;
  4362. min-width: 75px; }
  4363. 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 {
  4364. width: 98%; }
  4365. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4366. background: #FFF; }
  4367. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4368. visibility: hidden; }
  4369. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4370. margin-top: -100000px; }
  4371. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4372. opacity: 0;
  4373. transition: visibility 0s 0.3s; }
  4374. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4375. transition: margin-top 0s 0.3s; }
  4376. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4377. visibility: hidden; }
  4378. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4379. margin-top: -100000px; }
  4380. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4381. opacity: 0;
  4382. transition: visibility 0s 0.3s; }
  4383. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4384. transition: margin-top 0s 0.3s; }
  4385. /*
  4386. ______ ____ _ ____ __
  4387. /_ __/___ ____ / / /_(_)___ _________ ___ ____ _/ / / _________ __________/ /
  4388. / / / __ \/ __ \/ / __/ / __ \ / ___/ __ `__ \/ __ `/ / / / ___/ __ `/ ___/ __ /
  4389. / / / /_/ / /_/ / / /_/ / /_/ / (__ ) / / / / / /_/ / / / / /__/ /_/ / / / /_/ /
  4390. /_/ \____/\____/_/\__/_/ .___/ /____/_/ /_/ /_/\__,_/_/_/ \___/\__,_/_/ \__,_/
  4391. /_/
  4392. */
  4393. #tooltip .group-header.smallcard {
  4394. font-size: 14px;
  4395. font-weight: 500; }
  4396. #tooltip .group-header.smallcard .field-name-title-field {
  4397. font-weight: 700; }
  4398. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4399. display: moz-inline-stack;
  4400. display: inline-block;
  4401. vertical-align: top;
  4402. zoom: 1;
  4403. *display: inline;
  4404. font-size: 12px; }
  4405. #tooltip .group-header.smallcard .field-name-field-localisation {
  4406. float: right; }
  4407. /*
  4408. ______ __ __ ___ ___
  4409. / ____/___ __________/ / / |/ /__ ____/ (_)_ ______ ___
  4410. / / / __ `/ ___/ __ / / /|_/ / _ \/ __ / / / / / __ `__ / /___/ /_/ / / / /_/ / / / / / __/ /_/ / / /_/ / / / / / /
  4411. \____/\__,_/_/ \__,_/ /_/ /_/\___/\__,_/_/\__,_/_/ /_/ /_/
  4412. */
  4413. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4414. width: 210px;
  4415. height: 295px;
  4416. display: moz-inline-stack;
  4417. display: inline-block;
  4418. vertical-align: top;
  4419. zoom: 1;
  4420. *display: inline;
  4421. position: relative;
  4422. margin: 7px;
  4423. border-radius: 5px;
  4424. background-clip: padding-box;
  4425. background-color: #FFF;
  4426. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4427. transition: box-shadow 0.3s ease-out; }
  4428. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4429. border-radius: 5px;
  4430. background-clip: padding-box;
  4431. overflow: hidden; }
  4432. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4433. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4434. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4435. opacity: 0; }
  4436. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4437. transition: margin 0.3s ease-out; }
  4438. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4439. margin-left: -210px;
  4440. margin-right: 210px; }
  4441. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4442. position: absolute;
  4443. top: 0;
  4444. left: 0;
  4445. z-index: 999; }
  4446. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4447. transition: width 0.3s ease-out;
  4448. width: 0;
  4449. padding-left: 0;
  4450. padding-right: 0;
  4451. margin-right: 0;
  4452. margin-left: 0;
  4453. overflow: hidden; }
  4454. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4455. position: absolute;
  4456. top: 0;
  4457. right: 0;
  4458. z-index: 11;
  4459. padding: 5px 0;
  4460. border-radius: 0 5px 0 3px;
  4461. background-clip: padding-box;
  4462. font-size: 10px;
  4463. background-color: rgba(255, 255, 255, 0.9);
  4464. color: #000; }
  4465. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4466. color: #000; }
  4467. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4468. background-color: rgba(255, 255, 255, 0.9); }
  4469. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4470. font-weight: 900;
  4471. font-size: 14px; }
  4472. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4473. padding: 0;
  4474. margin: 0; }
  4475. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4476. position: relative; }
  4477. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4478. margin: 0 5px; }
  4479. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4480. cursor: pointer; }
  4481. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4482. position: absolute;
  4483. right: 0;
  4484. top: 0;
  4485. margin-right: 22px;
  4486. min-width: 80px;
  4487. padding: 0;
  4488. display: block;
  4489. border-radius: 3px;
  4490. background-clip: padding-box;
  4491. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4492. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4493. padding: 0;
  4494. margin: 0;
  4495. line-height: 1;
  4496. display: block;
  4497. height: 0;
  4498. overflow: hidden;
  4499. transition: height 0.2s ease-out; }
  4500. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4501. display: block; }
  4502. article.node-materiau.vm-cardmedium nav.nav ul.links a, article.node-breve.vm-cardmedium nav.nav ul.links a {
  4503. font-size: 12px; }
  4504. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4505. width: 160px;
  4506. font-size: 0; }
  4507. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4508. font-size: 11px; }
  4509. 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 {
  4510. display: moz-inline-stack;
  4511. display: inline-block;
  4512. vertical-align: top;
  4513. zoom: 1;
  4514. *display: inline;
  4515. min-width: 48%;
  4516. max-width: 98%;
  4517. padding-left: 2px; }
  4518. 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 {
  4519. color: #a6a6a6;
  4520. transition: color 0.2s ease-out; }
  4521. 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 {
  4522. color: #000;
  4523. text-decoration: none; }
  4524. 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 {
  4525. display: block;
  4526. width: 100%; }
  4527. 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 > * {
  4528. margin-top: 1px;
  4529. padding-top: 1px;
  4530. border-top: 1px solid #e6e6e6; }
  4531. 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 {
  4532. color: #000; }
  4533. 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 {
  4534. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4535. 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 {
  4536. visibility: hidden; }
  4537. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4538. background: #FFF; }
  4539. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4540. padding: 5px 5px; }
  4541. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4542. height: 17px; }
  4543. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4544. position: absolute;
  4545. bottom: 0;
  4546. right: 0;
  4547. z-index: 11;
  4548. padding: 5px;
  4549. border-radius: 3px 0 5px 0;
  4550. background-clip: padding-box;
  4551. font-size: 10px;
  4552. vertical-align: top;
  4553. background-color: rgba(20, 20, 20, 0.9);
  4554. color: #fff; }
  4555. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4556. padding: 3px 0 0 4px;
  4557. display: moz-inline-stack;
  4558. display: inline-block;
  4559. vertical-align: top;
  4560. zoom: 1;
  4561. *display: inline; }
  4562. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4563. font-size: 12px;
  4564. padding-top: 4em;
  4565. margin-top: -4.5em;
  4566. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4567. position: relative; }
  4568. 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 {
  4569. padding: 10px;
  4570. font-size: 12px; }
  4571. 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 {
  4572. display: block;
  4573. margin: 10px 0;
  4574. font-size: 18px;
  4575. padding: 0.1em 0.6em 0.2em;
  4576. border-radius: 0.3em;
  4577. background-clip: padding-box;
  4578. font-weight: bold;
  4579. border: 2px solid #69CDCF;
  4580. background-color: #69CDCF;
  4581. color: #fff;
  4582. cursor: pointer;
  4583. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4584. transition: text-shadow 0.2s ease-out;
  4585. text-align: center;
  4586. text-decoration: none; }
  4587. 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 {
  4588. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4589. 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 {
  4590. transition: text-shadow 0s ease-out;
  4591. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4592. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  4593. position: absolute;
  4594. width: 100%;
  4595. height: 100%;
  4596. top: 0;
  4597. left: 0;
  4598. background-color: #fff;
  4599. cursor: pointer; }
  4600. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  4601. z-index: 1; }
  4602. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  4603. position: absolute;
  4604. bottom: 0;
  4605. z-index: 2;
  4606. width: 190px;
  4607. padding: 5px 15px 5px 5px;
  4608. min-height: 55px;
  4609. font-size: 20px;
  4610. font-weight: 300;
  4611. line-height: 1;
  4612. background-color: rgba(255, 255, 255, 0.8);
  4613. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4614. transition: background-color 0.2s ease-out;
  4615. border-radius: 0 0 4px 4px;
  4616. background-clip: padding-box;
  4617. overflow: hidden; }
  4618. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  4619. font-weight: 700; }
  4620. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  4621. font-size: 14px; }
  4622. 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 {
  4623. display: moz-inline-stack;
  4624. display: inline-block;
  4625. vertical-align: top;
  4626. zoom: 1;
  4627. *display: inline;
  4628. font-size: 12px;
  4629. vertical-align: bottom;
  4630. width: 48%; }
  4631. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  4632. text-align: right; }
  4633. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  4634. background: #fff;
  4635. font-color: #000;
  4636. line-height: 1em;
  4637. padding: 10px; }
  4638. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  4639. color: #fff;
  4640. background-color: rgba(0, 0, 0, 0.7);
  4641. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4642. transition: background-color 0.2s ease-out; }
  4643. 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 {
  4644. font-size: 12px;
  4645. font-weight: 500; }
  4646. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  4647. background: #000;
  4648. font-size: 15px;
  4649. line-height: 1.2em; }
  4650. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  4651. position: relative;
  4652. z-index: 1;
  4653. background-color: #fff; }
  4654. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  4655. position: absolute;
  4656. top: 0;
  4657. left: 0; }
  4658. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  4659. position: relative;
  4660. z-index: 1; }
  4661. 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 {
  4662. font-size: 12px;
  4663. font-weight: 300;
  4664. overflow: hidden;
  4665. z-index: -1;
  4666. padding: 5px; }
  4667. 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 {
  4668. padding: 0;
  4669. transition: margin-left 0.3s ease-out; }
  4670. 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 > * {
  4671. padding: 5px; }
  4672. 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 {
  4673. display: inline-block;
  4674. border-radius: 3px;
  4675. background-clip: padding-box;
  4676. color: #fff;
  4677. background-color: #3e3e3e;
  4678. vertical-align: middle;
  4679. font-weight: 700;
  4680. font-size: 22px;
  4681. padding: 0.05em 0.15em 0.2em 0.2em;
  4682. line-height: 0.5;
  4683. font-weight: normal; }
  4684. 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 {
  4685. cursor: w-resize; }
  4686. 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 {
  4687. cursor: e-resize; }
  4688. 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 > * {
  4689. padding-right: 25px; }
  4690. article.node-materiau.vm-cardmedium .field-name-field-location, article.node-breve.vm-cardmedium .field-name-field-location {
  4691. font-size: 12px;
  4692. padding: 5px;
  4693. font-weight: 300; }
  4694. article.node-materiau.vm-cardmedium .field-name-field-location .field-label, article.node-breve.vm-cardmedium .field-name-field-location .field-label {
  4695. font-size: 10px;
  4696. text-transform: lowercase;
  4697. margin: 0; }
  4698. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  4699. padding: 5px; }
  4700. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  4701. padding: 0;
  4702. transition: margin-left 0.3s ease-out; }
  4703. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  4704. padding: 5px; }
  4705. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  4706. display: inline-block;
  4707. border-radius: 3px;
  4708. background-clip: padding-box;
  4709. color: #fff;
  4710. background-color: #3e3e3e;
  4711. vertical-align: middle;
  4712. font-weight: 700;
  4713. font-size: 22px;
  4714. padding: 0.05em 0.15em 0.2em 0.2em;
  4715. line-height: 0.5;
  4716. font-weight: normal; }
  4717. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  4718. cursor: w-resize; }
  4719. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  4720. cursor: e-resize; }
  4721. 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 {
  4722. font-size: 12px;
  4723. padding: 5px;
  4724. font-weight: 300; }
  4725. 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 {
  4726. font-size: 10px;
  4727. text-transform: lowercase;
  4728. margin: 0; }
  4729. 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 {
  4730. font-size: 14px; }
  4731. 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 {
  4732. font-size: 12px;
  4733. padding: 5px;
  4734. font-weight: 300; }
  4735. 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 {
  4736. color: #000; }
  4737. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  4738. font-weight: 900;
  4739. margin: 1em 0 0.5em; }
  4740. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4741. visibility: hidden; }
  4742. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4743. margin-top: -100000px; }
  4744. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4745. opacity: 0;
  4746. transition: visibility 0s 0.3s; }
  4747. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4748. transition: margin-top 0s 0.3s; }
  4749. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4750. visibility: hidden; }
  4751. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4752. margin-top: -100000px; }
  4753. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4754. opacity: 0;
  4755. transition: visibility 0s 0.3s; }
  4756. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4757. transition: margin-top 0s 0.3s; }
  4758. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  4759. background: #FFF; }
  4760. /*
  4761. ______ __ ____ _
  4762. / ____/___ __________/ / / __ )(_)___ _
  4763. / / / __ `/ ___/ __ / / __ / / __ `/
  4764. / /___/ /_/ / / / /_/ / / /_/ / / /_/ /
  4765. \____/\__,_/_/ \__,_/ /_____/_/\__, /
  4766. /____/
  4767. */
  4768. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  4769. width: 425px;
  4770. height: 610px;
  4771. display: moz-inline-stack;
  4772. display: inline-block;
  4773. vertical-align: top;
  4774. zoom: 1;
  4775. *display: inline;
  4776. position: relative;
  4777. margin: 7px;
  4778. border-radius: 5px;
  4779. background-clip: padding-box;
  4780. background-color: #FFF;
  4781. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4782. transition: box-shadow 0.3s ease-out; }
  4783. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  4784. border-radius: 5px;
  4785. background-clip: padding-box;
  4786. overflow: hidden; }
  4787. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  4788. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4789. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  4790. opacity: 0; }
  4791. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  4792. transition: margin 0.3s ease-out; }
  4793. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  4794. margin-left: -425px;
  4795. margin-right: 425px; }
  4796. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  4797. position: absolute;
  4798. top: 0;
  4799. left: 0;
  4800. z-index: 999; }
  4801. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  4802. transition: width 0.3s ease-out;
  4803. width: 0;
  4804. padding-left: 0;
  4805. padding-right: 0;
  4806. margin-right: 0;
  4807. margin-left: 0;
  4808. overflow: hidden; }
  4809. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  4810. position: absolute;
  4811. top: 0;
  4812. right: 0;
  4813. z-index: 11;
  4814. padding: 5px 0;
  4815. border-radius: 0 5px 0 3px;
  4816. background-clip: padding-box;
  4817. font-size: 10px;
  4818. background-color: rgba(255, 255, 255, 0.9);
  4819. color: #000; }
  4820. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  4821. color: #000; }
  4822. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4823. background-color: rgba(255, 255, 255, 0.9); }
  4824. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  4825. font-weight: 900;
  4826. font-size: 14px; }
  4827. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4828. padding: 0;
  4829. margin: 0; }
  4830. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  4831. position: relative; }
  4832. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  4833. margin: 0 5px; }
  4834. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  4835. cursor: pointer; }
  4836. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4837. position: absolute;
  4838. right: 0;
  4839. top: 0;
  4840. margin-right: 22px;
  4841. min-width: 80px;
  4842. padding: 0;
  4843. display: block;
  4844. border-radius: 3px;
  4845. background-clip: padding-box;
  4846. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4847. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  4848. padding: 0;
  4849. margin: 0;
  4850. line-height: 1;
  4851. display: block;
  4852. height: 0;
  4853. overflow: hidden;
  4854. transition: height 0.2s ease-out; }
  4855. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  4856. display: block; }
  4857. article.node-materiau.vm-cardbig nav.nav ul.links a, article.node-breve.vm-cardbig nav.nav ul.links a {
  4858. font-size: 12px; }
  4859. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  4860. width: 160px;
  4861. font-size: 0; }
  4862. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  4863. font-size: 11px; }
  4864. 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 {
  4865. display: moz-inline-stack;
  4866. display: inline-block;
  4867. vertical-align: top;
  4868. zoom: 1;
  4869. *display: inline;
  4870. min-width: 48%;
  4871. max-width: 98%;
  4872. padding-left: 2px; }
  4873. 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 {
  4874. color: #a6a6a6;
  4875. transition: color 0.2s ease-out; }
  4876. 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 {
  4877. color: #000;
  4878. text-decoration: none; }
  4879. 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 {
  4880. display: block;
  4881. width: 100%; }
  4882. 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 > * {
  4883. margin-top: 1px;
  4884. padding-top: 1px;
  4885. border-top: 1px solid #e6e6e6; }
  4886. 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 {
  4887. color: #000; }
  4888. 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 {
  4889. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4890. 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 {
  4891. visibility: hidden; }
  4892. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  4893. background: #FFF; }
  4894. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  4895. padding: 5px 5px; }
  4896. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  4897. height: 17px; }
  4898. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  4899. position: absolute;
  4900. bottom: 0;
  4901. right: 0;
  4902. z-index: 11;
  4903. padding: 5px;
  4904. border-radius: 3px 0 5px 0;
  4905. background-clip: padding-box;
  4906. font-size: 10px;
  4907. vertical-align: top;
  4908. background-color: rgba(20, 20, 20, 0.9);
  4909. color: #fff; }
  4910. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  4911. padding: 3px 0 0 4px;
  4912. display: moz-inline-stack;
  4913. display: inline-block;
  4914. vertical-align: top;
  4915. zoom: 1;
  4916. *display: inline; }
  4917. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  4918. font-size: 12px;
  4919. padding-top: 4em;
  4920. margin-top: -4.5em;
  4921. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4922. position: relative; }
  4923. 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 {
  4924. padding: 10px;
  4925. font-size: 12px; }
  4926. 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 {
  4927. display: block;
  4928. margin: 10px 0;
  4929. font-size: 18px;
  4930. padding: 0.1em 0.6em 0.2em;
  4931. border-radius: 0.3em;
  4932. background-clip: padding-box;
  4933. font-weight: bold;
  4934. border: 2px solid #69CDCF;
  4935. background-color: #69CDCF;
  4936. color: #fff;
  4937. cursor: pointer;
  4938. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4939. transition: text-shadow 0.2s ease-out;
  4940. text-align: center;
  4941. text-decoration: none; }
  4942. 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 {
  4943. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4944. 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 {
  4945. transition: text-shadow 0s ease-out;
  4946. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4947. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  4948. position: absolute;
  4949. width: 100%;
  4950. height: 100%;
  4951. top: 0;
  4952. left: 0;
  4953. background-color: #fff;
  4954. height: 270px;
  4955. top: 340px;
  4956. cursor: pointer; }
  4957. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  4958. z-index: 1; }
  4959. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  4960. position: relative;
  4961. border-radius: 5px 5px 0 0;
  4962. background-clip: padding-box;
  4963. overflow: hidden; }
  4964. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  4965. position: absolute;
  4966. bottom: 0;
  4967. z-index: 2;
  4968. width: 405px;
  4969. padding: 10px;
  4970. font-size: 20px;
  4971. font-weight: 300;
  4972. line-height: 1.1;
  4973. background-color: rgba(255, 255, 255, 0.8);
  4974. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4975. transition: background-color 0.2s ease-out; }
  4976. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  4977. font-weight: 700; }
  4978. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  4979. font-size: 14px; }
  4980. 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 {
  4981. display: moz-inline-stack;
  4982. display: inline-block;
  4983. vertical-align: top;
  4984. zoom: 1;
  4985. *display: inline;
  4986. font-size: 12px;
  4987. vertical-align: bottom;
  4988. width: 48%; }
  4989. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  4990. text-align: right; }
  4991. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  4992. background: #fff;
  4993. font-color: #000;
  4994. line-height: 1em;
  4995. padding: 20px;
  4996. border-bottom: 1px solid #C6C6C6; }
  4997. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  4998. color: #fff;
  4999. background-color: rgba(0, 0, 0, 0.7);
  5000. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5001. transition: background-color 0.2s ease-out; }
  5002. 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 {
  5003. font-size: 12px;
  5004. font-weight: 500; }
  5005. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  5006. background: #000;
  5007. font-color: #fff;
  5008. line-height: 1em;
  5009. padding: 20px; }
  5010. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  5011. position: relative;
  5012. z-index: 1;
  5013. background-color: #fff;
  5014. height: auto; }
  5015. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  5016. position: absolute;
  5017. top: 0;
  5018. left: 0; }
  5019. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  5020. position: relative;
  5021. z-index: 1; }
  5022. 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 {
  5023. font-size: 12px;
  5024. font-weight: 300;
  5025. padding: 10px; }
  5026. 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 {
  5027. padding: 0;
  5028. transition: margin-left 0.3s ease-out; }
  5029. 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 > * {
  5030. padding: 10px; }
  5031. 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 {
  5032. display: inline-block;
  5033. border-radius: 3px;
  5034. background-clip: padding-box;
  5035. color: #fff;
  5036. background-color: #3e3e3e;
  5037. vertical-align: middle;
  5038. font-weight: 700;
  5039. font-size: 22px;
  5040. padding: 0.05em 0.15em 0.2em 0.2em;
  5041. line-height: 0.5;
  5042. font-weight: normal; }
  5043. 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 {
  5044. cursor: w-resize; }
  5045. 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 {
  5046. cursor: e-resize; }
  5047. article.node-materiau.vm-cardbig .field-name-field-location, article.node-breve.vm-cardbig .field-name-field-location {
  5048. font-size: 12px;
  5049. padding: 10px;
  5050. font-weight: 300; }
  5051. article.node-materiau.vm-cardbig .field-name-field-location .field-label, article.node-breve.vm-cardbig .field-name-field-location .field-label {
  5052. font-size: 10px;
  5053. text-transform: lowercase;
  5054. float: none; }
  5055. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  5056. padding: 10px; }
  5057. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  5058. padding: 0;
  5059. transition: margin-left 0.3s ease-out; }
  5060. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  5061. padding: 10px; }
  5062. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  5063. display: inline-block;
  5064. border-radius: 3px;
  5065. background-clip: padding-box;
  5066. color: #fff;
  5067. background-color: #3e3e3e;
  5068. vertical-align: middle;
  5069. font-weight: 700;
  5070. font-size: 22px;
  5071. padding: 0.05em 0.15em 0.2em 0.2em;
  5072. line-height: 0.5;
  5073. font-weight: normal; }
  5074. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  5075. cursor: w-resize; }
  5076. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  5077. cursor: e-resize; }
  5078. 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 {
  5079. font-size: 12px;
  5080. padding: 10px;
  5081. font-weight: 300; }
  5082. 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 {
  5083. font-size: 10px;
  5084. text-transform: lowercase;
  5085. float: none; }
  5086. 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 {
  5087. font-size: 14px; }
  5088. 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 {
  5089. font-size: 12px;
  5090. padding: 10px;
  5091. font-weight: 300; }
  5092. 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 {
  5093. color: #000; }
  5094. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  5095. font-weight: 900;
  5096. margin: 0 0 0.5em; }
  5097. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  5098. background: #FFF; }
  5099. 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 {
  5100. padding: 3em; }
  5101. 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 {
  5102. border: 2px solid #eee;
  5103. background-color: #eee;
  5104. color: #fff;
  5105. transition: border 0.3s ease-out;
  5106. transition: background-color 0.3s ease-out; }
  5107. 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 {
  5108. border: 2px solid #69CDCF;
  5109. background-color: #69CDCF; }
  5110. /*
  5111. ______ __ ______ ____
  5112. / ____/___ __________/ / / ____/_ __/ / /
  5113. / / / __ `/ ___/ __ / / /_ / / / / / /
  5114. / /___/ /_/ / / / /_/ / / __/ / /_/ / / /
  5115. \____/\__,_/_/ \__,_/ /_/ \__,_/_/_/
  5116. */
  5117. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  5118. width: 850px;
  5119. height: 610px;
  5120. display: moz-inline-stack;
  5121. display: inline-block;
  5122. vertical-align: top;
  5123. zoom: 1;
  5124. *display: inline;
  5125. position: relative;
  5126. margin: 7px;
  5127. border-radius: 5px;
  5128. background-clip: padding-box;
  5129. background-color: #FFF;
  5130. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5131. transition: box-shadow 0.3s ease-out;
  5132. font-size: 0px; }
  5133. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  5134. border-radius: 5px;
  5135. background-clip: padding-box;
  5136. overflow: hidden; }
  5137. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  5138. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5139. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  5140. opacity: 0; }
  5141. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  5142. transition: margin 0.3s ease-out; }
  5143. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  5144. margin-left: -850px;
  5145. margin-right: 850px; }
  5146. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  5147. position: absolute;
  5148. top: 0;
  5149. left: 0;
  5150. z-index: 999; }
  5151. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  5152. transition: width 0.3s ease-out;
  5153. width: 0;
  5154. padding-left: 0;
  5155. padding-right: 0;
  5156. margin-right: 0;
  5157. margin-left: 0;
  5158. overflow: hidden; }
  5159. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5160. position: absolute;
  5161. top: 0;
  5162. right: 0;
  5163. z-index: 11;
  5164. padding: 5px 0;
  5165. border-radius: 0 5px 0 3px;
  5166. background-clip: padding-box;
  5167. font-size: 10px;
  5168. background-color: rgba(255, 255, 255, 0.9);
  5169. color: #000; }
  5170. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5171. color: #000; }
  5172. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5173. background-color: rgba(255, 255, 255, 0.9); }
  5174. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5175. font-weight: 900;
  5176. font-size: 14px; }
  5177. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5178. padding: 0;
  5179. margin: 0; }
  5180. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5181. position: relative; }
  5182. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5183. margin: 0 5px; }
  5184. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5185. cursor: pointer; }
  5186. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5187. position: absolute;
  5188. right: 0;
  5189. top: 0;
  5190. margin-right: 22px;
  5191. min-width: 80px;
  5192. padding: 0;
  5193. display: block;
  5194. border-radius: 3px;
  5195. background-clip: padding-box;
  5196. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5197. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5198. padding: 0;
  5199. margin: 0;
  5200. line-height: 1;
  5201. display: block;
  5202. height: 0;
  5203. overflow: hidden;
  5204. transition: height 0.2s ease-out; }
  5205. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5206. display: block; }
  5207. article.node-materiau.vm-cardfull nav.nav ul.links a, article.node-breve.vm-cardfull nav.nav ul.links a {
  5208. font-size: 12px; }
  5209. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5210. width: 160px;
  5211. font-size: 0; }
  5212. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5213. font-size: 11px; }
  5214. 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 {
  5215. display: moz-inline-stack;
  5216. display: inline-block;
  5217. vertical-align: top;
  5218. zoom: 1;
  5219. *display: inline;
  5220. min-width: 48%;
  5221. max-width: 98%;
  5222. padding-left: 2px; }
  5223. 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 {
  5224. color: #a6a6a6;
  5225. transition: color 0.2s ease-out; }
  5226. 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 {
  5227. color: #000;
  5228. text-decoration: none; }
  5229. 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 {
  5230. display: block;
  5231. width: 100%; }
  5232. 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 > * {
  5233. margin-top: 1px;
  5234. padding-top: 1px;
  5235. border-top: 1px solid #e6e6e6; }
  5236. 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 {
  5237. color: #000; }
  5238. 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 {
  5239. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5240. 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 {
  5241. visibility: hidden; }
  5242. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5243. background: #FFF; }
  5244. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5245. padding: 5px 5px; }
  5246. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5247. height: 17px; }
  5248. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5249. position: absolute;
  5250. bottom: 0;
  5251. right: 0;
  5252. z-index: 11;
  5253. padding: 5px;
  5254. border-radius: 3px 0 5px 0;
  5255. background-clip: padding-box;
  5256. font-size: 10px;
  5257. vertical-align: top;
  5258. background-color: rgba(20, 20, 20, 0.9);
  5259. color: #fff; }
  5260. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5261. padding: 3px 0 0 4px;
  5262. display: moz-inline-stack;
  5263. display: inline-block;
  5264. vertical-align: top;
  5265. zoom: 1;
  5266. *display: inline; }
  5267. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5268. font-size: 12px;
  5269. padding-top: 4em;
  5270. margin-top: -4.5em;
  5271. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5272. position: relative; }
  5273. 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 {
  5274. padding: 10px;
  5275. font-size: 12px; }
  5276. 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 {
  5277. display: block;
  5278. margin: 10px 0;
  5279. font-size: 18px;
  5280. padding: 0.1em 0.6em 0.2em;
  5281. border-radius: 0.3em;
  5282. background-clip: padding-box;
  5283. font-weight: bold;
  5284. border: 2px solid #69CDCF;
  5285. background-color: #69CDCF;
  5286. color: #fff;
  5287. cursor: pointer;
  5288. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5289. transition: text-shadow 0.2s ease-out;
  5290. text-align: center;
  5291. text-decoration: none; }
  5292. 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 {
  5293. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5294. 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 {
  5295. transition: text-shadow 0s ease-out;
  5296. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  5297. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5298. top: 0; }
  5299. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  5300. font-size: 16px; }
  5301. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  5302. display: moz-inline-stack;
  5303. display: inline-block;
  5304. vertical-align: top;
  5305. zoom: 1;
  5306. *display: inline;
  5307. width: 50%; }
  5308. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  5309. border-radius: 5px 0 0 5px;
  5310. background-clip: padding-box; }
  5311. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  5312. border-radius: 0 5px 5px 0;
  5313. background-clip: padding-box; }
  5314. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  5315. position: relative;
  5316. z-index: 1;
  5317. background-color: #fff; }
  5318. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  5319. position: absolute;
  5320. top: 0;
  5321. left: 0; }
  5322. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  5323. position: relative;
  5324. z-index: 1; }
  5325. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  5326. font-size: 20px;
  5327. font-weight: 300;
  5328. padding: 10px 10px 0 10px; }
  5329. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  5330. font-weight: 700; }
  5331. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio {
  5332. display: moz-inline-stack;
  5333. display: inline-block;
  5334. vertical-align: top;
  5335. zoom: 1;
  5336. *display: inline;
  5337. vertical-align: baseline; }
  5338. article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio {
  5339. font-size: 12px; }
  5340. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  5341. color: #fff;
  5342. background-color: rgba(0, 0, 0, 0.7);
  5343. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5344. transition: background-color 0.2s ease-out; }
  5345. 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 {
  5346. font-weight: 500; }
  5347. article.node-materiau.vm-cardfull .field-name-field-location, article.node-breve.vm-cardfull .field-name-field-location {
  5348. font-size: 12px;
  5349. padding: 5px 10px 0 10px;
  5350. font-weight: 300; }
  5351. article.node-materiau.vm-cardfull .field-name-field-location .field-label, article.node-materiau.vm-cardfull .field-name-field-location .field-items, article.node-materiau.vm-cardfull .field-name-field-location .field-item, article.node-breve.vm-cardfull .field-name-field-location .field-label, article.node-breve.vm-cardfull .field-name-field-location .field-items, article.node-breve.vm-cardfull .field-name-field-location .field-item {
  5352. display: moz-inline-stack;
  5353. display: inline-block;
  5354. vertical-align: top;
  5355. zoom: 1;
  5356. *display: inline;
  5357. vertical-align: baseline; }
  5358. article.node-materiau.vm-cardfull .field-name-field-location .field-label, article.node-breve.vm-cardfull .field-name-field-location .field-label {
  5359. font-size: 10px;
  5360. text-transform: lowercase;
  5361. float: none; }
  5362. 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 {
  5363. font-size: 12px;
  5364. font-weight: 300;
  5365. padding: 5px 10px 0 10px; }
  5366. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  5367. padding: 10px;
  5368. font-size: 12px; }
  5369. 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 {
  5370. font-size: 12px;
  5371. padding: 10px;
  5372. font-weight: 300;
  5373. display: moz-inline-stack;
  5374. display: inline-block;
  5375. vertical-align: top;
  5376. zoom: 1;
  5377. *display: inline;
  5378. width: 40%; }
  5379. 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 {
  5380. margin-top: 1em; }
  5381. 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 {
  5382. font-size: 10px;
  5383. text-transform: lowercase;
  5384. float: none; }
  5385. 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 {
  5386. font-size: 14px; }
  5387. 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 {
  5388. font-size: 12px;
  5389. padding: 10px;
  5390. font-weight: 300; }
  5391. 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 {
  5392. color: #000; }
  5393. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  5394. font-weight: 900;
  5395. margin: 0 0 0.5em; }
  5396. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5397. margin: 5px; }
  5398. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5399. margin: 5px; }
  5400. 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 {
  5401. padding: 3em; }
  5402. 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 {
  5403. border: 2px solid #eee;
  5404. background-color: #eee;
  5405. color: #fff;
  5406. transition: border 0.3s ease-out;
  5407. transition: background-color 0.3s ease-out; }
  5408. 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 {
  5409. border: 2px solid #69CDCF;
  5410. background-color: #69CDCF; }
  5411. /*
  5412. __ ____ _ __
  5413. _________ __________/ / / __ \_____(_)___ / /_
  5414. / ___/ __ `/ ___/ __ / / /_/ / ___/ / __ \/ __/
  5415. / /__/ /_/ / / / /_/ / / ____/ / / / / / / /_
  5416. \___/\__,_/_/ \__,_/ /_/ /_/ /_/_/ /_/\__/
  5417. */
  5418. .print-node-materiau {
  5419. margin: 0 auto; }
  5420. @media screen {
  5421. .print-node-materiau {
  5422. width: 850px;
  5423. height: auto;
  5424. display: moz-inline-stack;
  5425. display: inline-block;
  5426. vertical-align: top;
  5427. zoom: 1;
  5428. *display: inline;
  5429. position: relative;
  5430. margin: 7px;
  5431. border-radius: 5px;
  5432. background-clip: padding-box;
  5433. background-color: #FFF;
  5434. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5435. transition: box-shadow 0.3s ease-out;
  5436. width: 1024px;
  5437. padding: 1em; }
  5438. .print-node-materiau > div.side {
  5439. border-radius: 5px;
  5440. background-clip: padding-box;
  5441. overflow: hidden; }
  5442. .print-node-materiau.focused {
  5443. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5444. .print-node-materiau.just-added {
  5445. opacity: 0; }
  5446. .print-node-materiau.associated {
  5447. transition: margin 0.3s ease-out; }
  5448. .print-node-materiau.associated.just-added {
  5449. margin-left: -850px;
  5450. margin-right: 850px; }
  5451. .modal-content .print-node-materiau.associated {
  5452. position: absolute;
  5453. top: 0;
  5454. left: 0;
  5455. z-index: 999; }
  5456. .print-node-materiau.removed {
  5457. transition: width 0.3s ease-out;
  5458. width: 0;
  5459. padding-left: 0;
  5460. padding-right: 0;
  5461. margin-right: 0;
  5462. margin-left: 0;
  5463. overflow: hidden; }
  5464. .print-node-materiau nav.nav {
  5465. position: absolute;
  5466. top: 0;
  5467. right: 0;
  5468. z-index: 11;
  5469. padding: 5px 0;
  5470. border-radius: 0 5px 0 3px;
  5471. background-clip: padding-box;
  5472. font-size: 10px;
  5473. background-color: rgba(255, 255, 255, 0.9);
  5474. color: #000; }
  5475. .print-node-materiau nav.nav a {
  5476. color: #000; }
  5477. .print-node-materiau nav.nav ul {
  5478. background-color: rgba(255, 255, 255, 0.9); }
  5479. .print-node-materiau nav.nav span.op {
  5480. font-weight: 900;
  5481. font-size: 14px; }
  5482. .print-node-materiau nav.nav ul {
  5483. padding: 0;
  5484. margin: 0; }
  5485. .print-node-materiau nav.nav section {
  5486. position: relative; }
  5487. .print-node-materiau nav.nav section > i {
  5488. margin: 0 5px; }
  5489. .print-node-materiau nav.nav section > i:hover {
  5490. cursor: pointer; }
  5491. .print-node-materiau nav.nav ul {
  5492. position: absolute;
  5493. right: 0;
  5494. top: 0;
  5495. margin-right: 22px;
  5496. min-width: 80px;
  5497. padding: 0;
  5498. display: block;
  5499. border-radius: 3px;
  5500. background-clip: padding-box;
  5501. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5502. .print-node-materiau nav.nav ul li {
  5503. padding: 0;
  5504. margin: 0;
  5505. line-height: 1;
  5506. display: block;
  5507. height: 0;
  5508. overflow: hidden;
  5509. transition: height 0.2s ease-out; }
  5510. .print-node-materiau nav.nav ul li a {
  5511. display: block; }
  5512. .print-node-materiau nav.nav ul.links a {
  5513. font-size: 12px; }
  5514. .print-node-materiau nav.nav ul.flag-lists-entity-links {
  5515. width: 160px;
  5516. font-size: 0; }
  5517. .print-node-materiau nav.nav ul.flag-lists-entity-links > * {
  5518. font-size: 11px; }
  5519. .print-node-materiau nav.nav ul.flag-lists-entity-links li {
  5520. display: moz-inline-stack;
  5521. display: inline-block;
  5522. vertical-align: top;
  5523. zoom: 1;
  5524. *display: inline;
  5525. min-width: 48%;
  5526. max-width: 98%;
  5527. padding-left: 2px; }
  5528. .print-node-materiau nav.nav ul.flag-lists-entity-links li a {
  5529. color: #a6a6a6;
  5530. transition: color 0.2s ease-out; }
  5531. .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 {
  5532. color: #000;
  5533. text-decoration: none; }
  5534. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5535. display: block;
  5536. width: 100%; }
  5537. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5538. margin-top: 1px;
  5539. padding-top: 1px;
  5540. border-top: 1px solid #e6e6e6; }
  5541. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5542. color: #000; }
  5543. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading {
  5544. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5545. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading a {
  5546. visibility: hidden; }
  5547. .ie8 .print-node-materiau nav.nav ul {
  5548. background: #FFF; }
  5549. .print-node-materiau nav.nav section:hover ul {
  5550. padding: 5px 5px; }
  5551. .print-node-materiau nav.nav section:hover ul li {
  5552. height: 17px; }
  5553. .print-node-materiau div.workflow {
  5554. position: absolute;
  5555. bottom: 0;
  5556. right: 0;
  5557. z-index: 11;
  5558. padding: 5px;
  5559. border-radius: 3px 0 5px 0;
  5560. background-clip: padding-box;
  5561. font-size: 10px;
  5562. vertical-align: top;
  5563. background-color: rgba(20, 20, 20, 0.9);
  5564. color: #fff; }
  5565. .print-node-materiau div.workflow span {
  5566. padding: 3px 0 0 4px;
  5567. display: moz-inline-stack;
  5568. display: inline-block;
  5569. vertical-align: top;
  5570. zoom: 1;
  5571. *display: inline; }
  5572. .print-node-materiau .field-name-field-description .upgrade {
  5573. font-size: 12px;
  5574. padding-top: 4em;
  5575. margin-top: -4.5em;
  5576. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5577. position: relative; }
  5578. .print-node-materiau .side.oops p, .print-node-materiau .side .upgrade p {
  5579. padding: 10px;
  5580. font-size: 12px; }
  5581. .print-node-materiau .side.oops p a, .print-node-materiau .side .upgrade p a {
  5582. display: block;
  5583. margin: 10px 0;
  5584. font-size: 18px;
  5585. padding: 0.1em 0.6em 0.2em;
  5586. border-radius: 0.3em;
  5587. background-clip: padding-box;
  5588. font-weight: bold;
  5589. border: 2px solid #69CDCF;
  5590. background-color: #69CDCF;
  5591. color: #fff;
  5592. cursor: pointer;
  5593. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5594. transition: text-shadow 0.2s ease-out;
  5595. text-align: center;
  5596. text-decoration: none; }
  5597. .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 {
  5598. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5599. .print-node-materiau .side.oops p a:active, .print-node-materiau .side .upgrade p a:active {
  5600. transition: text-shadow 0s ease-out;
  5601. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } }
  5602. .print-content .node-materiau.vm-print {
  5603. margin: 0;
  5604. position: relative; }
  5605. .print-content .node-materiau.vm-print .field-name-title-field {
  5606. font-weight: 500;
  5607. font-size: 1.4em; }
  5608. .print-content .node-materiau.vm-print .field-name-field-nature-titre {
  5609. font-weight: 500;
  5610. font-size: 1em;
  5611. margin-bottom: 0.5em; }
  5612. .print-content .node-materiau.vm-print .group-head-right {
  5613. position: absolute;
  5614. top: 0;
  5615. right: 0;
  5616. padding-top: 1em;
  5617. text-align: right;
  5618. font-size: 0.8em; }
  5619. .print-content .node-materiau.vm-print .group-head-right .field-name-field-reference-materio {
  5620. font-weight: 800;
  5621. font-size: 1.2em; }
  5622. .print-content .node-materiau.vm-print .side.group-side-left {
  5623. width: 45%;
  5624. position: absolute; }
  5625. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-description {
  5626. font-size: 0.8em; }
  5627. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-location {
  5628. font-size: 0.7em; }
  5629. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference {
  5630. display: inline-block;
  5631. vertical-align: top;
  5632. width: 45%;
  5633. margin: 0.5em 1em 0 0;
  5634. font-size: 0.7em; }
  5635. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .field-label {
  5636. font-size: 0.8em;
  5637. font-weight: 300; }
  5638. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-name-field-tode-company {
  5639. font-size: 1.2em; }
  5640. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-label {
  5641. display: none; }
  5642. .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 {
  5643. max-width: 100%; }
  5644. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image {
  5645. text-align: right; }
  5646. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure {
  5647. display: inline-block;
  5648. max-width: 19%;
  5649. margin: 0.5em 0 0 0.5em;
  5650. max-width: 100%;
  5651. margin-left: 50%; }
  5652. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure img {
  5653. max-width: 100%; }
  5654. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item {
  5655. display: none;
  5656. max-width: 19%;
  5657. margin: 0.5em 0 0 0.5em; }
  5658. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+7) {
  5659. display: inline-block; }
  5660. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+2) {
  5661. max-width: 100%;
  5662. margin-left: 50%; }
  5663. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item img {
  5664. max-width: 100%; }
  5665. .print-content .node-materiau.vm-print .field-name-field-tode-company {
  5666. font-size: 1.5em;
  5667. font-weight: 700; }
  5668. .print-content .node-materiau.vm-print .field-name-field-description,
  5669. .print-content .node-materiau.vm-print .field-name-field-company-fab,
  5670. .print-content .node-materiau.vm-print .field-name-field-reference-distrib {
  5671. padding-bottom: 1em; }
  5672. /*
  5673. ____ ____ _____ ________
  5674. / __ \/ __ \/ _/ | / /_ __/
  5675. / /_/ / /_/ // // |/ / / /
  5676. / ____/ _, _// // /| / / /
  5677. /_/ /_/ |_/___/_/ |_/ /_/
  5678. */
  5679. @media print {
  5680. @page {
  5681. margin: 1.5cm 7mm 8mm; } }
  5682. .print-site_name {
  5683. width: 100%;
  5684. vertical-align: bottom;
  5685. margin-bottom: 0.5em; }
  5686. .print-site_name h1 {
  5687. margin: 0 0 0 0;
  5688. font-size: 1.4em;
  5689. text-align: center; }
  5690. .print-site_name h1 a {
  5691. color: inherit; }
  5692. .print-site_name h1 a:hover {
  5693. text-decoration: none; }
  5694. .print-site_name span.slogan {
  5695. display: none;
  5696. font-size: 0.8em;
  5697. margin-top: -3px;
  5698. margin-left: -0.5em;
  5699. font-weight: 900; }
  5700. .ie8 .print-site_name span.slogan {
  5701. position: absolute;
  5702. margin-top: 22px; }
  5703. .print-content {
  5704. margin-bottom: 1em; }
  5705. .print-footer {
  5706. position: absolute;
  5707. bottom: 0;
  5708. text-align: center;
  5709. width: 100%; }
  5710. .print-footer p {
  5711. display: inline-block;
  5712. width: 45%;
  5713. text-align: center; }
  5714. /*
  5715. ___ __ ____________ __________ __ _______ __ __________________
  5716. / | / / / /_ __/ __ \/ ____/ __ \/ |/ / __ \/ / / ____/_ __/ ____/
  5717. / /| |/ / / / / / / / / / / / / / / /|_/ / /_/ / / / __/ / / / __/
  5718. / ___ / /_/ / / / / /_/ / /___/ /_/ / / / / ____/ /___/ /___ / / / /___
  5719. /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/
  5720. */
  5721. #autocomplete {
  5722. border: 0;
  5723. border-radius: 3px;
  5724. background-clip: padding-box;
  5725. background-color: rgba(0, 0, 0, 0.6);
  5726. text-align: left;
  5727. margin-left: 2px; }
  5728. .oldie #autocomplete {
  5729. background-color: #545454; }
  5730. #autocomplete li {
  5731. color: #FFF;
  5732. background-color: transparent;
  5733. font-size: 12px; }
  5734. #autocomplete li.selected {
  5735. background-color: rgba(0, 0, 0, 0.8); }
  5736. #autocomplete li div {
  5737. padding: 0.1em 5px; }
  5738. /**
  5739. * the old modal api (balck bg) for contextual forms (create new flag list)
  5740. */
  5741. #modal {
  5742. background-color: rgba(0, 0, 0, 0.7);
  5743. border-radius: 5px;
  5744. background-clip: padding-box;
  5745. border: 0;
  5746. font-size: 12px; }
  5747. #modal * {
  5748. color: #fff;
  5749. background-color: transparent; }
  5750. #modal form {
  5751. background-color: transparent;
  5752. color: #fff;
  5753. border: 0px; }
  5754. #modal form .form-actions {
  5755. background-color: transparent;
  5756. margin: 0;
  5757. padding: 0;
  5758. border: 0; }
  5759. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  5760. background-color: #fff;
  5761. color: #000;
  5762. border: 0; }
  5763. #modal form .form-actions {
  5764. text-align: right; }
  5765. #modal form input.form-submit {
  5766. -webkit-appearance: none;
  5767. -moz-appearance: none;
  5768. border-radius: 0;
  5769. border-style: solid;
  5770. border-width: 0;
  5771. cursor: pointer;
  5772. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5773. font-weight: normal;
  5774. line-height: normal;
  5775. margin: 0 0 1.25rem;
  5776. position: relative;
  5777. text-align: center;
  5778. text-decoration: none;
  5779. display: inline-block;
  5780. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5781. font-size: 0.6875rem;
  5782. background-color: #008CBA;
  5783. border-color: #007095;
  5784. color: #FFFFFF;
  5785. transition: background-color, 300ms, ease-out; }
  5786. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5787. background-color: #007095; }
  5788. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5789. color: #FFFFFF; }
  5790. #modal form input.form-submit[name="create"] {
  5791. -webkit-appearance: none;
  5792. -moz-appearance: none;
  5793. border-radius: 0;
  5794. border-style: solid;
  5795. border-width: 0;
  5796. cursor: pointer;
  5797. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5798. font-weight: normal;
  5799. line-height: normal;
  5800. margin: 0 0 1.25rem;
  5801. position: relative;
  5802. text-align: center;
  5803. text-decoration: none;
  5804. display: inline-block;
  5805. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5806. font-size: 0.6875rem;
  5807. background-color: #43AC6A;
  5808. border-color: #368a55;
  5809. color: #FFFFFF;
  5810. transition: background-color, 300ms, ease-out; }
  5811. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5812. background-color: #368a55; }
  5813. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5814. color: #FFFFFF; }
  5815. #modal form input.form-submit[name="save"] {
  5816. -webkit-appearance: none;
  5817. -moz-appearance: none;
  5818. border-radius: 0;
  5819. border-style: solid;
  5820. border-width: 0;
  5821. cursor: pointer;
  5822. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5823. font-weight: normal;
  5824. line-height: normal;
  5825. margin: 0 0 1.25rem;
  5826. position: relative;
  5827. text-align: center;
  5828. text-decoration: none;
  5829. display: inline-block;
  5830. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5831. font-size: 0.6875rem;
  5832. background-color: #43AC6A;
  5833. border-color: #368a55;
  5834. color: #FFFFFF;
  5835. transition: background-color, 300ms, ease-out; }
  5836. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5837. background-color: #368a55; }
  5838. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5839. color: #FFFFFF; }
  5840. #modal form input.form-submit[name="delete"] {
  5841. -webkit-appearance: none;
  5842. -moz-appearance: none;
  5843. border-radius: 0;
  5844. border-style: solid;
  5845. border-width: 0;
  5846. cursor: pointer;
  5847. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5848. font-weight: normal;
  5849. line-height: normal;
  5850. margin: 0 0 1.25rem;
  5851. position: relative;
  5852. text-align: center;
  5853. text-decoration: none;
  5854. display: inline-block;
  5855. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5856. font-size: 0.6875rem;
  5857. background-color: #f04124;
  5858. border-color: #cf2a0e;
  5859. color: #FFFFFF;
  5860. transition: background-color, 300ms, ease-out; }
  5861. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5862. background-color: #cf2a0e; }
  5863. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5864. color: #FFFFFF; }
  5865. #modal form input.form-submit[name="cancel"] {
  5866. -webkit-appearance: none;
  5867. -moz-appearance: none;
  5868. border-radius: 0;
  5869. border-style: solid;
  5870. border-width: 0;
  5871. cursor: pointer;
  5872. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5873. font-weight: normal;
  5874. line-height: normal;
  5875. margin: 0 0 1.25rem;
  5876. position: relative;
  5877. text-align: center;
  5878. text-decoration: none;
  5879. display: inline-block;
  5880. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5881. font-size: 0.6875rem;
  5882. background-color: #e7e7e7;
  5883. border-color: #b9b9b9;
  5884. color: #333333;
  5885. transition: background-color, 300ms, ease-out; }
  5886. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5887. background-color: #b9b9b9; }
  5888. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5889. color: #333333; }
  5890. #modal > * {
  5891. padding: 10px; }
  5892. #modal #flag-lists-form .form-item-title input {
  5893. width: 95%; }
  5894. #modal .actions {
  5895. text-align: right; }
  5896. /**
  5897. * the new modal api used for preview and register modal
  5898. */
  5899. .modal-wrapper {
  5900. bottom: 0;
  5901. left: 0;
  5902. position: fixed;
  5903. right: 0;
  5904. text-align: center;
  5905. top: 0;
  5906. white-space: nowrap;
  5907. z-index: 99998; }
  5908. .modal-wrapper:before {
  5909. content: "";
  5910. display: inline-block;
  5911. height: 100%;
  5912. margin-right: -0.25em;
  5913. vertical-align: middle; }
  5914. .modal-wrapper:after, .modal-wrapper:before {
  5915. -moz-box-sizing: border-box; }
  5916. .modal-wrapper .modal-bg {
  5917. background-color: #000;
  5918. position: absolute;
  5919. top: 0;
  5920. left: 0;
  5921. width: 100%;
  5922. height: 100%;
  5923. opacity: 0.5; }
  5924. .modal-wrapper .modal-content {
  5925. position: relative;
  5926. display: inline-block;
  5927. margin: 0 auto;
  5928. text-align: left;
  5929. vertical-align: middle;
  5930. white-space: normal;
  5931. min-height: 200px; }
  5932. /*
  5933. _______ __________ ____ __ __ ____ ___ _ __
  5934. / / ___// ____/ __ \/ __ \/ / / / / __ \/ | / | / /
  5935. __ / /\__ \/ / / /_/ / / / / / / / / /_/ / /| | / |/ /
  5936. / /_/ /___/ / /___/ _, _/ /_/ / /___/ /___/ ____/ ___ |/ /| /
  5937. \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/
  5938. */
  5939. .jspContainer .jspVerticalBar {
  5940. background-color: transparent;
  5941. width: 5px; }
  5942. .jspContainer .jspVerticalBar .jspTrack {
  5943. background-color: transparent; }
  5944. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  5945. background-color: #ccc;
  5946. border-radius: 3px;
  5947. background-clip: padding-box; }
  5948. /*
  5949. __________ ____ __ ______________
  5950. /_ __/ __ \/ __ \/ / /_ __/ _/ __ / / / / / / / / / / / / / // /_/ /
  5951. / / / /_/ / /_/ / /___/ / _/ // ____/
  5952. /_/ \____/\____/_____/_/ /___/_/
  5953. */
  5954. #tooltip {
  5955. position: absolute;
  5956. z-index: 999;
  5957. max-width: 180px;
  5958. background-color: white;
  5959. padding: 5px;
  5960. border-radius: 3px;
  5961. background-clip: padding-box;
  5962. font-size: 12px;
  5963. font-weight: 500;
  5964. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  5965. #tooltip.op-visible {
  5966. transition: opacity 0.1s ease-out; }
  5967. /*
  5968. ______________________ ____ ___ ________ __
  5969. / ____/ ____/ ____/ __ \/ __ )/ | / ____/ //_/
  5970. / /_ / __/ / __/ / / / / __ / /| |/ / / ,<
  5971. / __/ / /___/ /___/ /_/ / /_/ / ___ / /___/ /| |
  5972. /_/ /_____/_____/_____/_____/_/ |_\____/_/ |_|
  5973. */
  5974. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  5975. #block-feedback-form {
  5976. bottom: 5px;
  5977. left: 5px;
  5978. right: auto; } }
  5979. #block-feedback-form h2 {
  5980. line-height: 1.2;
  5981. font-size: 14px;
  5982. margin: 0; }
  5983. #block-feedback-form h2 .title {
  5984. display: none; }
  5985. #block-feedback-form #feedback-form-toggle {
  5986. padding: 2px 3px;
  5987. border-radius: 3px;
  5988. background-clip: padding-box;
  5989. background-color: #ff7600;
  5990. color: #fff;
  5991. line-height: 2;
  5992. font-weight: 900; }
  5993. #block-feedback-form .content {
  5994. background-color: rgba(0, 0, 0, 0.7);
  5995. border-radius: 5px;
  5996. background-clip: padding-box;
  5997. border: 0;
  5998. font-size: 12px; }
  5999. #block-feedback-form .content * {
  6000. color: #fff;
  6001. background-color: transparent; }
  6002. #block-feedback-form .content form {
  6003. background-color: transparent;
  6004. color: #fff;
  6005. border: 0px; }
  6006. #block-feedback-form .content form .form-actions {
  6007. background-color: transparent;
  6008. margin: 0;
  6009. padding: 0;
  6010. border: 0; }
  6011. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  6012. background-color: #fff;
  6013. color: #000;
  6014. border: 0; }
  6015. #block-feedback-form .content form .form-actions {
  6016. text-align: right; }
  6017. #block-feedback-form .content form input.form-submit {
  6018. -webkit-appearance: none;
  6019. -moz-appearance: none;
  6020. border-radius: 0;
  6021. border-style: solid;
  6022. border-width: 0;
  6023. cursor: pointer;
  6024. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6025. font-weight: normal;
  6026. line-height: normal;
  6027. margin: 0 0 1.25rem;
  6028. position: relative;
  6029. text-align: center;
  6030. text-decoration: none;
  6031. display: inline-block;
  6032. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6033. font-size: 0.6875rem;
  6034. background-color: #008CBA;
  6035. border-color: #007095;
  6036. color: #FFFFFF;
  6037. transition: background-color, 300ms, ease-out; }
  6038. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6039. background-color: #007095; }
  6040. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6041. color: #FFFFFF; }
  6042. #block-feedback-form .content form input.form-submit[name="create"] {
  6043. -webkit-appearance: none;
  6044. -moz-appearance: none;
  6045. border-radius: 0;
  6046. border-style: solid;
  6047. border-width: 0;
  6048. cursor: pointer;
  6049. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6050. font-weight: normal;
  6051. line-height: normal;
  6052. margin: 0 0 1.25rem;
  6053. position: relative;
  6054. text-align: center;
  6055. text-decoration: none;
  6056. display: inline-block;
  6057. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6058. font-size: 0.6875rem;
  6059. background-color: #43AC6A;
  6060. border-color: #368a55;
  6061. color: #FFFFFF;
  6062. transition: background-color, 300ms, ease-out; }
  6063. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6064. background-color: #368a55; }
  6065. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6066. color: #FFFFFF; }
  6067. #block-feedback-form .content form input.form-submit[name="save"] {
  6068. -webkit-appearance: none;
  6069. -moz-appearance: none;
  6070. border-radius: 0;
  6071. border-style: solid;
  6072. border-width: 0;
  6073. cursor: pointer;
  6074. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6075. font-weight: normal;
  6076. line-height: normal;
  6077. margin: 0 0 1.25rem;
  6078. position: relative;
  6079. text-align: center;
  6080. text-decoration: none;
  6081. display: inline-block;
  6082. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6083. font-size: 0.6875rem;
  6084. background-color: #43AC6A;
  6085. border-color: #368a55;
  6086. color: #FFFFFF;
  6087. transition: background-color, 300ms, ease-out; }
  6088. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6089. background-color: #368a55; }
  6090. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6091. color: #FFFFFF; }
  6092. #block-feedback-form .content form input.form-submit[name="delete"] {
  6093. -webkit-appearance: none;
  6094. -moz-appearance: none;
  6095. border-radius: 0;
  6096. border-style: solid;
  6097. border-width: 0;
  6098. cursor: pointer;
  6099. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6100. font-weight: normal;
  6101. line-height: normal;
  6102. margin: 0 0 1.25rem;
  6103. position: relative;
  6104. text-align: center;
  6105. text-decoration: none;
  6106. display: inline-block;
  6107. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6108. font-size: 0.6875rem;
  6109. background-color: #f04124;
  6110. border-color: #cf2a0e;
  6111. color: #FFFFFF;
  6112. transition: background-color, 300ms, ease-out; }
  6113. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6114. background-color: #cf2a0e; }
  6115. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6116. color: #FFFFFF; }
  6117. #block-feedback-form .content form input.form-submit[name="cancel"] {
  6118. -webkit-appearance: none;
  6119. -moz-appearance: none;
  6120. border-radius: 0;
  6121. border-style: solid;
  6122. border-width: 0;
  6123. cursor: pointer;
  6124. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6125. font-weight: normal;
  6126. line-height: normal;
  6127. margin: 0 0 1.25rem;
  6128. position: relative;
  6129. text-align: center;
  6130. text-decoration: none;
  6131. display: inline-block;
  6132. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6133. font-size: 0.6875rem;
  6134. background-color: #e7e7e7;
  6135. border-color: #b9b9b9;
  6136. color: #333333;
  6137. transition: background-color, 300ms, ease-out; }
  6138. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6139. background-color: #b9b9b9; }
  6140. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6141. color: #333333; }
  6142. .ie8 #block-feedback-form .content {
  6143. background: #000; }
  6144. #block-feedback-form #feedback-status-message {
  6145. background-color: #fff;
  6146. padding: 5px; }
  6147. /*
  6148. _________ _____ __ __ __ _________ ____ _____
  6149. /_ __/ | / ___// //_/ _/_/ /_ __/ | / __ ) ___/
  6150. / / / /| | \__ \/ ,< _/_/ / / / /| | / __ \__ / / / ___ |___/ / /| | _/_/ / / / ___ |/ /_/ /__/ /
  6151. /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/
  6152. */
  6153. #tasks ul.tabs {
  6154. display: moz-inline-stack;
  6155. display: inline-block;
  6156. vertical-align: top;
  6157. zoom: 1;
  6158. *display: inline;
  6159. border: 0 solid #fff;
  6160. padding: 0;
  6161. margin: 0; }
  6162. #tasks ul.tabs li {
  6163. padding: 0;
  6164. margin: 2px 5px;
  6165. border: 0 solid #fff; }
  6166. #tasks ul.tabs a {
  6167. border: 0;
  6168. color: #7f7f7f; }
  6169. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6170. font-weight: 900;
  6171. color: #000; }
  6172. #tasks ul.tabs.primary a {
  6173. font-size: 12px;
  6174. padding: 5px 10px;
  6175. background-color: #e6e6e6;
  6176. border-radius: 3px;
  6177. background-clip: padding-box; }
  6178. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6179. background-color: #e6e6e6; }
  6180. #tasks ul.tabs.secondary {
  6181. font-size: 10px;
  6182. padding: 0.5em 1em; }
  6183. /*
  6184. ______________ _____________________
  6185. / ___/_ __/ |/_ __/ _/ ____/ ___/
  6186. \__ \ / / / /| | / / / // / \__ ___/ // / / ___ |/ / _/ // /___ ___/ /
  6187. /____//_/ /_/ |_/_/ /___/\____//____/
  6188. */
  6189. /*
  6190. _ _ ___ ___ ___
  6191. | | |_ -| -_| _|
  6192. |___|___|___|_|
  6193. */
  6194. .page-user #center, .page-user-edit #center, .page-user-password #center, .page-user-reset #center, .page-toboggan #center {
  6195. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right; }
  6196. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6197. width: 800px;
  6198. margin: 0 auto; }
  6199. .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 {
  6200. display: none; }
  6201. .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 {
  6202. font-size: 12px;
  6203. padding: 5px 10px;
  6204. background-color: #e6e6e6;
  6205. border-radius: 3px;
  6206. background-clip: padding-box; }
  6207. .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 {
  6208. background-color: #e6e6e6; }
  6209. .page-user #center > *, .page-user-edit #center > *, .page-user-password #center > *, .page-user-reset #center > *, .page-toboggan #center > * {
  6210. width: 800px;
  6211. margin: 0 auto;
  6212. padding-top: 1em;
  6213. font-size: 14px; }
  6214. .page-user #center > * fieldset, .page-user-edit #center > * fieldset, .page-user-password #center > * fieldset, .page-user-reset #center > * fieldset, .page-toboggan #center > * fieldset {
  6215. margin-bottom: 1em;
  6216. border: none; }
  6217. .page-user #center > * legend, .page-user-edit #center > * legend, .page-user-password #center > * legend, .page-user-reset #center > * legend, .page-toboggan #center > * legend {
  6218. font-size: 16px;
  6219. margin: 0;
  6220. padding: 10px 0 5px 0;
  6221. line-height: 1;
  6222. border: 0 solid #fff; }
  6223. .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 {
  6224. color: #000; }
  6225. .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 {
  6226. margin: 0 0 0.5em 0;
  6227. width: 100%; }
  6228. .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 {
  6229. display: moz-inline-stack;
  6230. display: inline-block;
  6231. vertical-align: top;
  6232. zoom: 1;
  6233. *display: inline;
  6234. vertical-align: middle; }
  6235. .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 {
  6236. margin-right: 1em; }
  6237. .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 {
  6238. padding: 2px 4px;
  6239. width: 20em; }
  6240. .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 {
  6241. margin: 0 0 2em 0; }
  6242. .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 {
  6243. width: 9em; }
  6244. .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 {
  6245. width: auto; }
  6246. .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 {
  6247. width: 15em;
  6248. margin-top: 0; }
  6249. .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 {
  6250. margin: 0; }
  6251. .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 {
  6252. font-size: 14px;
  6253. margin: 0; }
  6254. .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 {
  6255. display: moz-inline-stack;
  6256. display: inline-block;
  6257. vertical-align: top;
  6258. zoom: 1;
  6259. *display: inline;
  6260. width: auto;
  6261. margin-right: 1em; }
  6262. .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 {
  6263. margin: 0; }
  6264. .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 {
  6265. width: auto;
  6266. padding: 2px 4px;
  6267. height: auto; }
  6268. .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 {
  6269. font-size: 10px; }
  6270. .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 {
  6271. margin: 0;
  6272. text-align: right;
  6273. padding: 1em 0.5em; }
  6274. .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 {
  6275. min-width: 10em; }
  6276. .page-user #center > * #edit-profile-adherent-field-first-name, .page-user #center > * #edit-profile-adherent-field-name,
  6277. .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,
  6278. .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,
  6279. .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,
  6280. .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,
  6281. .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,
  6282. .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,
  6283. .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,
  6284. .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,
  6285. .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,
  6286. .page-toboggan #center > * #edit-profile-adherent-field-naf, .page-toboggan #center > * #edit-profile-adherent-field-siret {
  6287. display: moz-inline-stack;
  6288. display: inline-block;
  6289. vertical-align: top;
  6290. zoom: 1;
  6291. *display: inline;
  6292. vertical-align: middle;
  6293. width: auto;
  6294. margin: 0 1em 0.5em 0; }
  6295. .page-user #center > * #edit-profile-adherent-field-first-name div, .page-user #center > * #edit-profile-adherent-field-name div,
  6296. .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,
  6297. .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,
  6298. .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,
  6299. .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,
  6300. .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,
  6301. .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,
  6302. .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,
  6303. .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,
  6304. .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,
  6305. .page-toboggan #center > * #edit-profile-adherent-field-naf div, .page-toboggan #center > * #edit-profile-adherent-field-siret div {
  6306. width: auto;
  6307. margin: 0;
  6308. padding: 0; }
  6309. .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 {
  6310. width: auto; }
  6311. .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 {
  6312. width: 8em; }
  6313. .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 {
  6314. width: 13em; }
  6315. .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 {
  6316. margin: 2em 0 0 0; }
  6317. .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 {
  6318. width: auto; }
  6319. .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 {
  6320. width: 4em; }
  6321. .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 {
  6322. display: moz-inline-stack;
  6323. display: inline-block;
  6324. vertical-align: top;
  6325. zoom: 1;
  6326. *display: inline;
  6327. vertical-align: middle; }
  6328. .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 {
  6329. width: 10em; }
  6330. .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 {
  6331. padding: 0; }
  6332. .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 {
  6333. width: 35em; }
  6334. .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 {
  6335. width: auto;
  6336. margin-right: 1em; }
  6337. .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 {
  6338. margin: 2em 0 0 0; }
  6339. .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 > * {
  6340. display: moz-inline-stack;
  6341. display: inline-block;
  6342. vertical-align: top;
  6343. zoom: 1;
  6344. *display: inline;
  6345. vertical-align: middle; }
  6346. .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 {
  6347. width: 35em; }
  6348. .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 {
  6349. border: 0 solid transparent; }
  6350. .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 {
  6351. display: inline; }
  6352. .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 {
  6353. padding: 0; }
  6354. /*
  6355. _ __
  6356. _____(_)___ ___ ____ / /__ ____ ___ _ _______
  6357. / ___/ / __ `__ \/ __ \/ / _ \/ __ \/ _ \ | /| / / ___/
  6358. (__ ) / / / / / / /_/ / / __/ / / / __/ |/ |/ (__ )
  6359. /____/_/_/ /_/ /_/ .___/_/\___/_/ /_/\___/|__/|__/____/
  6360. /_/
  6361. */
  6362. body.node-type-simplenews #content .inner-content {
  6363. text-align: center; }
  6364. body.node-type-simplenews #content article.node.node-simplenews {
  6365. display: moz-inline-stack;
  6366. display: inline-block;
  6367. vertical-align: top;
  6368. zoom: 1;
  6369. *display: inline;
  6370. max-width: 600px;
  6371. padding: 1em 0; }
  6372. body.node-type-simplenews #content article.node.node-simplenews tbody {
  6373. border-top: 0px; }
  6374. body.node-type-simplenews #content article.node.node-simplenews img {
  6375. max-width: 9999px; }
  6376. @media only screen and (max-width: 40em) {
  6377. body.node-type-simplenews #content article.node.node-simplenews {
  6378. max-width: 100%;
  6379. overflow-x: hidden; }
  6380. body.node-type-simplenews #content article.node.node-simplenews table {
  6381. width: 100% !important; }
  6382. body.node-type-simplenews #content article.node.node-simplenews td {
  6383. vertical-align: top; }
  6384. body.node-type-simplenews #content article.node.node-simplenews img {
  6385. max-width: 100%; }
  6386. body.node-type-simplenews #content article.node.node-simplenews p {
  6387. padding: 0 0.5em; } }
  6388. /*
  6389. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6390. | _ | _ | __| __| | | | | |_ _| _ | |_ _|
  6391. | __| | | | __| | --| | | | | | | | | | --| | |
  6392. |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_|
  6393. */
  6394. .page-node-11175 #main #center {
  6395. background: #fff url("../img/bg-contact.gif") no-repeat bottom right; }
  6396. .page-node-11175 #main .field-name-body p {
  6397. display: moz-inline-stack;
  6398. display: inline-block;
  6399. vertical-align: top;
  6400. zoom: 1;
  6401. *display: inline;
  6402. margin: 15px; }
  6403. .page-node-11175 #main .field-name-body p strong {
  6404. font-size: 18px; }
  6405. /*
  6406. _____ _____ _____ _____ _____ _____ _____
  6407. | _ | __ | | | | | | __|
  6408. | __| -|- -| --|- -| | | | | |
  6409. |__| |__|__|_____|_____|_____|_|___|_____|
  6410. */
  6411. @media only screen and (min-width: 40.0625em) {
  6412. 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 {
  6413. display: moz-inline-stack;
  6414. display: inline-block;
  6415. vertical-align: top;
  6416. zoom: 1;
  6417. *display: inline;
  6418. margin: 10px;
  6419. float: none; }
  6420. body.page-node-11187 .node-11187 .field-name-body div.column {
  6421. width: 22.4%; }
  6422. 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 {
  6423. min-height: 170px; }
  6424. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  6425. width: 46%; }
  6426. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  6427. min-height: 110px; }
  6428. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  6429. width: 92%; }
  6430. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  6431. width: auto;
  6432. max-width: 98%; }
  6433. body.page-node-11187 #block-materio-user-user-register {
  6434. width: 600px;
  6435. margin: 0 auto;
  6436. padding: 2em; } }
  6437. @media only screen and (max-width: 40em) {
  6438. body.page-node-11187 #block-system-help {
  6439. text-align: center; } }
  6440. body.page-node-11187 .node-11187 .field-name-body {
  6441. text-align: center; }
  6442. body.page-node-11187 .node-11187 .field-name-body > * {
  6443. text-align: left; }
  6444. 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 {
  6445. position: relative;
  6446. background-color: #fff;
  6447. border-radius: 5px;
  6448. background-clip: padding-box;
  6449. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  6450. overflow: hidden; }
  6451. .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 {
  6452. max-width: 500px;
  6453. margin: auto;
  6454. margin-bottom: 15px;
  6455. border: 1px solid #C6C6C6; }
  6456. 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 > * {
  6457. padding: 0 10px; }
  6458. 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 {
  6459. text-align: left;
  6460. margin: 5px 0 0 15px; }
  6461. 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 {
  6462. padding: 0 0 0 15px;
  6463. font-size: 18px;
  6464. font-style: italic;
  6465. font-weight: bold;
  6466. line-height: 1; }
  6467. 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 {
  6468. margin: 0;
  6469. padding: 0 15px; }
  6470. 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 {
  6471. list-style: none;
  6472. font-size: 12px; }
  6473. 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 {
  6474. content: "+ ";
  6475. font-weight: 900; }
  6476. 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 {
  6477. font-size: 12px;
  6478. margin: 0;
  6479. padding: 0 15px; }
  6480. 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 {
  6481. margin: 0;
  6482. border-radius: 0 0 5px 5px 0 0 0;
  6483. background-clip: padding-box;
  6484. border: 1px solid #fff;
  6485. min-height: 92px; }
  6486. 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 {
  6487. display: block;
  6488. width: 100%;
  6489. padding: 15px 0;
  6490. color: #1A1A1A;
  6491. text-decoration: none; }
  6492. 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 {
  6493. background-color: #C8C8C8; }
  6494. 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 {
  6495. background-color: #69CDCF; }
  6496. 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 {
  6497. background-color: #D476AE; }
  6498. 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 {
  6499. background-color: #E6DE1C; }
  6500. 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 {
  6501. background-color: #4BA13D; }
  6502. 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 {
  6503. min-height: 62px;
  6504. padding: 15px 0; }
  6505. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  6506. padding: 10px 0 0;
  6507. font-size: 24px; }
  6508. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  6509. padding: 0;
  6510. font-size: 24px;
  6511. text-align: center;
  6512. font-style: italic;
  6513. font-weight: 900;
  6514. cursor: pointer;
  6515. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6516. transition: text-shadow 0.3s ease-out; }
  6517. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  6518. font-size: 20px; }
  6519. 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 {
  6520. text-shadow: 0 0 3px white; }
  6521. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  6522. transition: text-shadow 0s ease-out;
  6523. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6524. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  6525. padding: 10px 0 0;
  6526. font-size: 24px;
  6527. top: 0; }
  6528. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  6529. min-height: 2em; }
  6530. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  6531. font-size: 14px;
  6532. min-height: 120px; }
  6533. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  6534. font-size: 14px;
  6535. text-align: left;
  6536. padding: 0 1em;
  6537. background-color: #ddd; }
  6538. /*
  6539. _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6540. | _ | \| | | __| __| | | | | | __| | __ | |
  6541. | | | | | __|__ |- -| | | | | | | __| | | -| | | |
  6542. |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_|
  6543. */
  6544. .node-11186 nav ul.links a.language-link {
  6545. display: none; }
  6546. #webform-client-form-11186 {
  6547. background-color: #e6e6e6;
  6548. border-radius: 10px;
  6549. background-clip: padding-box; }
  6550. @media only screen and (min-width: 40.0625em) {
  6551. #webform-client-form-11186 {
  6552. padding: 10px 30px; }
  6553. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6554. margin: 10px 0; }
  6555. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6556. width: auto; }
  6557. #webform-client-form-11186 fieldset {
  6558. border-radius: 5px;
  6559. background-clip: padding-box;
  6560. border-left: 1px solid #cccccc;
  6561. border-bottom: 1px solid #cccccc;
  6562. padding: 10px;
  6563. border-top-width: 0;
  6564. border-right-width: 0;
  6565. border-bottom-width: 0; }
  6566. #webform-client-form-11186 fieldset fieldset {
  6567. border: 0 solid #ddd;
  6568. padding: 0; }
  6569. #webform-client-form-11186 legend {
  6570. margin: 0;
  6571. font-size: 18px;
  6572. font-weight: 700; }
  6573. #webform-client-form-11186 .form-item {
  6574. margin: 0 20px 0 0; }
  6575. #webform-client-form-11186 label {
  6576. font-size: 12px;
  6577. width: 10em;
  6578. display: moz-inline-stack;
  6579. display: inline-block;
  6580. vertical-align: top;
  6581. zoom: 1;
  6582. *display: inline;
  6583. vertical-align: middle;
  6584. margin-right: 1em;
  6585. border-bottom: 1px solid #cccccc; }
  6586. #webform-client-form-11186 .description {
  6587. font-size: 10px;
  6588. width: 25em;
  6589. display: moz-inline-stack;
  6590. display: inline-block;
  6591. vertical-align: top;
  6592. zoom: 1;
  6593. *display: inline;
  6594. vertical-align: bottom;
  6595. margin-left: 1em;
  6596. color: #7f7f7f; }
  6597. #webform-client-form-11186 input.form-text {
  6598. width: 13em; } }
  6599. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  6600. #webform-client-form-11186 {
  6601. padding: 10px; }
  6602. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6603. margin: 0 0 10px 0; }
  6604. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  6605. width: 100%; }
  6606. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6607. width: 75%; }
  6608. #webform-client-form-11186 legend {
  6609. margin: 0;
  6610. font-size: 16px;
  6611. font-weight: 700; }
  6612. #webform-client-form-11186 .form-item {
  6613. margin: 0;
  6614. float: none; }
  6615. #webform-client-form-11186 label {
  6616. font-size: 12px;
  6617. width: 30%;
  6618. display: moz-inline-stack;
  6619. display: inline-block;
  6620. vertical-align: top;
  6621. zoom: 1;
  6622. *display: inline;
  6623. vertical-align: middle;
  6624. margin-right: 0.5em; }
  6625. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  6626. width: 60%; }
  6627. #webform-client-form-11186 #webform-component-infos {
  6628. font-size: 14px; } }
  6629. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  6630. display: moz-inline-stack;
  6631. display: inline-block;
  6632. vertical-align: top;
  6633. zoom: 1;
  6634. *display: inline; }
  6635. #webform-client-form-11186 #webform-component-column-left {
  6636. display: moz-inline-stack;
  6637. display: inline-block;
  6638. vertical-align: top;
  6639. zoom: 1;
  6640. *display: inline;
  6641. width: 25%;
  6642. border: none; }
  6643. #webform-client-form-11186 #webform-component-column-right {
  6644. display: moz-inline-stack;
  6645. display: inline-block;
  6646. vertical-align: top;
  6647. zoom: 1;
  6648. *display: inline;
  6649. min-width: 70%; }
  6650. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  6651. border: 1px solid #ddd;
  6652. border-radius: 5px;
  6653. background-clip: padding-box;
  6654. padding: 10px 5px;
  6655. margin: 5px 0;
  6656. background-color: #fff; }
  6657. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  6658. display: moz-inline-stack;
  6659. display: inline-block;
  6660. vertical-align: top;
  6661. zoom: 1;
  6662. *display: inline;
  6663. vertical-align: middle;
  6664. margin: 0px 5px; }
  6665. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  6666. font-size: 20px;
  6667. font-weight: 700;
  6668. display: moz-inline-stack;
  6669. display: inline-block;
  6670. vertical-align: top;
  6671. zoom: 1;
  6672. *display: inline;
  6673. vertical-align: middle;
  6674. margin: 0; }
  6675. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  6676. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  6677. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  6678. background-color: #69CDCF; }
  6679. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  6680. background-color: #D476AE; }
  6681. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  6682. background-color: #E6DE1C; }
  6683. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  6684. opacity: 0.4; }
  6685. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  6686. width: 200px;
  6687. font-size: 18px;
  6688. font-weight: 700; }
  6689. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6690. border: 0; }
  6691. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  6692. display: block; }
  6693. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  6694. display: moz-inline-stack;
  6695. display: inline-block;
  6696. vertical-align: top;
  6697. zoom: 1;
  6698. *display: inline; }
  6699. #webform-client-form-11186 #addressfield-wrapper {
  6700. margin-top: 1em; }
  6701. #webform-client-form-11186 .street-block .form-item {
  6702. display: moz-inline-stack;
  6703. display: inline-block;
  6704. vertical-align: top;
  6705. zoom: 1;
  6706. *display: inline; }
  6707. #webform-client-form-11186 #webform-component-column-right--collaborators {
  6708. margin: 20px 0;
  6709. overflow: hidden; }
  6710. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  6711. display: moz-inline-stack;
  6712. display: inline-block;
  6713. vertical-align: top;
  6714. zoom: 1;
  6715. *display: inline;
  6716. width: 33%; }
  6717. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  6718. display: block; }
  6719. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  6720. width: 6em; }
  6721. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  6722. width: 11em; }
  6723. #webform-client-form-11186 #webform-component-infos {
  6724. margin: 20px 0; }
  6725. #webform-client-form-11186 .form-actions {
  6726. padding: 0;
  6727. margin: 0;
  6728. border: 0px;
  6729. background-color: transparent;
  6730. text-align: left; }
  6731. #webform-client-form-11186 .form-actions .form-submit {
  6732. border: 2px solid #69CDCF;
  6733. background-color: #69CDCF;
  6734. color: #fff;
  6735. font-size: 18px;
  6736. padding: 0.2em 1em 0.3em;
  6737. border-radius: 0.3em;
  6738. background-clip: padding-box;
  6739. font-weight: bold;
  6740. margin-bottom: 9px;
  6741. cursor: pointer;
  6742. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6743. transition: text-shadow 0.2s ease-out; }
  6744. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  6745. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6746. #webform-client-form-11186 .form-actions .form-submit:active {
  6747. transition: text-shadow 0s ease-out;
  6748. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6749. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  6750. margin: 0;
  6751. font-size: 18px;
  6752. font-weight: 700;
  6753. border: none;
  6754. line-height: 40px; }
  6755. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  6756. display: moz-inline-stack;
  6757. display: inline-block;
  6758. vertical-align: top;
  6759. zoom: 1;
  6760. *display: inline; }
  6761. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  6762. width: auto; }
  6763. #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 {
  6764. margin: 0; }
  6765. #webform-client-form-11186 #edit-submitted-terms-of-services {
  6766. margin-bottom: 0.5em; }
  6767. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6768. margin: 0 0.3em 0 0; }
  6769. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6770. width: auto; }
  6771. /*
  6772. _____ _____ _____ _____ _____ _____ _____ _____ _____ _ _ _ _____ _____ _____ _____
  6773. | | | | | | _ | __ |_ _| | | | | __| | | | | __| | __ | |
  6774. | | | --| | --| | -| | | | | |- -| __| | | | | __| | | -| | | |
  6775. |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_|
  6776. */
  6777. #uc-cart-view-form {
  6778. background-color: #e6e6e6;
  6779. padding: 10px, 30px;
  6780. display: inline-block; }
  6781. #uc-cart-view-form table {
  6782. width: auto;
  6783. display: table;
  6784. background-color: #fff; }
  6785. #uc-cart-view-form table thead th {
  6786. border-bottom: none;
  6787. padding: 1em; }
  6788. #uc-cart-view-form table tbody {
  6789. border-top: none; }
  6790. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  6791. background-color: #fff;
  6792. border-bottom: none; }
  6793. #uc-cart-view-form table tbody td {
  6794. padding: 1em; }
  6795. #uc-cart-view-form fieldset {
  6796. border: none !important; }
  6797. #uc-cart-view-form .form-type-uc-quantity input {
  6798. width: 2em; }
  6799. #uc-cart-view-form .form-actions {
  6800. padding: 0;
  6801. margin: 0;
  6802. border: 0px;
  6803. background-color: transparent;
  6804. text-align: right;
  6805. display: block;
  6806. width: 100%; }
  6807. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  6808. display: block; }
  6809. #uc-cart-view-form .form-actions .form-submit {
  6810. font-size: 16px;
  6811. font-weight: bold;
  6812. padding: 0.1em 0.3em 0.2em;
  6813. border-radius: 0.3em;
  6814. background-clip: padding-box;
  6815. border: 2px solid #ccc;
  6816. background-color: #ccc;
  6817. color: #4D4D4D;
  6818. cursor: pointer;
  6819. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6820. transition: text-shadow 0.3s ease-out;
  6821. text-align: center;
  6822. text-decoration: none;
  6823. margin-left: 1em; }
  6824. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  6825. text-shadow: 0 0 3px white; }
  6826. #uc-cart-view-form .form-actions .form-submit:active {
  6827. transition: text-shadow 0s ease-out;
  6828. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6829. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  6830. font-size: 16px;
  6831. font-weight: bold;
  6832. padding: 0.1em 0.3em 0.2em;
  6833. border-radius: 0.3em;
  6834. background-clip: padding-box;
  6835. border: 2px solid #ccc;
  6836. background-color: #ccc;
  6837. color: #4D4D4D;
  6838. cursor: pointer;
  6839. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6840. transition: text-shadow 0.3s ease-out;
  6841. text-align: center;
  6842. text-decoration: none;
  6843. cursor: pointer;
  6844. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6845. transition: text-shadow 0.2s ease-out;
  6846. border-color: #69CDCF;
  6847. background-color: #69CDCF;
  6848. color: #fff; }
  6849. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6850. text-shadow: 0 0 3px white; }
  6851. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6852. transition: text-shadow 0s ease-out;
  6853. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6854. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6855. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6856. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6857. transition: text-shadow 0s ease-out;
  6858. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6859. /*
  6860. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6861. | | | | | | | | __| | | | | | |_ _| | __| | __ | |
  6862. | | | --| | --| | __| --| -| | | | | | | | __| | | -| | | |
  6863. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_|
  6864. */
  6865. #uc-cart-checkout-form {
  6866. background-color: #e6e6e6;
  6867. padding: 10px, 30px; }
  6868. #uc-cart-checkout-form fieldset {
  6869. border: none !important; }
  6870. #uc-cart-checkout-form fieldset.form-row {
  6871. padding-bottom: 20px;
  6872. margin-bottom: 20px; }
  6873. #uc-cart-checkout-form fieldset.form-column {
  6874. display: moz-inline-stack;
  6875. display: inline-block;
  6876. vertical-align: top;
  6877. zoom: 1;
  6878. *display: inline;
  6879. max-width: 39%;
  6880. clear: both;
  6881. float: none;
  6882. margin: 15px 1em; }
  6883. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  6884. margin: 10px 0; }
  6885. #uc-cart-checkout-form fieldset.form-column-right {
  6886. border-left: 1px solid #ccc;
  6887. margin-left: 2em;
  6888. padding-left: 2em; }
  6889. #uc-cart-checkout-form legend {
  6890. margin: 0;
  6891. font-size: 18px;
  6892. font-weight: 700;
  6893. border: none;
  6894. line-height: 2; }
  6895. #uc-cart-checkout-form .fieldset-description {
  6896. font-size: 12px; }
  6897. #uc-cart-checkout-form .fieldset-wrapper {
  6898. font-size: 12px; }
  6899. #uc-cart-checkout-form .form-item {
  6900. margin: 0 20px 0 0; }
  6901. #uc-cart-checkout-form .description {
  6902. font-size: 10px;
  6903. width: 25em;
  6904. display: moz-inline-stack;
  6905. display: inline-block;
  6906. vertical-align: top;
  6907. zoom: 1;
  6908. *display: inline;
  6909. vertical-align: bottom;
  6910. margin-left: 1em;
  6911. color: #7f7f7f; }
  6912. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  6913. display: moz-inline-stack;
  6914. display: inline-block;
  6915. vertical-align: top;
  6916. zoom: 1;
  6917. *display: inline;
  6918. border-radius: 5px;
  6919. background-clip: padding-box;
  6920. padding: 10px;
  6921. background-color: #fff; }
  6922. #uc-cart-checkout-form #cart-pane table {
  6923. font-size: 14px;
  6924. min-width: 20em; }
  6925. #uc-cart-checkout-form #cart-pane table td.price {
  6926. width: 4em; }
  6927. #uc-cart-checkout-form #cart-pane tbody {
  6928. border: none; }
  6929. #uc-cart-checkout-form #cart-pane tr {
  6930. background-color: transparent;
  6931. border: none; }
  6932. #uc-cart-checkout-form #cart-pane td {
  6933. padding: 0 5px;
  6934. vertical-align: bottom; }
  6935. #uc-cart-checkout-form #cart-pane td.products {
  6936. width: auto; }
  6937. #uc-cart-checkout-form #cart-pane td.products a {
  6938. color: inherit;
  6939. font-weight: 700; }
  6940. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  6941. margin: 0;
  6942. font-size: 12px; }
  6943. #uc-cart-checkout-form #cart-pane td.products li {
  6944. list-style: none; }
  6945. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  6946. font-size: 16px;
  6947. font-weight: 700; }
  6948. #uc-cart-checkout-form #customer-pane {
  6949. width: 35em; }
  6950. #uc-cart-checkout-form #billing-pane label {
  6951. font-size: 12px;
  6952. width: 8em;
  6953. display: moz-inline-stack;
  6954. display: inline-block;
  6955. vertical-align: top;
  6956. zoom: 1;
  6957. *display: inline;
  6958. vertical-align: middle;
  6959. margin-right: 1em;
  6960. border-bottom: 1px solid #cccccc; }
  6961. #uc-cart-checkout-form #billing-pane input.form-text {
  6962. width: 13em; }
  6963. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  6964. background-color: #fff;
  6965. border-radius: 5px;
  6966. background-clip: padding-box;
  6967. padding: 10px; }
  6968. #uc-cart-checkout-form #payment-pane #line-items-div {
  6969. float: none;
  6970. border: none;
  6971. display: moz-inline-stack;
  6972. display: inline-block;
  6973. vertical-align: top;
  6974. zoom: 1;
  6975. *display: inline;
  6976. margin: 10px 0 20px; }
  6977. #uc-cart-checkout-form #payment-pane #line-items-div table {
  6978. font-size: 14px;
  6979. min-width: 20em; }
  6980. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  6981. width: 4em; }
  6982. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  6983. border: none; }
  6984. #uc-cart-checkout-form #payment-pane #line-items-div td {
  6985. padding: 0 5px; }
  6986. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  6987. font-weight: 500; }
  6988. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  6989. font-size: 16px;
  6990. font-weight: 700;
  6991. text-align: right; }
  6992. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  6993. width: auto;
  6994. border-bottom: none; }
  6995. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  6996. border: 1px solid #ddd;
  6997. border-radius: 5px;
  6998. margin: 0.5em;
  6999. padding: 0.5em; }
  7000. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  7001. font-weight: bold; }
  7002. #uc-cart-checkout-form #payment-pane #payment-details {
  7003. width: 25em;
  7004. border-top: none;
  7005. padding: 0;
  7006. margin: 0; }
  7007. #uc-cart-checkout-form #edit-actions {
  7008. width: 100%;
  7009. padding: 1em 0;
  7010. margin: 0;
  7011. border: 0px;
  7012. background-color: transparent;
  7013. text-align: center; }
  7014. #uc-cart-checkout-form #edit-actions .form-submit {
  7015. font-size: 16px;
  7016. font-weight: bold;
  7017. padding: 0.1em 0.3em 0.2em;
  7018. border-radius: 0.3em;
  7019. background-clip: padding-box;
  7020. border: 2px solid #ccc;
  7021. background-color: #ccc;
  7022. color: #4D4D4D;
  7023. cursor: pointer;
  7024. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7025. transition: text-shadow 0.3s ease-out;
  7026. text-align: center;
  7027. text-decoration: none;
  7028. margin-left: 1em; }
  7029. #uc-cart-checkout-form #edit-actions .form-submit:hover, #uc-cart-checkout-form #edit-actions .form-submit:focus {
  7030. text-shadow: 0 0 3px white; }
  7031. #uc-cart-checkout-form #edit-actions .form-submit:active {
  7032. transition: text-shadow 0s ease-out;
  7033. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7034. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue {
  7035. font-size: 16px;
  7036. font-weight: bold;
  7037. padding: 0.1em 0.3em 0.2em;
  7038. border-radius: 0.3em;
  7039. background-clip: padding-box;
  7040. border: 2px solid #ccc;
  7041. background-color: #ccc;
  7042. color: #4D4D4D;
  7043. cursor: pointer;
  7044. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7045. transition: text-shadow 0.3s ease-out;
  7046. text-align: center;
  7047. text-decoration: none;
  7048. cursor: pointer;
  7049. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7050. transition: text-shadow 0.2s ease-out;
  7051. border-color: #69CDCF;
  7052. background-color: #69CDCF;
  7053. color: #fff; }
  7054. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  7055. text-shadow: 0 0 3px white; }
  7056. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  7057. transition: text-shadow 0s ease-out;
  7058. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7059. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  7060. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7061. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  7062. transition: text-shadow 0s ease-out;
  7063. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7064. /*
  7065. _____ _____ _____ _____ _____ _____
  7066. | | | | | | _ | __ |_ _|
  7067. | | | --| | --| | -| | |
  7068. |_____|_____| |_____|__|__|__|__| |_|
  7069. &&
  7070. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ ____ _____ _____ _____ _____ _____
  7071. | | | | | | | | __| | | | | | |_ _| | | | _ | | | | \| _ |_ _| | | | |
  7072. | | | --| | --| | __| --| -| | | | | | | | | | | |__|- -| | | | | | |- -| | | | | |
  7073. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___|
  7074. */
  7075. .page-cart-checkout-review #content > .inner-content {
  7076. display: inline-block;
  7077. padding: 1em; }
  7078. .page-cart-checkout-review #edit-actions {
  7079. margin: 0;
  7080. padding: 0; }
  7081. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  7082. display: block; }
  7083. .page-cart-checkout-review #review-instructions {
  7084. width: 30em;
  7085. padding: 1em 0; }
  7086. .page-cart-checkout-review table.order-review-table {
  7087. border: none; }
  7088. .page-cart-checkout-review table.order-review-table .pane-title-row {
  7089. border: none;
  7090. background-color: transparent;
  7091. text-align: left;
  7092. font-size: 18px; }
  7093. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  7094. padding: 1em 0 0 0; }
  7095. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  7096. background-color: transparent;
  7097. border: none; }
  7098. .page-cart-checkout-review table.order-review-table td.title-col {
  7099. padding: 0;
  7100. text-align: left; }
  7101. .page-cart-checkout-review table.order-review-table td.data-col {
  7102. padding: 0;
  7103. width: 75%; }
  7104. .page-cart-checkout-review table.order-review-table .review-button-row {
  7105. border: none;
  7106. background-color: transparent; }
  7107. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  7108. padding: 3em 0 0 0; }
  7109. .page-cart-checkout-review table.order-review-table .review-button-row form {
  7110. margin: 0 0.5em 0 0;
  7111. display: moz-inline-stack;
  7112. display: inline-block;
  7113. vertical-align: top;
  7114. zoom: 1;
  7115. *display: inline; }
  7116. .page-cart-checkout-review #edit-actions {
  7117. border: 0px;
  7118. background-color: transparent;
  7119. text-align: right; }
  7120. .page-cart-checkout-review input.form-submit {
  7121. font-size: 16px;
  7122. font-weight: bold;
  7123. padding: 0.1em 0.3em 0.2em;
  7124. border-radius: 0.3em;
  7125. background-clip: padding-box;
  7126. border: 2px solid #ccc;
  7127. background-color: #ccc;
  7128. color: #4D4D4D;
  7129. cursor: pointer;
  7130. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7131. transition: text-shadow 0.3s ease-out;
  7132. text-align: center;
  7133. text-decoration: none;
  7134. margin-left: 1em; }
  7135. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  7136. text-shadow: 0 0 3px white; }
  7137. .page-cart-checkout-review input.form-submit:active {
  7138. transition: text-shadow 0s ease-out;
  7139. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7140. .page-cart-checkout-review input.form-submit#edit-submit {
  7141. font-size: 16px;
  7142. font-weight: bold;
  7143. padding: 0.1em 0.3em 0.2em;
  7144. border-radius: 0.3em;
  7145. background-clip: padding-box;
  7146. border: 2px solid #ccc;
  7147. background-color: #ccc;
  7148. color: #4D4D4D;
  7149. cursor: pointer;
  7150. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7151. transition: text-shadow 0.3s ease-out;
  7152. text-align: center;
  7153. text-decoration: none;
  7154. cursor: pointer;
  7155. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7156. transition: text-shadow 0.2s ease-out;
  7157. border-color: #69CDCF;
  7158. background-color: #69CDCF;
  7159. color: #fff; }
  7160. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7161. text-shadow: 0 0 3px white; }
  7162. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7163. transition: text-shadow 0s ease-out;
  7164. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7165. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7166. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7167. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7168. transition: text-shadow 0s ease-out;
  7169. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7170. /*
  7171. ____ _____ ____ _____ _____ _____ _____ _____ _____ _____
  7172. | \| | \| _ | |_ _| | | | | __|
  7173. | | |- -| | | | --| | | |- -| | | | | __|
  7174. |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____|
  7175. |__|
  7176. */
  7177. #didactique-page .node-didactique {
  7178. border-radius: 5px;
  7179. background-clip: padding-box;
  7180. background-color: #FFF;
  7181. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7182. max-width: 850px;
  7183. font-size: 14px;
  7184. background-color: #fff;
  7185. margin: 1em auto;
  7186. padding: 1em; }
  7187. #didactique-page .node-didactique .field-name-field-emvideo {
  7188. margin: 1em 0; }
  7189. #didactique-page .node-didactique .field-name-title-field {
  7190. font-size: 24px;
  7191. font-weight: 900;
  7192. font-style: italic;
  7193. padding: 5px 0; }
  7194. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  7195. max-width: 100%; }
  7196. @media only screen and (min-width: 40.0625em) {
  7197. #didactique-page .side {
  7198. display: moz-inline-stack;
  7199. display: inline-block;
  7200. vertical-align: top;
  7201. zoom: 1;
  7202. *display: inline;
  7203. vertical-align: top; }
  7204. #didactique-page .group-sideleft {
  7205. width: 60%; }
  7206. #didactique-page .group-sideright {
  7207. width: 39%; } }
  7208. /*
  7209. _ _ _ _____ _____ _ _ _ _____ _____ _____ _____
  7210. | | | | | | | | | | | __| | _ | __ | __|
  7211. | | | | | | | | | | | __| | | -| __|
  7212. |_____|__|__|_____| |_____|_____| |__|__|__|__|_____|
  7213. */
  7214. @media only screen and (max-width: 40em) {
  7215. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  7216. display: none; } }
  7217. /*
  7218. _ _
  7219. _____ ___|_|___| |_ ___ ___ ___ ___ ___ ___
  7220. | | .'| | | _| -_| | .'| | _| -_|
  7221. |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___|
  7222. */
  7223. .maintenance-page #container, .maintenance-page #header {
  7224. text-align: center;
  7225. padding: 0;
  7226. position: relative; }
  7227. .maintenance-page #main {
  7228. background-color: transparent; }
  7229. .maintenance-page #header h1.site-name {
  7230. font-size: 36px;
  7231. margin: 0;
  7232. padding-left: 0; }
  7233. .maintenance-page h2.site-slogan {
  7234. font-size: 16px;
  7235. font-weight: 300;
  7236. margin: 0;
  7237. line-height: 1.1; }
  7238. /*
  7239. _____ _____ _____
  7240. | __| _ | |
  7241. | __| | | |
  7242. |__| |__|__|__ _|
  7243. |__|
  7244. */
  7245. .page-faq-page #main {
  7246. background: #fff url("../img/bg-faq.png") no-repeat bottom right; }
  7247. #content .faq-content .faq-description {
  7248. font-size: 12px;
  7249. padding-bottom: 2em; }
  7250. #content .faq-content ul.faq-ul-questions-top {
  7251. margin: 0; }
  7252. #content .faq-content ul.faq-ul-questions-top li {
  7253. list-style: none; }
  7254. #content .faq-content ul.faq-ul-questions-top li a {
  7255. font-size: 18px;
  7256. font-weight: 500; }
  7257. #content .faq-content h3.faq-header {
  7258. font-size: 20px;
  7259. font-weight: 700;
  7260. line-height: 1.2;
  7261. margin: 0; }
  7262. #content .faq-content h3.faq-header a {
  7263. color: #000; }
  7264. #content .faq-content .faq-dl-hide-answer {
  7265. padding: 0; }
  7266. #content .faq-content .faq-category-group {
  7267. padding-bottom: 1em; }
  7268. #content .faq-content .faq-question-answer {
  7269. padding: 0.3em 0 0 0.8em; }
  7270. #content .faq-content .faq-question-answer .faq-question {
  7271. font-size: 16px;
  7272. padding: 0;
  7273. font-weight: 500; }
  7274. #content .faq-content .faq-question-answer .faq-question a {
  7275. color: #000; }
  7276. #content .faq-content .faq-question-answer .faq-answer {
  7277. padding: 0;
  7278. margin-bottom: 2em;
  7279. font-size: 12px; }
  7280. #content .faq-content .field-name-body img {
  7281. max-width: 50%;
  7282. height: auto; }
  7283. /*
  7284. __ __ _ _____
  7285. / / / /___ ____ ___ ___ | | / /__ / /_/ / __ \/ __ `__ \/ _ \ | | / /__/ /
  7286. / __ / /_/ / / / / / / __/ | |/ // __/
  7287. /_/ /_/\____/_/ /_/ /_/\___/ |___//____/
  7288. */
  7289. body.home-v2 #center {
  7290. background-color: transparent;
  7291. padding: 0; }
  7292. #home-v2 h2 {
  7293. font-size: 2.1em;
  7294. font-weight: 300; }
  7295. #home-v2 a {
  7296. color: #000; }
  7297. #home-v2 .field-name-field-liens {
  7298. margin-top: 1em; }
  7299. #home-v2 .field-name-field-liens .field-item {
  7300. display: moz-inline-stack;
  7301. display: inline-block;
  7302. vertical-align: top;
  7303. zoom: 1;
  7304. *display: inline;
  7305. margin: 0 0.5em 0.5em 0; }
  7306. #home-v2 .field-name-field-liens a {
  7307. font-weight: 700;
  7308. display: moz-inline-stack;
  7309. display: inline-block;
  7310. vertical-align: top;
  7311. zoom: 1;
  7312. *display: inline;
  7313. padding: 0.5em 1em 0.7em;
  7314. border-radius: 5px;
  7315. background-clip: padding-box;
  7316. background-color: rgba(255, 255, 255, 0.8); }
  7317. body.logged-in #home-v2 .field-name-field-liens a.visitor {
  7318. display: none; }
  7319. body.not-logged-in #home-v2 .field-name-field-liens a.member {
  7320. display: none; }
  7321. #home-v2 .panel-separator {
  7322. clear: both; }
  7323. #home-v2 > .panel-panel > div > .panel-pane {
  7324. overflow: hidden; }
  7325. #home-v2 > .panel-panel > div > .panel-pane.pane-node {
  7326. border-radius: 5px;
  7327. background-clip: padding-box;
  7328. overflow: hidden; }
  7329. #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node {
  7330. position: relative;
  7331. width: 100%;
  7332. height: 100%;
  7333. overflow: hidden; }
  7334. #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a {
  7335. background-color: rgba(255, 255, 255, 0.7);
  7336. border-radius: 5px;
  7337. background-clip: padding-box;
  7338. padding: 15px; }
  7339. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7340. height: auto;
  7341. background-color: #f7f4ed;
  7342. margin-top: 2em;
  7343. margin-bottom: 2em;
  7344. padding-top: 0; }
  7345. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7346. margin: 0 auto; }
  7347. @media only screen and (max-width: 40em) {
  7348. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7349. width: 320px;
  7350. height: 180px; } }
  7351. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  7352. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7353. width: 640px;
  7354. height: 360px; } }
  7355. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  7356. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7357. width: 800px;
  7358. height: 450px; } }
  7359. @media only screen and (min-width: 90.0625em) {
  7360. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7361. width: 1024px;
  7362. height: 576px; } }
  7363. #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 {
  7364. width: 100%;
  7365. height: 100%; }
  7366. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field {
  7367. display: none; }
  7368. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body {
  7369. margin-top: 1em;
  7370. text-align: center; }
  7371. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7372. text-align: left;
  7373. display: moz-inline-stack;
  7374. display: inline-block;
  7375. vertical-align: top;
  7376. zoom: 1;
  7377. *display: inline;
  7378. width: 35%;
  7379. margin-left: 2%;
  7380. font-size: 0.756em; }
  7381. @media only screen and (max-width: 40em) {
  7382. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7383. width: 100%;
  7384. text-align: center; } }
  7385. @media only screen and (max-width: 40em) {
  7386. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7387. margin-top: 0.5em; } }
  7388. #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 {
  7389. margin: 2em 0; }
  7390. #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 {
  7391. margin: 0px;
  7392. text-align: center; }
  7393. #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 {
  7394. margin: 0 1em 0 0;
  7395. padding: 0px;
  7396. list-style: none;
  7397. height: 2.5em;
  7398. display: moz-inline-stack;
  7399. display: inline-block;
  7400. vertical-align: top;
  7401. zoom: 1;
  7402. *display: inline; }
  7403. #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 {
  7404. background-color: #4d4d4d;
  7405. border-radius: 5px;
  7406. background-clip: padding-box;
  7407. padding: 5px 12px 7px;
  7408. color: #f7f4ed;
  7409. font-size: 18px;
  7410. font-weight: 500;
  7411. transition: opacity,background-color 0.2s ease-out; }
  7412. #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"] {
  7413. background-color: #e6de1c;
  7414. cursor: pointer;
  7415. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7416. transition: text-shadow 0.2s ease-out; }
  7417. #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 {
  7418. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7419. #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 {
  7420. transition: text-shadow 0s ease-out;
  7421. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7422. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7423. padding: 2em 0;
  7424. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  7425. text-align: center; }
  7426. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content {
  7427. display: moz-inline-stack;
  7428. display: inline-block;
  7429. vertical-align: top;
  7430. zoom: 1;
  7431. *display: inline;
  7432. text-align: left; }
  7433. #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 {
  7434. font-weight: 900;
  7435. font-style: italic;
  7436. padding: 5px 0;
  7437. margin: 0;
  7438. line-height: 1;
  7439. display: moz-inline-stack;
  7440. display: inline-block;
  7441. vertical-align: top;
  7442. zoom: 1;
  7443. *display: inline;
  7444. vertical-align: middle; }
  7445. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 {
  7446. font-size: 24px; }
  7447. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 {
  7448. font-size: 16px; }
  7449. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form {
  7450. margin: 0 1em;
  7451. padding: 0px;
  7452. display: moz-inline-stack;
  7453. display: inline-block;
  7454. vertical-align: top;
  7455. zoom: 1;
  7456. *display: inline;
  7457. vertical-align: middle; }
  7458. #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 {
  7459. margin: 0;
  7460. position: relative;
  7461. display: moz-inline-stack;
  7462. display: inline-block;
  7463. vertical-align: top;
  7464. zoom: 1;
  7465. *display: inline;
  7466. vertical-align: middle; }
  7467. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-account {
  7468. margin-right: 5px; }
  7469. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7470. font-size: 12px;
  7471. border-radius: 5px;
  7472. background-clip: padding-box;
  7473. margin-bottom: 4px; }
  7474. .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7475. margin-right: 5px; }
  7476. #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 {
  7477. width: 11em; }
  7478. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text {
  7479. width: 7em; }
  7480. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check {
  7481. position: absolute;
  7482. bottom: 100%;
  7483. z-index: 9999;
  7484. background-image: none;
  7485. height: auto;
  7486. padding: 5px;
  7487. border-radius: 5px;
  7488. background-clip: padding-box;
  7489. margin-bottom: 10px;
  7490. font-size: 10px;
  7491. background-color: #fff;
  7492. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  7493. transition: bottom 0.1s ease-out; }
  7494. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error {
  7495. background-color: #f3968d;
  7496. color: #fff; }
  7497. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok {
  7498. display: none; }
  7499. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit {
  7500. font-size: 16px;
  7501. padding: 0.1em 0.6em 0.2em;
  7502. border-radius: 0.3em;
  7503. background-clip: padding-box;
  7504. font-weight: bold;
  7505. margin-bottom: 4px; }
  7506. #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 {
  7507. margin-bottom: 0;
  7508. display: block;
  7509. line-height: 1; }
  7510. #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 > * {
  7511. display: moz-inline-stack;
  7512. display: inline-block;
  7513. vertical-align: top;
  7514. zoom: 1;
  7515. *display: inline;
  7516. vertical-align: middle;
  7517. margin: 0; }
  7518. #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 {
  7519. font-size: 10px;
  7520. background-color: #fff;
  7521. border-radius: 3px;
  7522. background-clip: padding-box; }
  7523. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit {
  7524. border: 2px solid #69CDCF;
  7525. background-color: #69CDCF;
  7526. color: #fff;
  7527. cursor: pointer;
  7528. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7529. transition: text-shadow 0.2s ease-out; }
  7530. #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 {
  7531. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7532. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:active {
  7533. transition: text-shadow 0s ease-out;
  7534. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7535. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] {
  7536. background-color: #ddd;
  7537. border: 2px solid #ddd; }
  7538. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit {
  7539. border: 2px solid #E6DE1C;
  7540. background-color: #E6DE1C;
  7541. color: #fff;
  7542. cursor: pointer;
  7543. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7544. transition: text-shadow 0.2s ease-out; }
  7545. #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 {
  7546. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7547. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:active {
  7548. transition: text-shadow 0s ease-out;
  7549. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7550. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews {
  7551. display: none; }
  7552. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join {
  7553. display: moz-inline-stack;
  7554. display: inline-block;
  7555. vertical-align: top;
  7556. zoom: 1;
  7557. *display: inline;
  7558. vertical-align: middle;
  7559. margin: 0 1em;
  7560. font-size: 16px;
  7561. padding: 0.1em 0.3em 0.2em;
  7562. border-radius: 0.3em;
  7563. background-clip: padding-box;
  7564. font-weight: bold;
  7565. border: 2px solid #69CDCF;
  7566. background-color: #69CDCF;
  7567. color: #fff;
  7568. cursor: pointer;
  7569. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7570. transition: text-shadow 0.2s ease-out;
  7571. text-align: center;
  7572. text-decoration: none; }
  7573. #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 {
  7574. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7575. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:active {
  7576. transition: text-shadow 0s ease-out;
  7577. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7578. @media only screen and (max-width: 40em) {
  7579. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7580. background-position: 160% 50%;
  7581. min-height: 60px;
  7582. padding: 15px 0; }
  7583. #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 {
  7584. width: 7em; } }
  7585. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error {
  7586. color: #b94a48;
  7587. font-size: 12px; }
  7588. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7589. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7590. transition: box-shadow 0.3s ease-out;
  7591. height: 450px;
  7592. margin-top: 15px;
  7593. background-color: #fff;
  7594. position: relative; }
  7595. #home-v2 > .panel-panel > div > .panel-pane.showroom:hover {
  7596. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7597. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content {
  7598. width: 100%;
  7599. height: 100%;
  7600. position: relative; }
  7601. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node {
  7602. position: absolute;
  7603. height: 100%;
  7604. width: 100%; }
  7605. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7606. position: absolute;
  7607. width: 100%;
  7608. height: 100%;
  7609. overflow: hidden; }
  7610. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img {
  7611. width: 100%;
  7612. margin-top: -10%; }
  7613. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7614. position: relative;
  7615. z-index: 2;
  7616. width: 30%;
  7617. margin: 3em 2em; }
  7618. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content {
  7619. background-color: rgba(255, 255, 255, 0.8);
  7620. padding: 1em;
  7621. border-radius: 5px;
  7622. background-clip: padding-box; }
  7623. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field {
  7624. font-size: 2.1em;
  7625. font-weight: 300; }
  7626. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body {
  7627. margin-top: 0.5em; }
  7628. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7629. content: url("../img/bulle.png");
  7630. transform: scale(0.8);
  7631. position: absolute;
  7632. bottom: -120px;
  7633. right: -20px;
  7634. z-index: 10; }
  7635. @media only screen and (max-width: 40em) {
  7636. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7637. margin-top: 10px; }
  7638. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7639. position: absolute;
  7640. width: 400%;
  7641. height: 100%;
  7642. overflow: hidden; }
  7643. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7644. width: auto;
  7645. padding: 2%;
  7646. margin: 2%; }
  7647. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body {
  7648. font-size: 0.756em;
  7649. margin-top: 0.5em; }
  7650. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7651. opacity: 0.4; } }
  7652. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7653. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7654. transition: box-shadow 0.3s ease-out;
  7655. height: 450px;
  7656. margin-top: 30px;
  7657. background-color: #FFF;
  7658. position: relative; }
  7659. #home-v2 > .panel-panel > div > .panel-pane.bdd:hover {
  7660. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7661. #home-v2 > .panel-panel > div > .panel-pane.bdd .links a {
  7662. background-color: #e6e6e6; }
  7663. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7664. display: moz-inline-stack;
  7665. display: inline-block;
  7666. vertical-align: top;
  7667. zoom: 1;
  7668. *display: inline;
  7669. width: 60%;
  7670. height: 100%;
  7671. overflow: hidden; }
  7672. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img {
  7673. max-width: 2000px; }
  7674. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7675. display: moz-inline-stack;
  7676. display: inline-block;
  7677. vertical-align: top;
  7678. zoom: 1;
  7679. *display: inline;
  7680. width: 35%;
  7681. padding: 1em;
  7682. border-radius: 5px;
  7683. background-clip: padding-box; }
  7684. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field {
  7685. font-size: 2.1em;
  7686. font-weight: 300; }
  7687. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body {
  7688. margin-top: 1em; }
  7689. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a {
  7690. background-color: rgba(230, 230, 230, 0.8); }
  7691. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7692. content: url("../img/boule.png");
  7693. transform: scale(0.8);
  7694. position: absolute;
  7695. bottom: -50px;
  7696. left: -50px; }
  7697. @media only screen and (max-width: 40em) {
  7698. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7699. height: auto; }
  7700. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7701. width: 100%;
  7702. display: block;
  7703. height: 310px;
  7704. overflow: hidden; }
  7705. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7706. display: block;
  7707. width: 100%;
  7708. z-index: 1;
  7709. padding: 0; }
  7710. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper > * {
  7711. padding: 1em; }
  7712. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7713. opacity: 0.6;
  7714. z-index: 0; } }
  7715. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7716. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7717. transition: box-shadow 0.3s ease-out;
  7718. position: relative;
  7719. height: 300px;
  7720. margin-top: 30px;
  7721. background-color: #000;
  7722. color: #FFF; }
  7723. #home-v2 > .panel-panel > div > .panel-pane.formations:hover {
  7724. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7725. #home-v2 > .panel-panel > div > .panel-pane.formations a {
  7726. color: #FFF; }
  7727. #home-v2 > .panel-panel > div > .panel-pane.formations .node {
  7728. padding: 0 0 0 30%;
  7729. width: 70%; }
  7730. #home-v2 > .panel-panel > div > .panel-pane.formations .node:before {
  7731. content: " ";
  7732. background: transparent url("../img/formations.png") no-repeat center center;
  7733. background-clip: padding-box;
  7734. background-size: contain;
  7735. position: absolute;
  7736. left: 0;
  7737. z-index: 2;
  7738. width: 30%;
  7739. height: 100%; }
  7740. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper {
  7741. padding: 1em;
  7742. position: relative; }
  7743. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field {
  7744. font-size: 2.1em;
  7745. font-weight: 300; }
  7746. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body {
  7747. margin-top: 1em; }
  7748. @media only screen and (max-width: 40em) {
  7749. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7750. height: auto; } }
  7751. #home-v2 > .panel-panel > div > .panel-pane.services {
  7752. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7753. transition: box-shadow 0.3s ease-out;
  7754. background-color: #FFF;
  7755. height: 300px;
  7756. margin-top: 30px; }
  7757. #home-v2 > .panel-panel > div > .panel-pane.services:hover {
  7758. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7759. #home-v2 > .panel-panel > div > .panel-pane.services .node {
  7760. padding: 0 30% 0 0;
  7761. width: 70%; }
  7762. #home-v2 > .panel-panel > div > .panel-pane.services .node:before {
  7763. content: " ";
  7764. background: transparent url("../img/services.png") no-repeat center center;
  7765. background-clip: padding-box;
  7766. background-size: contain;
  7767. position: absolute;
  7768. right: 0;
  7769. z-index: 2;
  7770. width: 30%;
  7771. height: 100%; }
  7772. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper {
  7773. padding: 1em;
  7774. position: relative; }
  7775. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field {
  7776. font-size: 2.1em;
  7777. font-weight: 300; }
  7778. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body {
  7779. margin-top: 1em; }
  7780. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-field-liens a {
  7781. background-color: rgba(230, 230, 230, 0.8); }
  7782. @media only screen and (max-width: 40em) {
  7783. #home-v2 > .panel-panel > div > .panel-pane.services {
  7784. height: auto; } }
  7785. #home-v2 > .panel-panel > div > .panel-pane.publication {
  7786. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7787. transition: box-shadow 0.3s ease-out;
  7788. position: relative;
  7789. margin-top: 30px;
  7790. padding: 1em;
  7791. background-color: #000;
  7792. border-radius: 10px;
  7793. background-clip: padding-box; }
  7794. #home-v2 > .panel-panel > div > .panel-pane.publication:hover {
  7795. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7796. #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 {
  7797. color: #fff; }
  7798. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7799. display: moz-inline-stack;
  7800. display: inline-block;
  7801. vertical-align: top;
  7802. zoom: 1;
  7803. *display: inline;
  7804. width: 30%; }
  7805. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 {
  7806. display: none; }
  7807. @media only screen and (max-width: 40em) {
  7808. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7809. display: block;
  7810. width: 90%;
  7811. margin-bottom: 1em; } }
  7812. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7813. background-color: #e6e6e6;
  7814. border-radius: 10px;
  7815. background-clip: padding-box;
  7816. margin-top: 30px;
  7817. padding-top: 1em;
  7818. padding-bottom: 1em;
  7819. position: relative; }
  7820. #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 {
  7821. font-size: 30px; }
  7822. @media only screen and (min-width: 40.0625em) {
  7823. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper {
  7824. margin: 0 auto;
  7825. max-width: 80rem;
  7826. width: 100%; }
  7827. #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 {
  7828. content: " ";
  7829. display: table; }
  7830. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after {
  7831. clear: both; }
  7832. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7833. overflow: hidden;
  7834. padding-left: 0.9375rem;
  7835. padding-right: 0.9375rem;
  7836. width: 33.33333%;
  7837. float: left;
  7838. padding: 0em;
  7839. margin-left: 1em; }
  7840. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first {
  7841. width: auto; }
  7842. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) {
  7843. width: 31%; }
  7844. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7845. margin: 0; }
  7846. #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 {
  7847. margin: 0;
  7848. height: 610px; } }
  7849. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom {
  7850. margin: 0 auto;
  7851. max-width: 80rem;
  7852. width: 100%;
  7853. margin-top: 1.5em;
  7854. margin-bottom: 1.5em; }
  7855. #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 {
  7856. content: " ";
  7857. display: table; }
  7858. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after {
  7859. clear: both; }
  7860. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside {
  7861. padding-left: 0.9375rem;
  7862. padding-right: 0.9375rem;
  7863. width: 100%;
  7864. float: left; }
  7865. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p {
  7866. display: none; }
  7867. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes {
  7868. margin: 0 0 0.5em 0; }
  7869. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item {
  7870. display: moz-inline-stack;
  7871. display: inline-block;
  7872. vertical-align: top;
  7873. zoom: 1;
  7874. *display: inline;
  7875. margin-right: 1em; }
  7876. #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 {
  7877. vertical-align: middle; }
  7878. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail {
  7879. display: moz-inline-stack;
  7880. display: inline-block;
  7881. vertical-align: top;
  7882. zoom: 1;
  7883. *display: inline;
  7884. margin: 0; }
  7885. #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 {
  7886. display: moz-inline-stack;
  7887. display: inline-block;
  7888. vertical-align: top;
  7889. zoom: 1;
  7890. *display: inline;
  7891. margin-right: 1em; }
  7892. #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 {
  7893. display: moz-inline-stack;
  7894. display: inline-block;
  7895. vertical-align: top;
  7896. zoom: 1;
  7897. *display: inline; }
  7898. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews {
  7899. border-radius: 5px;
  7900. background-clip: padding-box;
  7901. background-color: #FFF;
  7902. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7903. transition: box-shadow 0.3s ease-out;
  7904. overflow: hidden;
  7905. position: relative;
  7906. margin: 7px; }
  7907. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a {
  7908. position: absolute;
  7909. bottom: 0;
  7910. width: 100%;
  7911. background-color: #FFF;
  7912. text-align: center; }
  7913. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 {
  7914. padding: 10px;
  7915. margin: 0;
  7916. font-size: 1em; }
  7917. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7918. content: url("../img/point.png");
  7919. position: absolute;
  7920. bottom: 20px;
  7921. right: 10px; }
  7922. @media only screen and (max-width: 40em) {
  7923. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7924. background-color: transparent; }
  7925. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7926. width: 100%; }
  7927. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7928. margin: 0; }
  7929. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node {
  7930. max-width: 100%;
  7931. margin: 0; }
  7932. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body {
  7933. width: 100%;
  7934. padding: 0; }
  7935. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body p {
  7936. max-width: 100%;
  7937. padding: 1em; }
  7938. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a {
  7939. padding: 0;
  7940. display: block;
  7941. height: 100%; }
  7942. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a img {
  7943. max-width: 100%; }
  7944. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7945. z-index: -1;
  7946. opacity: 0.4; } }
  7947. #home-v2 #contact-pane {
  7948. margin: 2em 0;
  7949. padding: 1em;
  7950. background-color: #e6e6e6; }
  7951. #home-v2 #contact-pane .field-name-body {
  7952. text-align: center; }
  7953. #home-v2 #contact-pane .field-name-body p {
  7954. display: moz-inline-stack;
  7955. display: inline-block;
  7956. vertical-align: top;
  7957. zoom: 1;
  7958. *display: inline;
  7959. min-width: 20%; }
  7960. /*
  7961. _ _ _ _ _
  7962. | | | (_) | | (_)
  7963. _ __ _ _| |__ | |_ ___ __ _| |_ _ ___ _ __ ___
  7964. | '_ \| | | | '_ \| | |/ __/ _` | __| |/ _ \| '_ \/ __|
  7965. | |_) | |_| | |_) | | | (_| (_| | |_| | (_) | | | \__ | .__/ \__,_|_.__/|_|_|\___\__,_|\__|_|\___/|_| |_|___/
  7966. | |
  7967. |_|
  7968. */
  7969. body.node-type-publication article.node-publication .field figure, body.node-type-publication article.node-publication .field img {
  7970. max-width: 100%; }
  7971. @media only screen and (min-width: 64.0625em) {
  7972. body.node-type-publication article.node-publication .field {
  7973. display: moz-inline-stack;
  7974. display: inline-block;
  7975. vertical-align: top;
  7976. zoom: 1;
  7977. *display: inline; }
  7978. body.node-type-publication article.node-publication .field-name-field-couverture {
  7979. width: 25%; }
  7980. body.node-type-publication article.node-publication .field-name-body {
  7981. margin-left: 1em;
  7982. width: 70%; } }
  7983. /*
  7984. __ ___
  7985. / |/ /__ ______________ _____ ____ _____
  7986. / /|_/ / _ \/ ___/ ___/ __ `/ __ `/ _ \/ ___/
  7987. / / / / __(__ |__ ) /_/ / /_/ / __(__ )
  7988. /_/ /_/\___/____/____/\__,_/\__, /\___/____/
  7989. /____/
  7990. */
  7991. div.messages {
  7992. padding: 9px;
  7993. margin: 0.5em 0 0;
  7994. color: #3a87ad;
  7995. background: #d9edf7;
  7996. border: 1px solid #bce8f1;
  7997. border-radius: 5px;
  7998. font-size: 12px; }
  7999. div.messages.warning {
  8000. color: #c09853;
  8001. background-color: #fcf8e3;
  8002. border-color: #fbeed5; }
  8003. div.messages.error {
  8004. color: #b94a48;
  8005. background-color: #f2dede;
  8006. border-color: #eed3d7; }
  8007. div.messages.status {
  8008. color: #468847;
  8009. background-color: #dff0d8;
  8010. border-color: #d6e9c6;
  8011. font-size: 14px; }
  8012. .messages-label {
  8013. display: none; }
  8014. #better-messages-wrapper {
  8015. background-color: rgba(255, 255, 255, 0.7);
  8016. padding: 10px;
  8017. border-radius: 5px;
  8018. background-clip: padding-box;
  8019. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }
  8020. #better-messages-wrapper #better-messages-default div.messages {
  8021. padding: 9px;
  8022. margin: 0.5em 0 0;
  8023. color: #3a87ad;
  8024. background: #d9edf7;
  8025. border: 1px solid #bce8f1;
  8026. border-radius: 5px;
  8027. font-size: 12px;
  8028. margin: 0 0 10px 0; }
  8029. #better-messages-wrapper #better-messages-default div.messages.warning {
  8030. color: #c09853;
  8031. background-color: #fcf8e3;
  8032. border-color: #fbeed5; }
  8033. #better-messages-wrapper #better-messages-default div.messages.error {
  8034. color: #b94a48;
  8035. background-color: #f2dede;
  8036. border-color: #eed3d7; }
  8037. #better-messages-wrapper #better-messages-default div.messages.status {
  8038. color: #468847;
  8039. background-color: #dff0d8;
  8040. border-color: #d6e9c6;
  8041. font-size: 14px; }
  8042. #better-messages-wrapper #better-messages-default .footer {
  8043. border: none;
  8044. padding: 0;
  8045. margin: 0; }
  8046. #better-messages-wrapper #better-messages-default .footer a.message-close {
  8047. background: #fff url("../img/close.png") no-repeat center center;
  8048. width: 15px;
  8049. height: 15px;
  8050. border-radius: 3px;
  8051. background-clip: padding-box;
  8052. display: block; }
  8053. /** Tab navigation */
  8054. /**
  8055. * icons
  8056. */
  8057. /**
  8058. * figures
  8059. */
  8060. figure figcaption {
  8061. display: none; }
  8062. figure .blank {
  8063. position: absolute;
  8064. top: 0;
  8065. left: 0;
  8066. width: 100%;
  8067. height: 100%; }
  8068. /* ==|== print styles =======================================================
  8069. Print styles.
  8070. Inlined to avoid required HTTP connection: h5bp.com/r
  8071. ========================================================================== */
  8072. a:focus {
  8073. outline: 0; }
  8074. /*
  8075. * Improves readability when focused and also mouse hovered in all browsers.
  8076. */
  8077. a:active,
  8078. a:hover {
  8079. outline: 0; }
  8080. i {
  8081. transition: color 0.3s; }
  8082. i:hover {
  8083. color: #606060;
  8084. text-shadow: 1px 4px 6px #FFF,0 0 0 #000,1px 4px 6px #FFF; }
  8085. /** COLORBOX */
  8086. #colorbox {
  8087. border-radius: 2px;
  8088. background-clip: padding-box;
  8089. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  8090. #colorbox #cboxLoadedContent {
  8091. background-color: #fff; }
  8092. /** embed player */
  8093. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  8094. .embedded-video .player iframe {
  8095. max-width: 100%;
  8096. height: auto; } }
  8097. /** devel */
  8098. .not-logged-in #tasks ul.tabs.primary {
  8099. display: none; }
  8100. /*
  8101. __ _
  8102. ____ _____/ /___ ___ (_)___ ____ ___ ___ ____ __ __
  8103. / __ `/ __ / __ `__ \/ / __ \ / __ `__ \/ _ \/ __ \/ / / /
  8104. / /_/ / /_/ / / / / / / / / / / / / / / / / __/ / / / /_/ /
  8105. \__,_/\__,_/_/ /_/ /_/_/_/ /_/ /_/ /_/ /_/\___/_/ /_/\__,_/
  8106. */
  8107. #admin-menu {
  8108. top: 0; }