styles.css 353 KB

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