styles.css 351 KB

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