styles.css 352 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  6. /**
  7. * 1. Set default font family to sans-serif.
  8. * 2. Prevent iOS and IE text size adjust after device orientation change,
  9. * without disabling user zoom.
  10. */
  11. @import url(../fonts/icon/foundation-icons.css);
  12. html {
  13. font-family: sans-serif;
  14. /* 1 */
  15. -ms-text-size-adjust: 100%;
  16. /* 2 */
  17. -webkit-text-size-adjust: 100%;
  18. /* 2 */ }
  19. /**
  20. * Remove default margin.
  21. */
  22. body {
  23. margin: 0; }
  24. /* HTML5 display definitions
  25. ========================================================================== */
  26. /**
  27. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  28. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  29. * and Firefox.
  30. * Correct `block` display not defined for `main` in IE 11.
  31. */
  32. article,
  33. aside,
  34. details,
  35. figcaption,
  36. figure,
  37. footer,
  38. header,
  39. hgroup,
  40. main,
  41. menu,
  42. nav,
  43. section,
  44. summary {
  45. display: block; }
  46. /**
  47. * 1. Correct `inline-block` display not defined in IE 8/9.
  48. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  49. */
  50. audio,
  51. canvas,
  52. progress,
  53. video {
  54. display: inline-block;
  55. /* 1 */
  56. vertical-align: baseline;
  57. /* 2 */ }
  58. /**
  59. * Prevent modern browsers from displaying `audio` without controls.
  60. * Remove excess height in iOS 5 devices.
  61. */
  62. audio:not([controls]) {
  63. display: none;
  64. height: 0; }
  65. /**
  66. * Address `[hidden]` styling not present in IE 8/9/10.
  67. * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
  68. */
  69. [hidden],
  70. template {
  71. display: none; }
  72. /* Links
  73. ========================================================================== */
  74. /**
  75. * Remove the gray background color from active links in IE 10.
  76. */
  77. a {
  78. background-color: transparent; }
  79. /**
  80. * Improve readability of focused elements when they are also in an
  81. * active/hover state.
  82. */
  83. a:active,
  84. a:hover {
  85. outline: 0; }
  86. /* Text-level semantics
  87. ========================================================================== */
  88. /**
  89. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  90. */
  91. abbr[title] {
  92. border-bottom: 1px dotted; }
  93. /**
  94. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  95. */
  96. b,
  97. strong {
  98. font-weight: bold; }
  99. /**
  100. * Address styling not present in Safari and Chrome.
  101. */
  102. dfn {
  103. font-style: italic; }
  104. /**
  105. * Address variable `h1` font-size and margin within `section` and `article`
  106. * contexts in Firefox 4+, Safari, and Chrome.
  107. */
  108. h1 {
  109. font-size: 2em;
  110. margin: 0.67em 0; }
  111. /**
  112. * Address styling not present in IE 8/9.
  113. */
  114. mark {
  115. background: #ff0;
  116. color: #000; }
  117. /**
  118. * Address inconsistent and variable font size in all browsers.
  119. */
  120. small {
  121. font-size: 80%; }
  122. /**
  123. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  124. */
  125. sub,
  126. sup {
  127. font-size: 75%;
  128. line-height: 0;
  129. position: relative;
  130. vertical-align: baseline; }
  131. sup {
  132. top: -0.5em; }
  133. sub {
  134. bottom: -0.25em; }
  135. /* Embedded content
  136. ========================================================================== */
  137. /**
  138. * Remove border when inside `a` element in IE 8/9/10.
  139. */
  140. img {
  141. border: 0; }
  142. /**
  143. * Correct overflow not hidden in IE 9/10/11.
  144. */
  145. svg:not(:root) {
  146. overflow: hidden; }
  147. /* Grouping content
  148. ========================================================================== */
  149. /**
  150. * Address margin not present in IE 8/9 and Safari.
  151. */
  152. figure {
  153. margin: 1em 40px; }
  154. /**
  155. * Address differences between Firefox and other browsers.
  156. */
  157. hr {
  158. box-sizing: content-box;
  159. height: 0; }
  160. /**
  161. * Contain overflow in all browsers.
  162. */
  163. pre {
  164. overflow: auto; }
  165. /**
  166. * Address odd `em`-unit font size rendering in all browsers.
  167. */
  168. code,
  169. kbd,
  170. pre,
  171. samp {
  172. font-family: monospace, monospace;
  173. font-size: 1em; }
  174. /* Forms
  175. ========================================================================== */
  176. /**
  177. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  178. * styling of `select`, unless a `border` property is set.
  179. */
  180. /**
  181. * 1. Correct color not being inherited.
  182. * Known issue: affects color of disabled elements.
  183. * 2. Correct font properties not being inherited.
  184. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  185. */
  186. button,
  187. input,
  188. optgroup,
  189. select,
  190. textarea {
  191. color: inherit;
  192. /* 1 */
  193. font: inherit;
  194. /* 2 */
  195. margin: 0;
  196. /* 3 */ }
  197. /**
  198. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  199. */
  200. button {
  201. overflow: visible; }
  202. /**
  203. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  204. * All other form control elements do not inherit `text-transform` values.
  205. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  206. * Correct `select` style inheritance in Firefox.
  207. */
  208. button,
  209. select {
  210. text-transform: none; }
  211. /**
  212. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  213. * and `video` controls.
  214. * 2. Correct inability to style clickable `input` types in iOS.
  215. * 3. Improve usability and consistency of cursor style between image-type
  216. * `input` and others.
  217. */
  218. button,
  219. html input[type="button"],
  220. input[type="reset"],
  221. input[type="submit"] {
  222. -webkit-appearance: button;
  223. /* 2 */
  224. cursor: pointer;
  225. /* 3 */ }
  226. /**
  227. * Re-set default cursor for disabled elements.
  228. */
  229. button[disabled],
  230. html input[disabled] {
  231. cursor: default; }
  232. /**
  233. * Remove inner padding and border in Firefox 4+.
  234. */
  235. button::-moz-focus-inner,
  236. input::-moz-focus-inner {
  237. border: 0;
  238. padding: 0; }
  239. /**
  240. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  241. * the UA stylesheet.
  242. */
  243. input {
  244. line-height: normal; }
  245. /**
  246. * It's recommended that you don't attempt to style these elements.
  247. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  248. *
  249. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  250. * 2. Remove excess padding in IE 8/9/10.
  251. */
  252. input[type="checkbox"],
  253. input[type="radio"] {
  254. box-sizing: border-box;
  255. /* 1 */
  256. padding: 0;
  257. /* 2 */ }
  258. /**
  259. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  260. * `font-size` values of the `input`, it causes the cursor style of the
  261. * decrement button to change from `default` to `text`.
  262. */
  263. input[type="number"]::-webkit-inner-spin-button,
  264. input[type="number"]::-webkit-outer-spin-button {
  265. height: auto; }
  266. /**
  267. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  268. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
  269. */
  270. input[type="search"] {
  271. -webkit-appearance: textfield;
  272. /* 1 */
  273. box-sizing: content-box;
  274. /* 2 */ }
  275. /**
  276. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  277. * Safari (but not Chrome) clips the cancel button when the search input has
  278. * padding (and `textfield` appearance).
  279. */
  280. input[type="search"]::-webkit-search-cancel-button,
  281. input[type="search"]::-webkit-search-decoration {
  282. -webkit-appearance: none; }
  283. /**
  284. * Define consistent border, margin, and padding.
  285. */
  286. fieldset {
  287. border: 1px solid #c0c0c0;
  288. margin: 0 2px;
  289. padding: 0.35em 0.625em 0.75em; }
  290. /**
  291. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  292. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  293. */
  294. legend {
  295. border: 0;
  296. /* 1 */
  297. padding: 0;
  298. /* 2 */ }
  299. /**
  300. * Remove default vertical scrollbar in IE 8/9/10/11.
  301. */
  302. textarea {
  303. overflow: auto; }
  304. /**
  305. * Don't inherit the `font-weight` (applied by a rule above).
  306. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  307. */
  308. optgroup {
  309. font-weight: bold; }
  310. /* Tables
  311. ========================================================================== */
  312. /**
  313. * Remove most spacing between table cells.
  314. */
  315. table {
  316. border-collapse: collapse;
  317. border-spacing: 0; }
  318. td,
  319. th {
  320. padding: 0; }
  321. meta.foundation-version {
  322. font-family: "/5.5.3/"; }
  323. meta.foundation-mq-small {
  324. font-family: "/only screen/";
  325. width: 0; }
  326. meta.foundation-mq-small-only {
  327. font-family: "/only screen and (max-width: 40em)/";
  328. width: 0; }
  329. meta.foundation-mq-medium {
  330. font-family: "/only screen and (min-width:40.0625em)/";
  331. width: 40.0625em; }
  332. meta.foundation-mq-medium-only {
  333. font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  334. width: 40.0625em; }
  335. meta.foundation-mq-large {
  336. font-family: "/only screen and (min-width:64.0625em)/";
  337. width: 64.0625em; }
  338. meta.foundation-mq-large-only {
  339. font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  340. width: 64.0625em; }
  341. meta.foundation-mq-xlarge {
  342. font-family: "/only screen and (min-width:90.0625em)/";
  343. width: 90.0625em; }
  344. meta.foundation-mq-xlarge-only {
  345. font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  346. width: 90.0625em; }
  347. meta.foundation-mq-xxlarge {
  348. font-family: "/only screen and (min-width:120.0625em)/";
  349. width: 120.0625em; }
  350. meta.foundation-data-attribute-namespace {
  351. font-family: false; }
  352. html, body {
  353. height: 100%; }
  354. *,
  355. *:before,
  356. *:after {
  357. box-sizing: border-box; }
  358. html,
  359. body {
  360. font-size: 100%; }
  361. body {
  362. background: #fff;
  363. color: #222;
  364. cursor: auto;
  365. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  366. font-style: normal;
  367. font-weight: normal;
  368. line-height: 1.5;
  369. margin: 0;
  370. padding: 0;
  371. position: relative; }
  372. a:hover {
  373. cursor: pointer; }
  374. img {
  375. max-width: 100%;
  376. height: auto; }
  377. img {
  378. -ms-interpolation-mode: bicubic; }
  379. #map_canvas img,
  380. #map_canvas embed,
  381. #map_canvas object,
  382. .map_canvas img,
  383. .map_canvas embed,
  384. .map_canvas object,
  385. .mqa-display img,
  386. .mqa-display embed,
  387. .mqa-display object {
  388. max-width: none !important; }
  389. .left {
  390. float: left !important; }
  391. .right {
  392. float: right !important; }
  393. .clearfix:before, .clearfix:after {
  394. content: " ";
  395. display: table; }
  396. .clearfix:after {
  397. clear: both; }
  398. .hide {
  399. display: none; }
  400. .invisible {
  401. visibility: hidden; }
  402. .antialiased {
  403. -webkit-font-smoothing: antialiased;
  404. -moz-osx-font-smoothing: grayscale; }
  405. img {
  406. display: inline-block;
  407. vertical-align: middle; }
  408. textarea {
  409. height: auto;
  410. min-height: 50px; }
  411. select {
  412. width: 100%; }
  413. .text-left {
  414. text-align: left !important; }
  415. .text-right {
  416. text-align: right !important; }
  417. .text-center {
  418. text-align: center !important; }
  419. .text-justify {
  420. text-align: justify !important; }
  421. @media only screen and (max-width: 40em) {
  422. .small-only-text-left {
  423. text-align: left !important; }
  424. .small-only-text-right {
  425. text-align: right !important; }
  426. .small-only-text-center {
  427. text-align: center !important; }
  428. .small-only-text-justify {
  429. text-align: justify !important; } }
  430. @media only screen {
  431. .small-text-left {
  432. text-align: left !important; }
  433. .small-text-right {
  434. text-align: right !important; }
  435. .small-text-center {
  436. text-align: center !important; }
  437. .small-text-justify {
  438. text-align: justify !important; } }
  439. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  440. .medium-only-text-left {
  441. text-align: left !important; }
  442. .medium-only-text-right {
  443. text-align: right !important; }
  444. .medium-only-text-center {
  445. text-align: center !important; }
  446. .medium-only-text-justify {
  447. text-align: justify !important; } }
  448. @media only screen and (min-width: 40.0625em) {
  449. .medium-text-left {
  450. text-align: left !important; }
  451. .medium-text-right {
  452. text-align: right !important; }
  453. .medium-text-center {
  454. text-align: center !important; }
  455. .medium-text-justify {
  456. text-align: justify !important; } }
  457. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  458. .large-only-text-left {
  459. text-align: left !important; }
  460. .large-only-text-right {
  461. text-align: right !important; }
  462. .large-only-text-center {
  463. text-align: center !important; }
  464. .large-only-text-justify {
  465. text-align: justify !important; } }
  466. @media only screen and (min-width: 64.0625em) {
  467. .large-text-left {
  468. text-align: left !important; }
  469. .large-text-right {
  470. text-align: right !important; }
  471. .large-text-center {
  472. text-align: center !important; }
  473. .large-text-justify {
  474. text-align: justify !important; } }
  475. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  476. .xlarge-only-text-left {
  477. text-align: left !important; }
  478. .xlarge-only-text-right {
  479. text-align: right !important; }
  480. .xlarge-only-text-center {
  481. text-align: center !important; }
  482. .xlarge-only-text-justify {
  483. text-align: justify !important; } }
  484. @media only screen and (min-width: 90.0625em) {
  485. .xlarge-text-left {
  486. text-align: left !important; }
  487. .xlarge-text-right {
  488. text-align: right !important; }
  489. .xlarge-text-center {
  490. text-align: center !important; }
  491. .xlarge-text-justify {
  492. text-align: justify !important; } }
  493. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  494. .xxlarge-only-text-left {
  495. text-align: left !important; }
  496. .xxlarge-only-text-right {
  497. text-align: right !important; }
  498. .xxlarge-only-text-center {
  499. text-align: center !important; }
  500. .xxlarge-only-text-justify {
  501. text-align: justify !important; } }
  502. @media only screen and (min-width: 120.0625em) {
  503. .xxlarge-text-left {
  504. text-align: left !important; }
  505. .xxlarge-text-right {
  506. text-align: right !important; }
  507. .xxlarge-text-center {
  508. text-align: center !important; }
  509. .xxlarge-text-justify {
  510. text-align: justify !important; } }
  511. /* Typography resets */
  512. div,
  513. dl,
  514. dt,
  515. dd,
  516. ul,
  517. ol,
  518. li,
  519. h1,
  520. h2,
  521. h3,
  522. h4,
  523. h5,
  524. h6,
  525. pre,
  526. form,
  527. p,
  528. blockquote,
  529. th,
  530. td {
  531. margin: 0;
  532. padding: 0; }
  533. /* Default Link Styles */
  534. a {
  535. color: #008CBA;
  536. line-height: inherit;
  537. text-decoration: none; }
  538. a:hover, a:focus {
  539. color: #0078a0; }
  540. a img {
  541. border: none; }
  542. /* Default paragraph styles */
  543. p {
  544. font-family: inherit;
  545. font-size: 1rem;
  546. font-weight: normal;
  547. line-height: 1.6;
  548. margin-bottom: 1.25rem;
  549. text-rendering: optimizeLegibility; }
  550. p.lead {
  551. font-size: 1.21875rem;
  552. line-height: 1.6; }
  553. p aside {
  554. font-size: 0.875rem;
  555. font-style: italic;
  556. line-height: 1.35; }
  557. /* Default header styles */
  558. h1, h2, h3, h4, h5, h6 {
  559. color: #222222;
  560. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  561. font-style: normal;
  562. font-weight: normal;
  563. line-height: 1.4;
  564. margin-bottom: 0.5rem;
  565. margin-top: 0.2rem;
  566. text-rendering: optimizeLegibility; }
  567. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  568. color: #6f6f6f;
  569. font-size: 60%;
  570. line-height: 0; }
  571. h1 {
  572. font-size: 2.125rem; }
  573. h2 {
  574. font-size: 1.6875rem; }
  575. h3 {
  576. font-size: 1.375rem; }
  577. h4 {
  578. font-size: 1.125rem; }
  579. h5 {
  580. font-size: 1.125rem; }
  581. h6 {
  582. font-size: 1rem; }
  583. .subheader {
  584. line-height: 1.4;
  585. color: #6f6f6f;
  586. font-weight: normal;
  587. margin-top: 0.2rem;
  588. margin-bottom: 0.5rem; }
  589. hr {
  590. border: solid #DDDDDD;
  591. border-width: 1px 0 0;
  592. clear: both;
  593. height: 0;
  594. margin: 1.25rem 0 1.1875rem; }
  595. /* Helpful Typography Defaults */
  596. em,
  597. i {
  598. font-style: italic;
  599. line-height: inherit; }
  600. strong,
  601. b {
  602. font-weight: bold;
  603. line-height: inherit; }
  604. small {
  605. font-size: 60%;
  606. line-height: inherit; }
  607. code {
  608. background-color: #f8f8f8;
  609. border-color: #dfdfdf;
  610. border-style: solid;
  611. border-width: 1px;
  612. color: #333333;
  613. font-family: Consolas, "Liberation Mono", Courier, monospace;
  614. font-weight: normal;
  615. padding: 0.125rem 0.3125rem 0.0625rem; }
  616. /* Lists */
  617. ul,
  618. ol,
  619. dl {
  620. font-family: inherit;
  621. font-size: 1rem;
  622. line-height: 1.6;
  623. list-style-position: outside;
  624. margin-bottom: 1.25rem; }
  625. ul {
  626. margin-left: 1.1rem; }
  627. /* Unordered Lists */
  628. ul li ul,
  629. ul li ol {
  630. margin-left: 1.25rem;
  631. margin-bottom: 0; }
  632. ul.square li ul, ul.circle li ul, ul.disc li ul {
  633. list-style: inherit; }
  634. ul.square {
  635. list-style-type: square;
  636. margin-left: 1.1rem; }
  637. ul.circle {
  638. list-style-type: circle;
  639. margin-left: 1.1rem; }
  640. ul.disc {
  641. list-style-type: disc;
  642. margin-left: 1.1rem; }
  643. /* Ordered Lists */
  644. ol {
  645. margin-left: 1.4rem; }
  646. ol li ul,
  647. ol li ol {
  648. margin-left: 1.25rem;
  649. margin-bottom: 0; }
  650. .no-bullet {
  651. list-style-type: none;
  652. margin-left: 0; }
  653. .no-bullet li ul,
  654. .no-bullet li ol {
  655. margin-left: 1.25rem;
  656. margin-bottom: 0;
  657. list-style: none; }
  658. /* Definition Lists */
  659. dl dt {
  660. margin-bottom: 0.3rem;
  661. font-weight: bold; }
  662. dl dd {
  663. margin-bottom: 0.75rem; }
  664. /* Abbreviations */
  665. abbr,
  666. acronym {
  667. text-transform: uppercase;
  668. font-size: 90%;
  669. color: #222;
  670. cursor: help; }
  671. abbr {
  672. text-transform: none; }
  673. abbr[title] {
  674. border-bottom: 1px dotted #DDDDDD; }
  675. /* Blockquotes */
  676. blockquote {
  677. margin: 0 0 1.25rem;
  678. padding: 0.5625rem 1.25rem 0 1.1875rem;
  679. border-left: 1px solid #DDDDDD; }
  680. blockquote cite {
  681. display: block;
  682. font-size: 0.8125rem;
  683. color: #555555; }
  684. blockquote cite:before {
  685. content: "\2014 \0020"; }
  686. blockquote cite a,
  687. blockquote cite a:visited {
  688. color: #555555; }
  689. blockquote,
  690. blockquote p {
  691. line-height: 1.6;
  692. color: #6f6f6f; }
  693. /* Microformats */
  694. .vcard {
  695. display: inline-block;
  696. margin: 0 0 1.25rem 0;
  697. border: 1px solid #DDDDDD;
  698. padding: 0.625rem 0.75rem; }
  699. .vcard li {
  700. margin: 0;
  701. display: block; }
  702. .vcard .fn {
  703. font-weight: bold;
  704. font-size: 0.9375rem; }
  705. .vevent .summary {
  706. font-weight: bold; }
  707. .vevent abbr {
  708. cursor: default;
  709. text-decoration: none;
  710. font-weight: bold;
  711. border: none;
  712. padding: 0 0.0625rem; }
  713. @media only screen and (min-width: 40.0625em) {
  714. h1, h2, h3, h4, h5, h6 {
  715. line-height: 1.4; }
  716. h1 {
  717. font-size: 2.75rem; }
  718. h2 {
  719. font-size: 2.3125rem; }
  720. h3 {
  721. font-size: 1.6875rem; }
  722. h4 {
  723. font-size: 1.4375rem; }
  724. h5 {
  725. font-size: 1.125rem; }
  726. h6 {
  727. font-size: 1rem; } }
  728. /*
  729. * Print styles.
  730. *
  731. * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
  732. * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
  733. */
  734. @media print {
  735. * {
  736. background: transparent !important;
  737. color: #000000 !important;
  738. /* Black prints faster: h5bp.com/s */
  739. box-shadow: none !important;
  740. text-shadow: none !important; }
  741. a,
  742. a:visited {
  743. text-decoration: underline; }
  744. a[href]:after {
  745. content: " (" attr(href) ")"; }
  746. abbr[title]:after {
  747. content: " (" attr(title) ")"; }
  748. .ir a:after,
  749. a[href^="javascript:"]:after,
  750. a[href^="#"]:after {
  751. content: ""; }
  752. pre,
  753. blockquote {
  754. border: 1px solid #999999;
  755. page-break-inside: avoid; }
  756. thead {
  757. display: table-header-group;
  758. /* h5bp.com/t */ }
  759. tr,
  760. img {
  761. page-break-inside: avoid; }
  762. img {
  763. max-width: 100% !important; }
  764. @page {
  765. margin: 0.34in; }
  766. p,
  767. h2,
  768. h3 {
  769. orphans: 3;
  770. widows: 3; }
  771. h2,
  772. h3 {
  773. page-break-after: avoid; } }
  774. /* Clearing Styles */
  775. .clearing-thumbs, [data-clearing] {
  776. list-style: none;
  777. margin-left: 0;
  778. margin-bottom: 0; }
  779. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  780. content: " ";
  781. display: table; }
  782. .clearing-thumbs:after, [data-clearing]:after {
  783. clear: both; }
  784. .clearing-thumbs li, [data-clearing] li {
  785. float: left;
  786. margin-right: 10px; }
  787. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  788. margin-right: 0; }
  789. .clearing-blackout {
  790. background: #333333;
  791. height: 100%;
  792. position: fixed;
  793. top: 0;
  794. width: 100%;
  795. z-index: 998;
  796. left: 0; }
  797. .clearing-blackout .clearing-close {
  798. display: block; }
  799. .clearing-container {
  800. height: 100%;
  801. margin: 0;
  802. overflow: hidden;
  803. position: relative;
  804. z-index: 998; }
  805. .clearing-touch-label {
  806. color: #AAAAAA;
  807. font-size: .6em;
  808. left: 50%;
  809. position: absolute;
  810. top: 50%; }
  811. .visible-img {
  812. height: 95%;
  813. position: relative; }
  814. .visible-img img {
  815. position: absolute;
  816. left: 50%;
  817. top: 50%;
  818. transform: translateY(-50%) translateX(-50%);
  819. max-height: 100%;
  820. max-width: 100%; }
  821. .clearing-caption {
  822. background: #333333;
  823. bottom: 0;
  824. color: #CCCCCC;
  825. font-size: 0.875em;
  826. line-height: 1.3;
  827. margin-bottom: 0;
  828. padding: 10px 30px 20px;
  829. position: absolute;
  830. text-align: center;
  831. width: 100%;
  832. left: 0; }
  833. .clearing-close {
  834. color: #CCCCCC;
  835. display: none;
  836. font-size: 30px;
  837. line-height: 1;
  838. padding-left: 20px;
  839. padding-top: 10px;
  840. z-index: 999; }
  841. .clearing-close:hover, .clearing-close:focus {
  842. color: #CCCCCC; }
  843. .clearing-assembled .clearing-container {
  844. height: 100%; }
  845. .clearing-assembled .clearing-container .carousel > ul {
  846. display: none; }
  847. .clearing-feature li {
  848. display: none; }
  849. .clearing-feature li.clearing-featured-img {
  850. display: block; }
  851. @media only screen and (min-width: 40.0625em) {
  852. .clearing-main-prev,
  853. .clearing-main-next {
  854. height: 100%;
  855. position: absolute;
  856. top: 0;
  857. width: 40px; }
  858. .clearing-main-prev > span,
  859. .clearing-main-next > span {
  860. border: solid 12px;
  861. display: block;
  862. height: 0;
  863. position: absolute;
  864. top: 50%;
  865. width: 0; }
  866. .clearing-main-prev > span:hover,
  867. .clearing-main-next > span:hover {
  868. opacity: .8; }
  869. .clearing-main-prev {
  870. left: 0; }
  871. .clearing-main-prev > span {
  872. left: 5px;
  873. border-color: transparent;
  874. border-right-color: #CCCCCC; }
  875. .clearing-main-next {
  876. right: 0; }
  877. .clearing-main-next > span {
  878. border-color: transparent;
  879. border-left-color: #CCCCCC; }
  880. .clearing-main-prev.disabled,
  881. .clearing-main-next.disabled {
  882. opacity: .3; }
  883. .clearing-assembled .clearing-container .carousel {
  884. background: rgba(51, 51, 51, 0.8);
  885. height: 120px;
  886. margin-top: 10px;
  887. text-align: center; }
  888. .clearing-assembled .clearing-container .carousel > ul {
  889. display: inline-block;
  890. z-index: 999;
  891. height: 100%;
  892. position: relative;
  893. float: none; }
  894. .clearing-assembled .clearing-container .carousel > ul li {
  895. clear: none;
  896. cursor: pointer;
  897. display: block;
  898. float: left;
  899. margin-right: 0;
  900. min-height: inherit;
  901. opacity: .4;
  902. overflow: hidden;
  903. padding: 0;
  904. position: relative;
  905. width: 120px; }
  906. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  907. height: 100%;
  908. max-width: none; }
  909. .clearing-assembled .clearing-container .carousel > ul li a.th {
  910. border: none;
  911. box-shadow: none;
  912. display: block; }
  913. .clearing-assembled .clearing-container .carousel > ul li img {
  914. cursor: pointer !important;
  915. width: 100% !important; }
  916. .clearing-assembled .clearing-container .carousel > ul li.visible {
  917. opacity: 1; }
  918. .clearing-assembled .clearing-container .carousel > ul li:hover {
  919. opacity: .8; }
  920. .clearing-assembled .clearing-container .visible-img {
  921. background: #333333;
  922. height: 85%;
  923. overflow: hidden; }
  924. .clearing-close {
  925. padding-left: 0;
  926. padding-top: 0;
  927. position: absolute;
  928. top: 10px;
  929. right: 20px; } }
  930. .inline-list {
  931. list-style: none;
  932. margin-top: 0;
  933. margin-bottom: 1.0625rem;
  934. margin-left: -1.375rem;
  935. margin-right: 0;
  936. overflow: hidden;
  937. padding: 0; }
  938. .inline-list > li {
  939. display: block;
  940. float: left;
  941. list-style: none;
  942. margin-left: 1.375rem; }
  943. .inline-list > li > * {
  944. display: block; }
  945. button, .button {
  946. -webkit-appearance: none;
  947. -moz-appearance: none;
  948. border-radius: 0;
  949. border-style: solid;
  950. border-width: 0;
  951. cursor: pointer;
  952. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  953. font-weight: normal;
  954. line-height: normal;
  955. margin: 0 0 1.25rem;
  956. position: relative;
  957. text-align: center;
  958. text-decoration: none;
  959. display: inline-block;
  960. padding: 1rem 2rem 1.0625rem 2rem;
  961. font-size: 1rem;
  962. background-color: #008CBA;
  963. border-color: #007095;
  964. color: #FFFFFF;
  965. transition: background-color 300ms ease-out; }
  966. button:hover, button:focus, .button:hover, .button:focus {
  967. background-color: #007095; }
  968. button:hover, button:focus, .button:hover, .button:focus {
  969. color: #FFFFFF; }
  970. button.secondary, .button.secondary {
  971. background-color: #e7e7e7;
  972. border-color: #b9b9b9;
  973. color: #333333; }
  974. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  975. background-color: #b9b9b9; }
  976. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  977. color: #333333; }
  978. button.success, .button.success {
  979. background-color: #43AC6A;
  980. border-color: #368a55;
  981. color: #FFFFFF; }
  982. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  983. background-color: #368a55; }
  984. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  985. color: #FFFFFF; }
  986. button.alert, .button.alert {
  987. background-color: #f04124;
  988. border-color: #cf2a0e;
  989. color: #FFFFFF; }
  990. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  991. background-color: #cf2a0e; }
  992. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  993. color: #FFFFFF; }
  994. button.warning, .button.warning {
  995. background-color: #f08a24;
  996. border-color: #cf6e0e;
  997. color: #FFFFFF; }
  998. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  999. background-color: #cf6e0e; }
  1000. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  1001. color: #FFFFFF; }
  1002. button.info, .button.info {
  1003. background-color: #a0d3e8;
  1004. border-color: #61b6d9;
  1005. color: #333333; }
  1006. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1007. background-color: #61b6d9; }
  1008. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1009. color: #FFFFFF; }
  1010. button.large, .button.large {
  1011. padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  1012. font-size: 1.25rem; }
  1013. button.small, .button.small {
  1014. padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  1015. font-size: 0.8125rem; }
  1016. button.tiny, .button.tiny {
  1017. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  1018. font-size: 0.6875rem; }
  1019. button.expand, .button.expand {
  1020. padding: 1rem 2rem 1.0625rem 2rem;
  1021. font-size: 1rem;
  1022. padding-bottom: 1.0625rem;
  1023. padding-top: 1rem;
  1024. padding-left: 1rem;
  1025. padding-right: 1rem;
  1026. width: 100%; }
  1027. button.left-align, .button.left-align {
  1028. text-align: left;
  1029. text-indent: 0.75rem; }
  1030. button.right-align, .button.right-align {
  1031. text-align: right;
  1032. padding-right: 0.75rem; }
  1033. button.radius, .button.radius {
  1034. border-radius: 3px; }
  1035. button.round, .button.round {
  1036. border-radius: 1000px; }
  1037. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  1038. background-color: #008CBA;
  1039. border-color: #007095;
  1040. color: #FFFFFF;
  1041. box-shadow: none;
  1042. cursor: default;
  1043. opacity: 0.7; }
  1044. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1045. background-color: #007095; }
  1046. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1047. color: #FFFFFF; }
  1048. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1049. background-color: #008CBA; }
  1050. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  1051. background-color: #e7e7e7;
  1052. border-color: #b9b9b9;
  1053. color: #333333;
  1054. box-shadow: none;
  1055. cursor: default;
  1056. opacity: 0.7; }
  1057. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1058. background-color: #b9b9b9; }
  1059. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1060. color: #333333; }
  1061. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1062. background-color: #e7e7e7; }
  1063. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  1064. background-color: #43AC6A;
  1065. border-color: #368a55;
  1066. color: #FFFFFF;
  1067. box-shadow: none;
  1068. cursor: default;
  1069. opacity: 0.7; }
  1070. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1071. background-color: #368a55; }
  1072. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1073. color: #FFFFFF; }
  1074. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1075. background-color: #43AC6A; }
  1076. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  1077. background-color: #f04124;
  1078. border-color: #cf2a0e;
  1079. color: #FFFFFF;
  1080. box-shadow: none;
  1081. cursor: default;
  1082. opacity: 0.7; }
  1083. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1084. background-color: #cf2a0e; }
  1085. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1086. color: #FFFFFF; }
  1087. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1088. background-color: #f04124; }
  1089. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  1090. background-color: #f08a24;
  1091. border-color: #cf6e0e;
  1092. color: #FFFFFF;
  1093. box-shadow: none;
  1094. cursor: default;
  1095. opacity: 0.7; }
  1096. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1097. background-color: #cf6e0e; }
  1098. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1099. color: #FFFFFF; }
  1100. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1101. background-color: #f08a24; }
  1102. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  1103. background-color: #a0d3e8;
  1104. border-color: #61b6d9;
  1105. color: #333333;
  1106. box-shadow: none;
  1107. cursor: default;
  1108. opacity: 0.7; }
  1109. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1110. background-color: #61b6d9; }
  1111. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1112. color: #FFFFFF; }
  1113. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1114. background-color: #a0d3e8; }
  1115. button::-moz-focus-inner {
  1116. border: 0;
  1117. padding: 0; }
  1118. @media only screen and (min-width: 40.0625em) {
  1119. button, .button {
  1120. display: inline-block; } }
  1121. .button-group {
  1122. list-style: none;
  1123. margin: 0;
  1124. left: 0; }
  1125. .button-group:before, .button-group:after {
  1126. content: " ";
  1127. display: table; }
  1128. .button-group:after {
  1129. clear: both; }
  1130. .button-group.even-2 li {
  1131. display: inline-block;
  1132. margin: 0 -2px;
  1133. width: 50%; }
  1134. .button-group.even-2 li > button, .button-group.even-2 li .button {
  1135. border-left: 1px solid;
  1136. border-color: rgba(255, 255, 255, 0.5); }
  1137. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  1138. border-left: 0; }
  1139. .button-group.even-2 li button, .button-group.even-2 li .button {
  1140. width: 100%; }
  1141. .button-group.even-3 li {
  1142. display: inline-block;
  1143. margin: 0 -2px;
  1144. width: 33.33333%; }
  1145. .button-group.even-3 li > button, .button-group.even-3 li .button {
  1146. border-left: 1px solid;
  1147. border-color: rgba(255, 255, 255, 0.5); }
  1148. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  1149. border-left: 0; }
  1150. .button-group.even-3 li button, .button-group.even-3 li .button {
  1151. width: 100%; }
  1152. .button-group.even-4 li {
  1153. display: inline-block;
  1154. margin: 0 -2px;
  1155. width: 25%; }
  1156. .button-group.even-4 li > button, .button-group.even-4 li .button {
  1157. border-left: 1px solid;
  1158. border-color: rgba(255, 255, 255, 0.5); }
  1159. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  1160. border-left: 0; }
  1161. .button-group.even-4 li button, .button-group.even-4 li .button {
  1162. width: 100%; }
  1163. .button-group.even-5 li {
  1164. display: inline-block;
  1165. margin: 0 -2px;
  1166. width: 20%; }
  1167. .button-group.even-5 li > button, .button-group.even-5 li .button {
  1168. border-left: 1px solid;
  1169. border-color: rgba(255, 255, 255, 0.5); }
  1170. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  1171. border-left: 0; }
  1172. .button-group.even-5 li button, .button-group.even-5 li .button {
  1173. width: 100%; }
  1174. .button-group.even-6 li {
  1175. display: inline-block;
  1176. margin: 0 -2px;
  1177. width: 16.66667%; }
  1178. .button-group.even-6 li > button, .button-group.even-6 li .button {
  1179. border-left: 1px solid;
  1180. border-color: rgba(255, 255, 255, 0.5); }
  1181. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  1182. border-left: 0; }
  1183. .button-group.even-6 li button, .button-group.even-6 li .button {
  1184. width: 100%; }
  1185. .button-group.even-7 li {
  1186. display: inline-block;
  1187. margin: 0 -2px;
  1188. width: 14.28571%; }
  1189. .button-group.even-7 li > button, .button-group.even-7 li .button {
  1190. border-left: 1px solid;
  1191. border-color: rgba(255, 255, 255, 0.5); }
  1192. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  1193. border-left: 0; }
  1194. .button-group.even-7 li button, .button-group.even-7 li .button {
  1195. width: 100%; }
  1196. .button-group.even-8 li {
  1197. display: inline-block;
  1198. margin: 0 -2px;
  1199. width: 12.5%; }
  1200. .button-group.even-8 li > button, .button-group.even-8 li .button {
  1201. border-left: 1px solid;
  1202. border-color: rgba(255, 255, 255, 0.5); }
  1203. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  1204. border-left: 0; }
  1205. .button-group.even-8 li button, .button-group.even-8 li .button {
  1206. width: 100%; }
  1207. .button-group > li {
  1208. display: inline-block;
  1209. margin: 0 -2px; }
  1210. .button-group > li > button, .button-group > li .button {
  1211. border-left: 1px solid;
  1212. border-color: rgba(255, 255, 255, 0.5); }
  1213. .button-group > li:first-child button, .button-group > li:first-child .button {
  1214. border-left: 0; }
  1215. .button-group.stack > li {
  1216. display: block;
  1217. margin: 0;
  1218. float: none; }
  1219. .button-group.stack > li > button, .button-group.stack > li .button {
  1220. border-left: 1px solid;
  1221. border-color: rgba(255, 255, 255, 0.5); }
  1222. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1223. border-left: 0; }
  1224. .button-group.stack > li > button, .button-group.stack > li .button {
  1225. border-color: rgba(255, 255, 255, 0.5);
  1226. border-left-width: 0;
  1227. border-top: 1px solid;
  1228. display: block;
  1229. margin: 0; }
  1230. .button-group.stack > li > button {
  1231. width: 100%; }
  1232. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1233. border-top: 0; }
  1234. .button-group.stack-for-small > li {
  1235. display: inline-block;
  1236. margin: 0 -2px; }
  1237. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1238. border-left: 1px solid;
  1239. border-color: rgba(255, 255, 255, 0.5); }
  1240. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1241. border-left: 0; }
  1242. @media only screen and (max-width: 40em) {
  1243. .button-group.stack-for-small > li {
  1244. display: block;
  1245. margin: 0;
  1246. width: 100%; }
  1247. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1248. border-left: 1px solid;
  1249. border-color: rgba(255, 255, 255, 0.5); }
  1250. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1251. border-left: 0; }
  1252. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1253. border-color: rgba(255, 255, 255, 0.5);
  1254. border-left-width: 0;
  1255. border-top: 1px solid;
  1256. display: block;
  1257. margin: 0; }
  1258. .button-group.stack-for-small > li > button {
  1259. width: 100%; }
  1260. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1261. border-top: 0; } }
  1262. .button-group.radius > * {
  1263. display: inline-block;
  1264. margin: 0 -2px; }
  1265. .button-group.radius > * > button, .button-group.radius > * .button {
  1266. border-left: 1px solid;
  1267. border-color: rgba(255, 255, 255, 0.5); }
  1268. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  1269. border-left: 0; }
  1270. .button-group.radius > *,
  1271. .button-group.radius > * > a,
  1272. .button-group.radius > * > button,
  1273. .button-group.radius > * > .button {
  1274. border-radius: 0; }
  1275. .button-group.radius > *:first-child,
  1276. .button-group.radius > *:first-child > a,
  1277. .button-group.radius > *:first-child > button,
  1278. .button-group.radius > *:first-child > .button {
  1279. -webkit-border-bottom-left-radius: 3px;
  1280. -webkit-border-top-left-radius: 3px;
  1281. border-bottom-left-radius: 3px;
  1282. border-top-left-radius: 3px; }
  1283. .button-group.radius > *:last-child,
  1284. .button-group.radius > *:last-child > a,
  1285. .button-group.radius > *:last-child > button,
  1286. .button-group.radius > *:last-child > .button {
  1287. -webkit-border-bottom-right-radius: 3px;
  1288. -webkit-border-top-right-radius: 3px;
  1289. border-bottom-right-radius: 3px;
  1290. border-top-right-radius: 3px; }
  1291. .button-group.radius.stack > * {
  1292. display: block;
  1293. margin: 0; }
  1294. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1295. border-left: 1px solid;
  1296. border-color: rgba(255, 255, 255, 0.5); }
  1297. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1298. border-left: 0; }
  1299. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1300. border-color: rgba(255, 255, 255, 0.5);
  1301. border-left-width: 0;
  1302. border-top: 1px solid;
  1303. display: block;
  1304. margin: 0; }
  1305. .button-group.radius.stack > * > button {
  1306. width: 100%; }
  1307. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1308. border-top: 0; }
  1309. .button-group.radius.stack > *,
  1310. .button-group.radius.stack > * > a,
  1311. .button-group.radius.stack > * > button,
  1312. .button-group.radius.stack > * > .button {
  1313. border-radius: 0; }
  1314. .button-group.radius.stack > *:first-child,
  1315. .button-group.radius.stack > *:first-child > a,
  1316. .button-group.radius.stack > *:first-child > button,
  1317. .button-group.radius.stack > *:first-child > .button {
  1318. -webkit-top-left-radius: 3px;
  1319. -webkit-top-right-radius: 3px;
  1320. border-top-left-radius: 3px;
  1321. border-top-right-radius: 3px; }
  1322. .button-group.radius.stack > *:last-child,
  1323. .button-group.radius.stack > *:last-child > a,
  1324. .button-group.radius.stack > *:last-child > button,
  1325. .button-group.radius.stack > *:last-child > .button {
  1326. -webkit-bottom-left-radius: 3px;
  1327. -webkit-bottom-right-radius: 3px;
  1328. border-bottom-left-radius: 3px;
  1329. border-bottom-right-radius: 3px; }
  1330. @media only screen and (min-width: 40.0625em) {
  1331. .button-group.radius.stack-for-small > * {
  1332. display: inline-block;
  1333. margin: 0 -2px; }
  1334. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1335. border-left: 1px solid;
  1336. border-color: rgba(255, 255, 255, 0.5); }
  1337. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1338. border-left: 0; }
  1339. .button-group.radius.stack-for-small > *,
  1340. .button-group.radius.stack-for-small > * > a,
  1341. .button-group.radius.stack-for-small > * > button,
  1342. .button-group.radius.stack-for-small > * > .button {
  1343. border-radius: 0; }
  1344. .button-group.radius.stack-for-small > *:first-child,
  1345. .button-group.radius.stack-for-small > *:first-child > a,
  1346. .button-group.radius.stack-for-small > *:first-child > button,
  1347. .button-group.radius.stack-for-small > *:first-child > .button {
  1348. -webkit-border-bottom-left-radius: 3px;
  1349. -webkit-border-top-left-radius: 3px;
  1350. border-bottom-left-radius: 3px;
  1351. border-top-left-radius: 3px; }
  1352. .button-group.radius.stack-for-small > *:last-child,
  1353. .button-group.radius.stack-for-small > *:last-child > a,
  1354. .button-group.radius.stack-for-small > *:last-child > button,
  1355. .button-group.radius.stack-for-small > *:last-child > .button {
  1356. -webkit-border-bottom-right-radius: 3px;
  1357. -webkit-border-top-right-radius: 3px;
  1358. border-bottom-right-radius: 3px;
  1359. border-top-right-radius: 3px; } }
  1360. @media only screen and (max-width: 40em) {
  1361. .button-group.radius.stack-for-small > * {
  1362. display: block;
  1363. margin: 0; }
  1364. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1365. border-left: 1px solid;
  1366. border-color: rgba(255, 255, 255, 0.5); }
  1367. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1368. border-left: 0; }
  1369. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1370. border-color: rgba(255, 255, 255, 0.5);
  1371. border-left-width: 0;
  1372. border-top: 1px solid;
  1373. display: block;
  1374. margin: 0; }
  1375. .button-group.radius.stack-for-small > * > button {
  1376. width: 100%; }
  1377. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1378. border-top: 0; }
  1379. .button-group.radius.stack-for-small > *,
  1380. .button-group.radius.stack-for-small > * > a,
  1381. .button-group.radius.stack-for-small > * > button,
  1382. .button-group.radius.stack-for-small > * > .button {
  1383. border-radius: 0; }
  1384. .button-group.radius.stack-for-small > *:first-child,
  1385. .button-group.radius.stack-for-small > *:first-child > a,
  1386. .button-group.radius.stack-for-small > *:first-child > button,
  1387. .button-group.radius.stack-for-small > *:first-child > .button {
  1388. -webkit-top-left-radius: 3px;
  1389. -webkit-top-right-radius: 3px;
  1390. border-top-left-radius: 3px;
  1391. border-top-right-radius: 3px; }
  1392. .button-group.radius.stack-for-small > *:last-child,
  1393. .button-group.radius.stack-for-small > *:last-child > a,
  1394. .button-group.radius.stack-for-small > *:last-child > button,
  1395. .button-group.radius.stack-for-small > *:last-child > .button {
  1396. -webkit-bottom-left-radius: 3px;
  1397. -webkit-bottom-right-radius: 3px;
  1398. border-bottom-left-radius: 3px;
  1399. border-bottom-right-radius: 3px; } }
  1400. .button-group.round > * {
  1401. display: inline-block;
  1402. margin: 0 -2px; }
  1403. .button-group.round > * > button, .button-group.round > * .button {
  1404. border-left: 1px solid;
  1405. border-color: rgba(255, 255, 255, 0.5); }
  1406. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  1407. border-left: 0; }
  1408. .button-group.round > *,
  1409. .button-group.round > * > a,
  1410. .button-group.round > * > button,
  1411. .button-group.round > * > .button {
  1412. border-radius: 0; }
  1413. .button-group.round > *:first-child,
  1414. .button-group.round > *:first-child > a,
  1415. .button-group.round > *:first-child > button,
  1416. .button-group.round > *:first-child > .button {
  1417. -webkit-border-bottom-left-radius: 1000px;
  1418. -webkit-border-top-left-radius: 1000px;
  1419. border-bottom-left-radius: 1000px;
  1420. border-top-left-radius: 1000px; }
  1421. .button-group.round > *:last-child,
  1422. .button-group.round > *:last-child > a,
  1423. .button-group.round > *:last-child > button,
  1424. .button-group.round > *:last-child > .button {
  1425. -webkit-border-bottom-right-radius: 1000px;
  1426. -webkit-border-top-right-radius: 1000px;
  1427. border-bottom-right-radius: 1000px;
  1428. border-top-right-radius: 1000px; }
  1429. .button-group.round.stack > * {
  1430. display: block;
  1431. margin: 0; }
  1432. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1433. border-left: 1px solid;
  1434. border-color: rgba(255, 255, 255, 0.5); }
  1435. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1436. border-left: 0; }
  1437. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1438. border-color: rgba(255, 255, 255, 0.5);
  1439. border-left-width: 0;
  1440. border-top: 1px solid;
  1441. display: block;
  1442. margin: 0; }
  1443. .button-group.round.stack > * > button {
  1444. width: 100%; }
  1445. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1446. border-top: 0; }
  1447. .button-group.round.stack > *,
  1448. .button-group.round.stack > * > a,
  1449. .button-group.round.stack > * > button,
  1450. .button-group.round.stack > * > .button {
  1451. border-radius: 0; }
  1452. .button-group.round.stack > *:first-child,
  1453. .button-group.round.stack > *:first-child > a,
  1454. .button-group.round.stack > *:first-child > button,
  1455. .button-group.round.stack > *:first-child > .button {
  1456. -webkit-top-left-radius: 1rem;
  1457. -webkit-top-right-radius: 1rem;
  1458. border-top-left-radius: 1rem;
  1459. border-top-right-radius: 1rem; }
  1460. .button-group.round.stack > *:last-child,
  1461. .button-group.round.stack > *:last-child > a,
  1462. .button-group.round.stack > *:last-child > button,
  1463. .button-group.round.stack > *:last-child > .button {
  1464. -webkit-bottom-left-radius: 1rem;
  1465. -webkit-bottom-right-radius: 1rem;
  1466. border-bottom-left-radius: 1rem;
  1467. border-bottom-right-radius: 1rem; }
  1468. @media only screen and (min-width: 40.0625em) {
  1469. .button-group.round.stack-for-small > * {
  1470. display: inline-block;
  1471. margin: 0 -2px; }
  1472. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1473. border-left: 1px solid;
  1474. border-color: rgba(255, 255, 255, 0.5); }
  1475. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1476. border-left: 0; }
  1477. .button-group.round.stack-for-small > *,
  1478. .button-group.round.stack-for-small > * > a,
  1479. .button-group.round.stack-for-small > * > button,
  1480. .button-group.round.stack-for-small > * > .button {
  1481. border-radius: 0; }
  1482. .button-group.round.stack-for-small > *:first-child,
  1483. .button-group.round.stack-for-small > *:first-child > a,
  1484. .button-group.round.stack-for-small > *:first-child > button,
  1485. .button-group.round.stack-for-small > *:first-child > .button {
  1486. -webkit-border-bottom-left-radius: 1000px;
  1487. -webkit-border-top-left-radius: 1000px;
  1488. border-bottom-left-radius: 1000px;
  1489. border-top-left-radius: 1000px; }
  1490. .button-group.round.stack-for-small > *:last-child,
  1491. .button-group.round.stack-for-small > *:last-child > a,
  1492. .button-group.round.stack-for-small > *:last-child > button,
  1493. .button-group.round.stack-for-small > *:last-child > .button {
  1494. -webkit-border-bottom-right-radius: 1000px;
  1495. -webkit-border-top-right-radius: 1000px;
  1496. border-bottom-right-radius: 1000px;
  1497. border-top-right-radius: 1000px; } }
  1498. @media only screen and (max-width: 40em) {
  1499. .button-group.round.stack-for-small > * {
  1500. display: block;
  1501. margin: 0; }
  1502. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1503. border-left: 1px solid;
  1504. border-color: rgba(255, 255, 255, 0.5); }
  1505. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1506. border-left: 0; }
  1507. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1508. border-color: rgba(255, 255, 255, 0.5);
  1509. border-left-width: 0;
  1510. border-top: 1px solid;
  1511. display: block;
  1512. margin: 0; }
  1513. .button-group.round.stack-for-small > * > button {
  1514. width: 100%; }
  1515. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1516. border-top: 0; }
  1517. .button-group.round.stack-for-small > *,
  1518. .button-group.round.stack-for-small > * > a,
  1519. .button-group.round.stack-for-small > * > button,
  1520. .button-group.round.stack-for-small > * > .button {
  1521. border-radius: 0; }
  1522. .button-group.round.stack-for-small > *:first-child,
  1523. .button-group.round.stack-for-small > *:first-child > a,
  1524. .button-group.round.stack-for-small > *:first-child > button,
  1525. .button-group.round.stack-for-small > *:first-child > .button {
  1526. -webkit-top-left-radius: 1rem;
  1527. -webkit-top-right-radius: 1rem;
  1528. border-top-left-radius: 1rem;
  1529. border-top-right-radius: 1rem; }
  1530. .button-group.round.stack-for-small > *:last-child,
  1531. .button-group.round.stack-for-small > *:last-child > a,
  1532. .button-group.round.stack-for-small > *:last-child > button,
  1533. .button-group.round.stack-for-small > *:last-child > .button {
  1534. -webkit-bottom-left-radius: 1rem;
  1535. -webkit-bottom-right-radius: 1rem;
  1536. border-bottom-left-radius: 1rem;
  1537. border-bottom-right-radius: 1rem; } }
  1538. .button-bar:before, .button-bar:after {
  1539. content: " ";
  1540. display: table; }
  1541. .button-bar:after {
  1542. clear: both; }
  1543. .button-bar .button-group {
  1544. float: left;
  1545. margin-right: 0.625rem; }
  1546. .button-bar .button-group div {
  1547. overflow: hidden; }
  1548. .row {
  1549. margin: 0 auto;
  1550. max-width: 62.5rem;
  1551. width: 100%; }
  1552. .row:before, .row:after {
  1553. content: " ";
  1554. display: table; }
  1555. .row:after {
  1556. clear: both; }
  1557. .row.collapse > .column,
  1558. .row.collapse > .columns {
  1559. padding-left: 0;
  1560. padding-right: 0; }
  1561. .row.collapse .row {
  1562. margin-left: 0;
  1563. margin-right: 0; }
  1564. .row .row {
  1565. margin: 0 -0.9375rem;
  1566. max-width: none;
  1567. width: auto; }
  1568. .row .row:before, .row .row:after {
  1569. content: " ";
  1570. display: table; }
  1571. .row .row:after {
  1572. clear: both; }
  1573. .row .row.collapse {
  1574. margin: 0;
  1575. max-width: none;
  1576. width: auto; }
  1577. .row .row.collapse:before, .row .row.collapse:after {
  1578. content: " ";
  1579. display: table; }
  1580. .row .row.collapse:after {
  1581. clear: both; }
  1582. .column,
  1583. .columns {
  1584. padding-left: 0.9375rem;
  1585. padding-right: 0.9375rem;
  1586. width: 100%;
  1587. float: left; }
  1588. .column + .column:last-child,
  1589. .columns + .column:last-child, .column +
  1590. .columns:last-child,
  1591. .columns +
  1592. .columns:last-child {
  1593. float: right; }
  1594. .column + .column.end,
  1595. .columns + .column.end, .column +
  1596. .columns.end,
  1597. .columns +
  1598. .columns.end {
  1599. float: left; }
  1600. @media only screen {
  1601. .small-push-0 {
  1602. position: relative;
  1603. left: 0;
  1604. right: auto; }
  1605. .small-pull-0 {
  1606. position: relative;
  1607. right: 0;
  1608. left: auto; }
  1609. .small-push-1 {
  1610. position: relative;
  1611. left: 8.33333%;
  1612. right: auto; }
  1613. .small-pull-1 {
  1614. position: relative;
  1615. right: 8.33333%;
  1616. left: auto; }
  1617. .small-push-2 {
  1618. position: relative;
  1619. left: 16.66667%;
  1620. right: auto; }
  1621. .small-pull-2 {
  1622. position: relative;
  1623. right: 16.66667%;
  1624. left: auto; }
  1625. .small-push-3 {
  1626. position: relative;
  1627. left: 25%;
  1628. right: auto; }
  1629. .small-pull-3 {
  1630. position: relative;
  1631. right: 25%;
  1632. left: auto; }
  1633. .small-push-4 {
  1634. position: relative;
  1635. left: 33.33333%;
  1636. right: auto; }
  1637. .small-pull-4 {
  1638. position: relative;
  1639. right: 33.33333%;
  1640. left: auto; }
  1641. .small-push-5 {
  1642. position: relative;
  1643. left: 41.66667%;
  1644. right: auto; }
  1645. .small-pull-5 {
  1646. position: relative;
  1647. right: 41.66667%;
  1648. left: auto; }
  1649. .small-push-6 {
  1650. position: relative;
  1651. left: 50%;
  1652. right: auto; }
  1653. .small-pull-6 {
  1654. position: relative;
  1655. right: 50%;
  1656. left: auto; }
  1657. .small-push-7 {
  1658. position: relative;
  1659. left: 58.33333%;
  1660. right: auto; }
  1661. .small-pull-7 {
  1662. position: relative;
  1663. right: 58.33333%;
  1664. left: auto; }
  1665. .small-push-8 {
  1666. position: relative;
  1667. left: 66.66667%;
  1668. right: auto; }
  1669. .small-pull-8 {
  1670. position: relative;
  1671. right: 66.66667%;
  1672. left: auto; }
  1673. .small-push-9 {
  1674. position: relative;
  1675. left: 75%;
  1676. right: auto; }
  1677. .small-pull-9 {
  1678. position: relative;
  1679. right: 75%;
  1680. left: auto; }
  1681. .small-push-10 {
  1682. position: relative;
  1683. left: 83.33333%;
  1684. right: auto; }
  1685. .small-pull-10 {
  1686. position: relative;
  1687. right: 83.33333%;
  1688. left: auto; }
  1689. .small-push-11 {
  1690. position: relative;
  1691. left: 91.66667%;
  1692. right: auto; }
  1693. .small-pull-11 {
  1694. position: relative;
  1695. right: 91.66667%;
  1696. left: auto; }
  1697. .column,
  1698. .columns {
  1699. position: relative;
  1700. padding-left: 0.9375rem;
  1701. padding-right: 0.9375rem;
  1702. float: left; }
  1703. .small-1 {
  1704. width: 8.33333%; }
  1705. .small-2 {
  1706. width: 16.66667%; }
  1707. .small-3 {
  1708. width: 25%; }
  1709. .small-4 {
  1710. width: 33.33333%; }
  1711. .small-5 {
  1712. width: 41.66667%; }
  1713. .small-6 {
  1714. width: 50%; }
  1715. .small-7 {
  1716. width: 58.33333%; }
  1717. .small-8 {
  1718. width: 66.66667%; }
  1719. .small-9 {
  1720. width: 75%; }
  1721. .small-10 {
  1722. width: 83.33333%; }
  1723. .small-11 {
  1724. width: 91.66667%; }
  1725. .small-12 {
  1726. width: 100%; }
  1727. .small-offset-0 {
  1728. margin-left: 0 !important; }
  1729. .small-offset-1 {
  1730. margin-left: 8.33333% !important; }
  1731. .small-offset-2 {
  1732. margin-left: 16.66667% !important; }
  1733. .small-offset-3 {
  1734. margin-left: 25% !important; }
  1735. .small-offset-4 {
  1736. margin-left: 33.33333% !important; }
  1737. .small-offset-5 {
  1738. margin-left: 41.66667% !important; }
  1739. .small-offset-6 {
  1740. margin-left: 50% !important; }
  1741. .small-offset-7 {
  1742. margin-left: 58.33333% !important; }
  1743. .small-offset-8 {
  1744. margin-left: 66.66667% !important; }
  1745. .small-offset-9 {
  1746. margin-left: 75% !important; }
  1747. .small-offset-10 {
  1748. margin-left: 83.33333% !important; }
  1749. .small-offset-11 {
  1750. margin-left: 91.66667% !important; }
  1751. .small-reset-order {
  1752. float: left;
  1753. left: auto;
  1754. margin-left: 0;
  1755. margin-right: 0;
  1756. right: auto; }
  1757. .column.small-centered,
  1758. .columns.small-centered {
  1759. margin-left: auto;
  1760. margin-right: auto;
  1761. float: none; }
  1762. .column.small-uncentered,
  1763. .columns.small-uncentered {
  1764. float: left;
  1765. margin-left: 0;
  1766. margin-right: 0; }
  1767. .column.small-centered:last-child,
  1768. .columns.small-centered:last-child {
  1769. float: none; }
  1770. .column.small-uncentered:last-child,
  1771. .columns.small-uncentered:last-child {
  1772. float: left; }
  1773. .column.small-uncentered.opposite,
  1774. .columns.small-uncentered.opposite {
  1775. float: right; }
  1776. .row.small-collapse > .column,
  1777. .row.small-collapse > .columns {
  1778. padding-left: 0;
  1779. padding-right: 0; }
  1780. .row.small-collapse .row {
  1781. margin-left: 0;
  1782. margin-right: 0; }
  1783. .row.small-uncollapse > .column,
  1784. .row.small-uncollapse > .columns {
  1785. padding-left: 0.9375rem;
  1786. padding-right: 0.9375rem;
  1787. float: left; } }
  1788. @media only screen and (min-width: 40.0625em) {
  1789. .medium-push-0 {
  1790. position: relative;
  1791. left: 0;
  1792. right: auto; }
  1793. .medium-pull-0 {
  1794. position: relative;
  1795. right: 0;
  1796. left: auto; }
  1797. .medium-push-1 {
  1798. position: relative;
  1799. left: 8.33333%;
  1800. right: auto; }
  1801. .medium-pull-1 {
  1802. position: relative;
  1803. right: 8.33333%;
  1804. left: auto; }
  1805. .medium-push-2 {
  1806. position: relative;
  1807. left: 16.66667%;
  1808. right: auto; }
  1809. .medium-pull-2 {
  1810. position: relative;
  1811. right: 16.66667%;
  1812. left: auto; }
  1813. .medium-push-3 {
  1814. position: relative;
  1815. left: 25%;
  1816. right: auto; }
  1817. .medium-pull-3 {
  1818. position: relative;
  1819. right: 25%;
  1820. left: auto; }
  1821. .medium-push-4 {
  1822. position: relative;
  1823. left: 33.33333%;
  1824. right: auto; }
  1825. .medium-pull-4 {
  1826. position: relative;
  1827. right: 33.33333%;
  1828. left: auto; }
  1829. .medium-push-5 {
  1830. position: relative;
  1831. left: 41.66667%;
  1832. right: auto; }
  1833. .medium-pull-5 {
  1834. position: relative;
  1835. right: 41.66667%;
  1836. left: auto; }
  1837. .medium-push-6 {
  1838. position: relative;
  1839. left: 50%;
  1840. right: auto; }
  1841. .medium-pull-6 {
  1842. position: relative;
  1843. right: 50%;
  1844. left: auto; }
  1845. .medium-push-7 {
  1846. position: relative;
  1847. left: 58.33333%;
  1848. right: auto; }
  1849. .medium-pull-7 {
  1850. position: relative;
  1851. right: 58.33333%;
  1852. left: auto; }
  1853. .medium-push-8 {
  1854. position: relative;
  1855. left: 66.66667%;
  1856. right: auto; }
  1857. .medium-pull-8 {
  1858. position: relative;
  1859. right: 66.66667%;
  1860. left: auto; }
  1861. .medium-push-9 {
  1862. position: relative;
  1863. left: 75%;
  1864. right: auto; }
  1865. .medium-pull-9 {
  1866. position: relative;
  1867. right: 75%;
  1868. left: auto; }
  1869. .medium-push-10 {
  1870. position: relative;
  1871. left: 83.33333%;
  1872. right: auto; }
  1873. .medium-pull-10 {
  1874. position: relative;
  1875. right: 83.33333%;
  1876. left: auto; }
  1877. .medium-push-11 {
  1878. position: relative;
  1879. left: 91.66667%;
  1880. right: auto; }
  1881. .medium-pull-11 {
  1882. position: relative;
  1883. right: 91.66667%;
  1884. left: auto; }
  1885. .column,
  1886. .columns {
  1887. position: relative;
  1888. padding-left: 0.9375rem;
  1889. padding-right: 0.9375rem;
  1890. float: left; }
  1891. .medium-1 {
  1892. width: 8.33333%; }
  1893. .medium-2 {
  1894. width: 16.66667%; }
  1895. .medium-3 {
  1896. width: 25%; }
  1897. .medium-4 {
  1898. width: 33.33333%; }
  1899. .medium-5 {
  1900. width: 41.66667%; }
  1901. .medium-6 {
  1902. width: 50%; }
  1903. .medium-7 {
  1904. width: 58.33333%; }
  1905. .medium-8 {
  1906. width: 66.66667%; }
  1907. .medium-9 {
  1908. width: 75%; }
  1909. .medium-10 {
  1910. width: 83.33333%; }
  1911. .medium-11 {
  1912. width: 91.66667%; }
  1913. .medium-12 {
  1914. width: 100%; }
  1915. .medium-offset-0 {
  1916. margin-left: 0 !important; }
  1917. .medium-offset-1 {
  1918. margin-left: 8.33333% !important; }
  1919. .medium-offset-2 {
  1920. margin-left: 16.66667% !important; }
  1921. .medium-offset-3 {
  1922. margin-left: 25% !important; }
  1923. .medium-offset-4 {
  1924. margin-left: 33.33333% !important; }
  1925. .medium-offset-5 {
  1926. margin-left: 41.66667% !important; }
  1927. .medium-offset-6 {
  1928. margin-left: 50% !important; }
  1929. .medium-offset-7 {
  1930. margin-left: 58.33333% !important; }
  1931. .medium-offset-8 {
  1932. margin-left: 66.66667% !important; }
  1933. .medium-offset-9 {
  1934. margin-left: 75% !important; }
  1935. .medium-offset-10 {
  1936. margin-left: 83.33333% !important; }
  1937. .medium-offset-11 {
  1938. margin-left: 91.66667% !important; }
  1939. .medium-reset-order {
  1940. float: left;
  1941. left: auto;
  1942. margin-left: 0;
  1943. margin-right: 0;
  1944. right: auto; }
  1945. .column.medium-centered,
  1946. .columns.medium-centered {
  1947. margin-left: auto;
  1948. margin-right: auto;
  1949. float: none; }
  1950. .column.medium-uncentered,
  1951. .columns.medium-uncentered {
  1952. float: left;
  1953. margin-left: 0;
  1954. margin-right: 0; }
  1955. .column.medium-centered:last-child,
  1956. .columns.medium-centered:last-child {
  1957. float: none; }
  1958. .column.medium-uncentered:last-child,
  1959. .columns.medium-uncentered:last-child {
  1960. float: left; }
  1961. .column.medium-uncentered.opposite,
  1962. .columns.medium-uncentered.opposite {
  1963. float: right; }
  1964. .row.medium-collapse > .column,
  1965. .row.medium-collapse > .columns {
  1966. padding-left: 0;
  1967. padding-right: 0; }
  1968. .row.medium-collapse .row {
  1969. margin-left: 0;
  1970. margin-right: 0; }
  1971. .row.medium-uncollapse > .column,
  1972. .row.medium-uncollapse > .columns {
  1973. padding-left: 0.9375rem;
  1974. padding-right: 0.9375rem;
  1975. float: left; }
  1976. .push-0 {
  1977. position: relative;
  1978. left: 0;
  1979. right: auto; }
  1980. .pull-0 {
  1981. position: relative;
  1982. right: 0;
  1983. left: auto; }
  1984. .push-1 {
  1985. position: relative;
  1986. left: 8.33333%;
  1987. right: auto; }
  1988. .pull-1 {
  1989. position: relative;
  1990. right: 8.33333%;
  1991. left: auto; }
  1992. .push-2 {
  1993. position: relative;
  1994. left: 16.66667%;
  1995. right: auto; }
  1996. .pull-2 {
  1997. position: relative;
  1998. right: 16.66667%;
  1999. left: auto; }
  2000. .push-3 {
  2001. position: relative;
  2002. left: 25%;
  2003. right: auto; }
  2004. .pull-3 {
  2005. position: relative;
  2006. right: 25%;
  2007. left: auto; }
  2008. .push-4 {
  2009. position: relative;
  2010. left: 33.33333%;
  2011. right: auto; }
  2012. .pull-4 {
  2013. position: relative;
  2014. right: 33.33333%;
  2015. left: auto; }
  2016. .push-5 {
  2017. position: relative;
  2018. left: 41.66667%;
  2019. right: auto; }
  2020. .pull-5 {
  2021. position: relative;
  2022. right: 41.66667%;
  2023. left: auto; }
  2024. .push-6 {
  2025. position: relative;
  2026. left: 50%;
  2027. right: auto; }
  2028. .pull-6 {
  2029. position: relative;
  2030. right: 50%;
  2031. left: auto; }
  2032. .push-7 {
  2033. position: relative;
  2034. left: 58.33333%;
  2035. right: auto; }
  2036. .pull-7 {
  2037. position: relative;
  2038. right: 58.33333%;
  2039. left: auto; }
  2040. .push-8 {
  2041. position: relative;
  2042. left: 66.66667%;
  2043. right: auto; }
  2044. .pull-8 {
  2045. position: relative;
  2046. right: 66.66667%;
  2047. left: auto; }
  2048. .push-9 {
  2049. position: relative;
  2050. left: 75%;
  2051. right: auto; }
  2052. .pull-9 {
  2053. position: relative;
  2054. right: 75%;
  2055. left: auto; }
  2056. .push-10 {
  2057. position: relative;
  2058. left: 83.33333%;
  2059. right: auto; }
  2060. .pull-10 {
  2061. position: relative;
  2062. right: 83.33333%;
  2063. left: auto; }
  2064. .push-11 {
  2065. position: relative;
  2066. left: 91.66667%;
  2067. right: auto; }
  2068. .pull-11 {
  2069. position: relative;
  2070. right: 91.66667%;
  2071. left: auto; } }
  2072. @media only screen and (min-width: 64.0625em) {
  2073. .large-push-0 {
  2074. position: relative;
  2075. left: 0;
  2076. right: auto; }
  2077. .large-pull-0 {
  2078. position: relative;
  2079. right: 0;
  2080. left: auto; }
  2081. .large-push-1 {
  2082. position: relative;
  2083. left: 8.33333%;
  2084. right: auto; }
  2085. .large-pull-1 {
  2086. position: relative;
  2087. right: 8.33333%;
  2088. left: auto; }
  2089. .large-push-2 {
  2090. position: relative;
  2091. left: 16.66667%;
  2092. right: auto; }
  2093. .large-pull-2 {
  2094. position: relative;
  2095. right: 16.66667%;
  2096. left: auto; }
  2097. .large-push-3 {
  2098. position: relative;
  2099. left: 25%;
  2100. right: auto; }
  2101. .large-pull-3 {
  2102. position: relative;
  2103. right: 25%;
  2104. left: auto; }
  2105. .large-push-4 {
  2106. position: relative;
  2107. left: 33.33333%;
  2108. right: auto; }
  2109. .large-pull-4 {
  2110. position: relative;
  2111. right: 33.33333%;
  2112. left: auto; }
  2113. .large-push-5 {
  2114. position: relative;
  2115. left: 41.66667%;
  2116. right: auto; }
  2117. .large-pull-5 {
  2118. position: relative;
  2119. right: 41.66667%;
  2120. left: auto; }
  2121. .large-push-6 {
  2122. position: relative;
  2123. left: 50%;
  2124. right: auto; }
  2125. .large-pull-6 {
  2126. position: relative;
  2127. right: 50%;
  2128. left: auto; }
  2129. .large-push-7 {
  2130. position: relative;
  2131. left: 58.33333%;
  2132. right: auto; }
  2133. .large-pull-7 {
  2134. position: relative;
  2135. right: 58.33333%;
  2136. left: auto; }
  2137. .large-push-8 {
  2138. position: relative;
  2139. left: 66.66667%;
  2140. right: auto; }
  2141. .large-pull-8 {
  2142. position: relative;
  2143. right: 66.66667%;
  2144. left: auto; }
  2145. .large-push-9 {
  2146. position: relative;
  2147. left: 75%;
  2148. right: auto; }
  2149. .large-pull-9 {
  2150. position: relative;
  2151. right: 75%;
  2152. left: auto; }
  2153. .large-push-10 {
  2154. position: relative;
  2155. left: 83.33333%;
  2156. right: auto; }
  2157. .large-pull-10 {
  2158. position: relative;
  2159. right: 83.33333%;
  2160. left: auto; }
  2161. .large-push-11 {
  2162. position: relative;
  2163. left: 91.66667%;
  2164. right: auto; }
  2165. .large-pull-11 {
  2166. position: relative;
  2167. right: 91.66667%;
  2168. left: auto; }
  2169. .column,
  2170. .columns {
  2171. position: relative;
  2172. padding-left: 0.9375rem;
  2173. padding-right: 0.9375rem;
  2174. float: left; }
  2175. .large-1 {
  2176. width: 8.33333%; }
  2177. .large-2 {
  2178. width: 16.66667%; }
  2179. .large-3 {
  2180. width: 25%; }
  2181. .large-4 {
  2182. width: 33.33333%; }
  2183. .large-5 {
  2184. width: 41.66667%; }
  2185. .large-6 {
  2186. width: 50%; }
  2187. .large-7 {
  2188. width: 58.33333%; }
  2189. .large-8 {
  2190. width: 66.66667%; }
  2191. .large-9 {
  2192. width: 75%; }
  2193. .large-10 {
  2194. width: 83.33333%; }
  2195. .large-11 {
  2196. width: 91.66667%; }
  2197. .large-12 {
  2198. width: 100%; }
  2199. .large-offset-0 {
  2200. margin-left: 0 !important; }
  2201. .large-offset-1 {
  2202. margin-left: 8.33333% !important; }
  2203. .large-offset-2 {
  2204. margin-left: 16.66667% !important; }
  2205. .large-offset-3 {
  2206. margin-left: 25% !important; }
  2207. .large-offset-4 {
  2208. margin-left: 33.33333% !important; }
  2209. .large-offset-5 {
  2210. margin-left: 41.66667% !important; }
  2211. .large-offset-6 {
  2212. margin-left: 50% !important; }
  2213. .large-offset-7 {
  2214. margin-left: 58.33333% !important; }
  2215. .large-offset-8 {
  2216. margin-left: 66.66667% !important; }
  2217. .large-offset-9 {
  2218. margin-left: 75% !important; }
  2219. .large-offset-10 {
  2220. margin-left: 83.33333% !important; }
  2221. .large-offset-11 {
  2222. margin-left: 91.66667% !important; }
  2223. .large-reset-order {
  2224. float: left;
  2225. left: auto;
  2226. margin-left: 0;
  2227. margin-right: 0;
  2228. right: auto; }
  2229. .column.large-centered,
  2230. .columns.large-centered {
  2231. margin-left: auto;
  2232. margin-right: auto;
  2233. float: none; }
  2234. .column.large-uncentered,
  2235. .columns.large-uncentered {
  2236. float: left;
  2237. margin-left: 0;
  2238. margin-right: 0; }
  2239. .column.large-centered:last-child,
  2240. .columns.large-centered:last-child {
  2241. float: none; }
  2242. .column.large-uncentered:last-child,
  2243. .columns.large-uncentered:last-child {
  2244. float: left; }
  2245. .column.large-uncentered.opposite,
  2246. .columns.large-uncentered.opposite {
  2247. float: right; }
  2248. .row.large-collapse > .column,
  2249. .row.large-collapse > .columns {
  2250. padding-left: 0;
  2251. padding-right: 0; }
  2252. .row.large-collapse .row {
  2253. margin-left: 0;
  2254. margin-right: 0; }
  2255. .row.large-uncollapse > .column,
  2256. .row.large-uncollapse > .columns {
  2257. padding-left: 0.9375rem;
  2258. padding-right: 0.9375rem;
  2259. float: left; }
  2260. .push-0 {
  2261. position: relative;
  2262. left: 0;
  2263. right: auto; }
  2264. .pull-0 {
  2265. position: relative;
  2266. right: 0;
  2267. left: auto; }
  2268. .push-1 {
  2269. position: relative;
  2270. left: 8.33333%;
  2271. right: auto; }
  2272. .pull-1 {
  2273. position: relative;
  2274. right: 8.33333%;
  2275. left: auto; }
  2276. .push-2 {
  2277. position: relative;
  2278. left: 16.66667%;
  2279. right: auto; }
  2280. .pull-2 {
  2281. position: relative;
  2282. right: 16.66667%;
  2283. left: auto; }
  2284. .push-3 {
  2285. position: relative;
  2286. left: 25%;
  2287. right: auto; }
  2288. .pull-3 {
  2289. position: relative;
  2290. right: 25%;
  2291. left: auto; }
  2292. .push-4 {
  2293. position: relative;
  2294. left: 33.33333%;
  2295. right: auto; }
  2296. .pull-4 {
  2297. position: relative;
  2298. right: 33.33333%;
  2299. left: auto; }
  2300. .push-5 {
  2301. position: relative;
  2302. left: 41.66667%;
  2303. right: auto; }
  2304. .pull-5 {
  2305. position: relative;
  2306. right: 41.66667%;
  2307. left: auto; }
  2308. .push-6 {
  2309. position: relative;
  2310. left: 50%;
  2311. right: auto; }
  2312. .pull-6 {
  2313. position: relative;
  2314. right: 50%;
  2315. left: auto; }
  2316. .push-7 {
  2317. position: relative;
  2318. left: 58.33333%;
  2319. right: auto; }
  2320. .pull-7 {
  2321. position: relative;
  2322. right: 58.33333%;
  2323. left: auto; }
  2324. .push-8 {
  2325. position: relative;
  2326. left: 66.66667%;
  2327. right: auto; }
  2328. .pull-8 {
  2329. position: relative;
  2330. right: 66.66667%;
  2331. left: auto; }
  2332. .push-9 {
  2333. position: relative;
  2334. left: 75%;
  2335. right: auto; }
  2336. .pull-9 {
  2337. position: relative;
  2338. right: 75%;
  2339. left: auto; }
  2340. .push-10 {
  2341. position: relative;
  2342. left: 83.33333%;
  2343. right: auto; }
  2344. .pull-10 {
  2345. position: relative;
  2346. right: 83.33333%;
  2347. left: auto; }
  2348. .push-11 {
  2349. position: relative;
  2350. left: 91.66667%;
  2351. right: auto; }
  2352. .pull-11 {
  2353. position: relative;
  2354. right: 91.66667%;
  2355. left: auto; } }
  2356. /*
  2357. * www.g-u-i.net
  2358. */
  2359. /*
  2360. __
  2361. _________ / /___ __________
  2362. / ___/ __ \/ / __ \/ ___/ ___/
  2363. / /__/ /_/ / / /_/ / / (__ )
  2364. \___/\____/_/\____/_/ /____/
  2365. */
  2366. body {
  2367. font-size: 16px;
  2368. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2369. font-weight: 500;
  2370. font-style: normal;
  2371. line-height: 1.3; }
  2372. a {
  2373. color: #007BC2;
  2374. text-decoration: none; }
  2375. h1 {
  2376. font-size: 1.6em; }
  2377. h2 {
  2378. font-size: 1.5em; }
  2379. h3 {
  2380. font-size: 1.4em; }
  2381. h4 {
  2382. font-size: 1.3em; }
  2383. h5 {
  2384. font-size: 1.2em; }
  2385. h6 {
  2386. font-size: 1.1em; }
  2387. input, button, select, textarea {
  2388. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2389. font-weight: 500;
  2390. font-style: normal; }
  2391. #footer #footer-bottom {
  2392. text-align: center; }
  2393. #footer #footer-bottom .block {
  2394. font-size: 8px; }
  2395. /** RESPONSIVE break points */
  2396. /*
  2397. $small-breakpoint: em-calc(480) !default;
  2398. $medium-breakpoint: em-calc(768) !default;
  2399. $large-breakpoint: em-calc(980) !default;
  2400. $xlarge-breakpoint: em-calc(1200) !default;
  2401. $small-range: (0, $small-breakpoint) !default; // 0, 480px
  2402. $medium-range: ($small-breakpoint + em-calc(1), $medium-breakpoint) !default; 481px, 768px //
  2403. $large-range: ($medium-breakpoint + em-calc(1), $large-breakpoint) !default; // 769px, 980px
  2404. $xlarge-range: ($large-breakpoint + em-calc(1), $xlarge-breakpoint) !default; // 981px, 1200px
  2405. $xxlarge-range: ($xlarge-breakpoint + em-calc(1), em-calc(99999999)) !default; // 1201px, ...
  2406. // Media Queries
  2407. $screen: "only screen" !default;
  2408. $landscape: "only screen and (orientation: landscape)" !default;
  2409. $portrait: "only screen and (orientation: portrait)" !default;
  2410. $small-up: $screen !default;
  2411. $small-only: "only screen and (max-width: 40em)" !default;
  2412. $medium-up: "only screen and (min-width:40.0625em)" !default;
  2413. $medium-only: "only screen and (min-width:40.0625em) and (max-width:64em)" !default;
  2414. $large-up: "only screen and (min-width:64.0625em)" !default;
  2415. $large-only: "only screen and (min-width:64.0625em) and (max-width:90em)" !default;
  2416. $xlarge-up: "only screen and (min-width:90.0625em)" !default;
  2417. $xlarge-only: "only screen and (min-width:90.0625em) and (max-width:120em)" !default;
  2418. $xxlarge-up: "only screen and (min-width:120.0625em)" !default;
  2419. $xxlarge-only: "only screen and (min-width:120.0625em) and (max-width:6249999.9375em)" !default;
  2420. $retina: (
  2421. "only screen and (-webkit-min-device-pixel-ratio: 2)",
  2422. "only screen and (min--moz-device-pixel-ratio: 2)",
  2423. "only screen and (-o-min-device-pixel-ratio: 2/1)",
  2424. "only screen and (min-device-pixel-ratio: 2)",
  2425. "only screen and (min-resolution: 192dpi)",
  2426. "only screen and (min-resolution: 2dppx)"
  2427. );
  2428. */
  2429. * {
  2430. box-sizing: content-box; }
  2431. *:before, *:after {
  2432. box-sizing: content-box; }
  2433. body {
  2434. overflow-y: scroll;
  2435. top: 0;
  2436. background-color: #f7f4ed; }
  2437. h1, h2, h3, h4, h5, h6 {
  2438. font-family: inherit; }
  2439. h1 {
  2440. font-weight: bold; }
  2441. figure {
  2442. margin: 0; }
  2443. input[type="checkbox"] + label {
  2444. margin: 0; }
  2445. p {
  2446. font-family: inherit;
  2447. font-weight: inherit;
  2448. font-size: inherit;
  2449. line-height: inherit;
  2450. margin-bottom: inherit; }
  2451. a {
  2452. font-size: inherit; }
  2453. .column, .columns {
  2454. padding: inherit;
  2455. float: inherit; }
  2456. /** NIVEAU 0 */
  2457. #root {
  2458. min-width: 320px; }
  2459. .ie8 #root {
  2460. min-width: 1024px; }
  2461. /** NIVEAU 1 */
  2462. #container {
  2463. margin: 0 auto;
  2464. position: relative;
  2465. transition: padding-top 0.5s ease-out, 1s, ease-out; }
  2466. /** NIVEAU 2 */
  2467. #header {
  2468. background-color: #fff;
  2469. z-index: 1000;
  2470. width: 96%;
  2471. padding-left: 2%;
  2472. padding-right: 2%; }
  2473. html.no-touch #header {
  2474. position: fixed;
  2475. top: 0;
  2476. margin: 0 auto;
  2477. min-width: 310.4px; }
  2478. .admin-menu #header {
  2479. margin-top: 35px; }
  2480. #utilities {
  2481. z-index: 999;
  2482. width: 96%;
  2483. padding-left: 2%;
  2484. padding-right: 2%; }
  2485. html.no-touch #utilities {
  2486. position: fixed;
  2487. top: 0;
  2488. margin: 0 auto;
  2489. min-width: 310.4px;
  2490. margin-top: 60px; }
  2491. html.no-touch .admin-menu #utilities {
  2492. margin-top: 85px; }
  2493. @media only screen and (max-width: 40em) {
  2494. #utilities > .region {
  2495. padding-top: 5px;
  2496. padding-bottom: 5px; } }
  2497. #main {
  2498. width: 96%;
  2499. padding-left: 2%;
  2500. padding-right: 2%;
  2501. overflow-x: hidden; }
  2502. #footer {
  2503. width: 96%;
  2504. padding-left: 2%;
  2505. padding-right: 2%;
  2506. padding-top: 2em; }
  2507. /** NIVEAU 3 */
  2508. /** NIVEAU 4 */
  2509. /** Z-INDEX */
  2510. #block-feedback-form {
  2511. z-index: 1001; }
  2512. #admin-menu {
  2513. z-index: 1002; }
  2514. #admin-toolbar {
  2515. z-index: 1003; }
  2516. /*
  2517. __ __ ___
  2518. / / / /___ ____ ___ ___ _ _|__ / /_/ / __ \/ __ `__ \/ _ \ | | / /_/ /
  2519. / __ / /_/ / / / / / / __/ | |/ / __/
  2520. /_/ /_/\____/_/ /_/ /_/\___/ |___/____/
  2521. */
  2522. body.front:not(.page-actuality) #header > .inner, body.front:not(.page-actuality) #utilities > .inner, body.front:not(.page-actuality) #center, body.front:not(.page-actuality) #footer,
  2523. body.page-whoweare #header > .inner,
  2524. body.page-whoweare #utilities > .inner,
  2525. body.page-whoweare #center,
  2526. body.page-whoweare #footer,
  2527. body.page-node-11187 #header > .inner,
  2528. body.page-node-11187 #utilities > .inner,
  2529. body.page-node-11187 #center,
  2530. body.page-node-11187 #footer,
  2531. body.page-node-11175 #header > .inner,
  2532. body.page-node-11175 #utilities > .inner,
  2533. body.page-node-11175 #center,
  2534. body.page-node-11175 #footer,
  2535. body.page-node-12324 #header > .inner,
  2536. body.page-node-12324 #utilities > .inner,
  2537. body.page-node-12324 #center,
  2538. body.page-node-12324 #footer,
  2539. body.page-user #header > .inner,
  2540. body.page-user #utilities > .inner,
  2541. body.page-user #center,
  2542. body.page-user #footer,
  2543. body.page-node-11186 #header > .inner,
  2544. body.page-node-11186 #utilities > .inner,
  2545. body.page-node-11186 #center,
  2546. body.page-node-11186 #footer,
  2547. body.page-cart #header > .inner,
  2548. body.page-cart #utilities > .inner,
  2549. body.page-cart #center,
  2550. body.page-cart #footer,
  2551. body.node-type-simplenews #header > .inner,
  2552. body.node-type-simplenews #utilities > .inner,
  2553. body.node-type-simplenews #center,
  2554. body.node-type-simplenews #footer,
  2555. body.node-type-publication #header > .inner,
  2556. body.node-type-publication #utilities > .inner,
  2557. body.node-type-publication #center,
  2558. body.node-type-publication #footer {
  2559. margin: 0 auto;
  2560. max-width: 80rem;
  2561. width: 100%; }
  2562. body.front:not(.page-actuality) #header > .inner:before, body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:before, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:before, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:before, body.front:not(.page-actuality) #footer:after,
  2563. body.page-whoweare #header > .inner:before,
  2564. body.page-whoweare #header > .inner:after,
  2565. body.page-whoweare #utilities > .inner:before,
  2566. body.page-whoweare #utilities > .inner:after,
  2567. body.page-whoweare #center:before,
  2568. body.page-whoweare #center:after,
  2569. body.page-whoweare #footer:before,
  2570. body.page-whoweare #footer:after,
  2571. body.page-node-11187 #header > .inner:before,
  2572. body.page-node-11187 #header > .inner:after,
  2573. body.page-node-11187 #utilities > .inner:before,
  2574. body.page-node-11187 #utilities > .inner:after,
  2575. body.page-node-11187 #center:before,
  2576. body.page-node-11187 #center:after,
  2577. body.page-node-11187 #footer:before,
  2578. body.page-node-11187 #footer:after,
  2579. body.page-node-11175 #header > .inner:before,
  2580. body.page-node-11175 #header > .inner:after,
  2581. body.page-node-11175 #utilities > .inner:before,
  2582. body.page-node-11175 #utilities > .inner:after,
  2583. body.page-node-11175 #center:before,
  2584. body.page-node-11175 #center:after,
  2585. body.page-node-11175 #footer:before,
  2586. body.page-node-11175 #footer:after,
  2587. body.page-node-12324 #header > .inner:before,
  2588. body.page-node-12324 #header > .inner:after,
  2589. body.page-node-12324 #utilities > .inner:before,
  2590. body.page-node-12324 #utilities > .inner:after,
  2591. body.page-node-12324 #center:before,
  2592. body.page-node-12324 #center:after,
  2593. body.page-node-12324 #footer:before,
  2594. body.page-node-12324 #footer:after,
  2595. body.page-user #header > .inner:before,
  2596. body.page-user #header > .inner:after,
  2597. body.page-user #utilities > .inner:before,
  2598. body.page-user #utilities > .inner:after,
  2599. body.page-user #center:before,
  2600. body.page-user #center:after,
  2601. body.page-user #footer:before,
  2602. body.page-user #footer:after,
  2603. body.page-node-11186 #header > .inner:before,
  2604. body.page-node-11186 #header > .inner:after,
  2605. body.page-node-11186 #utilities > .inner:before,
  2606. body.page-node-11186 #utilities > .inner:after,
  2607. body.page-node-11186 #center:before,
  2608. body.page-node-11186 #center:after,
  2609. body.page-node-11186 #footer:before,
  2610. body.page-node-11186 #footer:after,
  2611. body.page-cart #header > .inner:before,
  2612. body.page-cart #header > .inner:after,
  2613. body.page-cart #utilities > .inner:before,
  2614. body.page-cart #utilities > .inner:after,
  2615. body.page-cart #center:before,
  2616. body.page-cart #center:after,
  2617. body.page-cart #footer:before,
  2618. body.page-cart #footer:after,
  2619. body.node-type-simplenews #header > .inner:before,
  2620. body.node-type-simplenews #header > .inner:after,
  2621. body.node-type-simplenews #utilities > .inner:before,
  2622. body.node-type-simplenews #utilities > .inner:after,
  2623. body.node-type-simplenews #center:before,
  2624. body.node-type-simplenews #center:after,
  2625. body.node-type-simplenews #footer:before,
  2626. body.node-type-simplenews #footer:after,
  2627. body.node-type-publication #header > .inner:before,
  2628. body.node-type-publication #header > .inner:after,
  2629. body.node-type-publication #utilities > .inner:before,
  2630. body.node-type-publication #utilities > .inner:after,
  2631. body.node-type-publication #center:before,
  2632. body.node-type-publication #center:after,
  2633. body.node-type-publication #footer:before,
  2634. body.node-type-publication #footer:after {
  2635. content: " ";
  2636. display: table; }
  2637. body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:after,
  2638. body.page-whoweare #header > .inner:after,
  2639. body.page-whoweare #utilities > .inner:after,
  2640. body.page-whoweare #center:after,
  2641. body.page-whoweare #footer:after,
  2642. body.page-node-11187 #header > .inner:after,
  2643. body.page-node-11187 #utilities > .inner:after,
  2644. body.page-node-11187 #center:after,
  2645. body.page-node-11187 #footer:after,
  2646. body.page-node-11175 #header > .inner:after,
  2647. body.page-node-11175 #utilities > .inner:after,
  2648. body.page-node-11175 #center:after,
  2649. body.page-node-11175 #footer:after,
  2650. body.page-node-12324 #header > .inner:after,
  2651. body.page-node-12324 #utilities > .inner:after,
  2652. body.page-node-12324 #center:after,
  2653. body.page-node-12324 #footer:after,
  2654. body.page-user #header > .inner:after,
  2655. body.page-user #utilities > .inner:after,
  2656. body.page-user #center:after,
  2657. body.page-user #footer:after,
  2658. body.page-node-11186 #header > .inner:after,
  2659. body.page-node-11186 #utilities > .inner:after,
  2660. body.page-node-11186 #center:after,
  2661. body.page-node-11186 #footer:after,
  2662. body.page-cart #header > .inner:after,
  2663. body.page-cart #utilities > .inner:after,
  2664. body.page-cart #center:after,
  2665. body.page-cart #footer:after,
  2666. body.node-type-simplenews #header > .inner:after,
  2667. body.node-type-simplenews #utilities > .inner:after,
  2668. body.node-type-simplenews #center:after,
  2669. body.node-type-simplenews #footer:after,
  2670. body.node-type-publication #header > .inner:after,
  2671. body.node-type-publication #utilities > .inner:after,
  2672. body.node-type-publication #center:after,
  2673. body.node-type-publication #footer:after {
  2674. clear: both; }
  2675. .op-visible {
  2676. visibility: visible; }
  2677. .csstransitions .op-visible {
  2678. opacity: 1;
  2679. transition: opacity 0.3s ease-out; }
  2680. .op-hidden {
  2681. visibility: hidden; }
  2682. .op-hidden > * {
  2683. margin-top: -100000px; }
  2684. .csstransition .op-hidden {
  2685. opacity: 0;
  2686. transition: visibility 0s 0.3s; }
  2687. .csstransition .op-hidden > * {
  2688. transition: margin-top 0s 0.3s; }
  2689. /** colomnized() */
  2690. /*
  2691. __ ___________ ____ __________
  2692. / / / / ____/ | / __ \/ ____/ __ / /_/ / __/ / /| | / / / / __/ / /_/ /
  2693. / __ / /___/ ___ |/ /_/ / /___/ _, _/
  2694. /_/ /_/_____/_/ |_/_____/_____/_/ |_|
  2695. */
  2696. #header {
  2697. padding-top: 5px;
  2698. padding-bottom: 10px;
  2699. height: 45px; }
  2700. #header a, #header a:active, #header a:visited {
  2701. color: #000; }
  2702. #header .logo {
  2703. display: moz-inline-stack;
  2704. display: inline-block;
  2705. vertical-align: top;
  2706. zoom: 1;
  2707. *display: inline; }
  2708. #header .logo h1 {
  2709. margin: 0;
  2710. font-size: 36px;
  2711. display: moz-inline-stack;
  2712. display: inline-block;
  2713. vertical-align: top;
  2714. zoom: 1;
  2715. *display: inline;
  2716. vertical-align: baseline;
  2717. position: relative;
  2718. line-height: 1.25; }
  2719. #header .logo h1 a:hover {
  2720. text-decoration: none; }
  2721. #header .logo span.slogan {
  2722. font-size: 14px;
  2723. margin-top: -3px;
  2724. margin-left: -0.5em;
  2725. font-weight: 900; }
  2726. @media only screen and (max-width: 40em) {
  2727. #header .logo span.slogan {
  2728. display: none; } }
  2729. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2730. #header .logo span.slogan {
  2731. display: block;
  2732. margin-left: 0.1em; } }
  2733. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  2734. #header .logo span.slogan {
  2735. display: block;
  2736. margin-left: 0.1em; } }
  2737. .ie8 #header .logo span.slogan {
  2738. position: absolute;
  2739. margin-top: 22px; }
  2740. #header #header-blocks {
  2741. padding-top: 17px;
  2742. float: right;
  2743. text-align: right;
  2744. text-transform: capitalize; }
  2745. #header #header-blocks > .region {
  2746. display: moz-inline-stack;
  2747. display: inline-block;
  2748. vertical-align: top;
  2749. zoom: 1;
  2750. *display: inline;
  2751. vertical-align: middle;
  2752. padding-right: 1em;
  2753. margin-right: 1em;
  2754. border-right: 1px solid #707070; }
  2755. @media only screen and (max-width: 40em) {
  2756. #header #header-blocks > .region {
  2757. padding-right: 0.3em;
  2758. margin-right: 0.3em; } }
  2759. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2760. #header #header-blocks > .region {
  2761. padding-right: 0.3em;
  2762. margin-right: 0.3em; } }
  2763. #header #header-blocks > .region:last-child {
  2764. border: none;
  2765. padding: 0;
  2766. margin: 0; }
  2767. #header #header-blocks .block {
  2768. display: moz-inline-stack;
  2769. display: inline-block;
  2770. vertical-align: top;
  2771. zoom: 1;
  2772. *display: inline;
  2773. vertical-align: middle; }
  2774. #header #header-blocks .block h2 {
  2775. font-size: 12px;
  2776. margin: 0;
  2777. line-height: 1.2;
  2778. font-weight: normal; }
  2779. #header #header-blocks .block:not(:last-child) {
  2780. padding-right: 0.8em; }
  2781. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  2782. #header #header-blocks .block:not(:last-child) {
  2783. padding-right: 0.3em; } }
  2784. @media only screen and (max-width: 40em) {
  2785. #header #header-blocks #headerblock-left {
  2786. display: none; } }
  2787. #header #header-blocks #block-social-media-links-social-media-links ul.social-media-links {
  2788. margin: 0;
  2789. line-height: 0; }
  2790. #header #header-blocks #block-social-media-links-social-media-links li {
  2791. line-height: 1; }
  2792. #header #header-blocks #block-social-media-links-social-media-links li.facebook a {
  2793. background-image: url("../img/socialicons/svg/Facebook-color.svg"); }
  2794. #header #header-blocks #block-social-media-links-social-media-links li.twitter a {
  2795. background-image: url("../img/socialicons/svg/Twitter-color.svg"); }
  2796. #header #header-blocks #block-social-media-links-social-media-links li.linkedin a {
  2797. background-image: url("../img/socialicons/svg/LinkedIn-color.svg"); }
  2798. #header #header-blocks #block-social-media-links-social-media-links li.pinterest a {
  2799. background-image: url("../img/socialicons/svg/Pinterest-color.svg"); }
  2800. #header #header-blocks #block-social-media-links-social-media-links li.vimeo a {
  2801. background-image: url("../img/socialicons/svg/Vimeo-color.svg"); }
  2802. #header #header-blocks #block-social-media-links-social-media-links li.rss a {
  2803. background-image: url("../img/socialicons/svg/RSS-color.svg"); }
  2804. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2805. #header #header-blocks #block-social-media-links-social-media-links li.linkedin, #header #header-blocks #block-social-media-links-social-media-links li.pinterest, #header #header-blocks #block-social-media-links-social-media-links li.vimeo {
  2806. display: none; } }
  2807. #header #header-blocks #block-social-media-links-social-media-links a {
  2808. display: block;
  2809. width: 16px;
  2810. height: 16px;
  2811. background-position: center;
  2812. background-repeat: no-repeat;
  2813. background-size: contain; }
  2814. #header #header-blocks #block-social-media-links-social-media-links img {
  2815. display: none; }
  2816. #header #header-blocks #block-materio-user-front-link a {
  2817. font-size: 12px; }
  2818. #header #header-blocks #block-materio-user-front-link span.text {
  2819. display: none; }
  2820. #header #header-blocks #block-user-login {
  2821. font-size: 12px;
  2822. text-align: left;
  2823. position: relative; }
  2824. #header #header-blocks #block-user-login h2 {
  2825. padding-right: 5px; }
  2826. #header #header-blocks #block-user-login h2 i {
  2827. vertical-align: text-bottom;
  2828. margin: 0 2px 2px 0; }
  2829. #header #header-blocks #block-user-login form#user-login-form {
  2830. position: absolute;
  2831. overflow: hidden;
  2832. right: 0;
  2833. margin: 0;
  2834. height: 0;
  2835. transition: height 0.3s ease-out; }
  2836. #header #header-blocks #block-user-login form#user-login-form > div {
  2837. padding: 5px;
  2838. margin: 5px;
  2839. background-color: #e6e6e6;
  2840. border-radius: 5px;
  2841. background-clip: padding-box;
  2842. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  2843. #header #header-blocks #block-user-login form#user-login-form .form-item {
  2844. margin: 0;
  2845. padding-bottom: 5px; }
  2846. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  2847. margin: 0;
  2848. font-size: 10px; }
  2849. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  2850. width: 150px;
  2851. height: 2em; }
  2852. #header #header-blocks #block-user-login form#user-login-form .form-actions {
  2853. margin: 5px 0;
  2854. padding: 0;
  2855. background-color: transparent;
  2856. text-align: right; }
  2857. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit {
  2858. font-size: 16px;
  2859. padding: 0.1em 0.6em 0.2em;
  2860. border-radius: 0.3em;
  2861. background-clip: padding-box;
  2862. font-weight: bold;
  2863. margin-bottom: 4px;
  2864. border: 2px solid #E6DE1C;
  2865. background-color: #E6DE1C;
  2866. color: #fff;
  2867. cursor: pointer;
  2868. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  2869. transition: text-shadow 0.2s ease-out; }
  2870. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:hover, #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:focus {
  2871. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  2872. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:active {
  2873. transition: text-shadow 0s ease-out;
  2874. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  2875. #header #header-blocks #block-user-login form#user-login-form div.newpass {
  2876. text-align: right; }
  2877. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  2878. font-size: 10px;
  2879. color: #686868;
  2880. text-transform: lowercase; }
  2881. html.no-touch #header #header-blocks #block-user-login:hover form#user-login-form, #header #header-blocks #block-user-login.hovered form#user-login-form {
  2882. height: 300px;
  2883. z-index: 1000; }
  2884. @media only screen and (max-width: 40em) {
  2885. #header #header-blocks #block-user-login span.login {
  2886. display: none; } }
  2887. #header #header-blocks #block-ajax-register-ajax-register-block {
  2888. font-size: 12px;
  2889. text-transform: lowercase; }
  2890. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2891. font-size: 12px;
  2892. line-height: 1.5; }
  2893. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2894. vertical-align: text-bottom;
  2895. margin: 0 5px 1px 0;
  2896. line-height: 1; }
  2897. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2898. text-transform: lowercase; }
  2899. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2900. display: none;
  2901. margin-left: 5px; }
  2902. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2903. margin: 0 0.5em 0 0.5em; }
  2904. @media only screen and (max-width: 40em) {
  2905. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2906. display: none; } }
  2907. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2908. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2909. display: none; } }
  2910. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  2911. position: relative; }
  2912. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  2913. margin: 0;
  2914. font-size: 12px;
  2915. line-height: 1.5; }
  2916. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2917. line-height: 1; }
  2918. @media only screen and (max-width: 40em) {
  2919. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2920. display: none; } }
  2921. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2922. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2923. display: none; } }
  2924. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2925. position: absolute;
  2926. z-index: 20;
  2927. background-color: rgba(255, 255, 255, 0.9);
  2928. min-width: 100%;
  2929. margin: 0 0 0 -5px;
  2930. border-radius: 3px;
  2931. background-clip: padding-box;
  2932. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  2933. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2934. background: #FFF; }
  2935. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2936. margin: 0; }
  2937. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2938. list-style: none;
  2939. font-size: 12px;
  2940. font-weight: 700;
  2941. padding: 0 10px;
  2942. text-align: left;
  2943. width: 200px;
  2944. height: 0;
  2945. overflow: hidden;
  2946. transition: height 0.3s ease-out; }
  2947. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview {
  2948. white-space: nowrap;
  2949. cursor: pointer; }
  2950. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2951. max-width: 150px; }
  2952. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2953. font-weight: 300;
  2954. padding: 0 5px; }
  2955. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.edit-list {
  2956. padding-right: 5px; }
  2957. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2958. visibility: hidden; }
  2959. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2960. margin-top: -100000px; }
  2961. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2962. opacity: 0;
  2963. transition: visibility 0s 0.3s; }
  2964. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2965. transition: margin-top 0s 0.3s; }
  2966. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2967. padding-bottom: 5px; }
  2968. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2969. height: 15px;
  2970. padding: 3px 10px; }
  2971. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2972. vertical-align: text-bottom;
  2973. margin: 0 2px 2px 0; }
  2974. @media only screen and (max-width: 40em) {
  2975. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2976. display: none; } }
  2977. #header #header-blocks #headerblock-right .block {
  2978. display: moz-inline-stack;
  2979. display: inline-block;
  2980. vertical-align: top;
  2981. zoom: 1;
  2982. *display: inline;
  2983. padding: 0;
  2984. vertical-align: middle; }
  2985. #header #header-blocks #headerblock-right .block:first-child {
  2986. padding: 0; }
  2987. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2988. display: none; }
  2989. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2990. vertical-align: text-bottom;
  2991. margin: 0 0 2px 0; }
  2992. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2993. font-size: 12px;
  2994. list-style: none; }
  2995. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2996. display: inline; }
  2997. @media only screen and (min-width: 40.0625em) {
  2998. #header #header-blocks #block-menu-menu-top-menu h2 {
  2999. display: none; }
  3000. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  3001. display: moz-inline-stack;
  3002. display: inline-block;
  3003. vertical-align: top;
  3004. zoom: 1;
  3005. *display: inline;
  3006. vertical-align: middle;
  3007. padding: 0;
  3008. margin: 0; }
  3009. #header #header-blocks #block-menu-menu-top-menu a {
  3010. padding: 0 0.5em 0 0; } }
  3011. @media only screen and (max-width: 40em) {
  3012. #header #header-blocks #block-menu-menu-top-menu {
  3013. position: relative; }
  3014. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  3015. display: none; }
  3016. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  3017. position: absolute;
  3018. width: 150px;
  3019. display: none;
  3020. right: 0;
  3021. padding-top: 5px; }
  3022. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  3023. background-color: #e6e6e6;
  3024. border-radius: 5px;
  3025. background-clip: padding-box;
  3026. padding: 0 5px 5px 5px;
  3027. margin: 0;
  3028. text-align: right; }
  3029. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  3030. height: 0;
  3031. overflow: hidden;
  3032. transition: height 0.3s ease-out; }
  3033. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  3034. display: block;
  3035. width: 100%;
  3036. padding: 2px 5px;
  3037. font-size: 12px; }
  3038. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  3039. z-index: 1000; }
  3040. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper {
  3041. display: block; }
  3042. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper ul.menu li, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper ul.menu li {
  3043. height: 25px; } }
  3044. #header #header-blocks #block-locale-language {
  3045. position: relative; }
  3046. #header #header-blocks #block-locale-language h2 {
  3047. font-size: 9px;
  3048. line-height: 1.6;
  3049. display: inline-block;
  3050. padding: 0.20em 0.45em 0.10em;
  3051. margin: 0;
  3052. border-radius: 3px;
  3053. background-clip: padding-box;
  3054. color: #fff;
  3055. text-transform: uppercase;
  3056. background-color: #4d4b4b; }
  3057. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  3058. margin: 0;
  3059. padding: 0;
  3060. list-style-type: none;
  3061. font-size: 12px;
  3062. line-height: 0.9; }
  3063. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  3064. display: none; }
  3065. .ie8 #header #header-blocks #block-locale-language {
  3066. padding-top: 5px; }
  3067. #header #header-blocks #block-locale-language ul {
  3068. padding-top: 2.1em;
  3069. position: absolute;
  3070. top: 0;
  3071. left: 0;
  3072. text-align: left; }
  3073. #header #header-blocks #block-locale-language li {
  3074. height: 0;
  3075. overflow: hidden;
  3076. transition: height 0.3s ease-in-out; }
  3077. #header #header-blocks #block-locale-language li a {
  3078. display: inline-block;
  3079. font-size: 0.9em;
  3080. padding: 0.33em 0.34em 0.3em;
  3081. border-radius: 3px;
  3082. background-clip: padding-box;
  3083. color: #fff;
  3084. text-transform: uppercase;
  3085. background-color: #808080;
  3086. transition: background-color 0.3s ease-out; }
  3087. #header #header-blocks #block-locale-language li a:hover {
  3088. background-color: #1A1A1A; }
  3089. #header #header-blocks #block-locale-language:hover li {
  3090. height: 1.5em; }
  3091. #header #header-blocks #block-materio-user-old-database-link a {
  3092. font-size: 12px; }
  3093. /*
  3094. __ _ ___ __ _
  3095. __ __/ /_(_) (_) /_(_)__ _____
  3096. / / / / __/ / / / __/ / _ \/ ___/
  3097. / /_/ / /_/ / / / /_/ / __(__ )
  3098. \__,_/\__/_/_/_/\__/_/\___/____/
  3099. */
  3100. #utilities {
  3101. background-color: #fff;
  3102. margin-top: 60px;
  3103. max-height: 100px; }
  3104. .not-logged-in #utilities {
  3105. overflow: hidden; }
  3106. #utilities > .inner {
  3107. padding: 0.5em 0; }
  3108. #utilities.closed {
  3109. height: 0; }
  3110. #utilities.closed .tabs, #utilities.closed .node-didactique {
  3111. display: none; }
  3112. @media only screen and (max-width: 40em) {
  3113. #utilities {
  3114. margin-top: 0; } }
  3115. /*
  3116. _
  3117. ____ ___ ____ _(_)___
  3118. / __ `__ \/ __ `/ / __ / / / / / / /_/ / / / / /
  3119. /_/ /_/ /_/\__,_/_/_/ /_/
  3120. */
  3121. body.home-v2 #main {
  3122. padding-top: 60px; }
  3123. /*
  3124. __ _ __ ___ __ __ __
  3125. / /_ (_)___ _/ /_ / (_)___ _/ /_ / /____ ____/ /
  3126. / __ \/ / __ `/ __ \/ / / __ `/ __ \/ __/ _ \/ __ /
  3127. / / / / / /_/ / / / / / / /_/ / / / / /_/ __/ /_/ /
  3128. /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/
  3129. /____/ /____/
  3130. */
  3131. #highlighted {
  3132. border-radius: 5px;
  3133. background-clip: padding-box;
  3134. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  3135. padding: 0.5em;
  3136. position: relative; }
  3137. @media only screen and (min-width: 40.0625em) {
  3138. #highlighted {
  3139. margin: 20px 0 6px; }
  3140. #highlighted .block {
  3141. display: moz-inline-stack;
  3142. display: inline-block;
  3143. vertical-align: top;
  3144. zoom: 1;
  3145. *display: inline;
  3146. vertical-align: top; }
  3147. #highlighted .block-materio-didactique {
  3148. width: 65%; }
  3149. #highlighted .block-materio-didactique .side {
  3150. display: moz-inline-stack;
  3151. display: inline-block;
  3152. vertical-align: top;
  3153. zoom: 1;
  3154. *display: inline;
  3155. vertical-align: top;
  3156. position: relative; }
  3157. #highlighted .block-materio-didactique .group-sideleft {
  3158. width: 65%; }
  3159. #highlighted .block-materio-didactique .group-sideright {
  3160. width: 30%; }
  3161. #highlighted .block-materio-didactique .field-name-title-field {
  3162. font-size: 24px; }
  3163. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3164. width: 47%; }
  3165. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3166. margin-right: 2%; }
  3167. #highlighted #block-materio-user-user-register {
  3168. width: 30%;
  3169. padding: 5px;
  3170. height: 290px; } }
  3171. @media only screen {
  3172. #highlighted .block-materio-didactique .side {
  3173. display: moz-inline-stack;
  3174. display: inline-block;
  3175. vertical-align: top;
  3176. zoom: 1;
  3177. *display: inline;
  3178. vertical-align: top; } }
  3179. @media only screen and (max-width: 40em) {
  3180. #highlighted {
  3181. margin: 10px 0 6px; }
  3182. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3183. width: 100%; }
  3184. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3185. font-size: 20px;
  3186. font-weight: normal !important; }
  3187. #highlighted .block-materio-didactique .node-didactique .field-name-title-field:after {
  3188. content: "\a0\f10b";
  3189. font-family: "foundation-icons";
  3190. font-style: normal;
  3191. font-weight: normal;
  3192. font-variant: normal;
  3193. text-transform: none;
  3194. line-height: 1;
  3195. -webkit-font-smoothing: antialiased;
  3196. display: inline-block;
  3197. text-decoration: inherit;
  3198. font-size: 16px; }
  3199. html.js #highlighted .block-materio-didactique .node-didactique {
  3200. height: auto;
  3201. height: 30px;
  3202. overflow: hidden; }
  3203. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3204. height: auto; } }
  3205. .oldie #highlighted .block {
  3206. display: moz-inline-stack;
  3207. display: inline-block;
  3208. vertical-align: top;
  3209. zoom: 1;
  3210. *display: inline; }
  3211. #highlighted .block-materio-didactique .node-didactique {
  3212. font-size: 14px;
  3213. background-color: #fff;
  3214. margin: 0 auto; }
  3215. #highlighted .block-materio-didactique .node-didactique .side {
  3216. position: relative; }
  3217. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3218. font-weight: 900;
  3219. font-style: italic;
  3220. padding: 5px 0; }
  3221. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3222. text-align: center; }
  3223. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3224. display: inline; }
  3225. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3226. display: none; }
  3227. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3228. display: none; }
  3229. html.js #highlighted .block-materio-didactique {
  3230. position: relative;
  3231. overflow: hidden; }
  3232. html.js #highlighted .block-materio-didactique .slides {
  3233. height: 270px;
  3234. margin: 0;
  3235. position: relative;
  3236. width: 100%;
  3237. overflow: hidden; }
  3238. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3239. position: absolute;
  3240. width: 100%;
  3241. height: 100%;
  3242. top: 0;
  3243. left: 0; }
  3244. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3245. height: 30px; }
  3246. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3247. height: 240px; }
  3248. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3249. height: 100%; }
  3250. @media only screen and (max-width: 40em) {
  3251. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3252. width: 290px;
  3253. height: 163.125px; } }
  3254. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  3255. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3256. width: 216px;
  3257. height: 121.5px; } }
  3258. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  3259. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3260. width: 216px;
  3261. height: 121.5px; } }
  3262. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  3263. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3264. width: 280px;
  3265. height: 157.5px; } }
  3266. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  3267. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3268. width: 340px;
  3269. height: 191.25px; } }
  3270. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3271. height: 100%;
  3272. width: 100%; }
  3273. html.js #highlighted .block-materio-didactique .tabs {
  3274. height: 30px;
  3275. margin: 0;
  3276. text-align: left; }
  3277. html.js #highlighted .block-materio-didactique .tabs > * {
  3278. display: moz-inline-stack;
  3279. display: inline-block;
  3280. vertical-align: top;
  3281. zoom: 1;
  3282. *display: inline;
  3283. vertical-align: top;
  3284. padding: 5px 10px;
  3285. font-size: 12px;
  3286. cursor: pointer;
  3287. color: #bfbfbf; }
  3288. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3289. color: #3f3f3f; }
  3290. /*
  3291. __ __ __ _ __
  3292. / /_ / /___ _____/ /__ ________ ____ _(_)____/ /____ _____
  3293. / __ \/ / __ \/ ___/ //_/ / ___/ _ \/ __ `/ / ___/ __/ _ \/ ___/
  3294. / /_/ / / /_/ / /__/ ,< / / / __/ /_/ / (__ ) /_/ __/ /
  3295. /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/
  3296. /____/
  3297. */
  3298. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3299. min-height: 120px;
  3300. padding: 5px;
  3301. background: transparent url("../img/register-block.png") no-repeat 100% 90%; }
  3302. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3303. max-width: 250px;
  3304. float: right;
  3305. background-image: none; }
  3306. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3307. font-weight: 900;
  3308. font-style: italic;
  3309. padding: 5px 0;
  3310. margin: 0;
  3311. line-height: 1;
  3312. background-color: #fff;
  3313. display: moz-inline-stack;
  3314. display: inline-block;
  3315. vertical-align: top;
  3316. zoom: 1;
  3317. *display: inline;
  3318. min-width: 50%; }
  3319. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3320. font-size: 24px; }
  3321. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3322. font-size: 16px; }
  3323. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3324. margin: 0;
  3325. background-color: rgba(255, 255, 255, 0.7);
  3326. padding-bottom: 5px;
  3327. display: moz-inline-stack;
  3328. display: inline-block;
  3329. vertical-align: top;
  3330. zoom: 1;
  3331. *display: inline; }
  3332. #block-materio-user-user-register .form-item, #block-materio-user-user-register .form-wrapper, #block-materio-user-user-createaccount .form-item, #block-materio-user-user-createaccount .form-wrapper {
  3333. margin: 0;
  3334. display: moz-inline-stack;
  3335. display: inline-block;
  3336. vertical-align: top;
  3337. zoom: 1;
  3338. *display: inline;
  3339. vertical-align: middle;
  3340. position: relative; }
  3341. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3342. margin-right: 5px; }
  3343. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3344. font-size: 12px;
  3345. border-radius: 5px;
  3346. background-clip: padding-box;
  3347. margin-bottom: 4px; }
  3348. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3349. margin-right: 5px; }
  3350. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3351. width: 11em; }
  3352. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3353. width: 7em; }
  3354. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3355. position: absolute;
  3356. bottom: 100%;
  3357. z-index: 9999;
  3358. background-image: none;
  3359. height: auto;
  3360. padding: 5px;
  3361. border-radius: 5px;
  3362. background-clip: padding-box;
  3363. margin-bottom: 10px;
  3364. font-size: 10px;
  3365. background-color: #fff;
  3366. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3367. transition: bottom 0.1s ease-out; }
  3368. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3369. background-color: #f3968d;
  3370. color: #fff; }
  3371. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3372. display: none; }
  3373. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3374. font-size: 16px;
  3375. padding: 0.1em 0.6em 0.2em;
  3376. border-radius: 0.3em;
  3377. background-clip: padding-box;
  3378. font-weight: bold;
  3379. margin-bottom: 4px; }
  3380. #block-materio-user-user-register .form-item-termsofservices, #block-materio-user-user-register #edit-field-newsletter, #block-materio-user-user-createaccount .form-item-termsofservices, #block-materio-user-user-createaccount #edit-field-newsletter {
  3381. margin-bottom: 0;
  3382. display: block;
  3383. line-height: 1; }
  3384. #block-materio-user-user-register .form-item-termsofservices > *, #block-materio-user-user-register #edit-field-newsletter > *, #block-materio-user-user-createaccount .form-item-termsofservices > *, #block-materio-user-user-createaccount #edit-field-newsletter > * {
  3385. display: moz-inline-stack;
  3386. display: inline-block;
  3387. vertical-align: top;
  3388. zoom: 1;
  3389. *display: inline;
  3390. vertical-align: middle;
  3391. margin: 0; }
  3392. #block-materio-user-user-register .form-item-termsofservices label, #block-materio-user-user-register #edit-field-newsletter label, #block-materio-user-user-createaccount .form-item-termsofservices label, #block-materio-user-user-createaccount #edit-field-newsletter label {
  3393. font-size: 10px;
  3394. background-color: #fff;
  3395. border-radius: 3px;
  3396. background-clip: padding-box; }
  3397. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3398. border: 2px solid #69CDCF;
  3399. background-color: #69CDCF;
  3400. color: #fff;
  3401. cursor: pointer;
  3402. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3403. transition: text-shadow 0.2s ease-out; }
  3404. #block-materio-user-user-register #user-register-form .form-submit:hover, #block-materio-user-user-register #user-register-form .form-submit:focus, #block-materio-user-user-createaccount #user-register-form .form-submit:hover, #block-materio-user-user-createaccount #user-register-form .form-submit:focus {
  3405. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3406. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3407. transition: text-shadow 0s ease-out;
  3408. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3409. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3410. background-color: #ddd;
  3411. border: 2px solid #ddd; }
  3412. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3413. border: 2px solid #E6DE1C;
  3414. background-color: #E6DE1C;
  3415. color: #fff;
  3416. cursor: pointer;
  3417. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3418. transition: text-shadow 0.2s ease-out; }
  3419. #block-materio-user-user-register #user-login .form-submit:hover, #block-materio-user-user-register #user-login .form-submit:focus, #block-materio-user-user-createaccount #user-login .form-submit:hover, #block-materio-user-user-createaccount #user-login .form-submit:focus {
  3420. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3421. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3422. transition: text-shadow 0s ease-out;
  3423. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3424. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3425. padding-top: 0.5em; }
  3426. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3427. font-size: 12px; }
  3428. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3429. display: block; }
  3430. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3431. font-size: 12px; }
  3432. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3433. display: block;
  3434. width: 5em;
  3435. font-size: 16px;
  3436. padding: 0.1em 0.3em 0.2em;
  3437. border-radius: 0.3em;
  3438. background-clip: padding-box;
  3439. font-weight: bold;
  3440. border: 2px solid #69CDCF;
  3441. background-color: #69CDCF;
  3442. color: #fff;
  3443. cursor: pointer;
  3444. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3445. transition: text-shadow 0.2s ease-out;
  3446. text-align: center;
  3447. text-decoration: none; }
  3448. #block-materio-user-user-register a.join:hover, #block-materio-user-user-register a.join:focus, #block-materio-user-user-createaccount a.join:hover, #block-materio-user-user-createaccount a.join:focus {
  3449. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3450. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3451. transition: text-shadow 0s ease-out;
  3452. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3453. @media only screen and (max-width: 40em) {
  3454. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3455. background-position: 160% 50%;
  3456. min-height: 60px;
  3457. padding: 15px 0; }
  3458. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3459. width: 7em; } }
  3460. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3461. color: #b94a48;
  3462. font-size: 12px; }
  3463. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3464. padding: 2em;
  3465. width: 400px;
  3466. background-color: #fff;
  3467. padding: 5px;
  3468. border-radius: 5px;
  3469. background-clip: padding-box;
  3470. box-shadow: 0 0 7px rgba(0, 0, 0, 0.4); }
  3471. .modal-content #block-materio-user-user-register #user-register-form div.homepage-textfield, .modal-content #block-materio-user-user-createaccount #user-register-form div.homepage-textfield {
  3472. display: none; }
  3473. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3474. font-size: 12px; }
  3475. /*
  3476. __ __ __
  3477. _________ ____ / /____ ____ / /_ / /_____ ____
  3478. / ___/ __ \/ __ \/ __/ _ \/ __ \/ __/_____/ __/ __ \/ __ / /__/ /_/ / / / / /_/ __/ / / / /_/_____/ /_/ /_/ / /_/ /
  3479. \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/
  3480. /_/
  3481. */
  3482. #content-top {
  3483. /*
  3484. ___ _ _ _ _
  3485. | _| |___ ___ ___| |_|___| |_
  3486. | _| | .'| . |___| | |_ -| _|
  3487. |_| |_|__,|_ | |_|_|___|_|
  3488. |___|
  3489. */ }
  3490. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3491. font-size: 10px;
  3492. color: #666666;
  3493. font-weight: 300; }
  3494. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3495. margin-top: 40px; }
  3496. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3497. font-size: 12px;
  3498. font-weight: 700;
  3499. line-height: 1.2;
  3500. margin: 0;
  3501. color: #000; }
  3502. #content-top #block-materio-flag-materio-flag-mybookmarks h2 a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks h2 i.fi-x, #content-top #block-materio-flag-materio-flag-mylists h2 a.open-list, #content-top #block-materio-flag-materio-flag-mylists h2 i.fi-x {
  3503. display: moz-inline-stack;
  3504. display: inline-block;
  3505. vertical-align: top;
  3506. zoom: 1;
  3507. *display: inline;
  3508. cursor: pointer;
  3509. color: #000;
  3510. margin-left: 0.5em;
  3511. opacity: 0;
  3512. transition: opacity 0.1s ease-out; }
  3513. #content-top #block-materio-flag-materio-flag-mybookmarks h2 i:before, #content-top #block-materio-flag-materio-flag-mylists h2 i:before {
  3514. font-size: 14px; }
  3515. #content-top #block-materio-flag-materio-flag-mybookmarks:hover a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks:hover i.fi-x, #content-top #block-materio-flag-materio-flag-mylists:hover a.open-list, #content-top #block-materio-flag-materio-flag-mylists:hover i.fi-x {
  3516. opacity: 1; }
  3517. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3518. cursor: pointer; }
  3519. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3520. height: 0;
  3521. overflow: hidden; }
  3522. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3523. height: auto; }
  3524. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks article.node.vm-bookmark, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks article.node.vm-bookmark {
  3525. overflow: hidden; }
  3526. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section .flaged {
  3527. height: 0;
  3528. overflow: hidden; }
  3529. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active .flaged {
  3530. height: auto; }
  3531. #tool-bar {
  3532. position: relative; }
  3533. #tool-bar .inner-content {
  3534. padding-top: 10px;
  3535. padding-bottom: 10px; }
  3536. #tool-bar .inner-content > * {
  3537. display: moz-inline-stack;
  3538. display: inline-block;
  3539. vertical-align: top;
  3540. zoom: 1;
  3541. *display: inline;
  3542. vertical-align: middle; }
  3543. .oldie #tool-bar {
  3544. background-color: #B1ADAD;
  3545. padding: 0 10px; }
  3546. #tool-bar .btn-group {
  3547. padding: 0;
  3548. border-radius: 3px;
  3549. background-clip: padding-box;
  3550. background-color: #fff;
  3551. margin: 4px;
  3552. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3553. transition: box-shadow 0.3s ease-out; }
  3554. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3555. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3556. #tool-bar .btn-group:active {
  3557. transition: box-shadow 0s ease-out;
  3558. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3559. #tool-bar #block-materio-page-title-materio-page-title {
  3560. margin: 0 10px 0 0; }
  3561. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3562. margin: 0;
  3563. font-size: 24px;
  3564. text-transform: capitalize;
  3565. font-weight: 300; }
  3566. #tool-bar #block-materio-page-title-materio-page-title i {
  3567. vertical-align: middle;
  3568. margin-right: 5px; }
  3569. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3570. visibility: hidden; }
  3571. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3572. margin-top: -100000px; }
  3573. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3574. opacity: 0;
  3575. transition: visibility 0s 0.3s; }
  3576. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3577. transition: margin-top 0s 0.3s; }
  3578. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3579. margin: 0 0 0 5px; }
  3580. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3581. visibility: visible; }
  3582. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3583. opacity: 1;
  3584. transition: opacity 0.3s ease-out; }
  3585. @media only screen and (max-width: 40em) {
  3586. #tool-bar #block-materio-page-title-materio-page-title {
  3587. display: block; } }
  3588. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3589. display: moz-inline-stack;
  3590. display: inline-block;
  3591. vertical-align: top;
  3592. zoom: 1;
  3593. *display: inline;
  3594. margin: 0 2px; }
  3595. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3596. cursor: normal; }
  3597. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3598. display: none;
  3599. font-size: 10px; }
  3600. @media only screen and (max-width: 40em) {
  3601. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3602. display: block; }
  3603. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3604. display: none; } }
  3605. @media only screen and (max-width: 40em) {
  3606. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium {
  3607. display: block; } }
  3608. @media only screen and (max-width: 40em) {
  3609. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardbig, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardbig {
  3610. display: block; } }
  3611. #tool-bar #block-materio-search-api-materio-search-api-search {
  3612. float: right; }
  3613. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3614. display: moz-inline-stack;
  3615. display: inline-block;
  3616. vertical-align: top;
  3617. zoom: 1;
  3618. *display: inline;
  3619. margin: 0 0 0 10px;
  3620. min-width: 400px;
  3621. padding: 5px 10px;
  3622. background-color: #fff;
  3623. border-radius: 3px;
  3624. background-clip: padding-box;
  3625. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3626. transition: box-shadow 0.3s ease-out;
  3627. text-align: right; }
  3628. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3629. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3630. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3631. transition: box-shadow 0s ease-out;
  3632. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3633. #tool-bar #block-materio-search-api-materio-search-api-search > .inner h4.form-title {
  3634. padding: 0.2em 0 0.1em 0.2em;
  3635. margin: 0.2em 0 0.1em 0.2em;
  3636. text-align: left;
  3637. font-size: 14px; }
  3638. html.no-js #tool-bar #block-materio-search-api-materio-search-api-search > .inner h4.form-title {
  3639. display: none; }
  3640. html.no-js #tool-bar #block-materio-search-api-materio-search-api-search > .inner.msa-advanced-search {
  3641. display: none; }
  3642. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs {
  3643. text-align: left;
  3644. margin-bottom: 4px; }
  3645. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4 {
  3646. display: moz-inline-stack;
  3647. display: inline-block;
  3648. vertical-align: top;
  3649. zoom: 1;
  3650. *display: inline;
  3651. font-size: 12px;
  3652. cursor: pointer;
  3653. border-radius: 5px 5px 0 0;
  3654. padding: 0.1em 0.5em;
  3655. transition: color 0.5s ease-in-out; }
  3656. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4.active {
  3657. border: 1px solid #ccc;
  3658. border-bottom: 1px solid #FFF;
  3659. background-color: #fff; }
  3660. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4:not(.active) {
  3661. color: #ccc; }
  3662. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4:not(.active):hover {
  3663. color: inherit; }
  3664. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs:after {
  3665. content: "";
  3666. display: block;
  3667. background-color: #fff;
  3668. border-top: 1px solid #ccc;
  3669. margin-top: -3px; }
  3670. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .msa-form-wrapper:not(.active) {
  3671. display: none; }
  3672. #tool-bar #materio-search-api-search-form {
  3673. text-align: right;
  3674. display: moz-inline-stack;
  3675. display: inline-block;
  3676. vertical-align: top;
  3677. zoom: 1;
  3678. *display: inline;
  3679. margin: 0; }
  3680. #tool-bar #materio-search-api-search-form .form-item, #tool-bar #materio-search-api-search-form input, #tool-bar #materio-search-api-search-form .form-checkboxes, #tool-bar #materio-search-api-search-form .form-wrapper {
  3681. display: moz-inline-stack;
  3682. display: inline-block;
  3683. vertical-align: top;
  3684. zoom: 1;
  3685. *display: inline;
  3686. margin: 0;
  3687. vertical-align: middle;
  3688. padding: 0; }
  3689. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3690. padding: 3px;
  3691. font-size: 12px; }
  3692. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3693. margin: 0 5px; }
  3694. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3695. font-size: 10px; }
  3696. #tool-bar #materio-search-api-search-form #edit-rightcol {
  3697. padding-left: 0.5em;
  3698. margin-left: 0.5em;
  3699. border-left: 1px solid #ccc; }
  3700. #tool-bar #materio-search-api-search-form a.back-search-home {
  3701. display: inline-block;
  3702. vertical-align: middle;
  3703. color: #000; }
  3704. #tool-bar #materio-search-api-search-form a.back-search-home i:before {
  3705. font-size: 1.3em; }
  3706. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3707. border: 1px solid #ccc;
  3708. border-radius: 15px;
  3709. background-clip: padding-box;
  3710. margin: 3px 0 3px 3px;
  3711. padding: 4px 5px;
  3712. height: 20px;
  3713. font-size: 12px;
  3714. line-height: 1;
  3715. background-position: 100% 7px; }
  3716. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3717. background-position: 100% -15px; }
  3718. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3719. background-color: #1a1a1a; }
  3720. #tool-bar #materio-search-api-search-form div.search-btn-wrapper {
  3721. display: inline-block;
  3722. padding: 3px; }
  3723. #tool-bar #materio-search-api-search-form.loading div.search-btn-wrapper {
  3724. background: transparent url("../img/ajax-loader.gif") no-repeat center center; }
  3725. #tool-bar #materio-search-api-search-form.loading div.search-btn-wrapper input {
  3726. visibility: hidden; }
  3727. @media only screen and (max-width: 40em) {
  3728. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3729. width: 16em; }
  3730. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3731. display: none; } }
  3732. #tool-bar #materio-search-api-advanced-search-form > div {
  3733. position: relative; }
  3734. #tool-bar #materio-search-api-advanced-search-form > div #advancedsearch-filters-wrapper, #tool-bar #materio-search-api-advanced-search-form > div .form-wrapper.right-col {
  3735. display: inline-block;
  3736. vertical-align: top; }
  3737. #tool-bar #materio-search-api-advanced-search-form > div .form-wrapper.right-col {
  3738. position: relative;
  3739. text-align: center; }
  3740. #tool-bar #materio-search-api-advanced-search-form > div .form-wrapper.right-col > * {
  3741. display: block; }
  3742. #tool-bar #materio-search-api-advanced-search-form > div .form-wrapper.right-col a.back-search-home {
  3743. color: #000;
  3744. padding-top: 0.45em; }
  3745. #tool-bar #materio-search-api-advanced-search-form > div .form-wrapper.right-col a.back-search-home i:before {
  3746. font-size: 1.3em; }
  3747. #tool-bar #materio-search-api-advanced-search-form > div .form-wrapper.right-col #edit-search {
  3748. margin: 0.5em 0 0.5em; }
  3749. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters {
  3750. padding-right: 0.5em;
  3751. margin-right: 0.5em;
  3752. border-right: 1px solid #ccc; }
  3753. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .advanced-search-form-table {
  3754. display: table;
  3755. border-collapse: collapse;
  3756. border-spacing: 0 0.2em; }
  3757. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .advanced-search-form-headers {
  3758. display: table-header-group;
  3759. width: 100%; }
  3760. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .advanced-search-form-headers > div {
  3761. display: table-cell;
  3762. text-align: left;
  3763. text-transform: uppercase;
  3764. font-size: 9px; }
  3765. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .advanced-search-form-headers > div:last-child:after {
  3766. content: "";
  3767. display: table-cell; }
  3768. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line {
  3769. margin: 0.3em 0;
  3770. padding-top: 0.3em;
  3771. display: table-row;
  3772. vertical-align: middle; }
  3773. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line:not(:first-child) {
  3774. border-top: 1px solid #ccc; }
  3775. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line:not(:first-child) > * {
  3776. padding: 0.5em 0; }
  3777. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line:first-child > * {
  3778. padding: 0.3em 0 0.5em; }
  3779. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line > * {
  3780. display: table-cell;
  3781. text-align: left; }
  3782. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line > *:not(:last-child) {
  3783. padding-right: 0.5em; }
  3784. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line > *:not(:first-child):not(:last-child):before {
  3785. content: ">";
  3786. color: #999;
  3787. font-size: 11px;
  3788. padding-right: 0.5em; }
  3789. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line .form-item {
  3790. font-size: 12px;
  3791. line-height: 1;
  3792. text-transform: capitalize;
  3793. margin: 0 0em 0 0; }
  3794. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line select {
  3795. width: auto; }
  3796. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line .filter-markup {
  3797. position: relative; }
  3798. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .filter-line .filter-markup span {
  3799. padding: 0.4em 1em;
  3800. display: inline-block;
  3801. width: 78%;
  3802. font-size: 11px;
  3803. color: #ccc;
  3804. text-align: center;
  3805. border-radius: 7px; }
  3806. #tool-bar #materio-search-api-advanced-search-form .form-wrapper.advancedsearch-filters .add-filter {
  3807. margin: 0.5em 0;
  3808. display: table-row; }
  3809. #tool-bar #materio-search-api-advanced-search-form div.search-btn-wrapper {
  3810. display: inline-block; }
  3811. #tool-bar #materio-search-api-advanced-search-form.loading div.search-btn-wrapper {
  3812. background: transparent url("../img/ajax-loader.gif") no-repeat center center; }
  3813. #tool-bar #materio-search-api-advanced-search-form.loading div.search-btn-wrapper input {
  3814. visibility: hidden; }
  3815. #tool-bar #materio-search-api-advanced-search-form .throbbing {
  3816. display: none; }
  3817. #tool-bar #materio-search-api-advanced-search-form .ajax-progress-throbber .message {
  3818. display: none; }
  3819. #tool-bar #materio-search-api-advanced-search-form .ajax-progress-throbber .throbber {
  3820. background: transparent url("../img/ajax-loader.gif") no-repeat center center; }
  3821. #center {
  3822. border-radius: 10px;
  3823. background-clip: padding-box; }
  3824. .node-type-page:not(.page-node-11187) #center {
  3825. background-color: #fff; }
  3826. .ie8 #center {
  3827. height: 100%;
  3828. margin-top: 20px; }
  3829. #content {
  3830. padding: 1em;
  3831. transition: height 0.3s ease-out; }
  3832. #content.faded {
  3833. opacity: 0.5;
  3834. transition: opacity 0.3s ease-out; }
  3835. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3836. padding: 0 0 30px 0;
  3837. margin: 0 0 20px 0; }
  3838. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3839. background-image: url("../img/ajax-loader.gif");
  3840. background-position: center bottom;
  3841. background-repeat: no-repeat; }
  3842. #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 {
  3843. font-size: 12px;
  3844. font-weight: 500;
  3845. margin: 0;
  3846. padding: 10px 0 5px 15px; }
  3847. #content .materiobase-results .search-results, #content .materiobase-results .actuality-items, #content .materiobase-results .flaglist-items, #content .materiobase-actuality .search-results, #content .materiobase-actuality .actuality-items, #content .materiobase-actuality .flaglist-items, #content .materio-flags-list .search-results, #content .materio-flags-list .actuality-items, #content .materio-flags-list .flaglist-items {
  3848. font-size: 0;
  3849. text-align: center; }
  3850. #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 > * {
  3851. font-size: 16px; }
  3852. #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 > * {
  3853. text-align: left; }
  3854. #content ul.pager {
  3855. padding: 1em 0;
  3856. text-align: left; }
  3857. .ie8 #content ul.pager {
  3858. position: absolute;
  3859. left: 37px;
  3860. bottom: 35px; }
  3861. #content ul.pager li {
  3862. margin: 0;
  3863. display: moz-inline-stack;
  3864. display: inline-block;
  3865. vertical-align: top;
  3866. zoom: 1;
  3867. *display: inline;
  3868. vertical-align: middle; }
  3869. #content ul.pager .pager-current, #content ul.pager a {
  3870. color: #000;
  3871. font-size: 12px; }
  3872. #content ul.pager .pager-current {
  3873. font-weight: 900;
  3874. font-size: 14px; }
  3875. .ie8 #content ul.pager .pager-current {
  3876. background: #fff;
  3877. padding: 0.3em 1em 0.3em 1em;
  3878. margin-top: 0.05em;
  3879. border: 1px solid #333333; }
  3880. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3881. font-size: 24px;
  3882. font-weight: 300; }
  3883. /** #content-bottom */
  3884. #content-bottom {
  3885. padding-top: 10px; }
  3886. /*
  3887. _________ ____ ____ _____
  3888. / ____/ | / __ \/ __ \/ ___/
  3889. / / / /| | / /_/ / / / /\__ / /___/ ___ |/ _, _/ /_/ /___/ /
  3890. \____/_/ |_/_/ |_/_____//____/
  3891. */
  3892. /*
  3893. _ _ ___
  3894. ___ ___ ___ _| | ___ ___ ___ ___ ___| |_ ___ ___ ___| _|___ ___ _____ ___ ___ ___ ___
  3895. | _| .'| _| . | |_ -| -_| .'| _| _| | | . | -_| _| _| . | _| | .'| | _| -_|
  3896. |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___|
  3897. |_|
  3898. */
  3899. article.search-performance .inner {
  3900. padding: 1em; }
  3901. article.search-performance p {
  3902. font-size: 14px; }
  3903. article.search-performance a.button {
  3904. display: block;
  3905. margin: 10px auto;
  3906. max-width: 10em;
  3907. font-size: 18px;
  3908. padding: 0.1em 0.6em 0.2em;
  3909. border-radius: 0.3em;
  3910. background-clip: padding-box;
  3911. font-weight: bold;
  3912. border: 2px solid #69CDCF;
  3913. background-color: #69CDCF;
  3914. color: #fff;
  3915. cursor: pointer;
  3916. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3917. transition: text-shadow 0.2s ease-out;
  3918. text-align: center;
  3919. text-decoration: none; }
  3920. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3921. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3922. article.search-performance a.button:active {
  3923. transition: text-shadow 0s ease-out;
  3924. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3925. article.search-performance.view-mode-cardsmall {
  3926. width: 327px;
  3927. height: 140px;
  3928. display: moz-inline-stack;
  3929. display: inline-block;
  3930. vertical-align: top;
  3931. zoom: 1;
  3932. *display: inline;
  3933. position: relative;
  3934. margin: 7px;
  3935. border-radius: 5px;
  3936. background-clip: padding-box;
  3937. background-color: #FFF;
  3938. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3939. transition: box-shadow 0.3s ease-out; }
  3940. article.search-performance.view-mode-cardmedium {
  3941. width: 210px;
  3942. height: 295px;
  3943. display: moz-inline-stack;
  3944. display: inline-block;
  3945. vertical-align: top;
  3946. zoom: 1;
  3947. *display: inline;
  3948. position: relative;
  3949. margin: 7px;
  3950. border-radius: 5px;
  3951. background-clip: padding-box;
  3952. background-color: #FFF;
  3953. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3954. transition: box-shadow 0.3s ease-out; }
  3955. article.search-performance.view-mode-cardmedium .inner {
  3956. padding: 4em 1em 0; }
  3957. article.search-performance.view-mode-cardbig {
  3958. width: 425px;
  3959. height: 115px;
  3960. display: moz-inline-stack;
  3961. display: inline-block;
  3962. vertical-align: top;
  3963. zoom: 1;
  3964. *display: inline;
  3965. position: relative;
  3966. margin: 7px;
  3967. border-radius: 5px;
  3968. background-clip: padding-box;
  3969. background-color: #FFF;
  3970. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3971. transition: box-shadow 0.3s ease-out;
  3972. display: block;
  3973. margin: 0 auto; }
  3974. article.search-performance.view-mode-cardfull {
  3975. width: 850px;
  3976. height: 115px;
  3977. display: moz-inline-stack;
  3978. display: inline-block;
  3979. vertical-align: top;
  3980. zoom: 1;
  3981. *display: inline;
  3982. position: relative;
  3983. margin: 7px;
  3984. border-radius: 5px;
  3985. background-clip: padding-box;
  3986. background-color: #FFF;
  3987. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3988. transition: box-shadow 0.3s ease-out;
  3989. display: block;
  3990. margin: 0 auto; }
  3991. article.search-performance.view-mode-cardfull .inner {
  3992. padding: 1em 212px; }
  3993. /*
  3994. ______ __ ____ __ __
  3995. / ____/___ __________/ / / __ )____ ____ / /______ ___ ____ ______/ /_______
  3996. / / / __ `/ ___/ __ / / __ / __ \/ __ \/ //_/ __ `__ \/ __ `/ ___/ //_/ ___/
  3997. / /___/ /_/ / / / /_/ / / /_/ / /_/ / /_/ / ,< / / / / / / /_/ / / / ,< (__ )
  3998. \____/\__,_/_/ \__,_/ /_____/\____/\____/_/|_/_/ /_/ /_/\__,_/_/ /_/|_/____/
  3999. */
  4000. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  4001. width: 50px;
  4002. height: 70px;
  4003. display: moz-inline-stack;
  4004. display: inline-block;
  4005. vertical-align: top;
  4006. zoom: 1;
  4007. *display: inline;
  4008. position: relative;
  4009. margin: 7px;
  4010. border-radius: 5px;
  4011. background-clip: padding-box;
  4012. background-color: #FFF;
  4013. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4014. transition: box-shadow 0.3s ease-out;
  4015. margin: 3px; }
  4016. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  4017. border-radius: 5px;
  4018. background-clip: padding-box;
  4019. overflow: hidden; }
  4020. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  4021. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4022. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  4023. opacity: 0; }
  4024. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  4025. transition: margin 0.3s ease-out; }
  4026. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  4027. margin-left: -50px;
  4028. margin-right: 50px; }
  4029. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  4030. position: absolute;
  4031. top: 0;
  4032. left: 0;
  4033. z-index: 999; }
  4034. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  4035. transition: width 0.3s ease-out;
  4036. width: 0;
  4037. padding-left: 0;
  4038. padding-right: 0;
  4039. margin-right: 0;
  4040. margin-left: 0;
  4041. overflow: hidden; }
  4042. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  4043. position: absolute;
  4044. top: 0;
  4045. right: 0;
  4046. z-index: 11;
  4047. padding: 5px 0;
  4048. border-radius: 0 5px 0 3px;
  4049. background-clip: padding-box;
  4050. font-size: 10px;
  4051. background-color: rgba(255, 255, 255, 0.9);
  4052. color: #000; }
  4053. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  4054. color: #000; }
  4055. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4056. background-color: rgba(255, 255, 255, 0.9); }
  4057. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  4058. font-weight: 900;
  4059. font-size: 14px; }
  4060. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4061. padding: 0;
  4062. margin: 0; }
  4063. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  4064. position: relative; }
  4065. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  4066. margin: 0 5px; }
  4067. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  4068. cursor: pointer; }
  4069. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4070. position: absolute;
  4071. right: 0;
  4072. top: 0;
  4073. margin-right: 22px;
  4074. min-width: 80px;
  4075. padding: 0;
  4076. display: block;
  4077. border-radius: 3px;
  4078. background-clip: padding-box;
  4079. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4080. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  4081. padding: 0;
  4082. margin: 0;
  4083. line-height: 1;
  4084. display: block;
  4085. height: 0;
  4086. overflow: hidden;
  4087. transition: height 0.2s ease-out; }
  4088. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  4089. display: block; }
  4090. article.node-materiau.vm-bookmark nav.nav ul.links a, article.node-breve.vm-bookmark nav.nav ul.links a {
  4091. font-size: 12px; }
  4092. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  4093. width: 160px;
  4094. font-size: 0; }
  4095. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  4096. font-size: 11px; }
  4097. 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 {
  4098. display: moz-inline-stack;
  4099. display: inline-block;
  4100. vertical-align: top;
  4101. zoom: 1;
  4102. *display: inline;
  4103. min-width: 48%;
  4104. max-width: 98%;
  4105. padding-left: 2px; }
  4106. 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 {
  4107. color: #a6a6a6;
  4108. transition: color 0.2s ease-out; }
  4109. 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 {
  4110. color: #000;
  4111. text-decoration: none; }
  4112. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  4113. display: block;
  4114. width: 100%; }
  4115. 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 > * {
  4116. margin-top: 1px;
  4117. padding-top: 1px;
  4118. border-top: 1px solid #e6e6e6; }
  4119. 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 {
  4120. color: #000; }
  4121. 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 {
  4122. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4123. 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 {
  4124. visibility: hidden; }
  4125. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  4126. background: #FFF; }
  4127. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  4128. padding: 5px 5px; }
  4129. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  4130. height: 17px; }
  4131. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4132. position: absolute;
  4133. bottom: 0;
  4134. right: 0;
  4135. z-index: 11;
  4136. padding: 5px;
  4137. border-radius: 3px 0 5px 0;
  4138. background-clip: padding-box;
  4139. font-size: 10px;
  4140. vertical-align: top;
  4141. background-color: rgba(20, 20, 20, 0.9);
  4142. color: #fff; }
  4143. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  4144. padding: 3px 0 0 4px;
  4145. display: moz-inline-stack;
  4146. display: inline-block;
  4147. vertical-align: top;
  4148. zoom: 1;
  4149. *display: inline; }
  4150. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  4151. font-size: 12px;
  4152. padding-top: 4em;
  4153. margin-top: -4.5em;
  4154. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4155. position: relative; }
  4156. 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 {
  4157. padding: 10px;
  4158. font-size: 12px; }
  4159. 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 {
  4160. display: block;
  4161. margin: 10px 0;
  4162. font-size: 18px;
  4163. padding: 0.1em 0.6em 0.2em;
  4164. border-radius: 0.3em;
  4165. background-clip: padding-box;
  4166. font-weight: bold;
  4167. border: 2px solid #69CDCF;
  4168. background-color: #69CDCF;
  4169. color: #fff;
  4170. cursor: pointer;
  4171. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4172. transition: text-shadow 0.2s ease-out;
  4173. text-align: center;
  4174. text-decoration: none; }
  4175. 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 {
  4176. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4177. 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 {
  4178. transition: text-shadow 0s ease-out;
  4179. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4180. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  4181. display: none; }
  4182. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  4183. position: relative;
  4184. z-index: 1;
  4185. background-color: #fff; }
  4186. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  4187. position: absolute;
  4188. top: 0;
  4189. left: 0; }
  4190. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  4191. position: relative;
  4192. z-index: 1; }
  4193. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4194. display: none; }
  4195. /*
  4196. ______ __ _____ ____
  4197. / ____/___ __________/ / / ___/____ ___ ____ _/ / /
  4198. / / / __ `/ ___/ __ / \__ \/ __ `__ \/ __ `/ / /
  4199. / /___/ /_/ / / / /_/ / ___/ / / / / / / /_/ / / /
  4200. \____/\__,_/_/ \__,_/ /____/_/ /_/ /_/\__,_/_/_/
  4201. */
  4202. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4203. width: 100px;
  4204. height: 140px;
  4205. display: moz-inline-stack;
  4206. display: inline-block;
  4207. vertical-align: top;
  4208. zoom: 1;
  4209. *display: inline;
  4210. position: relative;
  4211. margin: 7px;
  4212. border-radius: 5px;
  4213. background-clip: padding-box;
  4214. background-color: #FFF;
  4215. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4216. transition: box-shadow 0.3s ease-out; }
  4217. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4218. border-radius: 5px;
  4219. background-clip: padding-box;
  4220. overflow: hidden; }
  4221. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4222. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4223. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4224. opacity: 0; }
  4225. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4226. transition: margin 0.3s ease-out; }
  4227. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4228. margin-left: -100px;
  4229. margin-right: 100px; }
  4230. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4231. position: absolute;
  4232. top: 0;
  4233. left: 0;
  4234. z-index: 999; }
  4235. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4236. transition: width 0.3s ease-out;
  4237. width: 0;
  4238. padding-left: 0;
  4239. padding-right: 0;
  4240. margin-right: 0;
  4241. margin-left: 0;
  4242. overflow: hidden; }
  4243. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4244. position: absolute;
  4245. top: 0;
  4246. right: 0;
  4247. z-index: 11;
  4248. padding: 5px 0;
  4249. border-radius: 0 5px 0 3px;
  4250. background-clip: padding-box;
  4251. font-size: 10px;
  4252. background-color: rgba(255, 255, 255, 0.9);
  4253. color: #000; }
  4254. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4255. color: #000; }
  4256. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4257. background-color: rgba(255, 255, 255, 0.9); }
  4258. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4259. font-weight: 900;
  4260. font-size: 14px; }
  4261. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4262. padding: 0;
  4263. margin: 0; }
  4264. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4265. position: relative; }
  4266. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4267. margin: 0 5px; }
  4268. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4269. cursor: pointer; }
  4270. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4271. position: absolute;
  4272. right: 0;
  4273. top: 0;
  4274. margin-right: 22px;
  4275. min-width: 80px;
  4276. padding: 0;
  4277. display: block;
  4278. border-radius: 3px;
  4279. background-clip: padding-box;
  4280. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4281. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4282. padding: 0;
  4283. margin: 0;
  4284. line-height: 1;
  4285. display: block;
  4286. height: 0;
  4287. overflow: hidden;
  4288. transition: height 0.2s ease-out; }
  4289. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4290. display: block; }
  4291. article.node-materiau.vm-cardsmall nav.nav ul.links a, article.node-breve.vm-cardsmall nav.nav ul.links a {
  4292. font-size: 12px; }
  4293. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4294. width: 160px;
  4295. font-size: 0; }
  4296. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4297. font-size: 11px; }
  4298. 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 {
  4299. display: moz-inline-stack;
  4300. display: inline-block;
  4301. vertical-align: top;
  4302. zoom: 1;
  4303. *display: inline;
  4304. min-width: 48%;
  4305. max-width: 98%;
  4306. padding-left: 2px; }
  4307. 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 {
  4308. color: #a6a6a6;
  4309. transition: color 0.2s ease-out; }
  4310. 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 {
  4311. color: #000;
  4312. text-decoration: none; }
  4313. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  4314. display: block;
  4315. width: 100%; }
  4316. 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 > * {
  4317. margin-top: 1px;
  4318. padding-top: 1px;
  4319. border-top: 1px solid #e6e6e6; }
  4320. 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 {
  4321. color: #000; }
  4322. 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 {
  4323. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4324. 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 {
  4325. visibility: hidden; }
  4326. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4327. background: #FFF; }
  4328. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4329. padding: 5px 5px; }
  4330. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4331. height: 17px; }
  4332. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4333. position: absolute;
  4334. bottom: 0;
  4335. right: 0;
  4336. z-index: 11;
  4337. padding: 5px;
  4338. border-radius: 3px 0 5px 0;
  4339. background-clip: padding-box;
  4340. font-size: 10px;
  4341. vertical-align: top;
  4342. background-color: rgba(20, 20, 20, 0.9);
  4343. color: #fff; }
  4344. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4345. padding: 3px 0 0 4px;
  4346. display: moz-inline-stack;
  4347. display: inline-block;
  4348. vertical-align: top;
  4349. zoom: 1;
  4350. *display: inline; }
  4351. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4352. font-size: 12px;
  4353. padding-top: 4em;
  4354. margin-top: -4.5em;
  4355. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4356. position: relative; }
  4357. 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 {
  4358. padding: 10px;
  4359. font-size: 12px; }
  4360. 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 {
  4361. display: block;
  4362. margin: 10px 0;
  4363. font-size: 18px;
  4364. padding: 0.1em 0.6em 0.2em;
  4365. border-radius: 0.3em;
  4366. background-clip: padding-box;
  4367. font-weight: bold;
  4368. border: 2px solid #69CDCF;
  4369. background-color: #69CDCF;
  4370. color: #fff;
  4371. cursor: pointer;
  4372. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4373. transition: text-shadow 0.2s ease-out;
  4374. text-align: center;
  4375. text-decoration: none; }
  4376. 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 {
  4377. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4378. 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 {
  4379. transition: text-shadow 0s ease-out;
  4380. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4381. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4382. display: none;
  4383. position: absolute;
  4384. font-size: 14px;
  4385. font-weight: 500; }
  4386. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4387. font-weight: 700; }
  4388. 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 {
  4389. display: moz-inline-stack;
  4390. display: inline-block;
  4391. vertical-align: top;
  4392. zoom: 1;
  4393. *display: inline;
  4394. font-size: 12px; }
  4395. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4396. float: right; }
  4397. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4398. position: relative;
  4399. z-index: 1;
  4400. background-color: #fff;
  4401. border-radius: 5px;
  4402. background-clip: padding-box;
  4403. overflow: hidden; }
  4404. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4405. position: absolute;
  4406. top: 0;
  4407. left: 0; }
  4408. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4409. position: relative;
  4410. z-index: 1; }
  4411. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4412. width: 75px;
  4413. min-width: 75px; }
  4414. 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 {
  4415. width: 98%; }
  4416. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4417. background: #FFF; }
  4418. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4419. visibility: hidden; }
  4420. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4421. margin-top: -100000px; }
  4422. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4423. opacity: 0;
  4424. transition: visibility 0s 0.3s; }
  4425. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4426. transition: margin-top 0s 0.3s; }
  4427. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4428. visibility: hidden; }
  4429. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4430. margin-top: -100000px; }
  4431. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4432. opacity: 0;
  4433. transition: visibility 0s 0.3s; }
  4434. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4435. transition: margin-top 0s 0.3s; }
  4436. /*
  4437. ______ ____ _ ____ __
  4438. /_ __/___ ____ / / /_(_)___ _________ ___ ____ _/ / / _________ __________/ /
  4439. / / / __ \/ __ \/ / __/ / __ \ / ___/ __ `__ \/ __ `/ / / / ___/ __ `/ ___/ __ /
  4440. / / / /_/ / /_/ / / /_/ / /_/ / (__ ) / / / / / /_/ / / / / /__/ /_/ / / / /_/ /
  4441. /_/ \____/\____/_/\__/_/ .___/ /____/_/ /_/ /_/\__,_/_/_/ \___/\__,_/_/ \__,_/
  4442. /_/
  4443. */
  4444. #tooltip .group-header.smallcard {
  4445. font-size: 14px;
  4446. font-weight: 500; }
  4447. #tooltip .group-header.smallcard .field-name-title-field {
  4448. font-weight: 700; }
  4449. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4450. display: moz-inline-stack;
  4451. display: inline-block;
  4452. vertical-align: top;
  4453. zoom: 1;
  4454. *display: inline;
  4455. font-size: 12px; }
  4456. #tooltip .group-header.smallcard .field-name-field-localisation {
  4457. float: right; }
  4458. /*
  4459. ______ __ __ ___ ___
  4460. / ____/___ __________/ / / |/ /__ ____/ (_)_ ______ ___
  4461. / / / __ `/ ___/ __ / / /|_/ / _ \/ __ / / / / / __ `__ / /___/ /_/ / / / /_/ / / / / / __/ /_/ / / /_/ / / / / / /
  4462. \____/\__,_/_/ \__,_/ /_/ /_/\___/\__,_/_/\__,_/_/ /_/ /_/
  4463. */
  4464. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4465. width: 210px;
  4466. height: 295px;
  4467. display: moz-inline-stack;
  4468. display: inline-block;
  4469. vertical-align: top;
  4470. zoom: 1;
  4471. *display: inline;
  4472. position: relative;
  4473. margin: 7px;
  4474. border-radius: 5px;
  4475. background-clip: padding-box;
  4476. background-color: #FFF;
  4477. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4478. transition: box-shadow 0.3s ease-out; }
  4479. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4480. border-radius: 5px;
  4481. background-clip: padding-box;
  4482. overflow: hidden; }
  4483. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4484. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4485. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4486. opacity: 0; }
  4487. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4488. transition: margin 0.3s ease-out; }
  4489. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4490. margin-left: -210px;
  4491. margin-right: 210px; }
  4492. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4493. position: absolute;
  4494. top: 0;
  4495. left: 0;
  4496. z-index: 999; }
  4497. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4498. transition: width 0.3s ease-out;
  4499. width: 0;
  4500. padding-left: 0;
  4501. padding-right: 0;
  4502. margin-right: 0;
  4503. margin-left: 0;
  4504. overflow: hidden; }
  4505. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4506. position: absolute;
  4507. top: 0;
  4508. right: 0;
  4509. z-index: 11;
  4510. padding: 5px 0;
  4511. border-radius: 0 5px 0 3px;
  4512. background-clip: padding-box;
  4513. font-size: 10px;
  4514. background-color: rgba(255, 255, 255, 0.9);
  4515. color: #000; }
  4516. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4517. color: #000; }
  4518. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4519. background-color: rgba(255, 255, 255, 0.9); }
  4520. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4521. font-weight: 900;
  4522. font-size: 14px; }
  4523. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4524. padding: 0;
  4525. margin: 0; }
  4526. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4527. position: relative; }
  4528. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4529. margin: 0 5px; }
  4530. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4531. cursor: pointer; }
  4532. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4533. position: absolute;
  4534. right: 0;
  4535. top: 0;
  4536. margin-right: 22px;
  4537. min-width: 80px;
  4538. padding: 0;
  4539. display: block;
  4540. border-radius: 3px;
  4541. background-clip: padding-box;
  4542. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4543. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4544. padding: 0;
  4545. margin: 0;
  4546. line-height: 1;
  4547. display: block;
  4548. height: 0;
  4549. overflow: hidden;
  4550. transition: height 0.2s ease-out; }
  4551. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4552. display: block; }
  4553. article.node-materiau.vm-cardmedium nav.nav ul.links a, article.node-breve.vm-cardmedium nav.nav ul.links a {
  4554. font-size: 12px; }
  4555. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4556. width: 160px;
  4557. font-size: 0; }
  4558. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4559. font-size: 11px; }
  4560. 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 {
  4561. display: moz-inline-stack;
  4562. display: inline-block;
  4563. vertical-align: top;
  4564. zoom: 1;
  4565. *display: inline;
  4566. min-width: 48%;
  4567. max-width: 98%;
  4568. padding-left: 2px; }
  4569. 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 {
  4570. color: #a6a6a6;
  4571. transition: color 0.2s ease-out; }
  4572. 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 {
  4573. color: #000;
  4574. text-decoration: none; }
  4575. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  4576. display: block;
  4577. width: 100%; }
  4578. 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 > * {
  4579. margin-top: 1px;
  4580. padding-top: 1px;
  4581. border-top: 1px solid #e6e6e6; }
  4582. 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 {
  4583. color: #000; }
  4584. 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 {
  4585. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4586. 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 {
  4587. visibility: hidden; }
  4588. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4589. background: #FFF; }
  4590. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4591. padding: 5px 5px; }
  4592. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4593. height: 17px; }
  4594. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4595. position: absolute;
  4596. bottom: 0;
  4597. right: 0;
  4598. z-index: 11;
  4599. padding: 5px;
  4600. border-radius: 3px 0 5px 0;
  4601. background-clip: padding-box;
  4602. font-size: 10px;
  4603. vertical-align: top;
  4604. background-color: rgba(20, 20, 20, 0.9);
  4605. color: #fff; }
  4606. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4607. padding: 3px 0 0 4px;
  4608. display: moz-inline-stack;
  4609. display: inline-block;
  4610. vertical-align: top;
  4611. zoom: 1;
  4612. *display: inline; }
  4613. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4614. font-size: 12px;
  4615. padding-top: 4em;
  4616. margin-top: -4.5em;
  4617. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4618. position: relative; }
  4619. 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 {
  4620. padding: 10px;
  4621. font-size: 12px; }
  4622. 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 {
  4623. display: block;
  4624. margin: 10px 0;
  4625. font-size: 18px;
  4626. padding: 0.1em 0.6em 0.2em;
  4627. border-radius: 0.3em;
  4628. background-clip: padding-box;
  4629. font-weight: bold;
  4630. border: 2px solid #69CDCF;
  4631. background-color: #69CDCF;
  4632. color: #fff;
  4633. cursor: pointer;
  4634. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4635. transition: text-shadow 0.2s ease-out;
  4636. text-align: center;
  4637. text-decoration: none; }
  4638. 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 {
  4639. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4640. 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 {
  4641. transition: text-shadow 0s ease-out;
  4642. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4643. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  4644. position: absolute;
  4645. width: 100%;
  4646. height: 100%;
  4647. top: 0;
  4648. left: 0;
  4649. background-color: #fff;
  4650. cursor: pointer; }
  4651. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  4652. z-index: 1; }
  4653. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  4654. position: absolute;
  4655. bottom: 0;
  4656. z-index: 2;
  4657. width: 190px;
  4658. padding: 5px 15px 5px 5px;
  4659. min-height: 55px;
  4660. font-size: 20px;
  4661. font-weight: 300;
  4662. line-height: 1;
  4663. background-color: rgba(255, 255, 255, 0.8);
  4664. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4665. transition: background-color 0.2s ease-out;
  4666. border-radius: 0 0 4px 4px;
  4667. background-clip: padding-box;
  4668. overflow: hidden; }
  4669. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  4670. font-weight: 700; }
  4671. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  4672. font-size: 14px; }
  4673. 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 {
  4674. display: moz-inline-stack;
  4675. display: inline-block;
  4676. vertical-align: top;
  4677. zoom: 1;
  4678. *display: inline;
  4679. font-size: 12px;
  4680. vertical-align: bottom;
  4681. width: 48%; }
  4682. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  4683. text-align: right; }
  4684. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  4685. background: #fff;
  4686. font-color: #000;
  4687. line-height: 1em;
  4688. padding: 10px; }
  4689. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  4690. color: #fff;
  4691. background-color: rgba(0, 0, 0, 0.7);
  4692. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4693. transition: background-color 0.2s ease-out; }
  4694. 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 {
  4695. font-size: 12px;
  4696. font-weight: 500; }
  4697. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  4698. background: #000;
  4699. font-size: 15px;
  4700. line-height: 1.2em; }
  4701. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  4702. position: relative;
  4703. z-index: 1;
  4704. background-color: #fff; }
  4705. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  4706. position: absolute;
  4707. top: 0;
  4708. left: 0; }
  4709. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  4710. position: relative;
  4711. z-index: 1; }
  4712. 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 {
  4713. font-size: 12px;
  4714. font-weight: 300;
  4715. overflow: hidden;
  4716. z-index: -1;
  4717. padding: 5px; }
  4718. 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 {
  4719. padding: 0;
  4720. transition: margin-left 0.3s ease-out; }
  4721. 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 > * {
  4722. padding: 5px; }
  4723. 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 {
  4724. display: inline-block;
  4725. border-radius: 3px;
  4726. background-clip: padding-box;
  4727. color: #fff;
  4728. background-color: #3e3e3e;
  4729. vertical-align: middle;
  4730. font-weight: 700;
  4731. font-size: 22px;
  4732. padding: 0.05em 0.15em 0.2em 0.2em;
  4733. line-height: 0.5;
  4734. font-weight: normal; }
  4735. 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 {
  4736. cursor: w-resize; }
  4737. 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 {
  4738. cursor: e-resize; }
  4739. 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 > * {
  4740. padding-right: 25px; }
  4741. article.node-materiau.vm-cardmedium .field-name-field-location, article.node-breve.vm-cardmedium .field-name-field-location {
  4742. font-size: 12px;
  4743. padding: 5px;
  4744. font-weight: 300; }
  4745. article.node-materiau.vm-cardmedium .field-name-field-location .field-label, article.node-breve.vm-cardmedium .field-name-field-location .field-label {
  4746. font-size: 10px;
  4747. text-transform: lowercase;
  4748. margin: 0; }
  4749. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  4750. padding: 5px; }
  4751. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  4752. padding: 0;
  4753. transition: margin-left 0.3s ease-out; }
  4754. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  4755. padding: 5px; }
  4756. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  4757. display: inline-block;
  4758. border-radius: 3px;
  4759. background-clip: padding-box;
  4760. color: #fff;
  4761. background-color: #3e3e3e;
  4762. vertical-align: middle;
  4763. font-weight: 700;
  4764. font-size: 22px;
  4765. padding: 0.05em 0.15em 0.2em 0.2em;
  4766. line-height: 0.5;
  4767. font-weight: normal; }
  4768. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  4769. cursor: w-resize; }
  4770. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  4771. cursor: e-resize; }
  4772. 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 {
  4773. font-size: 12px;
  4774. padding: 5px;
  4775. font-weight: 300; }
  4776. 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 {
  4777. font-size: 10px;
  4778. text-transform: lowercase;
  4779. margin: 0; }
  4780. 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 {
  4781. font-size: 14px; }
  4782. 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 {
  4783. font-size: 12px;
  4784. padding: 5px;
  4785. font-weight: 300; }
  4786. 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 {
  4787. color: #000; }
  4788. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  4789. font-weight: 900;
  4790. margin: 1em 0 0.5em; }
  4791. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4792. visibility: hidden; }
  4793. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4794. margin-top: -100000px; }
  4795. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4796. opacity: 0;
  4797. transition: visibility 0s 0.3s; }
  4798. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4799. transition: margin-top 0s 0.3s; }
  4800. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4801. visibility: hidden; }
  4802. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4803. margin-top: -100000px; }
  4804. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4805. opacity: 0;
  4806. transition: visibility 0s 0.3s; }
  4807. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4808. transition: margin-top 0s 0.3s; }
  4809. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  4810. background: #FFF; }
  4811. /*
  4812. ______ __ ____ _
  4813. / ____/___ __________/ / / __ )(_)___ _
  4814. / / / __ `/ ___/ __ / / __ / / __ `/
  4815. / /___/ /_/ / / / /_/ / / /_/ / / /_/ /
  4816. \____/\__,_/_/ \__,_/ /_____/_/\__, /
  4817. /____/
  4818. */
  4819. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  4820. width: 425px;
  4821. height: 610px;
  4822. display: moz-inline-stack;
  4823. display: inline-block;
  4824. vertical-align: top;
  4825. zoom: 1;
  4826. *display: inline;
  4827. position: relative;
  4828. margin: 7px;
  4829. border-radius: 5px;
  4830. background-clip: padding-box;
  4831. background-color: #FFF;
  4832. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4833. transition: box-shadow 0.3s ease-out; }
  4834. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  4835. border-radius: 5px;
  4836. background-clip: padding-box;
  4837. overflow: hidden; }
  4838. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  4839. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4840. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  4841. opacity: 0; }
  4842. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  4843. transition: margin 0.3s ease-out; }
  4844. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  4845. margin-left: -425px;
  4846. margin-right: 425px; }
  4847. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  4848. position: absolute;
  4849. top: 0;
  4850. left: 0;
  4851. z-index: 999; }
  4852. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  4853. transition: width 0.3s ease-out;
  4854. width: 0;
  4855. padding-left: 0;
  4856. padding-right: 0;
  4857. margin-right: 0;
  4858. margin-left: 0;
  4859. overflow: hidden; }
  4860. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  4861. position: absolute;
  4862. top: 0;
  4863. right: 0;
  4864. z-index: 11;
  4865. padding: 5px 0;
  4866. border-radius: 0 5px 0 3px;
  4867. background-clip: padding-box;
  4868. font-size: 10px;
  4869. background-color: rgba(255, 255, 255, 0.9);
  4870. color: #000; }
  4871. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  4872. color: #000; }
  4873. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4874. background-color: rgba(255, 255, 255, 0.9); }
  4875. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  4876. font-weight: 900;
  4877. font-size: 14px; }
  4878. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4879. padding: 0;
  4880. margin: 0; }
  4881. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  4882. position: relative; }
  4883. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  4884. margin: 0 5px; }
  4885. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  4886. cursor: pointer; }
  4887. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4888. position: absolute;
  4889. right: 0;
  4890. top: 0;
  4891. margin-right: 22px;
  4892. min-width: 80px;
  4893. padding: 0;
  4894. display: block;
  4895. border-radius: 3px;
  4896. background-clip: padding-box;
  4897. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4898. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  4899. padding: 0;
  4900. margin: 0;
  4901. line-height: 1;
  4902. display: block;
  4903. height: 0;
  4904. overflow: hidden;
  4905. transition: height 0.2s ease-out; }
  4906. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  4907. display: block; }
  4908. article.node-materiau.vm-cardbig nav.nav ul.links a, article.node-breve.vm-cardbig nav.nav ul.links a {
  4909. font-size: 12px; }
  4910. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  4911. width: 160px;
  4912. font-size: 0; }
  4913. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  4914. font-size: 11px; }
  4915. 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 {
  4916. display: moz-inline-stack;
  4917. display: inline-block;
  4918. vertical-align: top;
  4919. zoom: 1;
  4920. *display: inline;
  4921. min-width: 48%;
  4922. max-width: 98%;
  4923. padding-left: 2px; }
  4924. 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 {
  4925. color: #a6a6a6;
  4926. transition: color 0.2s ease-out; }
  4927. 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 {
  4928. color: #000;
  4929. text-decoration: none; }
  4930. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  4931. display: block;
  4932. width: 100%; }
  4933. 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 > * {
  4934. margin-top: 1px;
  4935. padding-top: 1px;
  4936. border-top: 1px solid #e6e6e6; }
  4937. 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 {
  4938. color: #000; }
  4939. 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 {
  4940. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4941. 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 {
  4942. visibility: hidden; }
  4943. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  4944. background: #FFF; }
  4945. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  4946. padding: 5px 5px; }
  4947. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  4948. height: 17px; }
  4949. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  4950. position: absolute;
  4951. bottom: 0;
  4952. right: 0;
  4953. z-index: 11;
  4954. padding: 5px;
  4955. border-radius: 3px 0 5px 0;
  4956. background-clip: padding-box;
  4957. font-size: 10px;
  4958. vertical-align: top;
  4959. background-color: rgba(20, 20, 20, 0.9);
  4960. color: #fff; }
  4961. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  4962. padding: 3px 0 0 4px;
  4963. display: moz-inline-stack;
  4964. display: inline-block;
  4965. vertical-align: top;
  4966. zoom: 1;
  4967. *display: inline; }
  4968. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  4969. font-size: 12px;
  4970. padding-top: 4em;
  4971. margin-top: -4.5em;
  4972. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4973. position: relative; }
  4974. 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 {
  4975. padding: 10px;
  4976. font-size: 12px; }
  4977. 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 {
  4978. display: block;
  4979. margin: 10px 0;
  4980. font-size: 18px;
  4981. padding: 0.1em 0.6em 0.2em;
  4982. border-radius: 0.3em;
  4983. background-clip: padding-box;
  4984. font-weight: bold;
  4985. border: 2px solid #69CDCF;
  4986. background-color: #69CDCF;
  4987. color: #fff;
  4988. cursor: pointer;
  4989. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4990. transition: text-shadow 0.2s ease-out;
  4991. text-align: center;
  4992. text-decoration: none; }
  4993. 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 {
  4994. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4995. 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 {
  4996. transition: text-shadow 0s ease-out;
  4997. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4998. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  4999. position: absolute;
  5000. width: 100%;
  5001. height: 100%;
  5002. top: 0;
  5003. left: 0;
  5004. background-color: #fff;
  5005. height: 270px;
  5006. top: 340px;
  5007. cursor: pointer; }
  5008. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  5009. z-index: 1; }
  5010. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  5011. position: relative;
  5012. border-radius: 5px 5px 0 0;
  5013. background-clip: padding-box;
  5014. overflow: hidden; }
  5015. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  5016. position: absolute;
  5017. bottom: 0;
  5018. z-index: 2;
  5019. width: 405px;
  5020. padding: 10px;
  5021. font-size: 20px;
  5022. font-weight: 300;
  5023. line-height: 1.1;
  5024. background-color: rgba(255, 255, 255, 0.8);
  5025. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  5026. transition: background-color 0.2s ease-out; }
  5027. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  5028. font-weight: 700; }
  5029. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  5030. font-size: 14px; }
  5031. 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 {
  5032. display: moz-inline-stack;
  5033. display: inline-block;
  5034. vertical-align: top;
  5035. zoom: 1;
  5036. *display: inline;
  5037. font-size: 12px;
  5038. vertical-align: bottom;
  5039. width: 48%; }
  5040. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  5041. text-align: right; }
  5042. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  5043. background: #fff;
  5044. font-color: #000;
  5045. line-height: 1em;
  5046. padding: 20px;
  5047. border-bottom: 1px solid #C6C6C6; }
  5048. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  5049. color: #fff;
  5050. background-color: rgba(0, 0, 0, 0.7);
  5051. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5052. transition: background-color 0.2s ease-out; }
  5053. 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 {
  5054. font-size: 12px;
  5055. font-weight: 500; }
  5056. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  5057. background: #000;
  5058. font-color: #fff;
  5059. line-height: 1em;
  5060. padding: 20px; }
  5061. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  5062. position: relative;
  5063. z-index: 1;
  5064. background-color: #fff;
  5065. height: auto; }
  5066. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  5067. position: absolute;
  5068. top: 0;
  5069. left: 0; }
  5070. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  5071. position: relative;
  5072. z-index: 1; }
  5073. 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 {
  5074. font-size: 12px;
  5075. font-weight: 300;
  5076. padding: 10px; }
  5077. 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 {
  5078. padding: 0;
  5079. transition: margin-left 0.3s ease-out; }
  5080. 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 > * {
  5081. padding: 10px; }
  5082. 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 {
  5083. display: inline-block;
  5084. border-radius: 3px;
  5085. background-clip: padding-box;
  5086. color: #fff;
  5087. background-color: #3e3e3e;
  5088. vertical-align: middle;
  5089. font-weight: 700;
  5090. font-size: 22px;
  5091. padding: 0.05em 0.15em 0.2em 0.2em;
  5092. line-height: 0.5;
  5093. font-weight: normal; }
  5094. 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 {
  5095. cursor: w-resize; }
  5096. 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 {
  5097. cursor: e-resize; }
  5098. article.node-materiau.vm-cardbig .field-name-field-location, article.node-breve.vm-cardbig .field-name-field-location {
  5099. font-size: 12px;
  5100. padding: 10px;
  5101. font-weight: 300; }
  5102. article.node-materiau.vm-cardbig .field-name-field-location .field-label, article.node-breve.vm-cardbig .field-name-field-location .field-label {
  5103. font-size: 10px;
  5104. text-transform: lowercase;
  5105. float: none; }
  5106. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  5107. padding: 10px; }
  5108. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  5109. padding: 0;
  5110. transition: margin-left 0.3s ease-out; }
  5111. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  5112. padding: 10px; }
  5113. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  5114. display: inline-block;
  5115. border-radius: 3px;
  5116. background-clip: padding-box;
  5117. color: #fff;
  5118. background-color: #3e3e3e;
  5119. vertical-align: middle;
  5120. font-weight: 700;
  5121. font-size: 22px;
  5122. padding: 0.05em 0.15em 0.2em 0.2em;
  5123. line-height: 0.5;
  5124. font-weight: normal; }
  5125. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  5126. cursor: w-resize; }
  5127. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  5128. cursor: e-resize; }
  5129. 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 {
  5130. font-size: 12px;
  5131. padding: 10px;
  5132. font-weight: 300; }
  5133. 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 {
  5134. font-size: 10px;
  5135. text-transform: lowercase;
  5136. float: none; }
  5137. 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 {
  5138. font-size: 14px; }
  5139. 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 {
  5140. font-size: 12px;
  5141. padding: 10px;
  5142. font-weight: 300; }
  5143. 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 {
  5144. color: #000; }
  5145. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  5146. font-weight: 900;
  5147. margin: 0 0 0.5em; }
  5148. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  5149. background: #FFF; }
  5150. 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 {
  5151. padding: 3em; }
  5152. 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 {
  5153. border: 2px solid #eee;
  5154. background-color: #eee;
  5155. color: #fff;
  5156. transition: border 0.3s ease-out;
  5157. transition: background-color 0.3s ease-out; }
  5158. 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 {
  5159. border: 2px solid #69CDCF;
  5160. background-color: #69CDCF; }
  5161. /*
  5162. ______ __ ______ ____
  5163. / ____/___ __________/ / / ____/_ __/ / /
  5164. / / / __ `/ ___/ __ / / /_ / / / / / /
  5165. / /___/ /_/ / / / /_/ / / __/ / /_/ / / /
  5166. \____/\__,_/_/ \__,_/ /_/ \__,_/_/_/
  5167. */
  5168. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  5169. width: 850px;
  5170. height: 610px;
  5171. display: moz-inline-stack;
  5172. display: inline-block;
  5173. vertical-align: top;
  5174. zoom: 1;
  5175. *display: inline;
  5176. position: relative;
  5177. margin: 7px;
  5178. border-radius: 5px;
  5179. background-clip: padding-box;
  5180. background-color: #FFF;
  5181. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5182. transition: box-shadow 0.3s ease-out;
  5183. font-size: 0px; }
  5184. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  5185. border-radius: 5px;
  5186. background-clip: padding-box;
  5187. overflow: hidden; }
  5188. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  5189. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5190. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  5191. opacity: 0; }
  5192. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  5193. transition: margin 0.3s ease-out; }
  5194. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  5195. margin-left: -850px;
  5196. margin-right: 850px; }
  5197. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  5198. position: absolute;
  5199. top: 0;
  5200. left: 0;
  5201. z-index: 999; }
  5202. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  5203. transition: width 0.3s ease-out;
  5204. width: 0;
  5205. padding-left: 0;
  5206. padding-right: 0;
  5207. margin-right: 0;
  5208. margin-left: 0;
  5209. overflow: hidden; }
  5210. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5211. position: absolute;
  5212. top: 0;
  5213. right: 0;
  5214. z-index: 11;
  5215. padding: 5px 0;
  5216. border-radius: 0 5px 0 3px;
  5217. background-clip: padding-box;
  5218. font-size: 10px;
  5219. background-color: rgba(255, 255, 255, 0.9);
  5220. color: #000; }
  5221. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5222. color: #000; }
  5223. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5224. background-color: rgba(255, 255, 255, 0.9); }
  5225. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5226. font-weight: 900;
  5227. font-size: 14px; }
  5228. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5229. padding: 0;
  5230. margin: 0; }
  5231. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5232. position: relative; }
  5233. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5234. margin: 0 5px; }
  5235. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5236. cursor: pointer; }
  5237. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5238. position: absolute;
  5239. right: 0;
  5240. top: 0;
  5241. margin-right: 22px;
  5242. min-width: 80px;
  5243. padding: 0;
  5244. display: block;
  5245. border-radius: 3px;
  5246. background-clip: padding-box;
  5247. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5248. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5249. padding: 0;
  5250. margin: 0;
  5251. line-height: 1;
  5252. display: block;
  5253. height: 0;
  5254. overflow: hidden;
  5255. transition: height 0.2s ease-out; }
  5256. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5257. display: block; }
  5258. article.node-materiau.vm-cardfull nav.nav ul.links a, article.node-breve.vm-cardfull nav.nav ul.links a {
  5259. font-size: 12px; }
  5260. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5261. width: 160px;
  5262. font-size: 0; }
  5263. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5264. font-size: 11px; }
  5265. 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 {
  5266. display: moz-inline-stack;
  5267. display: inline-block;
  5268. vertical-align: top;
  5269. zoom: 1;
  5270. *display: inline;
  5271. min-width: 48%;
  5272. max-width: 98%;
  5273. padding-left: 2px; }
  5274. 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 {
  5275. color: #a6a6a6;
  5276. transition: color 0.2s ease-out; }
  5277. 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 {
  5278. color: #000;
  5279. text-decoration: none; }
  5280. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5281. display: block;
  5282. width: 100%; }
  5283. 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 > * {
  5284. margin-top: 1px;
  5285. padding-top: 1px;
  5286. border-top: 1px solid #e6e6e6; }
  5287. 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 {
  5288. color: #000; }
  5289. 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 {
  5290. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5291. 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 {
  5292. visibility: hidden; }
  5293. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5294. background: #FFF; }
  5295. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5296. padding: 5px 5px; }
  5297. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5298. height: 17px; }
  5299. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5300. position: absolute;
  5301. bottom: 0;
  5302. right: 0;
  5303. z-index: 11;
  5304. padding: 5px;
  5305. border-radius: 3px 0 5px 0;
  5306. background-clip: padding-box;
  5307. font-size: 10px;
  5308. vertical-align: top;
  5309. background-color: rgba(20, 20, 20, 0.9);
  5310. color: #fff; }
  5311. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5312. padding: 3px 0 0 4px;
  5313. display: moz-inline-stack;
  5314. display: inline-block;
  5315. vertical-align: top;
  5316. zoom: 1;
  5317. *display: inline; }
  5318. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5319. font-size: 12px;
  5320. padding-top: 4em;
  5321. margin-top: -4.5em;
  5322. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5323. position: relative; }
  5324. 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 {
  5325. padding: 10px;
  5326. font-size: 12px; }
  5327. 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 {
  5328. display: block;
  5329. margin: 10px 0;
  5330. font-size: 18px;
  5331. padding: 0.1em 0.6em 0.2em;
  5332. border-radius: 0.3em;
  5333. background-clip: padding-box;
  5334. font-weight: bold;
  5335. border: 2px solid #69CDCF;
  5336. background-color: #69CDCF;
  5337. color: #fff;
  5338. cursor: pointer;
  5339. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5340. transition: text-shadow 0.2s ease-out;
  5341. text-align: center;
  5342. text-decoration: none; }
  5343. 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 {
  5344. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5345. 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 {
  5346. transition: text-shadow 0s ease-out;
  5347. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  5348. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5349. top: 0; }
  5350. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  5351. font-size: 16px; }
  5352. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  5353. display: moz-inline-stack;
  5354. display: inline-block;
  5355. vertical-align: top;
  5356. zoom: 1;
  5357. *display: inline;
  5358. width: 50%; }
  5359. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  5360. border-radius: 5px 0 0 5px;
  5361. background-clip: padding-box; }
  5362. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  5363. border-radius: 0 5px 5px 0;
  5364. background-clip: padding-box; }
  5365. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  5366. position: relative;
  5367. z-index: 1;
  5368. background-color: #fff; }
  5369. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  5370. position: absolute;
  5371. top: 0;
  5372. left: 0; }
  5373. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  5374. position: relative;
  5375. z-index: 1; }
  5376. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  5377. font-size: 20px;
  5378. font-weight: 300;
  5379. padding: 10px 10px 0 10px; }
  5380. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  5381. font-weight: 700; }
  5382. 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 {
  5383. display: moz-inline-stack;
  5384. display: inline-block;
  5385. vertical-align: top;
  5386. zoom: 1;
  5387. *display: inline;
  5388. vertical-align: baseline; }
  5389. article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio {
  5390. font-size: 12px; }
  5391. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  5392. color: #fff;
  5393. background-color: rgba(0, 0, 0, 0.7);
  5394. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5395. transition: background-color 0.2s ease-out; }
  5396. 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 {
  5397. font-weight: 500; }
  5398. article.node-materiau.vm-cardfull .field-name-field-location, article.node-breve.vm-cardfull .field-name-field-location {
  5399. font-size: 12px;
  5400. padding: 5px 10px 0 10px;
  5401. font-weight: 300; }
  5402. 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 {
  5403. display: moz-inline-stack;
  5404. display: inline-block;
  5405. vertical-align: top;
  5406. zoom: 1;
  5407. *display: inline;
  5408. vertical-align: baseline; }
  5409. article.node-materiau.vm-cardfull .field-name-field-location .field-label, article.node-breve.vm-cardfull .field-name-field-location .field-label {
  5410. font-size: 10px;
  5411. text-transform: lowercase;
  5412. float: none; }
  5413. 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 {
  5414. font-size: 12px;
  5415. font-weight: 300;
  5416. padding: 5px 10px 0 10px; }
  5417. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  5418. padding: 10px;
  5419. font-size: 12px; }
  5420. 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 {
  5421. font-size: 12px;
  5422. padding: 10px;
  5423. font-weight: 300;
  5424. display: moz-inline-stack;
  5425. display: inline-block;
  5426. vertical-align: top;
  5427. zoom: 1;
  5428. *display: inline;
  5429. width: 40%; }
  5430. 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 {
  5431. margin-top: 1em; }
  5432. 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 {
  5433. font-size: 10px;
  5434. text-transform: lowercase;
  5435. float: none; }
  5436. 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 {
  5437. font-size: 14px; }
  5438. 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 {
  5439. font-size: 12px;
  5440. padding: 10px;
  5441. font-weight: 300; }
  5442. 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 {
  5443. color: #000; }
  5444. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  5445. font-weight: 900;
  5446. margin: 0 0 0.5em; }
  5447. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5448. margin: 5px; }
  5449. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5450. margin: 5px; }
  5451. 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 {
  5452. padding: 3em; }
  5453. 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 {
  5454. border: 2px solid #eee;
  5455. background-color: #eee;
  5456. color: #fff;
  5457. transition: border 0.3s ease-out;
  5458. transition: background-color 0.3s ease-out; }
  5459. 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 {
  5460. border: 2px solid #69CDCF;
  5461. background-color: #69CDCF; }
  5462. /*
  5463. __ ____ _ __
  5464. _________ __________/ / / __ \_____(_)___ / /_
  5465. / ___/ __ `/ ___/ __ / / /_/ / ___/ / __ \/ __/
  5466. / /__/ /_/ / / / /_/ / / ____/ / / / / / / /_
  5467. \___/\__,_/_/ \__,_/ /_/ /_/ /_/_/ /_/\__/
  5468. */
  5469. .print-node-materiau {
  5470. margin: 0 auto; }
  5471. @media screen {
  5472. .print-node-materiau {
  5473. width: 850px;
  5474. height: auto;
  5475. display: moz-inline-stack;
  5476. display: inline-block;
  5477. vertical-align: top;
  5478. zoom: 1;
  5479. *display: inline;
  5480. position: relative;
  5481. margin: 7px;
  5482. border-radius: 5px;
  5483. background-clip: padding-box;
  5484. background-color: #FFF;
  5485. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5486. transition: box-shadow 0.3s ease-out;
  5487. width: 1024px;
  5488. padding: 1em; }
  5489. .print-node-materiau > div.side {
  5490. border-radius: 5px;
  5491. background-clip: padding-box;
  5492. overflow: hidden; }
  5493. .print-node-materiau.focused {
  5494. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5495. .print-node-materiau.just-added {
  5496. opacity: 0; }
  5497. .print-node-materiau.associated {
  5498. transition: margin 0.3s ease-out; }
  5499. .print-node-materiau.associated.just-added {
  5500. margin-left: -850px;
  5501. margin-right: 850px; }
  5502. .modal-content .print-node-materiau.associated {
  5503. position: absolute;
  5504. top: 0;
  5505. left: 0;
  5506. z-index: 999; }
  5507. .print-node-materiau.removed {
  5508. transition: width 0.3s ease-out;
  5509. width: 0;
  5510. padding-left: 0;
  5511. padding-right: 0;
  5512. margin-right: 0;
  5513. margin-left: 0;
  5514. overflow: hidden; }
  5515. .print-node-materiau nav.nav {
  5516. position: absolute;
  5517. top: 0;
  5518. right: 0;
  5519. z-index: 11;
  5520. padding: 5px 0;
  5521. border-radius: 0 5px 0 3px;
  5522. background-clip: padding-box;
  5523. font-size: 10px;
  5524. background-color: rgba(255, 255, 255, 0.9);
  5525. color: #000; }
  5526. .print-node-materiau nav.nav a {
  5527. color: #000; }
  5528. .print-node-materiau nav.nav ul {
  5529. background-color: rgba(255, 255, 255, 0.9); }
  5530. .print-node-materiau nav.nav span.op {
  5531. font-weight: 900;
  5532. font-size: 14px; }
  5533. .print-node-materiau nav.nav ul {
  5534. padding: 0;
  5535. margin: 0; }
  5536. .print-node-materiau nav.nav section {
  5537. position: relative; }
  5538. .print-node-materiau nav.nav section > i {
  5539. margin: 0 5px; }
  5540. .print-node-materiau nav.nav section > i:hover {
  5541. cursor: pointer; }
  5542. .print-node-materiau nav.nav ul {
  5543. position: absolute;
  5544. right: 0;
  5545. top: 0;
  5546. margin-right: 22px;
  5547. min-width: 80px;
  5548. padding: 0;
  5549. display: block;
  5550. border-radius: 3px;
  5551. background-clip: padding-box;
  5552. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5553. .print-node-materiau nav.nav ul li {
  5554. padding: 0;
  5555. margin: 0;
  5556. line-height: 1;
  5557. display: block;
  5558. height: 0;
  5559. overflow: hidden;
  5560. transition: height 0.2s ease-out; }
  5561. .print-node-materiau nav.nav ul li a {
  5562. display: block; }
  5563. .print-node-materiau nav.nav ul.links a {
  5564. font-size: 12px; }
  5565. .print-node-materiau nav.nav ul.flag-lists-entity-links {
  5566. width: 160px;
  5567. font-size: 0; }
  5568. .print-node-materiau nav.nav ul.flag-lists-entity-links > * {
  5569. font-size: 11px; }
  5570. .print-node-materiau nav.nav ul.flag-lists-entity-links li {
  5571. display: moz-inline-stack;
  5572. display: inline-block;
  5573. vertical-align: top;
  5574. zoom: 1;
  5575. *display: inline;
  5576. min-width: 48%;
  5577. max-width: 98%;
  5578. padding-left: 2px; }
  5579. .print-node-materiau nav.nav ul.flag-lists-entity-links li a {
  5580. color: #a6a6a6;
  5581. transition: color 0.2s ease-out; }
  5582. .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 {
  5583. color: #000;
  5584. text-decoration: none; }
  5585. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5586. display: block;
  5587. width: 100%; }
  5588. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5589. margin-top: 1px;
  5590. padding-top: 1px;
  5591. border-top: 1px solid #e6e6e6; }
  5592. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5593. color: #000; }
  5594. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading {
  5595. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5596. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading a {
  5597. visibility: hidden; }
  5598. .ie8 .print-node-materiau nav.nav ul {
  5599. background: #FFF; }
  5600. .print-node-materiau nav.nav section:hover ul {
  5601. padding: 5px 5px; }
  5602. .print-node-materiau nav.nav section:hover ul li {
  5603. height: 17px; }
  5604. .print-node-materiau div.workflow {
  5605. position: absolute;
  5606. bottom: 0;
  5607. right: 0;
  5608. z-index: 11;
  5609. padding: 5px;
  5610. border-radius: 3px 0 5px 0;
  5611. background-clip: padding-box;
  5612. font-size: 10px;
  5613. vertical-align: top;
  5614. background-color: rgba(20, 20, 20, 0.9);
  5615. color: #fff; }
  5616. .print-node-materiau div.workflow span {
  5617. padding: 3px 0 0 4px;
  5618. display: moz-inline-stack;
  5619. display: inline-block;
  5620. vertical-align: top;
  5621. zoom: 1;
  5622. *display: inline; }
  5623. .print-node-materiau .field-name-field-description .upgrade {
  5624. font-size: 12px;
  5625. padding-top: 4em;
  5626. margin-top: -4.5em;
  5627. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5628. position: relative; }
  5629. .print-node-materiau .side.oops p, .print-node-materiau .side .upgrade p {
  5630. padding: 10px;
  5631. font-size: 12px; }
  5632. .print-node-materiau .side.oops p a, .print-node-materiau .side .upgrade p a {
  5633. display: block;
  5634. margin: 10px 0;
  5635. font-size: 18px;
  5636. padding: 0.1em 0.6em 0.2em;
  5637. border-radius: 0.3em;
  5638. background-clip: padding-box;
  5639. font-weight: bold;
  5640. border: 2px solid #69CDCF;
  5641. background-color: #69CDCF;
  5642. color: #fff;
  5643. cursor: pointer;
  5644. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5645. transition: text-shadow 0.2s ease-out;
  5646. text-align: center;
  5647. text-decoration: none; }
  5648. .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 {
  5649. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5650. .print-node-materiau .side.oops p a:active, .print-node-materiau .side .upgrade p a:active {
  5651. transition: text-shadow 0s ease-out;
  5652. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } }
  5653. .print-content .node-materiau.vm-print {
  5654. margin: 0;
  5655. position: relative; }
  5656. .print-content .node-materiau.vm-print .field-name-title-field {
  5657. font-weight: 500;
  5658. font-size: 1.4em; }
  5659. .print-content .node-materiau.vm-print .field-name-field-nature-titre {
  5660. font-weight: 500;
  5661. font-size: 1em;
  5662. margin-bottom: 0.5em; }
  5663. .print-content .node-materiau.vm-print .group-head-right {
  5664. position: absolute;
  5665. top: 0;
  5666. right: 0;
  5667. padding-top: 1em;
  5668. text-align: right;
  5669. font-size: 0.8em; }
  5670. .print-content .node-materiau.vm-print .group-head-right .field-name-field-reference-materio {
  5671. font-weight: 800;
  5672. font-size: 1.2em; }
  5673. .print-content .node-materiau.vm-print .side.group-side-left {
  5674. width: 45%;
  5675. position: absolute; }
  5676. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-description {
  5677. font-size: 0.8em; }
  5678. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-location {
  5679. font-size: 0.7em; }
  5680. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference {
  5681. display: inline-block;
  5682. vertical-align: top;
  5683. width: 45%;
  5684. margin: 0.5em 1em 0 0;
  5685. font-size: 0.7em; }
  5686. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .field-label {
  5687. font-size: 0.8em;
  5688. font-weight: 300; }
  5689. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-name-field-tode-company {
  5690. font-size: 1.2em; }
  5691. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-label {
  5692. display: none; }
  5693. .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 {
  5694. max-width: 100%; }
  5695. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image {
  5696. text-align: right; }
  5697. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure {
  5698. display: inline-block;
  5699. max-width: 19%;
  5700. margin: 0.5em 0 0 0.5em;
  5701. max-width: 100%;
  5702. margin-left: 50%; }
  5703. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure img {
  5704. max-width: 100%; }
  5705. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item {
  5706. display: none;
  5707. max-width: 19%;
  5708. margin: 0.5em 0 0 0.5em; }
  5709. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+7) {
  5710. display: inline-block; }
  5711. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+2) {
  5712. max-width: 100%;
  5713. margin-left: 50%; }
  5714. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item img {
  5715. max-width: 100%; }
  5716. .print-content .node-materiau.vm-print .field-name-field-tode-company {
  5717. font-size: 1.5em;
  5718. font-weight: 700; }
  5719. .print-content .node-materiau.vm-print .field-name-field-description,
  5720. .print-content .node-materiau.vm-print .field-name-field-company-fab,
  5721. .print-content .node-materiau.vm-print .field-name-field-reference-distrib {
  5722. padding-bottom: 1em; }
  5723. /*
  5724. ____ ____ _____ ________
  5725. / __ \/ __ \/ _/ | / /_ __/
  5726. / /_/ / /_/ // // |/ / / /
  5727. / ____/ _, _// // /| / / /
  5728. /_/ /_/ |_/___/_/ |_/ /_/
  5729. */
  5730. @media print {
  5731. @page {
  5732. margin: 1.5cm 7mm 8mm; } }
  5733. .print-site_name {
  5734. width: 100%;
  5735. vertical-align: bottom;
  5736. margin-bottom: 0.5em; }
  5737. .print-site_name h1 {
  5738. margin: 0 0 0 0;
  5739. font-size: 1.4em;
  5740. text-align: center; }
  5741. .print-site_name h1 a {
  5742. color: inherit; }
  5743. .print-site_name h1 a:hover {
  5744. text-decoration: none; }
  5745. .print-site_name span.slogan {
  5746. display: none;
  5747. font-size: 0.8em;
  5748. margin-top: -3px;
  5749. margin-left: -0.5em;
  5750. font-weight: 900; }
  5751. .ie8 .print-site_name span.slogan {
  5752. position: absolute;
  5753. margin-top: 22px; }
  5754. .print-content {
  5755. margin-bottom: 1em; }
  5756. .print-footer {
  5757. position: absolute;
  5758. bottom: 0;
  5759. text-align: center;
  5760. width: 100%; }
  5761. .print-footer p {
  5762. display: inline-block;
  5763. width: 45%;
  5764. text-align: center; }
  5765. /*
  5766. ___ __ ____________ __________ __ _______ __ __________________
  5767. / | / / / /_ __/ __ \/ ____/ __ \/ |/ / __ \/ / / ____/_ __/ ____/
  5768. / /| |/ / / / / / / / / / / / / / / /|_/ / /_/ / / / __/ / / / __/
  5769. / ___ / /_/ / / / / /_/ / /___/ /_/ / / / / ____/ /___/ /___ / / / /___
  5770. /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/
  5771. */
  5772. #autocomplete {
  5773. border: 0;
  5774. border-radius: 3px;
  5775. background-clip: padding-box;
  5776. background-color: rgba(0, 0, 0, 0.6);
  5777. text-align: left;
  5778. margin-left: 2px; }
  5779. .oldie #autocomplete {
  5780. background-color: #545454; }
  5781. #autocomplete li {
  5782. color: #FFF;
  5783. background-color: transparent;
  5784. font-size: 12px; }
  5785. #autocomplete li.selected {
  5786. background-color: rgba(0, 0, 0, 0.8); }
  5787. #autocomplete li div {
  5788. padding: 0.1em 5px; }
  5789. /**
  5790. * the old modal api (balck bg) for contextual forms (create new flag list)
  5791. */
  5792. #modal {
  5793. background-color: rgba(0, 0, 0, 0.7);
  5794. border-radius: 5px;
  5795. background-clip: padding-box;
  5796. border: 0;
  5797. font-size: 12px; }
  5798. #modal * {
  5799. color: #fff;
  5800. background-color: transparent; }
  5801. #modal form {
  5802. background-color: transparent;
  5803. color: #fff;
  5804. border: 0px; }
  5805. #modal form .form-actions {
  5806. background-color: transparent;
  5807. margin: 0;
  5808. padding: 0;
  5809. border: 0; }
  5810. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  5811. background-color: #fff;
  5812. color: #000;
  5813. border: 0; }
  5814. #modal form .form-actions {
  5815. text-align: right; }
  5816. #modal form input.form-submit {
  5817. -webkit-appearance: none;
  5818. -moz-appearance: none;
  5819. border-radius: 0;
  5820. border-style: solid;
  5821. border-width: 0;
  5822. cursor: pointer;
  5823. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5824. font-weight: normal;
  5825. line-height: normal;
  5826. margin: 0 0 1.25rem;
  5827. position: relative;
  5828. text-align: center;
  5829. text-decoration: none;
  5830. display: inline-block;
  5831. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5832. font-size: 0.6875rem;
  5833. background-color: #008CBA;
  5834. border-color: #007095;
  5835. color: #FFFFFF;
  5836. transition: background-color, 300ms, ease-out; }
  5837. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5838. background-color: #007095; }
  5839. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5840. color: #FFFFFF; }
  5841. #modal form input.form-submit[name="create"] {
  5842. -webkit-appearance: none;
  5843. -moz-appearance: none;
  5844. border-radius: 0;
  5845. border-style: solid;
  5846. border-width: 0;
  5847. cursor: pointer;
  5848. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5849. font-weight: normal;
  5850. line-height: normal;
  5851. margin: 0 0 1.25rem;
  5852. position: relative;
  5853. text-align: center;
  5854. text-decoration: none;
  5855. display: inline-block;
  5856. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5857. font-size: 0.6875rem;
  5858. background-color: #43AC6A;
  5859. border-color: #368a55;
  5860. color: #FFFFFF;
  5861. transition: background-color, 300ms, ease-out; }
  5862. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5863. background-color: #368a55; }
  5864. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5865. color: #FFFFFF; }
  5866. #modal form input.form-submit[name="save"] {
  5867. -webkit-appearance: none;
  5868. -moz-appearance: none;
  5869. border-radius: 0;
  5870. border-style: solid;
  5871. border-width: 0;
  5872. cursor: pointer;
  5873. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5874. font-weight: normal;
  5875. line-height: normal;
  5876. margin: 0 0 1.25rem;
  5877. position: relative;
  5878. text-align: center;
  5879. text-decoration: none;
  5880. display: inline-block;
  5881. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5882. font-size: 0.6875rem;
  5883. background-color: #43AC6A;
  5884. border-color: #368a55;
  5885. color: #FFFFFF;
  5886. transition: background-color, 300ms, ease-out; }
  5887. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5888. background-color: #368a55; }
  5889. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5890. color: #FFFFFF; }
  5891. #modal form input.form-submit[name="delete"] {
  5892. -webkit-appearance: none;
  5893. -moz-appearance: none;
  5894. border-radius: 0;
  5895. border-style: solid;
  5896. border-width: 0;
  5897. cursor: pointer;
  5898. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5899. font-weight: normal;
  5900. line-height: normal;
  5901. margin: 0 0 1.25rem;
  5902. position: relative;
  5903. text-align: center;
  5904. text-decoration: none;
  5905. display: inline-block;
  5906. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5907. font-size: 0.6875rem;
  5908. background-color: #f04124;
  5909. border-color: #cf2a0e;
  5910. color: #FFFFFF;
  5911. transition: background-color, 300ms, ease-out; }
  5912. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5913. background-color: #cf2a0e; }
  5914. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5915. color: #FFFFFF; }
  5916. #modal form input.form-submit[name="cancel"] {
  5917. -webkit-appearance: none;
  5918. -moz-appearance: none;
  5919. border-radius: 0;
  5920. border-style: solid;
  5921. border-width: 0;
  5922. cursor: pointer;
  5923. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5924. font-weight: normal;
  5925. line-height: normal;
  5926. margin: 0 0 1.25rem;
  5927. position: relative;
  5928. text-align: center;
  5929. text-decoration: none;
  5930. display: inline-block;
  5931. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5932. font-size: 0.6875rem;
  5933. background-color: #e7e7e7;
  5934. border-color: #b9b9b9;
  5935. color: #333333;
  5936. transition: background-color, 300ms, ease-out; }
  5937. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5938. background-color: #b9b9b9; }
  5939. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5940. color: #333333; }
  5941. #modal > * {
  5942. padding: 10px; }
  5943. #modal #flag-lists-form .form-item-title input {
  5944. width: 95%; }
  5945. #modal .actions {
  5946. text-align: right; }
  5947. /**
  5948. * the new modal api used for preview and register modal
  5949. */
  5950. .modal-wrapper {
  5951. bottom: 0;
  5952. left: 0;
  5953. position: fixed;
  5954. right: 0;
  5955. text-align: center;
  5956. top: 0;
  5957. white-space: nowrap;
  5958. z-index: 99998; }
  5959. .modal-wrapper:before {
  5960. content: "";
  5961. display: inline-block;
  5962. height: 100%;
  5963. margin-right: -0.25em;
  5964. vertical-align: middle; }
  5965. .modal-wrapper:after, .modal-wrapper:before {
  5966. -moz-box-sizing: border-box; }
  5967. .modal-wrapper .modal-bg {
  5968. background-color: #000;
  5969. position: absolute;
  5970. top: 0;
  5971. left: 0;
  5972. width: 100%;
  5973. height: 100%;
  5974. opacity: 0.5; }
  5975. .modal-wrapper .modal-content {
  5976. position: relative;
  5977. display: inline-block;
  5978. margin: 0 auto;
  5979. text-align: left;
  5980. vertical-align: middle;
  5981. white-space: normal;
  5982. min-height: 200px; }
  5983. /*
  5984. _______ __________ ____ __ __ ____ ___ _ __
  5985. / / ___// ____/ __ \/ __ \/ / / / / __ \/ | / | / /
  5986. __ / /\__ \/ / / /_/ / / / / / / / / /_/ / /| | / |/ /
  5987. / /_/ /___/ / /___/ _, _/ /_/ / /___/ /___/ ____/ ___ |/ /| /
  5988. \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/
  5989. */
  5990. .jspContainer .jspVerticalBar {
  5991. background-color: transparent;
  5992. width: 5px; }
  5993. .jspContainer .jspVerticalBar .jspTrack {
  5994. background-color: transparent; }
  5995. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  5996. background-color: #ccc;
  5997. border-radius: 3px;
  5998. background-clip: padding-box; }
  5999. /*
  6000. __________ ____ __ ______________
  6001. /_ __/ __ \/ __ \/ / /_ __/ _/ __ / / / / / / / / / / / / / // /_/ /
  6002. / / / /_/ / /_/ / /___/ / _/ // ____/
  6003. /_/ \____/\____/_____/_/ /___/_/
  6004. */
  6005. #tooltip {
  6006. position: absolute;
  6007. z-index: 999;
  6008. max-width: 180px;
  6009. background-color: white;
  6010. padding: 5px;
  6011. border-radius: 3px;
  6012. background-clip: padding-box;
  6013. font-size: 12px;
  6014. font-weight: 500;
  6015. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  6016. #tooltip.op-visible {
  6017. transition: opacity 0.1s ease-out; }
  6018. /*
  6019. ______________________ ____ ___ ________ __
  6020. / ____/ ____/ ____/ __ \/ __ )/ | / ____/ //_/
  6021. / /_ / __/ / __/ / / / / __ / /| |/ / / ,<
  6022. / __/ / /___/ /___/ /_/ / /_/ / ___ / /___/ /| |
  6023. /_/ /_____/_____/_____/_____/_/ |_\____/_/ |_|
  6024. */
  6025. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  6026. #block-feedback-form {
  6027. bottom: 5px;
  6028. left: 5px;
  6029. right: auto; } }
  6030. #block-feedback-form h2 {
  6031. line-height: 1.2;
  6032. font-size: 14px;
  6033. margin: 0; }
  6034. #block-feedback-form h2 .title {
  6035. display: none; }
  6036. #block-feedback-form #feedback-form-toggle {
  6037. padding: 2px 3px;
  6038. border-radius: 3px;
  6039. background-clip: padding-box;
  6040. background-color: #ff7600;
  6041. color: #fff;
  6042. line-height: 2;
  6043. font-weight: 900; }
  6044. #block-feedback-form .content {
  6045. background-color: rgba(0, 0, 0, 0.7);
  6046. border-radius: 5px;
  6047. background-clip: padding-box;
  6048. border: 0;
  6049. font-size: 12px; }
  6050. #block-feedback-form .content * {
  6051. color: #fff;
  6052. background-color: transparent; }
  6053. #block-feedback-form .content form {
  6054. background-color: transparent;
  6055. color: #fff;
  6056. border: 0px; }
  6057. #block-feedback-form .content form .form-actions {
  6058. background-color: transparent;
  6059. margin: 0;
  6060. padding: 0;
  6061. border: 0; }
  6062. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  6063. background-color: #fff;
  6064. color: #000;
  6065. border: 0; }
  6066. #block-feedback-form .content form .form-actions {
  6067. text-align: right; }
  6068. #block-feedback-form .content form input.form-submit {
  6069. -webkit-appearance: none;
  6070. -moz-appearance: none;
  6071. border-radius: 0;
  6072. border-style: solid;
  6073. border-width: 0;
  6074. cursor: pointer;
  6075. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6076. font-weight: normal;
  6077. line-height: normal;
  6078. margin: 0 0 1.25rem;
  6079. position: relative;
  6080. text-align: center;
  6081. text-decoration: none;
  6082. display: inline-block;
  6083. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6084. font-size: 0.6875rem;
  6085. background-color: #008CBA;
  6086. border-color: #007095;
  6087. color: #FFFFFF;
  6088. transition: background-color, 300ms, ease-out; }
  6089. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6090. background-color: #007095; }
  6091. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6092. color: #FFFFFF; }
  6093. #block-feedback-form .content form input.form-submit[name="create"] {
  6094. -webkit-appearance: none;
  6095. -moz-appearance: none;
  6096. border-radius: 0;
  6097. border-style: solid;
  6098. border-width: 0;
  6099. cursor: pointer;
  6100. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6101. font-weight: normal;
  6102. line-height: normal;
  6103. margin: 0 0 1.25rem;
  6104. position: relative;
  6105. text-align: center;
  6106. text-decoration: none;
  6107. display: inline-block;
  6108. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6109. font-size: 0.6875rem;
  6110. background-color: #43AC6A;
  6111. border-color: #368a55;
  6112. color: #FFFFFF;
  6113. transition: background-color, 300ms, ease-out; }
  6114. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6115. background-color: #368a55; }
  6116. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6117. color: #FFFFFF; }
  6118. #block-feedback-form .content form input.form-submit[name="save"] {
  6119. -webkit-appearance: none;
  6120. -moz-appearance: none;
  6121. border-radius: 0;
  6122. border-style: solid;
  6123. border-width: 0;
  6124. cursor: pointer;
  6125. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6126. font-weight: normal;
  6127. line-height: normal;
  6128. margin: 0 0 1.25rem;
  6129. position: relative;
  6130. text-align: center;
  6131. text-decoration: none;
  6132. display: inline-block;
  6133. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6134. font-size: 0.6875rem;
  6135. background-color: #43AC6A;
  6136. border-color: #368a55;
  6137. color: #FFFFFF;
  6138. transition: background-color, 300ms, ease-out; }
  6139. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6140. background-color: #368a55; }
  6141. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6142. color: #FFFFFF; }
  6143. #block-feedback-form .content form input.form-submit[name="delete"] {
  6144. -webkit-appearance: none;
  6145. -moz-appearance: none;
  6146. border-radius: 0;
  6147. border-style: solid;
  6148. border-width: 0;
  6149. cursor: pointer;
  6150. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6151. font-weight: normal;
  6152. line-height: normal;
  6153. margin: 0 0 1.25rem;
  6154. position: relative;
  6155. text-align: center;
  6156. text-decoration: none;
  6157. display: inline-block;
  6158. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6159. font-size: 0.6875rem;
  6160. background-color: #f04124;
  6161. border-color: #cf2a0e;
  6162. color: #FFFFFF;
  6163. transition: background-color, 300ms, ease-out; }
  6164. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6165. background-color: #cf2a0e; }
  6166. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6167. color: #FFFFFF; }
  6168. #block-feedback-form .content form input.form-submit[name="cancel"] {
  6169. -webkit-appearance: none;
  6170. -moz-appearance: none;
  6171. border-radius: 0;
  6172. border-style: solid;
  6173. border-width: 0;
  6174. cursor: pointer;
  6175. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6176. font-weight: normal;
  6177. line-height: normal;
  6178. margin: 0 0 1.25rem;
  6179. position: relative;
  6180. text-align: center;
  6181. text-decoration: none;
  6182. display: inline-block;
  6183. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6184. font-size: 0.6875rem;
  6185. background-color: #e7e7e7;
  6186. border-color: #b9b9b9;
  6187. color: #333333;
  6188. transition: background-color, 300ms, ease-out; }
  6189. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6190. background-color: #b9b9b9; }
  6191. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6192. color: #333333; }
  6193. .ie8 #block-feedback-form .content {
  6194. background: #000; }
  6195. #block-feedback-form #feedback-status-message {
  6196. background-color: #fff;
  6197. padding: 5px; }
  6198. /*
  6199. _________ _____ __ __ __ _________ ____ _____
  6200. /_ __/ | / ___// //_/ _/_/ /_ __/ | / __ ) ___/
  6201. / / / /| | \__ \/ ,< _/_/ / / / /| | / __ \__ / / / ___ |___/ / /| | _/_/ / / / ___ |/ /_/ /__/ /
  6202. /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/
  6203. */
  6204. #tasks ul.tabs {
  6205. display: moz-inline-stack;
  6206. display: inline-block;
  6207. vertical-align: top;
  6208. zoom: 1;
  6209. *display: inline;
  6210. border: 0 solid #fff;
  6211. padding: 0;
  6212. margin: 0; }
  6213. #tasks ul.tabs li {
  6214. padding: 0;
  6215. margin: 2px 5px;
  6216. border: 0 solid #fff; }
  6217. #tasks ul.tabs a {
  6218. border: 0;
  6219. color: #7f7f7f; }
  6220. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6221. font-weight: 900;
  6222. color: #000; }
  6223. #tasks ul.tabs.primary a {
  6224. font-size: 12px;
  6225. padding: 5px 10px;
  6226. background-color: #e6e6e6;
  6227. border-radius: 3px;
  6228. background-clip: padding-box; }
  6229. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6230. background-color: #e6e6e6; }
  6231. #tasks ul.tabs.secondary {
  6232. font-size: 10px;
  6233. padding: 0.5em 1em; }
  6234. /*
  6235. ______________ _____________________
  6236. / ___/_ __/ |/_ __/ _/ ____/ ___/
  6237. \__ \ / / / /| | / / / // / \__ ___/ // / / ___ |/ / _/ // /___ ___/ /
  6238. /____//_/ /_/ |_/_/ /___/\____//____/
  6239. */
  6240. /*
  6241. _ _ ___ ___ ___
  6242. | | |_ -| -_| _|
  6243. |___|___|___|_|
  6244. */
  6245. .page-user #center, .page-user-edit #center, .page-user-password #center, .page-user-reset #center, .page-toboggan #center {
  6246. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right; }
  6247. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6248. width: 800px;
  6249. margin: 0 auto; }
  6250. .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 {
  6251. display: none; }
  6252. .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 {
  6253. font-size: 12px;
  6254. padding: 5px 10px;
  6255. background-color: #e6e6e6;
  6256. border-radius: 3px;
  6257. background-clip: padding-box; }
  6258. .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 {
  6259. background-color: #e6e6e6; }
  6260. .page-user #center > *, .page-user-edit #center > *, .page-user-password #center > *, .page-user-reset #center > *, .page-toboggan #center > * {
  6261. width: 800px;
  6262. margin: 0 auto;
  6263. padding-top: 1em;
  6264. font-size: 14px; }
  6265. .page-user #center > * fieldset, .page-user-edit #center > * fieldset, .page-user-password #center > * fieldset, .page-user-reset #center > * fieldset, .page-toboggan #center > * fieldset {
  6266. margin-bottom: 1em;
  6267. border: none; }
  6268. .page-user #center > * legend, .page-user-edit #center > * legend, .page-user-password #center > * legend, .page-user-reset #center > * legend, .page-toboggan #center > * legend {
  6269. font-size: 16px;
  6270. margin: 0;
  6271. padding: 10px 0 5px 0;
  6272. line-height: 1;
  6273. border: 0 solid #fff; }
  6274. .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 {
  6275. color: #000; }
  6276. .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 {
  6277. margin: 0 0 0.5em 0;
  6278. width: 100%; }
  6279. .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 {
  6280. display: moz-inline-stack;
  6281. display: inline-block;
  6282. vertical-align: top;
  6283. zoom: 1;
  6284. *display: inline;
  6285. vertical-align: middle; }
  6286. .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 {
  6287. margin-right: 1em; }
  6288. .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 {
  6289. padding: 2px 4px;
  6290. width: 20em; }
  6291. .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 {
  6292. margin: 0 0 2em 0; }
  6293. .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 {
  6294. width: 9em; }
  6295. .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 {
  6296. width: auto; }
  6297. .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 {
  6298. width: 15em;
  6299. margin-top: 0; }
  6300. .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 {
  6301. margin: 0; }
  6302. .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 {
  6303. font-size: 14px;
  6304. margin: 0; }
  6305. .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 {
  6306. display: moz-inline-stack;
  6307. display: inline-block;
  6308. vertical-align: top;
  6309. zoom: 1;
  6310. *display: inline;
  6311. width: auto;
  6312. margin-right: 1em; }
  6313. .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 {
  6314. margin: 0; }
  6315. .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 {
  6316. width: auto;
  6317. padding: 2px 4px;
  6318. height: auto; }
  6319. .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 {
  6320. font-size: 10px; }
  6321. .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 {
  6322. margin: 0;
  6323. text-align: right;
  6324. padding: 1em 0.5em; }
  6325. .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 {
  6326. min-width: 10em; }
  6327. .page-user #center > * #edit-profile-adherent-field-first-name, .page-user #center > * #edit-profile-adherent-field-name,
  6328. .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,
  6329. .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,
  6330. .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,
  6331. .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,
  6332. .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,
  6333. .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,
  6334. .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,
  6335. .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,
  6336. .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,
  6337. .page-toboggan #center > * #edit-profile-adherent-field-naf, .page-toboggan #center > * #edit-profile-adherent-field-siret {
  6338. display: moz-inline-stack;
  6339. display: inline-block;
  6340. vertical-align: top;
  6341. zoom: 1;
  6342. *display: inline;
  6343. vertical-align: middle;
  6344. width: auto;
  6345. margin: 0 1em 0.5em 0; }
  6346. .page-user #center > * #edit-profile-adherent-field-first-name div, .page-user #center > * #edit-profile-adherent-field-name div,
  6347. .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,
  6348. .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,
  6349. .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,
  6350. .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,
  6351. .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,
  6352. .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,
  6353. .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,
  6354. .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,
  6355. .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,
  6356. .page-toboggan #center > * #edit-profile-adherent-field-naf div, .page-toboggan #center > * #edit-profile-adherent-field-siret div {
  6357. width: auto;
  6358. margin: 0;
  6359. padding: 0; }
  6360. .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 {
  6361. width: auto; }
  6362. .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 {
  6363. width: 8em; }
  6364. .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 {
  6365. width: 13em; }
  6366. .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 {
  6367. margin: 2em 0 0 0; }
  6368. .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 {
  6369. width: auto; }
  6370. .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 {
  6371. width: 4em; }
  6372. .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 {
  6373. display: moz-inline-stack;
  6374. display: inline-block;
  6375. vertical-align: top;
  6376. zoom: 1;
  6377. *display: inline;
  6378. vertical-align: middle; }
  6379. .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 {
  6380. width: 10em; }
  6381. .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 {
  6382. padding: 0; }
  6383. .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 {
  6384. width: 35em; }
  6385. .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 {
  6386. width: auto;
  6387. margin-right: 1em; }
  6388. .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 {
  6389. margin: 2em 0 0 0; }
  6390. .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 > * {
  6391. display: moz-inline-stack;
  6392. display: inline-block;
  6393. vertical-align: top;
  6394. zoom: 1;
  6395. *display: inline;
  6396. vertical-align: middle; }
  6397. .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 {
  6398. width: 35em; }
  6399. .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 {
  6400. border: 0 solid transparent; }
  6401. .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 {
  6402. display: inline; }
  6403. .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 {
  6404. padding: 0; }
  6405. /*
  6406. _ __
  6407. _____(_)___ ___ ____ / /__ ____ ___ _ _______
  6408. / ___/ / __ `__ \/ __ \/ / _ \/ __ \/ _ \ | /| / / ___/
  6409. (__ ) / / / / / / /_/ / / __/ / / / __/ |/ |/ (__ )
  6410. /____/_/_/ /_/ /_/ .___/_/\___/_/ /_/\___/|__/|__/____/
  6411. /_/
  6412. */
  6413. body.node-type-simplenews #content .inner-content {
  6414. text-align: center; }
  6415. body.node-type-simplenews #content article.node.node-simplenews {
  6416. display: moz-inline-stack;
  6417. display: inline-block;
  6418. vertical-align: top;
  6419. zoom: 1;
  6420. *display: inline;
  6421. max-width: 600px;
  6422. padding: 1em 0; }
  6423. body.node-type-simplenews #content article.node.node-simplenews tbody {
  6424. border-top: 0px; }
  6425. body.node-type-simplenews #content article.node.node-simplenews img {
  6426. max-width: 9999px; }
  6427. @media only screen and (max-width: 40em) {
  6428. body.node-type-simplenews #content article.node.node-simplenews {
  6429. max-width: 100%;
  6430. overflow-x: hidden; }
  6431. body.node-type-simplenews #content article.node.node-simplenews table {
  6432. width: 100% !important; }
  6433. body.node-type-simplenews #content article.node.node-simplenews td {
  6434. vertical-align: top; }
  6435. body.node-type-simplenews #content article.node.node-simplenews img {
  6436. max-width: 100%; }
  6437. body.node-type-simplenews #content article.node.node-simplenews p {
  6438. padding: 0 0.5em; } }
  6439. /*
  6440. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6441. | _ | _ | __| __| | | | | |_ _| _ | |_ _|
  6442. | __| | | | __| | --| | | | | | | | | | --| | |
  6443. |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_|
  6444. */
  6445. .page-node-11175 #main #center {
  6446. background: #fff url("../img/bg-contact.gif") no-repeat bottom right; }
  6447. .page-node-11175 #main .field-name-body p {
  6448. display: moz-inline-stack;
  6449. display: inline-block;
  6450. vertical-align: top;
  6451. zoom: 1;
  6452. *display: inline;
  6453. margin: 15px; }
  6454. .page-node-11175 #main .field-name-body p strong {
  6455. font-size: 18px; }
  6456. /*
  6457. _____ _____ _____ _____ _____ _____ _____
  6458. | _ | __ | | | | | | __|
  6459. | __| -|- -| --|- -| | | | | |
  6460. |__| |__|__|_____|_____|_____|_|___|_____|
  6461. */
  6462. @media only screen and (min-width: 40.0625em) {
  6463. 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 {
  6464. display: moz-inline-stack;
  6465. display: inline-block;
  6466. vertical-align: top;
  6467. zoom: 1;
  6468. *display: inline;
  6469. margin: 10px;
  6470. float: none; }
  6471. body.page-node-11187 .node-11187 .field-name-body div.column {
  6472. width: 22.4%; }
  6473. 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 {
  6474. min-height: 170px; }
  6475. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  6476. width: 46%; }
  6477. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  6478. min-height: 110px; }
  6479. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  6480. width: 92%; }
  6481. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  6482. width: auto;
  6483. max-width: 98%; }
  6484. body.page-node-11187 #block-materio-user-user-register {
  6485. width: 600px;
  6486. margin: 0 auto;
  6487. padding: 2em; } }
  6488. @media only screen and (max-width: 40em) {
  6489. body.page-node-11187 #block-system-help {
  6490. text-align: center; } }
  6491. body.page-node-11187 .node-11187 .field-name-body {
  6492. text-align: center; }
  6493. body.page-node-11187 .node-11187 .field-name-body > * {
  6494. text-align: left; }
  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. position: relative;
  6497. background-color: #fff;
  6498. border-radius: 5px;
  6499. background-clip: padding-box;
  6500. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  6501. overflow: hidden; }
  6502. .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 {
  6503. max-width: 500px;
  6504. margin: auto;
  6505. margin-bottom: 15px;
  6506. border: 1px solid #C6C6C6; }
  6507. 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 > * {
  6508. padding: 0 10px; }
  6509. 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 {
  6510. text-align: left;
  6511. margin: 5px 0 0 15px; }
  6512. 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 {
  6513. padding: 0 0 0 15px;
  6514. font-size: 18px;
  6515. font-style: italic;
  6516. font-weight: bold;
  6517. line-height: 1; }
  6518. 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 {
  6519. margin: 0;
  6520. padding: 0 15px; }
  6521. 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 {
  6522. list-style: none;
  6523. font-size: 12px; }
  6524. 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 {
  6525. content: "+ ";
  6526. font-weight: 900; }
  6527. 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 {
  6528. font-size: 12px;
  6529. margin: 0;
  6530. padding: 0 15px; }
  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. margin: 0;
  6533. border-radius: 0 0 5px 5px 0 0 0;
  6534. background-clip: padding-box;
  6535. border: 1px solid #fff;
  6536. min-height: 92px; }
  6537. 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 {
  6538. display: block;
  6539. width: 100%;
  6540. padding: 15px 0;
  6541. color: #1A1A1A;
  6542. text-decoration: none; }
  6543. 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 {
  6544. background-color: #C8C8C8; }
  6545. 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 {
  6546. background-color: #69CDCF; }
  6547. 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 {
  6548. background-color: #D476AE; }
  6549. 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 {
  6550. background-color: #E6DE1C; }
  6551. 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 {
  6552. background-color: #4BA13D; }
  6553. 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 {
  6554. min-height: 62px;
  6555. padding: 15px 0; }
  6556. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  6557. padding: 10px 0 0;
  6558. font-size: 24px; }
  6559. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  6560. padding: 0;
  6561. font-size: 24px;
  6562. text-align: center;
  6563. font-style: italic;
  6564. font-weight: 900;
  6565. cursor: pointer;
  6566. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6567. transition: text-shadow 0.3s ease-out; }
  6568. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  6569. font-size: 20px; }
  6570. 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 {
  6571. text-shadow: 0 0 3px white; }
  6572. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  6573. transition: text-shadow 0s ease-out;
  6574. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6575. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  6576. padding: 10px 0 0;
  6577. font-size: 24px;
  6578. top: 0; }
  6579. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  6580. min-height: 2em; }
  6581. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  6582. font-size: 14px;
  6583. min-height: 120px; }
  6584. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  6585. font-size: 14px;
  6586. text-align: left;
  6587. padding: 0 1em;
  6588. background-color: #ddd; }
  6589. /*
  6590. _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6591. | _ | \| | | __| __| | | | | | __| | __ | |
  6592. | | | | | __|__ |- -| | | | | | | __| | | -| | | |
  6593. |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_|
  6594. */
  6595. .node-11186 nav ul.links a.language-link {
  6596. display: none; }
  6597. #webform-client-form-11186 {
  6598. background-color: #e6e6e6;
  6599. border-radius: 10px;
  6600. background-clip: padding-box; }
  6601. @media only screen and (min-width: 40.0625em) {
  6602. #webform-client-form-11186 {
  6603. padding: 10px 30px; }
  6604. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6605. margin: 10px 0; }
  6606. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6607. width: auto; }
  6608. #webform-client-form-11186 fieldset {
  6609. border-radius: 5px;
  6610. background-clip: padding-box;
  6611. border-left: 1px solid #cccccc;
  6612. border-bottom: 1px solid #cccccc;
  6613. padding: 10px;
  6614. border-top-width: 0;
  6615. border-right-width: 0;
  6616. border-bottom-width: 0; }
  6617. #webform-client-form-11186 fieldset fieldset {
  6618. border: 0 solid #ddd;
  6619. padding: 0; }
  6620. #webform-client-form-11186 legend {
  6621. margin: 0;
  6622. font-size: 18px;
  6623. font-weight: 700; }
  6624. #webform-client-form-11186 .form-item {
  6625. margin: 0 20px 0 0; }
  6626. #webform-client-form-11186 label {
  6627. font-size: 12px;
  6628. width: 10em;
  6629. display: moz-inline-stack;
  6630. display: inline-block;
  6631. vertical-align: top;
  6632. zoom: 1;
  6633. *display: inline;
  6634. vertical-align: middle;
  6635. margin-right: 1em;
  6636. border-bottom: 1px solid #cccccc; }
  6637. #webform-client-form-11186 .description {
  6638. font-size: 10px;
  6639. width: 25em;
  6640. display: moz-inline-stack;
  6641. display: inline-block;
  6642. vertical-align: top;
  6643. zoom: 1;
  6644. *display: inline;
  6645. vertical-align: bottom;
  6646. margin-left: 1em;
  6647. color: #7f7f7f; }
  6648. #webform-client-form-11186 input.form-text {
  6649. width: 13em; } }
  6650. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  6651. #webform-client-form-11186 {
  6652. padding: 10px; }
  6653. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6654. margin: 0 0 10px 0; }
  6655. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  6656. width: 100%; }
  6657. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6658. width: 75%; }
  6659. #webform-client-form-11186 legend {
  6660. margin: 0;
  6661. font-size: 16px;
  6662. font-weight: 700; }
  6663. #webform-client-form-11186 .form-item {
  6664. margin: 0;
  6665. float: none; }
  6666. #webform-client-form-11186 label {
  6667. font-size: 12px;
  6668. width: 30%;
  6669. display: moz-inline-stack;
  6670. display: inline-block;
  6671. vertical-align: top;
  6672. zoom: 1;
  6673. *display: inline;
  6674. vertical-align: middle;
  6675. margin-right: 0.5em; }
  6676. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  6677. width: 60%; }
  6678. #webform-client-form-11186 #webform-component-infos {
  6679. font-size: 14px; } }
  6680. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  6681. display: moz-inline-stack;
  6682. display: inline-block;
  6683. vertical-align: top;
  6684. zoom: 1;
  6685. *display: inline; }
  6686. #webform-client-form-11186 #webform-component-column-left {
  6687. display: moz-inline-stack;
  6688. display: inline-block;
  6689. vertical-align: top;
  6690. zoom: 1;
  6691. *display: inline;
  6692. width: 25%;
  6693. border: none; }
  6694. #webform-client-form-11186 #webform-component-column-right {
  6695. display: moz-inline-stack;
  6696. display: inline-block;
  6697. vertical-align: top;
  6698. zoom: 1;
  6699. *display: inline;
  6700. min-width: 70%; }
  6701. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  6702. border: 1px solid #ddd;
  6703. border-radius: 5px;
  6704. background-clip: padding-box;
  6705. padding: 10px 5px;
  6706. margin: 5px 0;
  6707. background-color: #fff; }
  6708. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  6709. display: moz-inline-stack;
  6710. display: inline-block;
  6711. vertical-align: top;
  6712. zoom: 1;
  6713. *display: inline;
  6714. vertical-align: middle;
  6715. margin: 0px 5px; }
  6716. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  6717. font-size: 20px;
  6718. font-weight: 700;
  6719. display: moz-inline-stack;
  6720. display: inline-block;
  6721. vertical-align: top;
  6722. zoom: 1;
  6723. *display: inline;
  6724. vertical-align: middle;
  6725. margin: 0; }
  6726. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  6727. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  6728. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  6729. background-color: #69CDCF; }
  6730. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  6731. background-color: #D476AE; }
  6732. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  6733. background-color: #E6DE1C; }
  6734. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  6735. opacity: 0.4; }
  6736. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  6737. width: 200px;
  6738. font-size: 18px;
  6739. font-weight: 700; }
  6740. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6741. border: 0; }
  6742. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  6743. display: block; }
  6744. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  6745. display: moz-inline-stack;
  6746. display: inline-block;
  6747. vertical-align: top;
  6748. zoom: 1;
  6749. *display: inline; }
  6750. #webform-client-form-11186 #addressfield-wrapper {
  6751. margin-top: 1em; }
  6752. #webform-client-form-11186 .street-block .form-item {
  6753. display: moz-inline-stack;
  6754. display: inline-block;
  6755. vertical-align: top;
  6756. zoom: 1;
  6757. *display: inline; }
  6758. #webform-client-form-11186 #webform-component-column-right--collaborators {
  6759. margin: 20px 0;
  6760. overflow: hidden; }
  6761. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  6762. display: moz-inline-stack;
  6763. display: inline-block;
  6764. vertical-align: top;
  6765. zoom: 1;
  6766. *display: inline;
  6767. width: 33%; }
  6768. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  6769. display: block; }
  6770. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  6771. width: 6em; }
  6772. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  6773. width: 11em; }
  6774. #webform-client-form-11186 #webform-component-infos {
  6775. margin: 20px 0; }
  6776. #webform-client-form-11186 .form-actions {
  6777. padding: 0;
  6778. margin: 0;
  6779. border: 0px;
  6780. background-color: transparent;
  6781. text-align: left; }
  6782. #webform-client-form-11186 .form-actions .form-submit {
  6783. border: 2px solid #69CDCF;
  6784. background-color: #69CDCF;
  6785. color: #fff;
  6786. font-size: 18px;
  6787. padding: 0.2em 1em 0.3em;
  6788. border-radius: 0.3em;
  6789. background-clip: padding-box;
  6790. font-weight: bold;
  6791. margin-bottom: 9px;
  6792. cursor: pointer;
  6793. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6794. transition: text-shadow 0.2s ease-out; }
  6795. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  6796. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6797. #webform-client-form-11186 .form-actions .form-submit:active {
  6798. transition: text-shadow 0s ease-out;
  6799. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6800. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  6801. margin: 0;
  6802. font-size: 18px;
  6803. font-weight: 700;
  6804. border: none;
  6805. line-height: 40px; }
  6806. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  6807. display: moz-inline-stack;
  6808. display: inline-block;
  6809. vertical-align: top;
  6810. zoom: 1;
  6811. *display: inline; }
  6812. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  6813. width: auto; }
  6814. #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 {
  6815. margin: 0; }
  6816. #webform-client-form-11186 #edit-submitted-terms-of-services {
  6817. margin-bottom: 0.5em; }
  6818. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6819. margin: 0 0.3em 0 0; }
  6820. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6821. width: auto; }
  6822. /*
  6823. _____ _____ _____ _____ _____ _____ _____ _____ _____ _ _ _ _____ _____ _____ _____
  6824. | | | | | | _ | __ |_ _| | | | | __| | | | | __| | __ | |
  6825. | | | --| | --| | -| | | | | |- -| __| | | | | __| | | -| | | |
  6826. |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_|
  6827. */
  6828. #uc-cart-view-form {
  6829. background-color: #e6e6e6;
  6830. padding: 10px, 30px;
  6831. display: inline-block; }
  6832. #uc-cart-view-form table {
  6833. width: auto;
  6834. display: table;
  6835. background-color: #fff; }
  6836. #uc-cart-view-form table thead th {
  6837. border-bottom: none;
  6838. padding: 1em; }
  6839. #uc-cart-view-form table tbody {
  6840. border-top: none; }
  6841. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  6842. background-color: #fff;
  6843. border-bottom: none; }
  6844. #uc-cart-view-form table tbody td {
  6845. padding: 1em; }
  6846. #uc-cart-view-form fieldset {
  6847. border: none !important; }
  6848. #uc-cart-view-form .form-type-uc-quantity input {
  6849. width: 2em; }
  6850. #uc-cart-view-form .form-actions {
  6851. padding: 0;
  6852. margin: 0;
  6853. border: 0px;
  6854. background-color: transparent;
  6855. text-align: right;
  6856. display: block;
  6857. width: 100%; }
  6858. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  6859. display: block; }
  6860. #uc-cart-view-form .form-actions .form-submit {
  6861. font-size: 16px;
  6862. font-weight: bold;
  6863. padding: 0.1em 0.3em 0.2em;
  6864. border-radius: 0.3em;
  6865. background-clip: padding-box;
  6866. border: 2px solid #ccc;
  6867. background-color: #ccc;
  6868. color: #4D4D4D;
  6869. cursor: pointer;
  6870. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6871. transition: text-shadow 0.3s ease-out;
  6872. text-align: center;
  6873. text-decoration: none;
  6874. margin-left: 1em; }
  6875. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  6876. text-shadow: 0 0 3px white; }
  6877. #uc-cart-view-form .form-actions .form-submit:active {
  6878. transition: text-shadow 0s ease-out;
  6879. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6880. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  6881. font-size: 16px;
  6882. font-weight: bold;
  6883. padding: 0.1em 0.3em 0.2em;
  6884. border-radius: 0.3em;
  6885. background-clip: padding-box;
  6886. border: 2px solid #ccc;
  6887. background-color: #ccc;
  6888. color: #4D4D4D;
  6889. cursor: pointer;
  6890. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6891. transition: text-shadow 0.3s ease-out;
  6892. text-align: center;
  6893. text-decoration: none;
  6894. cursor: pointer;
  6895. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6896. transition: text-shadow 0.2s ease-out;
  6897. border-color: #69CDCF;
  6898. background-color: #69CDCF;
  6899. color: #fff; }
  6900. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6901. text-shadow: 0 0 3px white; }
  6902. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6903. transition: text-shadow 0s ease-out;
  6904. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6905. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6906. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6907. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6908. transition: text-shadow 0s ease-out;
  6909. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6910. /*
  6911. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6912. | | | | | | | | __| | | | | | |_ _| | __| | __ | |
  6913. | | | --| | --| | __| --| -| | | | | | | | __| | | -| | | |
  6914. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_|
  6915. */
  6916. #uc-cart-checkout-form {
  6917. background-color: #e6e6e6;
  6918. padding: 10px, 30px; }
  6919. #uc-cart-checkout-form fieldset {
  6920. border: none !important; }
  6921. #uc-cart-checkout-form fieldset.form-row {
  6922. padding-bottom: 20px;
  6923. margin-bottom: 20px; }
  6924. #uc-cart-checkout-form fieldset.form-column {
  6925. display: moz-inline-stack;
  6926. display: inline-block;
  6927. vertical-align: top;
  6928. zoom: 1;
  6929. *display: inline;
  6930. max-width: 39%;
  6931. clear: both;
  6932. float: none;
  6933. margin: 15px 1em; }
  6934. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  6935. margin: 10px 0; }
  6936. #uc-cart-checkout-form fieldset.form-column-right {
  6937. border-left: 1px solid #ccc;
  6938. margin-left: 2em;
  6939. padding-left: 2em; }
  6940. #uc-cart-checkout-form legend {
  6941. margin: 0;
  6942. font-size: 18px;
  6943. font-weight: 700;
  6944. border: none;
  6945. line-height: 2; }
  6946. #uc-cart-checkout-form .fieldset-description {
  6947. font-size: 12px; }
  6948. #uc-cart-checkout-form .fieldset-wrapper {
  6949. font-size: 12px; }
  6950. #uc-cart-checkout-form .form-item {
  6951. margin: 0 20px 0 0; }
  6952. #uc-cart-checkout-form .description {
  6953. font-size: 10px;
  6954. width: 25em;
  6955. display: moz-inline-stack;
  6956. display: inline-block;
  6957. vertical-align: top;
  6958. zoom: 1;
  6959. *display: inline;
  6960. vertical-align: bottom;
  6961. margin-left: 1em;
  6962. color: #7f7f7f; }
  6963. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  6964. display: moz-inline-stack;
  6965. display: inline-block;
  6966. vertical-align: top;
  6967. zoom: 1;
  6968. *display: inline;
  6969. border-radius: 5px;
  6970. background-clip: padding-box;
  6971. padding: 10px;
  6972. background-color: #fff; }
  6973. #uc-cart-checkout-form #cart-pane table {
  6974. font-size: 14px;
  6975. min-width: 20em; }
  6976. #uc-cart-checkout-form #cart-pane table td.price {
  6977. width: 4em; }
  6978. #uc-cart-checkout-form #cart-pane tbody {
  6979. border: none; }
  6980. #uc-cart-checkout-form #cart-pane tr {
  6981. background-color: transparent;
  6982. border: none; }
  6983. #uc-cart-checkout-form #cart-pane td {
  6984. padding: 0 5px;
  6985. vertical-align: bottom; }
  6986. #uc-cart-checkout-form #cart-pane td.products {
  6987. width: auto; }
  6988. #uc-cart-checkout-form #cart-pane td.products a {
  6989. color: inherit;
  6990. font-weight: 700; }
  6991. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  6992. margin: 0;
  6993. font-size: 12px; }
  6994. #uc-cart-checkout-form #cart-pane td.products li {
  6995. list-style: none; }
  6996. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  6997. font-size: 16px;
  6998. font-weight: 700; }
  6999. #uc-cart-checkout-form #customer-pane {
  7000. width: 35em; }
  7001. #uc-cart-checkout-form #billing-pane label {
  7002. font-size: 12px;
  7003. width: 8em;
  7004. display: moz-inline-stack;
  7005. display: inline-block;
  7006. vertical-align: top;
  7007. zoom: 1;
  7008. *display: inline;
  7009. vertical-align: middle;
  7010. margin-right: 1em;
  7011. border-bottom: 1px solid #cccccc; }
  7012. #uc-cart-checkout-form #billing-pane input.form-text {
  7013. width: 13em; }
  7014. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  7015. background-color: #fff;
  7016. border-radius: 5px;
  7017. background-clip: padding-box;
  7018. padding: 10px; }
  7019. #uc-cart-checkout-form #payment-pane #line-items-div {
  7020. float: none;
  7021. border: none;
  7022. display: moz-inline-stack;
  7023. display: inline-block;
  7024. vertical-align: top;
  7025. zoom: 1;
  7026. *display: inline;
  7027. margin: 10px 0 20px; }
  7028. #uc-cart-checkout-form #payment-pane #line-items-div table {
  7029. font-size: 14px;
  7030. min-width: 20em; }
  7031. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  7032. width: 4em; }
  7033. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  7034. border: none; }
  7035. #uc-cart-checkout-form #payment-pane #line-items-div td {
  7036. padding: 0 5px; }
  7037. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  7038. font-weight: 500; }
  7039. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  7040. font-size: 16px;
  7041. font-weight: 700;
  7042. text-align: right; }
  7043. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  7044. width: auto;
  7045. border-bottom: none; }
  7046. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  7047. border: 1px solid #ddd;
  7048. border-radius: 5px;
  7049. margin: 0.5em;
  7050. padding: 0.5em; }
  7051. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  7052. font-weight: bold; }
  7053. #uc-cart-checkout-form #payment-pane #payment-details {
  7054. width: 25em;
  7055. border-top: none;
  7056. padding: 0;
  7057. margin: 0; }
  7058. #uc-cart-checkout-form #edit-actions {
  7059. width: 100%;
  7060. padding: 1em 0;
  7061. margin: 0;
  7062. border: 0px;
  7063. background-color: transparent;
  7064. text-align: center; }
  7065. #uc-cart-checkout-form #edit-actions .form-submit {
  7066. font-size: 16px;
  7067. font-weight: bold;
  7068. padding: 0.1em 0.3em 0.2em;
  7069. border-radius: 0.3em;
  7070. background-clip: padding-box;
  7071. border: 2px solid #ccc;
  7072. background-color: #ccc;
  7073. color: #4D4D4D;
  7074. cursor: pointer;
  7075. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7076. transition: text-shadow 0.3s ease-out;
  7077. text-align: center;
  7078. text-decoration: none;
  7079. margin-left: 1em; }
  7080. #uc-cart-checkout-form #edit-actions .form-submit:hover, #uc-cart-checkout-form #edit-actions .form-submit:focus {
  7081. text-shadow: 0 0 3px white; }
  7082. #uc-cart-checkout-form #edit-actions .form-submit:active {
  7083. transition: text-shadow 0s ease-out;
  7084. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7085. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue {
  7086. font-size: 16px;
  7087. font-weight: bold;
  7088. padding: 0.1em 0.3em 0.2em;
  7089. border-radius: 0.3em;
  7090. background-clip: padding-box;
  7091. border: 2px solid #ccc;
  7092. background-color: #ccc;
  7093. color: #4D4D4D;
  7094. cursor: pointer;
  7095. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7096. transition: text-shadow 0.3s ease-out;
  7097. text-align: center;
  7098. text-decoration: none;
  7099. cursor: pointer;
  7100. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7101. transition: text-shadow 0.2s ease-out;
  7102. border-color: #69CDCF;
  7103. background-color: #69CDCF;
  7104. color: #fff; }
  7105. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  7106. text-shadow: 0 0 3px white; }
  7107. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  7108. transition: text-shadow 0s ease-out;
  7109. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7110. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  7111. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7112. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  7113. transition: text-shadow 0s ease-out;
  7114. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7115. /*
  7116. _____ _____ _____ _____ _____ _____
  7117. | | | | | | _ | __ |_ _|
  7118. | | | --| | --| | -| | |
  7119. |_____|_____| |_____|__|__|__|__| |_|
  7120. &&
  7121. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ ____ _____ _____ _____ _____ _____
  7122. | | | | | | | | __| | | | | | |_ _| | | | _ | | | | \| _ |_ _| | | | |
  7123. | | | --| | --| | __| --| -| | | | | | | | | | | |__|- -| | | | | | |- -| | | | | |
  7124. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___|
  7125. */
  7126. .page-cart-checkout-review #content > .inner-content {
  7127. display: inline-block;
  7128. padding: 1em; }
  7129. .page-cart-checkout-review #edit-actions {
  7130. margin: 0;
  7131. padding: 0; }
  7132. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  7133. display: block; }
  7134. .page-cart-checkout-review #review-instructions {
  7135. width: 30em;
  7136. padding: 1em 0; }
  7137. .page-cart-checkout-review table.order-review-table {
  7138. border: none; }
  7139. .page-cart-checkout-review table.order-review-table .pane-title-row {
  7140. border: none;
  7141. background-color: transparent;
  7142. text-align: left;
  7143. font-size: 18px; }
  7144. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  7145. padding: 1em 0 0 0; }
  7146. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  7147. background-color: transparent;
  7148. border: none; }
  7149. .page-cart-checkout-review table.order-review-table td.title-col {
  7150. padding: 0;
  7151. text-align: left; }
  7152. .page-cart-checkout-review table.order-review-table td.data-col {
  7153. padding: 0;
  7154. width: 75%; }
  7155. .page-cart-checkout-review table.order-review-table .review-button-row {
  7156. border: none;
  7157. background-color: transparent; }
  7158. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  7159. padding: 3em 0 0 0; }
  7160. .page-cart-checkout-review table.order-review-table .review-button-row form {
  7161. margin: 0 0.5em 0 0;
  7162. display: moz-inline-stack;
  7163. display: inline-block;
  7164. vertical-align: top;
  7165. zoom: 1;
  7166. *display: inline; }
  7167. .page-cart-checkout-review #edit-actions {
  7168. border: 0px;
  7169. background-color: transparent;
  7170. text-align: right; }
  7171. .page-cart-checkout-review input.form-submit {
  7172. font-size: 16px;
  7173. font-weight: bold;
  7174. padding: 0.1em 0.3em 0.2em;
  7175. border-radius: 0.3em;
  7176. background-clip: padding-box;
  7177. border: 2px solid #ccc;
  7178. background-color: #ccc;
  7179. color: #4D4D4D;
  7180. cursor: pointer;
  7181. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7182. transition: text-shadow 0.3s ease-out;
  7183. text-align: center;
  7184. text-decoration: none;
  7185. margin-left: 1em; }
  7186. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  7187. text-shadow: 0 0 3px white; }
  7188. .page-cart-checkout-review input.form-submit:active {
  7189. transition: text-shadow 0s ease-out;
  7190. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7191. .page-cart-checkout-review input.form-submit#edit-submit {
  7192. font-size: 16px;
  7193. font-weight: bold;
  7194. padding: 0.1em 0.3em 0.2em;
  7195. border-radius: 0.3em;
  7196. background-clip: padding-box;
  7197. border: 2px solid #ccc;
  7198. background-color: #ccc;
  7199. color: #4D4D4D;
  7200. cursor: pointer;
  7201. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7202. transition: text-shadow 0.3s ease-out;
  7203. text-align: center;
  7204. text-decoration: none;
  7205. cursor: pointer;
  7206. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7207. transition: text-shadow 0.2s ease-out;
  7208. border-color: #69CDCF;
  7209. background-color: #69CDCF;
  7210. color: #fff; }
  7211. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7212. text-shadow: 0 0 3px white; }
  7213. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7214. transition: text-shadow 0s ease-out;
  7215. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7216. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7217. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7218. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7219. transition: text-shadow 0s ease-out;
  7220. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7221. /*
  7222. ____ _____ ____ _____ _____ _____ _____ _____ _____ _____
  7223. | \| | \| _ | |_ _| | | | | __|
  7224. | | |- -| | | | --| | | |- -| | | | | __|
  7225. |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____|
  7226. |__|
  7227. */
  7228. #didactique-page .node-didactique {
  7229. border-radius: 5px;
  7230. background-clip: padding-box;
  7231. background-color: #FFF;
  7232. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7233. max-width: 850px;
  7234. font-size: 14px;
  7235. background-color: #fff;
  7236. margin: 1em auto;
  7237. padding: 1em; }
  7238. #didactique-page .node-didactique .field-name-field-emvideo {
  7239. margin: 1em 0; }
  7240. #didactique-page .node-didactique .field-name-title-field {
  7241. font-size: 24px;
  7242. font-weight: 900;
  7243. font-style: italic;
  7244. padding: 5px 0; }
  7245. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  7246. max-width: 100%; }
  7247. @media only screen and (min-width: 40.0625em) {
  7248. #didactique-page .side {
  7249. display: moz-inline-stack;
  7250. display: inline-block;
  7251. vertical-align: top;
  7252. zoom: 1;
  7253. *display: inline;
  7254. vertical-align: top; }
  7255. #didactique-page .group-sideleft {
  7256. width: 60%; }
  7257. #didactique-page .group-sideright {
  7258. width: 39%; } }
  7259. /*
  7260. _ _ _ _____ _____ _ _ _ _____ _____ _____ _____
  7261. | | | | | | | | | | | __| | _ | __ | __|
  7262. | | | | | | | | | | | __| | | -| __|
  7263. |_____|__|__|_____| |_____|_____| |__|__|__|__|_____|
  7264. */
  7265. @media only screen and (max-width: 40em) {
  7266. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  7267. display: none; } }
  7268. /*
  7269. _ _
  7270. _____ ___|_|___| |_ ___ ___ ___ ___ ___ ___
  7271. | | .'| | | _| -_| | .'| | _| -_|
  7272. |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___|
  7273. */
  7274. .maintenance-page #container, .maintenance-page #header {
  7275. text-align: center;
  7276. padding: 0;
  7277. position: relative; }
  7278. .maintenance-page #main {
  7279. background-color: transparent; }
  7280. .maintenance-page #header h1.site-name {
  7281. font-size: 36px;
  7282. margin: 0;
  7283. padding-left: 0; }
  7284. .maintenance-page h2.site-slogan {
  7285. font-size: 16px;
  7286. font-weight: 300;
  7287. margin: 0;
  7288. line-height: 1.1; }
  7289. /*
  7290. _____ _____ _____
  7291. | __| _ | |
  7292. | __| | | |
  7293. |__| |__|__|__ _|
  7294. |__|
  7295. */
  7296. .page-faq-page #main {
  7297. background: #fff url("../img/bg-faq.png") no-repeat bottom right; }
  7298. #content .faq-content .faq-description {
  7299. font-size: 12px;
  7300. padding-bottom: 2em; }
  7301. #content .faq-content ul.faq-ul-questions-top {
  7302. margin: 0; }
  7303. #content .faq-content ul.faq-ul-questions-top li {
  7304. list-style: none; }
  7305. #content .faq-content ul.faq-ul-questions-top li a {
  7306. font-size: 18px;
  7307. font-weight: 500; }
  7308. #content .faq-content h3.faq-header {
  7309. font-size: 20px;
  7310. font-weight: 700;
  7311. line-height: 1.2;
  7312. margin: 0; }
  7313. #content .faq-content h3.faq-header a {
  7314. color: #000; }
  7315. #content .faq-content .faq-dl-hide-answer {
  7316. padding: 0; }
  7317. #content .faq-content .faq-category-group {
  7318. padding-bottom: 1em; }
  7319. #content .faq-content .faq-question-answer {
  7320. padding: 0.3em 0 0 0.8em; }
  7321. #content .faq-content .faq-question-answer .faq-question {
  7322. font-size: 16px;
  7323. padding: 0;
  7324. font-weight: 500; }
  7325. #content .faq-content .faq-question-answer .faq-question a {
  7326. color: #000; }
  7327. #content .faq-content .faq-question-answer .faq-answer {
  7328. padding: 0;
  7329. margin-bottom: 2em;
  7330. font-size: 12px; }
  7331. #content .faq-content .field-name-body img {
  7332. max-width: 50%;
  7333. height: auto; }
  7334. /*
  7335. __ __ _ _____
  7336. / / / /___ ____ ___ ___ | | / /__ / /_/ / __ \/ __ `__ \/ _ \ | | / /__/ /
  7337. / __ / /_/ / / / / / / __/ | |/ // __/
  7338. /_/ /_/\____/_/ /_/ /_/\___/ |___//____/
  7339. */
  7340. body.home-v2 #center {
  7341. background-color: transparent;
  7342. padding: 0; }
  7343. #home-v2 h2 {
  7344. font-size: 2.1em;
  7345. font-weight: 300; }
  7346. #home-v2 a {
  7347. color: #000; }
  7348. #home-v2 .field-name-field-liens {
  7349. margin-top: 1em; }
  7350. #home-v2 .field-name-field-liens .field-item {
  7351. display: moz-inline-stack;
  7352. display: inline-block;
  7353. vertical-align: top;
  7354. zoom: 1;
  7355. *display: inline;
  7356. margin: 0 0.5em 0.5em 0; }
  7357. #home-v2 .field-name-field-liens a {
  7358. font-weight: 700;
  7359. display: moz-inline-stack;
  7360. display: inline-block;
  7361. vertical-align: top;
  7362. zoom: 1;
  7363. *display: inline;
  7364. padding: 0.5em 1em 0.7em;
  7365. border-radius: 5px;
  7366. background-clip: padding-box;
  7367. background-color: rgba(255, 255, 255, 0.8); }
  7368. body.logged-in #home-v2 .field-name-field-liens a.visitor {
  7369. display: none; }
  7370. body.not-logged-in #home-v2 .field-name-field-liens a.member {
  7371. display: none; }
  7372. #home-v2 .panel-separator {
  7373. clear: both; }
  7374. #home-v2 > .panel-panel > div > .panel-pane {
  7375. overflow: hidden; }
  7376. #home-v2 > .panel-panel > div > .panel-pane.pane-node {
  7377. border-radius: 5px;
  7378. background-clip: padding-box;
  7379. overflow: hidden; }
  7380. #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node {
  7381. position: relative;
  7382. width: 100%;
  7383. height: 100%;
  7384. overflow: hidden; }
  7385. #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a {
  7386. background-color: rgba(255, 255, 255, 0.7);
  7387. border-radius: 5px;
  7388. background-clip: padding-box;
  7389. padding: 15px; }
  7390. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7391. height: auto;
  7392. background-color: #f7f4ed;
  7393. margin-top: 2em;
  7394. margin-bottom: 2em;
  7395. padding-top: 0; }
  7396. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7397. margin: 0 auto; }
  7398. @media only screen and (max-width: 40em) {
  7399. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7400. width: 320px;
  7401. height: 180px; } }
  7402. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  7403. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7404. width: 640px;
  7405. height: 360px; } }
  7406. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  7407. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7408. width: 800px;
  7409. height: 450px; } }
  7410. @media only screen and (min-width: 90.0625em) {
  7411. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7412. width: 1024px;
  7413. height: 576px; } }
  7414. #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 {
  7415. width: 100%;
  7416. height: 100%; }
  7417. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field {
  7418. display: none; }
  7419. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body {
  7420. margin-top: 1em;
  7421. text-align: center; }
  7422. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7423. text-align: left;
  7424. display: moz-inline-stack;
  7425. display: inline-block;
  7426. vertical-align: top;
  7427. zoom: 1;
  7428. *display: inline;
  7429. width: 35%;
  7430. margin-left: 2%;
  7431. font-size: 0.756em; }
  7432. @media only screen and (max-width: 40em) {
  7433. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7434. width: 100%;
  7435. text-align: center; } }
  7436. @media only screen and (max-width: 40em) {
  7437. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7438. margin-top: 0.5em; } }
  7439. #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 {
  7440. margin: 2em 0; }
  7441. #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 {
  7442. margin: 0px;
  7443. text-align: center; }
  7444. #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 {
  7445. margin: 0 1em 0 0;
  7446. padding: 0px;
  7447. list-style: none;
  7448. height: 2.5em;
  7449. display: moz-inline-stack;
  7450. display: inline-block;
  7451. vertical-align: top;
  7452. zoom: 1;
  7453. *display: inline; }
  7454. #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 {
  7455. background-color: #4d4d4d;
  7456. border-radius: 5px;
  7457. background-clip: padding-box;
  7458. padding: 5px 12px 7px;
  7459. color: #f7f4ed;
  7460. font-size: 18px;
  7461. font-weight: 500;
  7462. transition: opacity,background-color 0.2s ease-out; }
  7463. #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"] {
  7464. background-color: #e6de1c;
  7465. cursor: pointer;
  7466. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7467. transition: text-shadow 0.2s ease-out; }
  7468. #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 {
  7469. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7470. #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 {
  7471. transition: text-shadow 0s ease-out;
  7472. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7473. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7474. padding: 2em 0;
  7475. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  7476. text-align: center; }
  7477. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content {
  7478. display: moz-inline-stack;
  7479. display: inline-block;
  7480. vertical-align: top;
  7481. zoom: 1;
  7482. *display: inline;
  7483. text-align: left; }
  7484. #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 {
  7485. font-weight: 900;
  7486. font-style: italic;
  7487. padding: 5px 0;
  7488. margin: 0;
  7489. line-height: 1;
  7490. display: moz-inline-stack;
  7491. display: inline-block;
  7492. vertical-align: top;
  7493. zoom: 1;
  7494. *display: inline;
  7495. vertical-align: middle; }
  7496. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 {
  7497. font-size: 24px; }
  7498. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 {
  7499. font-size: 16px; }
  7500. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form {
  7501. margin: 0 1em;
  7502. padding: 0px;
  7503. display: moz-inline-stack;
  7504. display: inline-block;
  7505. vertical-align: top;
  7506. zoom: 1;
  7507. *display: inline;
  7508. vertical-align: middle; }
  7509. #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 {
  7510. margin: 0;
  7511. position: relative;
  7512. display: moz-inline-stack;
  7513. display: inline-block;
  7514. vertical-align: top;
  7515. zoom: 1;
  7516. *display: inline;
  7517. vertical-align: middle; }
  7518. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-account {
  7519. margin-right: 5px; }
  7520. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7521. font-size: 12px;
  7522. border-radius: 5px;
  7523. background-clip: padding-box;
  7524. margin-bottom: 4px; }
  7525. .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7526. margin-right: 5px; }
  7527. #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 {
  7528. width: 11em; }
  7529. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text {
  7530. width: 7em; }
  7531. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check {
  7532. position: absolute;
  7533. bottom: 100%;
  7534. z-index: 9999;
  7535. background-image: none;
  7536. height: auto;
  7537. padding: 5px;
  7538. border-radius: 5px;
  7539. background-clip: padding-box;
  7540. margin-bottom: 10px;
  7541. font-size: 10px;
  7542. background-color: #fff;
  7543. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  7544. transition: bottom 0.1s ease-out; }
  7545. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error {
  7546. background-color: #f3968d;
  7547. color: #fff; }
  7548. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok {
  7549. display: none; }
  7550. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit {
  7551. font-size: 16px;
  7552. padding: 0.1em 0.6em 0.2em;
  7553. border-radius: 0.3em;
  7554. background-clip: padding-box;
  7555. font-weight: bold;
  7556. margin-bottom: 4px; }
  7557. #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 {
  7558. margin-bottom: 0;
  7559. display: block;
  7560. line-height: 1; }
  7561. #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 > * {
  7562. display: moz-inline-stack;
  7563. display: inline-block;
  7564. vertical-align: top;
  7565. zoom: 1;
  7566. *display: inline;
  7567. vertical-align: middle;
  7568. margin: 0; }
  7569. #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 {
  7570. font-size: 10px;
  7571. background-color: #fff;
  7572. border-radius: 3px;
  7573. background-clip: padding-box; }
  7574. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit {
  7575. border: 2px solid #69CDCF;
  7576. background-color: #69CDCF;
  7577. color: #fff;
  7578. cursor: pointer;
  7579. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7580. transition: text-shadow 0.2s ease-out; }
  7581. #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 {
  7582. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7583. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:active {
  7584. transition: text-shadow 0s ease-out;
  7585. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7586. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] {
  7587. background-color: #ddd;
  7588. border: 2px solid #ddd; }
  7589. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit {
  7590. border: 2px solid #E6DE1C;
  7591. background-color: #E6DE1C;
  7592. color: #fff;
  7593. cursor: pointer;
  7594. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7595. transition: text-shadow 0.2s ease-out; }
  7596. #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 {
  7597. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7598. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:active {
  7599. transition: text-shadow 0s ease-out;
  7600. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7601. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews {
  7602. display: none; }
  7603. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join {
  7604. display: moz-inline-stack;
  7605. display: inline-block;
  7606. vertical-align: top;
  7607. zoom: 1;
  7608. *display: inline;
  7609. vertical-align: middle;
  7610. margin: 0 1em;
  7611. font-size: 16px;
  7612. padding: 0.1em 0.3em 0.2em;
  7613. border-radius: 0.3em;
  7614. background-clip: padding-box;
  7615. font-weight: bold;
  7616. border: 2px solid #69CDCF;
  7617. background-color: #69CDCF;
  7618. color: #fff;
  7619. cursor: pointer;
  7620. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7621. transition: text-shadow 0.2s ease-out;
  7622. text-align: center;
  7623. text-decoration: none; }
  7624. #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 {
  7625. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7626. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:active {
  7627. transition: text-shadow 0s ease-out;
  7628. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7629. @media only screen and (max-width: 40em) {
  7630. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7631. background-position: 160% 50%;
  7632. min-height: 60px;
  7633. padding: 15px 0; }
  7634. #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 {
  7635. width: 7em; } }
  7636. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error {
  7637. color: #b94a48;
  7638. font-size: 12px; }
  7639. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7640. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7641. transition: box-shadow 0.3s ease-out;
  7642. height: 450px;
  7643. margin-top: 15px;
  7644. background-color: #fff;
  7645. position: relative; }
  7646. #home-v2 > .panel-panel > div > .panel-pane.showroom:hover {
  7647. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7648. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content {
  7649. width: 100%;
  7650. height: 100%;
  7651. position: relative; }
  7652. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node {
  7653. position: absolute;
  7654. height: 100%;
  7655. width: 100%; }
  7656. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7657. position: absolute;
  7658. width: 100%;
  7659. height: 100%;
  7660. overflow: hidden; }
  7661. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img {
  7662. width: 100%;
  7663. margin-top: -10%; }
  7664. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7665. position: relative;
  7666. z-index: 2;
  7667. width: 30%;
  7668. margin: 3em 2em; }
  7669. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content {
  7670. background-color: rgba(255, 255, 255, 0.8);
  7671. padding: 1em;
  7672. border-radius: 5px;
  7673. background-clip: padding-box; }
  7674. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field {
  7675. font-size: 2.1em;
  7676. font-weight: 300; }
  7677. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body {
  7678. margin-top: 0.5em; }
  7679. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7680. content: url("../img/bulle.png");
  7681. transform: scale(0.8);
  7682. position: absolute;
  7683. bottom: -120px;
  7684. right: -20px;
  7685. z-index: 10; }
  7686. @media only screen and (max-width: 40em) {
  7687. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7688. margin-top: 10px; }
  7689. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7690. position: absolute;
  7691. width: 400%;
  7692. height: 100%;
  7693. overflow: hidden; }
  7694. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7695. width: auto;
  7696. padding: 2%;
  7697. margin: 2%; }
  7698. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body {
  7699. font-size: 0.756em;
  7700. margin-top: 0.5em; }
  7701. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7702. opacity: 0.4; } }
  7703. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7704. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7705. transition: box-shadow 0.3s ease-out;
  7706. height: 450px;
  7707. margin-top: 30px;
  7708. background-color: #FFF;
  7709. position: relative; }
  7710. #home-v2 > .panel-panel > div > .panel-pane.bdd:hover {
  7711. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7712. #home-v2 > .panel-panel > div > .panel-pane.bdd .links a {
  7713. background-color: #e6e6e6; }
  7714. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7715. display: moz-inline-stack;
  7716. display: inline-block;
  7717. vertical-align: top;
  7718. zoom: 1;
  7719. *display: inline;
  7720. width: 60%;
  7721. height: 100%;
  7722. overflow: hidden; }
  7723. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img {
  7724. max-width: 2000px; }
  7725. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7726. display: moz-inline-stack;
  7727. display: inline-block;
  7728. vertical-align: top;
  7729. zoom: 1;
  7730. *display: inline;
  7731. width: 35%;
  7732. padding: 1em;
  7733. border-radius: 5px;
  7734. background-clip: padding-box; }
  7735. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field {
  7736. font-size: 2.1em;
  7737. font-weight: 300; }
  7738. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body {
  7739. margin-top: 1em; }
  7740. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a {
  7741. background-color: rgba(230, 230, 230, 0.8); }
  7742. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7743. content: url("../img/boule.png");
  7744. transform: scale(0.8);
  7745. position: absolute;
  7746. bottom: -50px;
  7747. left: -50px; }
  7748. @media only screen and (max-width: 40em) {
  7749. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7750. height: auto; }
  7751. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7752. width: 100%;
  7753. display: block;
  7754. height: 310px;
  7755. overflow: hidden; }
  7756. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7757. display: block;
  7758. width: 100%;
  7759. z-index: 1;
  7760. padding: 0; }
  7761. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper > * {
  7762. padding: 1em; }
  7763. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7764. opacity: 0.6;
  7765. z-index: 0; } }
  7766. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7767. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7768. transition: box-shadow 0.3s ease-out;
  7769. position: relative;
  7770. height: 300px;
  7771. margin-top: 30px;
  7772. background-color: #000;
  7773. color: #FFF; }
  7774. #home-v2 > .panel-panel > div > .panel-pane.formations:hover {
  7775. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7776. #home-v2 > .panel-panel > div > .panel-pane.formations a {
  7777. color: #FFF; }
  7778. #home-v2 > .panel-panel > div > .panel-pane.formations .node {
  7779. padding: 0 0 0 30%;
  7780. width: 70%; }
  7781. #home-v2 > .panel-panel > div > .panel-pane.formations .node:before {
  7782. content: " ";
  7783. background: transparent url("../img/formations.png") no-repeat center center;
  7784. background-clip: padding-box;
  7785. background-size: contain;
  7786. position: absolute;
  7787. left: 0;
  7788. z-index: 2;
  7789. width: 30%;
  7790. height: 100%; }
  7791. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper {
  7792. padding: 1em;
  7793. position: relative; }
  7794. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field {
  7795. font-size: 2.1em;
  7796. font-weight: 300; }
  7797. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body {
  7798. margin-top: 1em; }
  7799. @media only screen and (max-width: 40em) {
  7800. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7801. height: auto; } }
  7802. #home-v2 > .panel-panel > div > .panel-pane.services {
  7803. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7804. transition: box-shadow 0.3s ease-out;
  7805. background-color: #FFF;
  7806. height: 300px;
  7807. margin-top: 30px; }
  7808. #home-v2 > .panel-panel > div > .panel-pane.services:hover {
  7809. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7810. #home-v2 > .panel-panel > div > .panel-pane.services .node {
  7811. padding: 0 30% 0 0;
  7812. width: 70%; }
  7813. #home-v2 > .panel-panel > div > .panel-pane.services .node:before {
  7814. content: " ";
  7815. background: transparent url("../img/services.png") no-repeat center center;
  7816. background-clip: padding-box;
  7817. background-size: contain;
  7818. position: absolute;
  7819. right: 0;
  7820. z-index: 2;
  7821. width: 30%;
  7822. height: 100%; }
  7823. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper {
  7824. padding: 1em;
  7825. position: relative; }
  7826. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field {
  7827. font-size: 2.1em;
  7828. font-weight: 300; }
  7829. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body {
  7830. margin-top: 1em; }
  7831. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-field-liens a {
  7832. background-color: rgba(230, 230, 230, 0.8); }
  7833. @media only screen and (max-width: 40em) {
  7834. #home-v2 > .panel-panel > div > .panel-pane.services {
  7835. height: auto; } }
  7836. #home-v2 > .panel-panel > div > .panel-pane.publication {
  7837. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7838. transition: box-shadow 0.3s ease-out;
  7839. position: relative;
  7840. margin-top: 30px;
  7841. padding: 1em;
  7842. background-color: #000;
  7843. border-radius: 10px;
  7844. background-clip: padding-box; }
  7845. #home-v2 > .panel-panel > div > .panel-pane.publication:hover {
  7846. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7847. #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 {
  7848. color: #fff; }
  7849. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7850. display: moz-inline-stack;
  7851. display: inline-block;
  7852. vertical-align: top;
  7853. zoom: 1;
  7854. *display: inline;
  7855. width: 30%; }
  7856. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 {
  7857. display: none; }
  7858. @media only screen and (max-width: 40em) {
  7859. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7860. display: block;
  7861. width: 90%;
  7862. margin-bottom: 1em; } }
  7863. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7864. background-color: #e6e6e6;
  7865. border-radius: 10px;
  7866. background-clip: padding-box;
  7867. margin-top: 30px;
  7868. padding-top: 1em;
  7869. padding-bottom: 1em;
  7870. position: relative; }
  7871. #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 {
  7872. font-size: 30px; }
  7873. @media only screen and (min-width: 40.0625em) {
  7874. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper {
  7875. margin: 0 auto;
  7876. max-width: 80rem;
  7877. width: 100%; }
  7878. #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 {
  7879. content: " ";
  7880. display: table; }
  7881. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after {
  7882. clear: both; }
  7883. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7884. overflow: hidden;
  7885. padding-left: 0.9375rem;
  7886. padding-right: 0.9375rem;
  7887. width: 33.33333%;
  7888. float: left;
  7889. padding: 0em;
  7890. margin-left: 1em; }
  7891. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first {
  7892. width: auto; }
  7893. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) {
  7894. width: 31%; }
  7895. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7896. margin: 0; }
  7897. #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 {
  7898. margin: 0;
  7899. height: 610px; } }
  7900. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom {
  7901. margin: 0 auto;
  7902. max-width: 80rem;
  7903. width: 100%;
  7904. margin-top: 1.5em;
  7905. margin-bottom: 1.5em; }
  7906. #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 {
  7907. content: " ";
  7908. display: table; }
  7909. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after {
  7910. clear: both; }
  7911. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside {
  7912. padding-left: 0.9375rem;
  7913. padding-right: 0.9375rem;
  7914. width: 100%;
  7915. float: left; }
  7916. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p {
  7917. display: none; }
  7918. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes {
  7919. margin: 0 0 0.5em 0; }
  7920. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item {
  7921. display: moz-inline-stack;
  7922. display: inline-block;
  7923. vertical-align: top;
  7924. zoom: 1;
  7925. *display: inline;
  7926. margin-right: 1em; }
  7927. #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 {
  7928. vertical-align: middle; }
  7929. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail {
  7930. display: moz-inline-stack;
  7931. display: inline-block;
  7932. vertical-align: top;
  7933. zoom: 1;
  7934. *display: inline;
  7935. margin: 0; }
  7936. #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 {
  7937. display: moz-inline-stack;
  7938. display: inline-block;
  7939. vertical-align: top;
  7940. zoom: 1;
  7941. *display: inline;
  7942. margin-right: 1em; }
  7943. #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 {
  7944. display: moz-inline-stack;
  7945. display: inline-block;
  7946. vertical-align: top;
  7947. zoom: 1;
  7948. *display: inline; }
  7949. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews {
  7950. border-radius: 5px;
  7951. background-clip: padding-box;
  7952. background-color: #FFF;
  7953. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7954. transition: box-shadow 0.3s ease-out;
  7955. overflow: hidden;
  7956. position: relative;
  7957. margin: 7px; }
  7958. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a {
  7959. position: absolute;
  7960. bottom: 0;
  7961. width: 100%;
  7962. background-color: #FFF;
  7963. text-align: center; }
  7964. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 {
  7965. padding: 10px;
  7966. margin: 0;
  7967. font-size: 1em; }
  7968. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7969. content: url("../img/point.png");
  7970. position: absolute;
  7971. bottom: 20px;
  7972. right: 10px; }
  7973. @media only screen and (max-width: 40em) {
  7974. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7975. background-color: transparent; }
  7976. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7977. width: 100%; }
  7978. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7979. margin: 0; }
  7980. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node {
  7981. max-width: 100%;
  7982. margin: 0; }
  7983. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body {
  7984. width: 100%;
  7985. padding: 0; }
  7986. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body p {
  7987. max-width: 100%;
  7988. padding: 1em; }
  7989. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a {
  7990. padding: 0;
  7991. display: block;
  7992. height: 100%; }
  7993. #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 {
  7994. max-width: 100%; }
  7995. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7996. z-index: -1;
  7997. opacity: 0.4; } }
  7998. #home-v2 #contact-pane {
  7999. margin: 2em 0;
  8000. padding: 1em;
  8001. background-color: #e6e6e6; }
  8002. #home-v2 #contact-pane .field-name-body {
  8003. text-align: center; }
  8004. #home-v2 #contact-pane .field-name-body p {
  8005. display: moz-inline-stack;
  8006. display: inline-block;
  8007. vertical-align: top;
  8008. zoom: 1;
  8009. *display: inline;
  8010. min-width: 20%; }
  8011. /*
  8012. _ _ _ _ _
  8013. | | | (_) | | (_)
  8014. _ __ _ _| |__ | |_ ___ __ _| |_ _ ___ _ __ ___
  8015. | '_ \| | | | '_ \| | |/ __/ _` | __| |/ _ \| '_ \/ __|
  8016. | |_) | |_| | |_) | | | (_| (_| | |_| | (_) | | | \__ | .__/ \__,_|_.__/|_|_|\___\__,_|\__|_|\___/|_| |_|___/
  8017. | |
  8018. |_|
  8019. */
  8020. body.node-type-publication article.node-publication .field figure, body.node-type-publication article.node-publication .field img {
  8021. max-width: 100%; }
  8022. @media only screen and (min-width: 64.0625em) {
  8023. body.node-type-publication article.node-publication .field {
  8024. display: moz-inline-stack;
  8025. display: inline-block;
  8026. vertical-align: top;
  8027. zoom: 1;
  8028. *display: inline; }
  8029. body.node-type-publication article.node-publication .field-name-field-couverture {
  8030. width: 25%; }
  8031. body.node-type-publication article.node-publication .field-name-body {
  8032. margin-left: 1em;
  8033. width: 70%; } }
  8034. /*
  8035. __ ___
  8036. / |/ /__ ______________ _____ ____ _____
  8037. / /|_/ / _ \/ ___/ ___/ __ `/ __ `/ _ \/ ___/
  8038. / / / / __(__ |__ ) /_/ / /_/ / __(__ )
  8039. /_/ /_/\___/____/____/\__,_/\__, /\___/____/
  8040. /____/
  8041. */
  8042. div.messages {
  8043. padding: 9px;
  8044. margin: 0.5em 0 0;
  8045. color: #3a87ad;
  8046. background: #d9edf7;
  8047. border: 1px solid #bce8f1;
  8048. border-radius: 5px;
  8049. font-size: 12px; }
  8050. div.messages.warning {
  8051. color: #c09853;
  8052. background-color: #fcf8e3;
  8053. border-color: #fbeed5; }
  8054. div.messages.error {
  8055. color: #b94a48;
  8056. background-color: #f2dede;
  8057. border-color: #eed3d7; }
  8058. div.messages.status {
  8059. color: #468847;
  8060. background-color: #dff0d8;
  8061. border-color: #d6e9c6;
  8062. font-size: 14px; }
  8063. .messages-label {
  8064. display: none; }
  8065. #better-messages-wrapper {
  8066. background-color: rgba(255, 255, 255, 0.7);
  8067. padding: 10px;
  8068. border-radius: 5px;
  8069. background-clip: padding-box;
  8070. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }
  8071. #better-messages-wrapper #better-messages-default div.messages {
  8072. padding: 9px;
  8073. margin: 0.5em 0 0;
  8074. color: #3a87ad;
  8075. background: #d9edf7;
  8076. border: 1px solid #bce8f1;
  8077. border-radius: 5px;
  8078. font-size: 12px;
  8079. margin: 0 0 10px 0; }
  8080. #better-messages-wrapper #better-messages-default div.messages.warning {
  8081. color: #c09853;
  8082. background-color: #fcf8e3;
  8083. border-color: #fbeed5; }
  8084. #better-messages-wrapper #better-messages-default div.messages.error {
  8085. color: #b94a48;
  8086. background-color: #f2dede;
  8087. border-color: #eed3d7; }
  8088. #better-messages-wrapper #better-messages-default div.messages.status {
  8089. color: #468847;
  8090. background-color: #dff0d8;
  8091. border-color: #d6e9c6;
  8092. font-size: 14px; }
  8093. #better-messages-wrapper #better-messages-default .footer {
  8094. border: none;
  8095. padding: 0;
  8096. margin: 0; }
  8097. #better-messages-wrapper #better-messages-default .footer a.message-close {
  8098. background: #fff url("../img/close.png") no-repeat center center;
  8099. width: 15px;
  8100. height: 15px;
  8101. border-radius: 3px;
  8102. background-clip: padding-box;
  8103. display: block; }
  8104. /** Tab navigation */
  8105. /**
  8106. * icons
  8107. */
  8108. /**
  8109. * figures
  8110. */
  8111. figure figcaption {
  8112. display: none; }
  8113. figure .blank {
  8114. position: absolute;
  8115. top: 0;
  8116. left: 0;
  8117. width: 100%;
  8118. height: 100%; }
  8119. /* ==|== print styles =======================================================
  8120. Print styles.
  8121. Inlined to avoid required HTTP connection: h5bp.com/r
  8122. ========================================================================== */
  8123. a:focus {
  8124. outline: 0; }
  8125. /*
  8126. * Improves readability when focused and also mouse hovered in all browsers.
  8127. */
  8128. a:active,
  8129. a:hover {
  8130. outline: 0; }
  8131. i {
  8132. transition: color 0.3s; }
  8133. i:hover {
  8134. color: #606060;
  8135. text-shadow: 1px 4px 6px #FFF,0 0 0 #000,1px 4px 6px #FFF; }
  8136. /** COLORBOX */
  8137. #colorbox {
  8138. border-radius: 2px;
  8139. background-clip: padding-box;
  8140. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  8141. #colorbox #cboxLoadedContent {
  8142. background-color: #fff; }
  8143. /** embed player */
  8144. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  8145. .embedded-video .player iframe {
  8146. max-width: 100%;
  8147. height: auto; } }
  8148. /** devel */
  8149. .not-logged-in #tasks ul.tabs.primary {
  8150. display: none; }
  8151. /*
  8152. __ _
  8153. ____ _____/ /___ ___ (_)___ ____ ___ ___ ____ __ __
  8154. / __ `/ __ / __ `__ \/ / __ \ / __ `__ \/ _ \/ __ \/ / / /
  8155. / /_/ / /_/ / / / / / / / / / / / / / / / / __/ / / / /_/ /
  8156. \__,_/\__,_/_/ /_/ /_/_/_/ /_/ /_/ /_/ /_/\___/_/ /_/\__,_/
  8157. */
  8158. #admin-menu {
  8159. top: 0; }