styles.css 349 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  6. /**
  7. * 1. Set default font family to sans-serif.
  8. * 2. Prevent iOS and IE text size adjust after device orientation change,
  9. * without disabling user zoom.
  10. */
  11. @import url(../fonts/icon/foundation-icons.css);
  12. html {
  13. font-family: sans-serif;
  14. /* 1 */
  15. -ms-text-size-adjust: 100%;
  16. /* 2 */
  17. -webkit-text-size-adjust: 100%;
  18. /* 2 */ }
  19. /**
  20. * Remove default margin.
  21. */
  22. body {
  23. margin: 0; }
  24. /* HTML5 display definitions
  25. ========================================================================== */
  26. /**
  27. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  28. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  29. * and Firefox.
  30. * Correct `block` display not defined for `main` in IE 11.
  31. */
  32. article,
  33. aside,
  34. details,
  35. figcaption,
  36. figure,
  37. footer,
  38. header,
  39. hgroup,
  40. main,
  41. menu,
  42. nav,
  43. section,
  44. summary {
  45. display: block; }
  46. /**
  47. * 1. Correct `inline-block` display not defined in IE 8/9.
  48. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  49. */
  50. audio,
  51. canvas,
  52. progress,
  53. video {
  54. display: inline-block;
  55. /* 1 */
  56. vertical-align: baseline;
  57. /* 2 */ }
  58. /**
  59. * Prevent modern browsers from displaying `audio` without controls.
  60. * Remove excess height in iOS 5 devices.
  61. */
  62. audio:not([controls]) {
  63. display: none;
  64. height: 0; }
  65. /**
  66. * Address `[hidden]` styling not present in IE 8/9/10.
  67. * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
  68. */
  69. [hidden],
  70. template {
  71. display: none; }
  72. /* Links
  73. ========================================================================== */
  74. /**
  75. * Remove the gray background color from active links in IE 10.
  76. */
  77. a {
  78. background-color: transparent; }
  79. /**
  80. * Improve readability of focused elements when they are also in an
  81. * active/hover state.
  82. */
  83. a:active,
  84. a:hover {
  85. outline: 0; }
  86. /* Text-level semantics
  87. ========================================================================== */
  88. /**
  89. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  90. */
  91. abbr[title] {
  92. border-bottom: 1px dotted; }
  93. /**
  94. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  95. */
  96. b,
  97. strong {
  98. font-weight: bold; }
  99. /**
  100. * Address styling not present in Safari and Chrome.
  101. */
  102. dfn {
  103. font-style: italic; }
  104. /**
  105. * Address variable `h1` font-size and margin within `section` and `article`
  106. * contexts in Firefox 4+, Safari, and Chrome.
  107. */
  108. h1 {
  109. font-size: 2em;
  110. margin: 0.67em 0; }
  111. /**
  112. * Address styling not present in IE 8/9.
  113. */
  114. mark {
  115. background: #ff0;
  116. color: #000; }
  117. /**
  118. * Address inconsistent and variable font size in all browsers.
  119. */
  120. small {
  121. font-size: 80%; }
  122. /**
  123. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  124. */
  125. sub,
  126. sup {
  127. font-size: 75%;
  128. line-height: 0;
  129. position: relative;
  130. vertical-align: baseline; }
  131. sup {
  132. top: -0.5em; }
  133. sub {
  134. bottom: -0.25em; }
  135. /* Embedded content
  136. ========================================================================== */
  137. /**
  138. * Remove border when inside `a` element in IE 8/9/10.
  139. */
  140. img {
  141. border: 0; }
  142. /**
  143. * Correct overflow not hidden in IE 9/10/11.
  144. */
  145. svg:not(:root) {
  146. overflow: hidden; }
  147. /* Grouping content
  148. ========================================================================== */
  149. /**
  150. * Address margin not present in IE 8/9 and Safari.
  151. */
  152. figure {
  153. margin: 1em 40px; }
  154. /**
  155. * Address differences between Firefox and other browsers.
  156. */
  157. hr {
  158. box-sizing: content-box;
  159. height: 0; }
  160. /**
  161. * Contain overflow in all browsers.
  162. */
  163. pre {
  164. overflow: auto; }
  165. /**
  166. * Address odd `em`-unit font size rendering in all browsers.
  167. */
  168. code,
  169. kbd,
  170. pre,
  171. samp {
  172. font-family: monospace, monospace;
  173. font-size: 1em; }
  174. /* Forms
  175. ========================================================================== */
  176. /**
  177. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  178. * styling of `select`, unless a `border` property is set.
  179. */
  180. /**
  181. * 1. Correct color not being inherited.
  182. * Known issue: affects color of disabled elements.
  183. * 2. Correct font properties not being inherited.
  184. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  185. */
  186. button,
  187. input,
  188. optgroup,
  189. select,
  190. textarea {
  191. color: inherit;
  192. /* 1 */
  193. font: inherit;
  194. /* 2 */
  195. margin: 0;
  196. /* 3 */ }
  197. /**
  198. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  199. */
  200. button {
  201. overflow: visible; }
  202. /**
  203. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  204. * All other form control elements do not inherit `text-transform` values.
  205. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  206. * Correct `select` style inheritance in Firefox.
  207. */
  208. button,
  209. select {
  210. text-transform: none; }
  211. /**
  212. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  213. * and `video` controls.
  214. * 2. Correct inability to style clickable `input` types in iOS.
  215. * 3. Improve usability and consistency of cursor style between image-type
  216. * `input` and others.
  217. */
  218. button,
  219. html input[type="button"],
  220. input[type="reset"],
  221. input[type="submit"] {
  222. -webkit-appearance: button;
  223. /* 2 */
  224. cursor: pointer;
  225. /* 3 */ }
  226. /**
  227. * Re-set default cursor for disabled elements.
  228. */
  229. button[disabled],
  230. html input[disabled] {
  231. cursor: default; }
  232. /**
  233. * Remove inner padding and border in Firefox 4+.
  234. */
  235. button::-moz-focus-inner,
  236. input::-moz-focus-inner {
  237. border: 0;
  238. padding: 0; }
  239. /**
  240. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  241. * the UA stylesheet.
  242. */
  243. input {
  244. line-height: normal; }
  245. /**
  246. * It's recommended that you don't attempt to style these elements.
  247. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  248. *
  249. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  250. * 2. Remove excess padding in IE 8/9/10.
  251. */
  252. input[type="checkbox"],
  253. input[type="radio"] {
  254. box-sizing: border-box;
  255. /* 1 */
  256. padding: 0;
  257. /* 2 */ }
  258. /**
  259. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  260. * `font-size` values of the `input`, it causes the cursor style of the
  261. * decrement button to change from `default` to `text`.
  262. */
  263. input[type="number"]::-webkit-inner-spin-button,
  264. input[type="number"]::-webkit-outer-spin-button {
  265. height: auto; }
  266. /**
  267. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  268. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
  269. */
  270. input[type="search"] {
  271. -webkit-appearance: textfield;
  272. /* 1 */
  273. box-sizing: content-box;
  274. /* 2 */ }
  275. /**
  276. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  277. * Safari (but not Chrome) clips the cancel button when the search input has
  278. * padding (and `textfield` appearance).
  279. */
  280. input[type="search"]::-webkit-search-cancel-button,
  281. input[type="search"]::-webkit-search-decoration {
  282. -webkit-appearance: none; }
  283. /**
  284. * Define consistent border, margin, and padding.
  285. */
  286. fieldset {
  287. border: 1px solid #c0c0c0;
  288. margin: 0 2px;
  289. padding: 0.35em 0.625em 0.75em; }
  290. /**
  291. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  292. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  293. */
  294. legend {
  295. border: 0;
  296. /* 1 */
  297. padding: 0;
  298. /* 2 */ }
  299. /**
  300. * Remove default vertical scrollbar in IE 8/9/10/11.
  301. */
  302. textarea {
  303. overflow: auto; }
  304. /**
  305. * Don't inherit the `font-weight` (applied by a rule above).
  306. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  307. */
  308. optgroup {
  309. font-weight: bold; }
  310. /* Tables
  311. ========================================================================== */
  312. /**
  313. * Remove most spacing between table cells.
  314. */
  315. table {
  316. border-collapse: collapse;
  317. border-spacing: 0; }
  318. td,
  319. th {
  320. padding: 0; }
  321. meta.foundation-version {
  322. font-family: "/5.5.3/"; }
  323. meta.foundation-mq-small {
  324. font-family: "/only screen/";
  325. width: 0; }
  326. meta.foundation-mq-small-only {
  327. font-family: "/only screen and (max-width: 40em)/";
  328. width: 0; }
  329. meta.foundation-mq-medium {
  330. font-family: "/only screen and (min-width:40.0625em)/";
  331. width: 40.0625em; }
  332. meta.foundation-mq-medium-only {
  333. font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  334. width: 40.0625em; }
  335. meta.foundation-mq-large {
  336. font-family: "/only screen and (min-width:64.0625em)/";
  337. width: 64.0625em; }
  338. meta.foundation-mq-large-only {
  339. font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  340. width: 64.0625em; }
  341. meta.foundation-mq-xlarge {
  342. font-family: "/only screen and (min-width:90.0625em)/";
  343. width: 90.0625em; }
  344. meta.foundation-mq-xlarge-only {
  345. font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  346. width: 90.0625em; }
  347. meta.foundation-mq-xxlarge {
  348. font-family: "/only screen and (min-width:120.0625em)/";
  349. width: 120.0625em; }
  350. meta.foundation-data-attribute-namespace {
  351. font-family: false; }
  352. html, body {
  353. height: 100%; }
  354. *,
  355. *:before,
  356. *:after {
  357. box-sizing: border-box; }
  358. html,
  359. body {
  360. font-size: 100%; }
  361. body {
  362. background: #fff;
  363. color: #222;
  364. cursor: auto;
  365. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  366. font-style: normal;
  367. font-weight: normal;
  368. line-height: 1.5;
  369. margin: 0;
  370. padding: 0;
  371. position: relative; }
  372. a:hover {
  373. cursor: pointer; }
  374. img {
  375. max-width: 100%;
  376. height: auto; }
  377. img {
  378. -ms-interpolation-mode: bicubic; }
  379. #map_canvas img,
  380. #map_canvas embed,
  381. #map_canvas object,
  382. .map_canvas img,
  383. .map_canvas embed,
  384. .map_canvas object,
  385. .mqa-display img,
  386. .mqa-display embed,
  387. .mqa-display object {
  388. max-width: none !important; }
  389. .left {
  390. float: left !important; }
  391. .right {
  392. float: right !important; }
  393. .clearfix:before, .clearfix:after {
  394. content: " ";
  395. display: table; }
  396. .clearfix:after {
  397. clear: both; }
  398. .hide {
  399. display: none; }
  400. .invisible {
  401. visibility: hidden; }
  402. .antialiased {
  403. -webkit-font-smoothing: antialiased;
  404. -moz-osx-font-smoothing: grayscale; }
  405. img {
  406. display: inline-block;
  407. vertical-align: middle; }
  408. textarea {
  409. height: auto;
  410. min-height: 50px; }
  411. select {
  412. width: 100%; }
  413. .text-left {
  414. text-align: left !important; }
  415. .text-right {
  416. text-align: right !important; }
  417. .text-center {
  418. text-align: center !important; }
  419. .text-justify {
  420. text-align: justify !important; }
  421. @media only screen and (max-width: 40em) {
  422. .small-only-text-left {
  423. text-align: left !important; }
  424. .small-only-text-right {
  425. text-align: right !important; }
  426. .small-only-text-center {
  427. text-align: center !important; }
  428. .small-only-text-justify {
  429. text-align: justify !important; } }
  430. @media only screen {
  431. .small-text-left {
  432. text-align: left !important; }
  433. .small-text-right {
  434. text-align: right !important; }
  435. .small-text-center {
  436. text-align: center !important; }
  437. .small-text-justify {
  438. text-align: justify !important; } }
  439. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  440. .medium-only-text-left {
  441. text-align: left !important; }
  442. .medium-only-text-right {
  443. text-align: right !important; }
  444. .medium-only-text-center {
  445. text-align: center !important; }
  446. .medium-only-text-justify {
  447. text-align: justify !important; } }
  448. @media only screen and (min-width: 40.0625em) {
  449. .medium-text-left {
  450. text-align: left !important; }
  451. .medium-text-right {
  452. text-align: right !important; }
  453. .medium-text-center {
  454. text-align: center !important; }
  455. .medium-text-justify {
  456. text-align: justify !important; } }
  457. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  458. .large-only-text-left {
  459. text-align: left !important; }
  460. .large-only-text-right {
  461. text-align: right !important; }
  462. .large-only-text-center {
  463. text-align: center !important; }
  464. .large-only-text-justify {
  465. text-align: justify !important; } }
  466. @media only screen and (min-width: 64.0625em) {
  467. .large-text-left {
  468. text-align: left !important; }
  469. .large-text-right {
  470. text-align: right !important; }
  471. .large-text-center {
  472. text-align: center !important; }
  473. .large-text-justify {
  474. text-align: justify !important; } }
  475. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  476. .xlarge-only-text-left {
  477. text-align: left !important; }
  478. .xlarge-only-text-right {
  479. text-align: right !important; }
  480. .xlarge-only-text-center {
  481. text-align: center !important; }
  482. .xlarge-only-text-justify {
  483. text-align: justify !important; } }
  484. @media only screen and (min-width: 90.0625em) {
  485. .xlarge-text-left {
  486. text-align: left !important; }
  487. .xlarge-text-right {
  488. text-align: right !important; }
  489. .xlarge-text-center {
  490. text-align: center !important; }
  491. .xlarge-text-justify {
  492. text-align: justify !important; } }
  493. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  494. .xxlarge-only-text-left {
  495. text-align: left !important; }
  496. .xxlarge-only-text-right {
  497. text-align: right !important; }
  498. .xxlarge-only-text-center {
  499. text-align: center !important; }
  500. .xxlarge-only-text-justify {
  501. text-align: justify !important; } }
  502. @media only screen and (min-width: 120.0625em) {
  503. .xxlarge-text-left {
  504. text-align: left !important; }
  505. .xxlarge-text-right {
  506. text-align: right !important; }
  507. .xxlarge-text-center {
  508. text-align: center !important; }
  509. .xxlarge-text-justify {
  510. text-align: justify !important; } }
  511. /* Typography resets */
  512. div,
  513. dl,
  514. dt,
  515. dd,
  516. ul,
  517. ol,
  518. li,
  519. h1,
  520. h2,
  521. h3,
  522. h4,
  523. h5,
  524. h6,
  525. pre,
  526. form,
  527. p,
  528. blockquote,
  529. th,
  530. td {
  531. margin: 0;
  532. padding: 0; }
  533. /* Default Link Styles */
  534. a {
  535. color: #008CBA;
  536. line-height: inherit;
  537. text-decoration: none; }
  538. a:hover, a:focus {
  539. color: #0078a0; }
  540. a img {
  541. border: none; }
  542. /* Default paragraph styles */
  543. p {
  544. font-family: inherit;
  545. font-size: 1rem;
  546. font-weight: normal;
  547. line-height: 1.6;
  548. margin-bottom: 1.25rem;
  549. text-rendering: optimizeLegibility; }
  550. p.lead {
  551. font-size: 1.21875rem;
  552. line-height: 1.6; }
  553. p aside {
  554. font-size: 0.875rem;
  555. font-style: italic;
  556. line-height: 1.35; }
  557. /* Default header styles */
  558. h1, h2, h3, h4, h5, h6 {
  559. color: #222222;
  560. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  561. font-style: normal;
  562. font-weight: normal;
  563. line-height: 1.4;
  564. margin-bottom: 0.5rem;
  565. margin-top: 0.2rem;
  566. text-rendering: optimizeLegibility; }
  567. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  568. color: #6f6f6f;
  569. font-size: 60%;
  570. line-height: 0; }
  571. h1 {
  572. font-size: 2.125rem; }
  573. h2 {
  574. font-size: 1.6875rem; }
  575. h3 {
  576. font-size: 1.375rem; }
  577. h4 {
  578. font-size: 1.125rem; }
  579. h5 {
  580. font-size: 1.125rem; }
  581. h6 {
  582. font-size: 1rem; }
  583. .subheader {
  584. line-height: 1.4;
  585. color: #6f6f6f;
  586. font-weight: normal;
  587. margin-top: 0.2rem;
  588. margin-bottom: 0.5rem; }
  589. hr {
  590. border: solid #DDDDDD;
  591. border-width: 1px 0 0;
  592. clear: both;
  593. height: 0;
  594. margin: 1.25rem 0 1.1875rem; }
  595. /* Helpful Typography Defaults */
  596. em,
  597. i {
  598. font-style: italic;
  599. line-height: inherit; }
  600. strong,
  601. b {
  602. font-weight: bold;
  603. line-height: inherit; }
  604. small {
  605. font-size: 60%;
  606. line-height: inherit; }
  607. code {
  608. background-color: #f8f8f8;
  609. border-color: #dfdfdf;
  610. border-style: solid;
  611. border-width: 1px;
  612. color: #333333;
  613. font-family: Consolas, "Liberation Mono", Courier, monospace;
  614. font-weight: normal;
  615. padding: 0.125rem 0.3125rem 0.0625rem; }
  616. /* Lists */
  617. ul,
  618. ol,
  619. dl {
  620. font-family: inherit;
  621. font-size: 1rem;
  622. line-height: 1.6;
  623. list-style-position: outside;
  624. margin-bottom: 1.25rem; }
  625. ul {
  626. margin-left: 1.1rem; }
  627. /* Unordered Lists */
  628. ul li ul,
  629. ul li ol {
  630. margin-left: 1.25rem;
  631. margin-bottom: 0; }
  632. ul.square li ul, ul.circle li ul, ul.disc li ul {
  633. list-style: inherit; }
  634. ul.square {
  635. list-style-type: square;
  636. margin-left: 1.1rem; }
  637. ul.circle {
  638. list-style-type: circle;
  639. margin-left: 1.1rem; }
  640. ul.disc {
  641. list-style-type: disc;
  642. margin-left: 1.1rem; }
  643. /* Ordered Lists */
  644. ol {
  645. margin-left: 1.4rem; }
  646. ol li ul,
  647. ol li ol {
  648. margin-left: 1.25rem;
  649. margin-bottom: 0; }
  650. .no-bullet {
  651. list-style-type: none;
  652. margin-left: 0; }
  653. .no-bullet li ul,
  654. .no-bullet li ol {
  655. margin-left: 1.25rem;
  656. margin-bottom: 0;
  657. list-style: none; }
  658. /* Definition Lists */
  659. dl dt {
  660. margin-bottom: 0.3rem;
  661. font-weight: bold; }
  662. dl dd {
  663. margin-bottom: 0.75rem; }
  664. /* Abbreviations */
  665. abbr,
  666. acronym {
  667. text-transform: uppercase;
  668. font-size: 90%;
  669. color: #222;
  670. cursor: help; }
  671. abbr {
  672. text-transform: none; }
  673. abbr[title] {
  674. border-bottom: 1px dotted #DDDDDD; }
  675. /* Blockquotes */
  676. blockquote {
  677. margin: 0 0 1.25rem;
  678. padding: 0.5625rem 1.25rem 0 1.1875rem;
  679. border-left: 1px solid #DDDDDD; }
  680. blockquote cite {
  681. display: block;
  682. font-size: 0.8125rem;
  683. color: #555555; }
  684. blockquote cite:before {
  685. content: "\2014 \0020"; }
  686. blockquote cite a,
  687. blockquote cite a:visited {
  688. color: #555555; }
  689. blockquote,
  690. blockquote p {
  691. line-height: 1.6;
  692. color: #6f6f6f; }
  693. /* Microformats */
  694. .vcard {
  695. display: inline-block;
  696. margin: 0 0 1.25rem 0;
  697. border: 1px solid #DDDDDD;
  698. padding: 0.625rem 0.75rem; }
  699. .vcard li {
  700. margin: 0;
  701. display: block; }
  702. .vcard .fn {
  703. font-weight: bold;
  704. font-size: 0.9375rem; }
  705. .vevent .summary {
  706. font-weight: bold; }
  707. .vevent abbr {
  708. cursor: default;
  709. text-decoration: none;
  710. font-weight: bold;
  711. border: none;
  712. padding: 0 0.0625rem; }
  713. @media only screen and (min-width: 40.0625em) {
  714. h1, h2, h3, h4, h5, h6 {
  715. line-height: 1.4; }
  716. h1 {
  717. font-size: 2.75rem; }
  718. h2 {
  719. font-size: 2.3125rem; }
  720. h3 {
  721. font-size: 1.6875rem; }
  722. h4 {
  723. font-size: 1.4375rem; }
  724. h5 {
  725. font-size: 1.125rem; }
  726. h6 {
  727. font-size: 1rem; } }
  728. /*
  729. * Print styles.
  730. *
  731. * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
  732. * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
  733. */
  734. @media print {
  735. * {
  736. background: transparent !important;
  737. color: #000000 !important;
  738. /* Black prints faster: h5bp.com/s */
  739. box-shadow: none !important;
  740. text-shadow: none !important; }
  741. a,
  742. a:visited {
  743. text-decoration: underline; }
  744. a[href]:after {
  745. content: " (" attr(href) ")"; }
  746. abbr[title]:after {
  747. content: " (" attr(title) ")"; }
  748. .ir a:after,
  749. a[href^="javascript:"]:after,
  750. a[href^="#"]:after {
  751. content: ""; }
  752. pre,
  753. blockquote {
  754. border: 1px solid #999999;
  755. page-break-inside: avoid; }
  756. thead {
  757. display: table-header-group;
  758. /* h5bp.com/t */ }
  759. tr,
  760. img {
  761. page-break-inside: avoid; }
  762. img {
  763. max-width: 100% !important; }
  764. @page {
  765. margin: 0.34in; }
  766. p,
  767. h2,
  768. h3 {
  769. orphans: 3;
  770. widows: 3; }
  771. h2,
  772. h3 {
  773. page-break-after: avoid; } }
  774. /* Clearing Styles */
  775. .clearing-thumbs, [data-clearing] {
  776. list-style: none;
  777. margin-left: 0;
  778. margin-bottom: 0; }
  779. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  780. content: " ";
  781. display: table; }
  782. .clearing-thumbs:after, [data-clearing]:after {
  783. clear: both; }
  784. .clearing-thumbs li, [data-clearing] li {
  785. float: left;
  786. margin-right: 10px; }
  787. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  788. margin-right: 0; }
  789. .clearing-blackout {
  790. background: #333333;
  791. height: 100%;
  792. position: fixed;
  793. top: 0;
  794. width: 100%;
  795. z-index: 998;
  796. left: 0; }
  797. .clearing-blackout .clearing-close {
  798. display: block; }
  799. .clearing-container {
  800. height: 100%;
  801. margin: 0;
  802. overflow: hidden;
  803. position: relative;
  804. z-index: 998; }
  805. .clearing-touch-label {
  806. color: #AAAAAA;
  807. font-size: .6em;
  808. left: 50%;
  809. position: absolute;
  810. top: 50%; }
  811. .visible-img {
  812. height: 95%;
  813. position: relative; }
  814. .visible-img img {
  815. position: absolute;
  816. left: 50%;
  817. top: 50%;
  818. transform: translateY(-50%) translateX(-50%);
  819. max-height: 100%;
  820. max-width: 100%; }
  821. .clearing-caption {
  822. background: #333333;
  823. bottom: 0;
  824. color: #CCCCCC;
  825. font-size: 0.875em;
  826. line-height: 1.3;
  827. margin-bottom: 0;
  828. padding: 10px 30px 20px;
  829. position: absolute;
  830. text-align: center;
  831. width: 100%;
  832. left: 0; }
  833. .clearing-close {
  834. color: #CCCCCC;
  835. display: none;
  836. font-size: 30px;
  837. line-height: 1;
  838. padding-left: 20px;
  839. padding-top: 10px;
  840. z-index: 999; }
  841. .clearing-close:hover, .clearing-close:focus {
  842. color: #CCCCCC; }
  843. .clearing-assembled .clearing-container {
  844. height: 100%; }
  845. .clearing-assembled .clearing-container .carousel > ul {
  846. display: none; }
  847. .clearing-feature li {
  848. display: none; }
  849. .clearing-feature li.clearing-featured-img {
  850. display: block; }
  851. @media only screen and (min-width: 40.0625em) {
  852. .clearing-main-prev,
  853. .clearing-main-next {
  854. height: 100%;
  855. position: absolute;
  856. top: 0;
  857. width: 40px; }
  858. .clearing-main-prev > span,
  859. .clearing-main-next > span {
  860. border: solid 12px;
  861. display: block;
  862. height: 0;
  863. position: absolute;
  864. top: 50%;
  865. width: 0; }
  866. .clearing-main-prev > span:hover,
  867. .clearing-main-next > span:hover {
  868. opacity: .8; }
  869. .clearing-main-prev {
  870. left: 0; }
  871. .clearing-main-prev > span {
  872. left: 5px;
  873. border-color: transparent;
  874. border-right-color: #CCCCCC; }
  875. .clearing-main-next {
  876. right: 0; }
  877. .clearing-main-next > span {
  878. border-color: transparent;
  879. border-left-color: #CCCCCC; }
  880. .clearing-main-prev.disabled,
  881. .clearing-main-next.disabled {
  882. opacity: .3; }
  883. .clearing-assembled .clearing-container .carousel {
  884. background: rgba(51, 51, 51, 0.8);
  885. height: 120px;
  886. margin-top: 10px;
  887. text-align: center; }
  888. .clearing-assembled .clearing-container .carousel > ul {
  889. display: inline-block;
  890. z-index: 999;
  891. height: 100%;
  892. position: relative;
  893. float: none; }
  894. .clearing-assembled .clearing-container .carousel > ul li {
  895. clear: none;
  896. cursor: pointer;
  897. display: block;
  898. float: left;
  899. margin-right: 0;
  900. min-height: inherit;
  901. opacity: .4;
  902. overflow: hidden;
  903. padding: 0;
  904. position: relative;
  905. width: 120px; }
  906. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  907. height: 100%;
  908. max-width: none; }
  909. .clearing-assembled .clearing-container .carousel > ul li a.th {
  910. border: none;
  911. box-shadow: none;
  912. display: block; }
  913. .clearing-assembled .clearing-container .carousel > ul li img {
  914. cursor: pointer !important;
  915. width: 100% !important; }
  916. .clearing-assembled .clearing-container .carousel > ul li.visible {
  917. opacity: 1; }
  918. .clearing-assembled .clearing-container .carousel > ul li:hover {
  919. opacity: .8; }
  920. .clearing-assembled .clearing-container .visible-img {
  921. background: #333333;
  922. height: 85%;
  923. overflow: hidden; }
  924. .clearing-close {
  925. padding-left: 0;
  926. padding-top: 0;
  927. position: absolute;
  928. top: 10px;
  929. right: 20px; } }
  930. .inline-list {
  931. list-style: none;
  932. margin-top: 0;
  933. margin-bottom: 1.0625rem;
  934. margin-left: -1.375rem;
  935. margin-right: 0;
  936. overflow: hidden;
  937. padding: 0; }
  938. .inline-list > li {
  939. display: block;
  940. float: left;
  941. list-style: none;
  942. margin-left: 1.375rem; }
  943. .inline-list > li > * {
  944. display: block; }
  945. button, .button {
  946. -webkit-appearance: none;
  947. -moz-appearance: none;
  948. border-radius: 0;
  949. border-style: solid;
  950. border-width: 0;
  951. cursor: pointer;
  952. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  953. font-weight: normal;
  954. line-height: normal;
  955. margin: 0 0 1.25rem;
  956. position: relative;
  957. text-align: center;
  958. text-decoration: none;
  959. display: inline-block;
  960. padding: 1rem 2rem 1.0625rem 2rem;
  961. font-size: 1rem;
  962. background-color: #008CBA;
  963. border-color: #007095;
  964. color: #FFFFFF;
  965. transition: background-color 300ms ease-out; }
  966. button:hover, button:focus, .button:hover, .button:focus {
  967. background-color: #007095; }
  968. button:hover, button:focus, .button:hover, .button:focus {
  969. color: #FFFFFF; }
  970. button.secondary, .button.secondary {
  971. background-color: #e7e7e7;
  972. border-color: #b9b9b9;
  973. color: #333333; }
  974. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  975. background-color: #b9b9b9; }
  976. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  977. color: #333333; }
  978. button.success, .button.success {
  979. background-color: #43AC6A;
  980. border-color: #368a55;
  981. color: #FFFFFF; }
  982. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  983. background-color: #368a55; }
  984. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  985. color: #FFFFFF; }
  986. button.alert, .button.alert {
  987. background-color: #f04124;
  988. border-color: #cf2a0e;
  989. color: #FFFFFF; }
  990. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  991. background-color: #cf2a0e; }
  992. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  993. color: #FFFFFF; }
  994. button.warning, .button.warning {
  995. background-color: #f08a24;
  996. border-color: #cf6e0e;
  997. color: #FFFFFF; }
  998. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  999. background-color: #cf6e0e; }
  1000. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  1001. color: #FFFFFF; }
  1002. button.info, .button.info {
  1003. background-color: #a0d3e8;
  1004. border-color: #61b6d9;
  1005. color: #333333; }
  1006. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1007. background-color: #61b6d9; }
  1008. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1009. color: #FFFFFF; }
  1010. button.large, .button.large {
  1011. padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  1012. font-size: 1.25rem; }
  1013. button.small, .button.small {
  1014. padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  1015. font-size: 0.8125rem; }
  1016. button.tiny, .button.tiny {
  1017. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  1018. font-size: 0.6875rem; }
  1019. button.expand, .button.expand {
  1020. padding: 1rem 2rem 1.0625rem 2rem;
  1021. font-size: 1rem;
  1022. padding-bottom: 1.0625rem;
  1023. padding-top: 1rem;
  1024. padding-left: 1rem;
  1025. padding-right: 1rem;
  1026. width: 100%; }
  1027. button.left-align, .button.left-align {
  1028. text-align: left;
  1029. text-indent: 0.75rem; }
  1030. button.right-align, .button.right-align {
  1031. text-align: right;
  1032. padding-right: 0.75rem; }
  1033. button.radius, .button.radius {
  1034. border-radius: 3px; }
  1035. button.round, .button.round {
  1036. border-radius: 1000px; }
  1037. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  1038. background-color: #008CBA;
  1039. border-color: #007095;
  1040. color: #FFFFFF;
  1041. box-shadow: none;
  1042. cursor: default;
  1043. opacity: 0.7; }
  1044. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1045. background-color: #007095; }
  1046. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1047. color: #FFFFFF; }
  1048. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1049. background-color: #008CBA; }
  1050. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  1051. background-color: #e7e7e7;
  1052. border-color: #b9b9b9;
  1053. color: #333333;
  1054. box-shadow: none;
  1055. cursor: default;
  1056. opacity: 0.7; }
  1057. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1058. background-color: #b9b9b9; }
  1059. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1060. color: #333333; }
  1061. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1062. background-color: #e7e7e7; }
  1063. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  1064. background-color: #43AC6A;
  1065. border-color: #368a55;
  1066. color: #FFFFFF;
  1067. box-shadow: none;
  1068. cursor: default;
  1069. opacity: 0.7; }
  1070. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1071. background-color: #368a55; }
  1072. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1073. color: #FFFFFF; }
  1074. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1075. background-color: #43AC6A; }
  1076. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  1077. background-color: #f04124;
  1078. border-color: #cf2a0e;
  1079. color: #FFFFFF;
  1080. box-shadow: none;
  1081. cursor: default;
  1082. opacity: 0.7; }
  1083. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1084. background-color: #cf2a0e; }
  1085. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1086. color: #FFFFFF; }
  1087. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1088. background-color: #f04124; }
  1089. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  1090. background-color: #f08a24;
  1091. border-color: #cf6e0e;
  1092. color: #FFFFFF;
  1093. box-shadow: none;
  1094. cursor: default;
  1095. opacity: 0.7; }
  1096. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1097. background-color: #cf6e0e; }
  1098. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1099. color: #FFFFFF; }
  1100. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1101. background-color: #f08a24; }
  1102. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  1103. background-color: #a0d3e8;
  1104. border-color: #61b6d9;
  1105. color: #333333;
  1106. box-shadow: none;
  1107. cursor: default;
  1108. opacity: 0.7; }
  1109. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1110. background-color: #61b6d9; }
  1111. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1112. color: #FFFFFF; }
  1113. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1114. background-color: #a0d3e8; }
  1115. button::-moz-focus-inner {
  1116. border: 0;
  1117. padding: 0; }
  1118. @media only screen and (min-width: 40.0625em) {
  1119. button, .button {
  1120. display: inline-block; } }
  1121. .button-group {
  1122. list-style: none;
  1123. margin: 0;
  1124. left: 0; }
  1125. .button-group:before, .button-group:after {
  1126. content: " ";
  1127. display: table; }
  1128. .button-group:after {
  1129. clear: both; }
  1130. .button-group.even-2 li {
  1131. display: inline-block;
  1132. margin: 0 -2px;
  1133. width: 50%; }
  1134. .button-group.even-2 li > button, .button-group.even-2 li .button {
  1135. border-left: 1px solid;
  1136. border-color: rgba(255, 255, 255, 0.5); }
  1137. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  1138. border-left: 0; }
  1139. .button-group.even-2 li button, .button-group.even-2 li .button {
  1140. width: 100%; }
  1141. .button-group.even-3 li {
  1142. display: inline-block;
  1143. margin: 0 -2px;
  1144. width: 33.33333%; }
  1145. .button-group.even-3 li > button, .button-group.even-3 li .button {
  1146. border-left: 1px solid;
  1147. border-color: rgba(255, 255, 255, 0.5); }
  1148. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  1149. border-left: 0; }
  1150. .button-group.even-3 li button, .button-group.even-3 li .button {
  1151. width: 100%; }
  1152. .button-group.even-4 li {
  1153. display: inline-block;
  1154. margin: 0 -2px;
  1155. width: 25%; }
  1156. .button-group.even-4 li > button, .button-group.even-4 li .button {
  1157. border-left: 1px solid;
  1158. border-color: rgba(255, 255, 255, 0.5); }
  1159. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  1160. border-left: 0; }
  1161. .button-group.even-4 li button, .button-group.even-4 li .button {
  1162. width: 100%; }
  1163. .button-group.even-5 li {
  1164. display: inline-block;
  1165. margin: 0 -2px;
  1166. width: 20%; }
  1167. .button-group.even-5 li > button, .button-group.even-5 li .button {
  1168. border-left: 1px solid;
  1169. border-color: rgba(255, 255, 255, 0.5); }
  1170. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  1171. border-left: 0; }
  1172. .button-group.even-5 li button, .button-group.even-5 li .button {
  1173. width: 100%; }
  1174. .button-group.even-6 li {
  1175. display: inline-block;
  1176. margin: 0 -2px;
  1177. width: 16.66667%; }
  1178. .button-group.even-6 li > button, .button-group.even-6 li .button {
  1179. border-left: 1px solid;
  1180. border-color: rgba(255, 255, 255, 0.5); }
  1181. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  1182. border-left: 0; }
  1183. .button-group.even-6 li button, .button-group.even-6 li .button {
  1184. width: 100%; }
  1185. .button-group.even-7 li {
  1186. display: inline-block;
  1187. margin: 0 -2px;
  1188. width: 14.28571%; }
  1189. .button-group.even-7 li > button, .button-group.even-7 li .button {
  1190. border-left: 1px solid;
  1191. border-color: rgba(255, 255, 255, 0.5); }
  1192. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  1193. border-left: 0; }
  1194. .button-group.even-7 li button, .button-group.even-7 li .button {
  1195. width: 100%; }
  1196. .button-group.even-8 li {
  1197. display: inline-block;
  1198. margin: 0 -2px;
  1199. width: 12.5%; }
  1200. .button-group.even-8 li > button, .button-group.even-8 li .button {
  1201. border-left: 1px solid;
  1202. border-color: rgba(255, 255, 255, 0.5); }
  1203. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  1204. border-left: 0; }
  1205. .button-group.even-8 li button, .button-group.even-8 li .button {
  1206. width: 100%; }
  1207. .button-group > li {
  1208. display: inline-block;
  1209. margin: 0 -2px; }
  1210. .button-group > li > button, .button-group > li .button {
  1211. border-left: 1px solid;
  1212. border-color: rgba(255, 255, 255, 0.5); }
  1213. .button-group > li:first-child button, .button-group > li:first-child .button {
  1214. border-left: 0; }
  1215. .button-group.stack > li {
  1216. display: block;
  1217. margin: 0;
  1218. float: none; }
  1219. .button-group.stack > li > button, .button-group.stack > li .button {
  1220. border-left: 1px solid;
  1221. border-color: rgba(255, 255, 255, 0.5); }
  1222. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1223. border-left: 0; }
  1224. .button-group.stack > li > button, .button-group.stack > li .button {
  1225. border-color: rgba(255, 255, 255, 0.5);
  1226. border-left-width: 0;
  1227. border-top: 1px solid;
  1228. display: block;
  1229. margin: 0; }
  1230. .button-group.stack > li > button {
  1231. width: 100%; }
  1232. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1233. border-top: 0; }
  1234. .button-group.stack-for-small > li {
  1235. display: inline-block;
  1236. margin: 0 -2px; }
  1237. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1238. border-left: 1px solid;
  1239. border-color: rgba(255, 255, 255, 0.5); }
  1240. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1241. border-left: 0; }
  1242. @media only screen and (max-width: 40em) {
  1243. .button-group.stack-for-small > li {
  1244. display: block;
  1245. margin: 0;
  1246. width: 100%; }
  1247. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1248. border-left: 1px solid;
  1249. border-color: rgba(255, 255, 255, 0.5); }
  1250. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1251. border-left: 0; }
  1252. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1253. border-color: rgba(255, 255, 255, 0.5);
  1254. border-left-width: 0;
  1255. border-top: 1px solid;
  1256. display: block;
  1257. margin: 0; }
  1258. .button-group.stack-for-small > li > button {
  1259. width: 100%; }
  1260. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1261. border-top: 0; } }
  1262. .button-group.radius > * {
  1263. display: inline-block;
  1264. margin: 0 -2px; }
  1265. .button-group.radius > * > button, .button-group.radius > * .button {
  1266. border-left: 1px solid;
  1267. border-color: rgba(255, 255, 255, 0.5); }
  1268. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  1269. border-left: 0; }
  1270. .button-group.radius > *,
  1271. .button-group.radius > * > a,
  1272. .button-group.radius > * > button,
  1273. .button-group.radius > * > .button {
  1274. border-radius: 0; }
  1275. .button-group.radius > *:first-child,
  1276. .button-group.radius > *:first-child > a,
  1277. .button-group.radius > *:first-child > button,
  1278. .button-group.radius > *:first-child > .button {
  1279. -webkit-border-bottom-left-radius: 3px;
  1280. -webkit-border-top-left-radius: 3px;
  1281. border-bottom-left-radius: 3px;
  1282. border-top-left-radius: 3px; }
  1283. .button-group.radius > *:last-child,
  1284. .button-group.radius > *:last-child > a,
  1285. .button-group.radius > *:last-child > button,
  1286. .button-group.radius > *:last-child > .button {
  1287. -webkit-border-bottom-right-radius: 3px;
  1288. -webkit-border-top-right-radius: 3px;
  1289. border-bottom-right-radius: 3px;
  1290. border-top-right-radius: 3px; }
  1291. .button-group.radius.stack > * {
  1292. display: block;
  1293. margin: 0; }
  1294. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1295. border-left: 1px solid;
  1296. border-color: rgba(255, 255, 255, 0.5); }
  1297. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1298. border-left: 0; }
  1299. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1300. border-color: rgba(255, 255, 255, 0.5);
  1301. border-left-width: 0;
  1302. border-top: 1px solid;
  1303. display: block;
  1304. margin: 0; }
  1305. .button-group.radius.stack > * > button {
  1306. width: 100%; }
  1307. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1308. border-top: 0; }
  1309. .button-group.radius.stack > *,
  1310. .button-group.radius.stack > * > a,
  1311. .button-group.radius.stack > * > button,
  1312. .button-group.radius.stack > * > .button {
  1313. border-radius: 0; }
  1314. .button-group.radius.stack > *:first-child,
  1315. .button-group.radius.stack > *:first-child > a,
  1316. .button-group.radius.stack > *:first-child > button,
  1317. .button-group.radius.stack > *:first-child > .button {
  1318. -webkit-top-left-radius: 3px;
  1319. -webkit-top-right-radius: 3px;
  1320. border-top-left-radius: 3px;
  1321. border-top-right-radius: 3px; }
  1322. .button-group.radius.stack > *:last-child,
  1323. .button-group.radius.stack > *:last-child > a,
  1324. .button-group.radius.stack > *:last-child > button,
  1325. .button-group.radius.stack > *:last-child > .button {
  1326. -webkit-bottom-left-radius: 3px;
  1327. -webkit-bottom-right-radius: 3px;
  1328. border-bottom-left-radius: 3px;
  1329. border-bottom-right-radius: 3px; }
  1330. @media only screen and (min-width: 40.0625em) {
  1331. .button-group.radius.stack-for-small > * {
  1332. display: inline-block;
  1333. margin: 0 -2px; }
  1334. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1335. border-left: 1px solid;
  1336. border-color: rgba(255, 255, 255, 0.5); }
  1337. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1338. border-left: 0; }
  1339. .button-group.radius.stack-for-small > *,
  1340. .button-group.radius.stack-for-small > * > a,
  1341. .button-group.radius.stack-for-small > * > button,
  1342. .button-group.radius.stack-for-small > * > .button {
  1343. border-radius: 0; }
  1344. .button-group.radius.stack-for-small > *:first-child,
  1345. .button-group.radius.stack-for-small > *:first-child > a,
  1346. .button-group.radius.stack-for-small > *:first-child > button,
  1347. .button-group.radius.stack-for-small > *:first-child > .button {
  1348. -webkit-border-bottom-left-radius: 3px;
  1349. -webkit-border-top-left-radius: 3px;
  1350. border-bottom-left-radius: 3px;
  1351. border-top-left-radius: 3px; }
  1352. .button-group.radius.stack-for-small > *:last-child,
  1353. .button-group.radius.stack-for-small > *:last-child > a,
  1354. .button-group.radius.stack-for-small > *:last-child > button,
  1355. .button-group.radius.stack-for-small > *:last-child > .button {
  1356. -webkit-border-bottom-right-radius: 3px;
  1357. -webkit-border-top-right-radius: 3px;
  1358. border-bottom-right-radius: 3px;
  1359. border-top-right-radius: 3px; } }
  1360. @media only screen and (max-width: 40em) {
  1361. .button-group.radius.stack-for-small > * {
  1362. display: block;
  1363. margin: 0; }
  1364. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1365. border-left: 1px solid;
  1366. border-color: rgba(255, 255, 255, 0.5); }
  1367. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1368. border-left: 0; }
  1369. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1370. border-color: rgba(255, 255, 255, 0.5);
  1371. border-left-width: 0;
  1372. border-top: 1px solid;
  1373. display: block;
  1374. margin: 0; }
  1375. .button-group.radius.stack-for-small > * > button {
  1376. width: 100%; }
  1377. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1378. border-top: 0; }
  1379. .button-group.radius.stack-for-small > *,
  1380. .button-group.radius.stack-for-small > * > a,
  1381. .button-group.radius.stack-for-small > * > button,
  1382. .button-group.radius.stack-for-small > * > .button {
  1383. border-radius: 0; }
  1384. .button-group.radius.stack-for-small > *:first-child,
  1385. .button-group.radius.stack-for-small > *:first-child > a,
  1386. .button-group.radius.stack-for-small > *:first-child > button,
  1387. .button-group.radius.stack-for-small > *:first-child > .button {
  1388. -webkit-top-left-radius: 3px;
  1389. -webkit-top-right-radius: 3px;
  1390. border-top-left-radius: 3px;
  1391. border-top-right-radius: 3px; }
  1392. .button-group.radius.stack-for-small > *:last-child,
  1393. .button-group.radius.stack-for-small > *:last-child > a,
  1394. .button-group.radius.stack-for-small > *:last-child > button,
  1395. .button-group.radius.stack-for-small > *:last-child > .button {
  1396. -webkit-bottom-left-radius: 3px;
  1397. -webkit-bottom-right-radius: 3px;
  1398. border-bottom-left-radius: 3px;
  1399. border-bottom-right-radius: 3px; } }
  1400. .button-group.round > * {
  1401. display: inline-block;
  1402. margin: 0 -2px; }
  1403. .button-group.round > * > button, .button-group.round > * .button {
  1404. border-left: 1px solid;
  1405. border-color: rgba(255, 255, 255, 0.5); }
  1406. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  1407. border-left: 0; }
  1408. .button-group.round > *,
  1409. .button-group.round > * > a,
  1410. .button-group.round > * > button,
  1411. .button-group.round > * > .button {
  1412. border-radius: 0; }
  1413. .button-group.round > *:first-child,
  1414. .button-group.round > *:first-child > a,
  1415. .button-group.round > *:first-child > button,
  1416. .button-group.round > *:first-child > .button {
  1417. -webkit-border-bottom-left-radius: 1000px;
  1418. -webkit-border-top-left-radius: 1000px;
  1419. border-bottom-left-radius: 1000px;
  1420. border-top-left-radius: 1000px; }
  1421. .button-group.round > *:last-child,
  1422. .button-group.round > *:last-child > a,
  1423. .button-group.round > *:last-child > button,
  1424. .button-group.round > *:last-child > .button {
  1425. -webkit-border-bottom-right-radius: 1000px;
  1426. -webkit-border-top-right-radius: 1000px;
  1427. border-bottom-right-radius: 1000px;
  1428. border-top-right-radius: 1000px; }
  1429. .button-group.round.stack > * {
  1430. display: block;
  1431. margin: 0; }
  1432. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1433. border-left: 1px solid;
  1434. border-color: rgba(255, 255, 255, 0.5); }
  1435. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1436. border-left: 0; }
  1437. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1438. border-color: rgba(255, 255, 255, 0.5);
  1439. border-left-width: 0;
  1440. border-top: 1px solid;
  1441. display: block;
  1442. margin: 0; }
  1443. .button-group.round.stack > * > button {
  1444. width: 100%; }
  1445. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1446. border-top: 0; }
  1447. .button-group.round.stack > *,
  1448. .button-group.round.stack > * > a,
  1449. .button-group.round.stack > * > button,
  1450. .button-group.round.stack > * > .button {
  1451. border-radius: 0; }
  1452. .button-group.round.stack > *:first-child,
  1453. .button-group.round.stack > *:first-child > a,
  1454. .button-group.round.stack > *:first-child > button,
  1455. .button-group.round.stack > *:first-child > .button {
  1456. -webkit-top-left-radius: 1rem;
  1457. -webkit-top-right-radius: 1rem;
  1458. border-top-left-radius: 1rem;
  1459. border-top-right-radius: 1rem; }
  1460. .button-group.round.stack > *:last-child,
  1461. .button-group.round.stack > *:last-child > a,
  1462. .button-group.round.stack > *:last-child > button,
  1463. .button-group.round.stack > *:last-child > .button {
  1464. -webkit-bottom-left-radius: 1rem;
  1465. -webkit-bottom-right-radius: 1rem;
  1466. border-bottom-left-radius: 1rem;
  1467. border-bottom-right-radius: 1rem; }
  1468. @media only screen and (min-width: 40.0625em) {
  1469. .button-group.round.stack-for-small > * {
  1470. display: inline-block;
  1471. margin: 0 -2px; }
  1472. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1473. border-left: 1px solid;
  1474. border-color: rgba(255, 255, 255, 0.5); }
  1475. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1476. border-left: 0; }
  1477. .button-group.round.stack-for-small > *,
  1478. .button-group.round.stack-for-small > * > a,
  1479. .button-group.round.stack-for-small > * > button,
  1480. .button-group.round.stack-for-small > * > .button {
  1481. border-radius: 0; }
  1482. .button-group.round.stack-for-small > *:first-child,
  1483. .button-group.round.stack-for-small > *:first-child > a,
  1484. .button-group.round.stack-for-small > *:first-child > button,
  1485. .button-group.round.stack-for-small > *:first-child > .button {
  1486. -webkit-border-bottom-left-radius: 1000px;
  1487. -webkit-border-top-left-radius: 1000px;
  1488. border-bottom-left-radius: 1000px;
  1489. border-top-left-radius: 1000px; }
  1490. .button-group.round.stack-for-small > *:last-child,
  1491. .button-group.round.stack-for-small > *:last-child > a,
  1492. .button-group.round.stack-for-small > *:last-child > button,
  1493. .button-group.round.stack-for-small > *:last-child > .button {
  1494. -webkit-border-bottom-right-radius: 1000px;
  1495. -webkit-border-top-right-radius: 1000px;
  1496. border-bottom-right-radius: 1000px;
  1497. border-top-right-radius: 1000px; } }
  1498. @media only screen and (max-width: 40em) {
  1499. .button-group.round.stack-for-small > * {
  1500. display: block;
  1501. margin: 0; }
  1502. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1503. border-left: 1px solid;
  1504. border-color: rgba(255, 255, 255, 0.5); }
  1505. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1506. border-left: 0; }
  1507. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1508. border-color: rgba(255, 255, 255, 0.5);
  1509. border-left-width: 0;
  1510. border-top: 1px solid;
  1511. display: block;
  1512. margin: 0; }
  1513. .button-group.round.stack-for-small > * > button {
  1514. width: 100%; }
  1515. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1516. border-top: 0; }
  1517. .button-group.round.stack-for-small > *,
  1518. .button-group.round.stack-for-small > * > a,
  1519. .button-group.round.stack-for-small > * > button,
  1520. .button-group.round.stack-for-small > * > .button {
  1521. border-radius: 0; }
  1522. .button-group.round.stack-for-small > *:first-child,
  1523. .button-group.round.stack-for-small > *:first-child > a,
  1524. .button-group.round.stack-for-small > *:first-child > button,
  1525. .button-group.round.stack-for-small > *:first-child > .button {
  1526. -webkit-top-left-radius: 1rem;
  1527. -webkit-top-right-radius: 1rem;
  1528. border-top-left-radius: 1rem;
  1529. border-top-right-radius: 1rem; }
  1530. .button-group.round.stack-for-small > *:last-child,
  1531. .button-group.round.stack-for-small > *:last-child > a,
  1532. .button-group.round.stack-for-small > *:last-child > button,
  1533. .button-group.round.stack-for-small > *:last-child > .button {
  1534. -webkit-bottom-left-radius: 1rem;
  1535. -webkit-bottom-right-radius: 1rem;
  1536. border-bottom-left-radius: 1rem;
  1537. border-bottom-right-radius: 1rem; } }
  1538. .button-bar:before, .button-bar:after {
  1539. content: " ";
  1540. display: table; }
  1541. .button-bar:after {
  1542. clear: both; }
  1543. .button-bar .button-group {
  1544. float: left;
  1545. margin-right: 0.625rem; }
  1546. .button-bar .button-group div {
  1547. overflow: hidden; }
  1548. .row {
  1549. margin: 0 auto;
  1550. max-width: 62.5rem;
  1551. width: 100%; }
  1552. .row:before, .row:after {
  1553. content: " ";
  1554. display: table; }
  1555. .row:after {
  1556. clear: both; }
  1557. .row.collapse > .column,
  1558. .row.collapse > .columns {
  1559. padding-left: 0;
  1560. padding-right: 0; }
  1561. .row.collapse .row {
  1562. margin-left: 0;
  1563. margin-right: 0; }
  1564. .row .row {
  1565. margin: 0 -0.9375rem;
  1566. max-width: none;
  1567. width: auto; }
  1568. .row .row:before, .row .row:after {
  1569. content: " ";
  1570. display: table; }
  1571. .row .row:after {
  1572. clear: both; }
  1573. .row .row.collapse {
  1574. margin: 0;
  1575. max-width: none;
  1576. width: auto; }
  1577. .row .row.collapse:before, .row .row.collapse:after {
  1578. content: " ";
  1579. display: table; }
  1580. .row .row.collapse:after {
  1581. clear: both; }
  1582. .column,
  1583. .columns {
  1584. padding-left: 0.9375rem;
  1585. padding-right: 0.9375rem;
  1586. width: 100%;
  1587. float: left; }
  1588. .column + .column:last-child,
  1589. .columns + .column:last-child, .column +
  1590. .columns:last-child,
  1591. .columns +
  1592. .columns:last-child {
  1593. float: right; }
  1594. .column + .column.end,
  1595. .columns + .column.end, .column +
  1596. .columns.end,
  1597. .columns +
  1598. .columns.end {
  1599. float: left; }
  1600. @media only screen {
  1601. .small-push-0 {
  1602. position: relative;
  1603. left: 0;
  1604. right: auto; }
  1605. .small-pull-0 {
  1606. position: relative;
  1607. right: 0;
  1608. left: auto; }
  1609. .small-push-1 {
  1610. position: relative;
  1611. left: 8.33333%;
  1612. right: auto; }
  1613. .small-pull-1 {
  1614. position: relative;
  1615. right: 8.33333%;
  1616. left: auto; }
  1617. .small-push-2 {
  1618. position: relative;
  1619. left: 16.66667%;
  1620. right: auto; }
  1621. .small-pull-2 {
  1622. position: relative;
  1623. right: 16.66667%;
  1624. left: auto; }
  1625. .small-push-3 {
  1626. position: relative;
  1627. left: 25%;
  1628. right: auto; }
  1629. .small-pull-3 {
  1630. position: relative;
  1631. right: 25%;
  1632. left: auto; }
  1633. .small-push-4 {
  1634. position: relative;
  1635. left: 33.33333%;
  1636. right: auto; }
  1637. .small-pull-4 {
  1638. position: relative;
  1639. right: 33.33333%;
  1640. left: auto; }
  1641. .small-push-5 {
  1642. position: relative;
  1643. left: 41.66667%;
  1644. right: auto; }
  1645. .small-pull-5 {
  1646. position: relative;
  1647. right: 41.66667%;
  1648. left: auto; }
  1649. .small-push-6 {
  1650. position: relative;
  1651. left: 50%;
  1652. right: auto; }
  1653. .small-pull-6 {
  1654. position: relative;
  1655. right: 50%;
  1656. left: auto; }
  1657. .small-push-7 {
  1658. position: relative;
  1659. left: 58.33333%;
  1660. right: auto; }
  1661. .small-pull-7 {
  1662. position: relative;
  1663. right: 58.33333%;
  1664. left: auto; }
  1665. .small-push-8 {
  1666. position: relative;
  1667. left: 66.66667%;
  1668. right: auto; }
  1669. .small-pull-8 {
  1670. position: relative;
  1671. right: 66.66667%;
  1672. left: auto; }
  1673. .small-push-9 {
  1674. position: relative;
  1675. left: 75%;
  1676. right: auto; }
  1677. .small-pull-9 {
  1678. position: relative;
  1679. right: 75%;
  1680. left: auto; }
  1681. .small-push-10 {
  1682. position: relative;
  1683. left: 83.33333%;
  1684. right: auto; }
  1685. .small-pull-10 {
  1686. position: relative;
  1687. right: 83.33333%;
  1688. left: auto; }
  1689. .small-push-11 {
  1690. position: relative;
  1691. left: 91.66667%;
  1692. right: auto; }
  1693. .small-pull-11 {
  1694. position: relative;
  1695. right: 91.66667%;
  1696. left: auto; }
  1697. .column,
  1698. .columns {
  1699. position: relative;
  1700. padding-left: 0.9375rem;
  1701. padding-right: 0.9375rem;
  1702. float: left; }
  1703. .small-1 {
  1704. width: 8.33333%; }
  1705. .small-2 {
  1706. width: 16.66667%; }
  1707. .small-3 {
  1708. width: 25%; }
  1709. .small-4 {
  1710. width: 33.33333%; }
  1711. .small-5 {
  1712. width: 41.66667%; }
  1713. .small-6 {
  1714. width: 50%; }
  1715. .small-7 {
  1716. width: 58.33333%; }
  1717. .small-8 {
  1718. width: 66.66667%; }
  1719. .small-9 {
  1720. width: 75%; }
  1721. .small-10 {
  1722. width: 83.33333%; }
  1723. .small-11 {
  1724. width: 91.66667%; }
  1725. .small-12 {
  1726. width: 100%; }
  1727. .small-offset-0 {
  1728. margin-left: 0 !important; }
  1729. .small-offset-1 {
  1730. margin-left: 8.33333% !important; }
  1731. .small-offset-2 {
  1732. margin-left: 16.66667% !important; }
  1733. .small-offset-3 {
  1734. margin-left: 25% !important; }
  1735. .small-offset-4 {
  1736. margin-left: 33.33333% !important; }
  1737. .small-offset-5 {
  1738. margin-left: 41.66667% !important; }
  1739. .small-offset-6 {
  1740. margin-left: 50% !important; }
  1741. .small-offset-7 {
  1742. margin-left: 58.33333% !important; }
  1743. .small-offset-8 {
  1744. margin-left: 66.66667% !important; }
  1745. .small-offset-9 {
  1746. margin-left: 75% !important; }
  1747. .small-offset-10 {
  1748. margin-left: 83.33333% !important; }
  1749. .small-offset-11 {
  1750. margin-left: 91.66667% !important; }
  1751. .small-reset-order {
  1752. float: left;
  1753. left: auto;
  1754. margin-left: 0;
  1755. margin-right: 0;
  1756. right: auto; }
  1757. .column.small-centered,
  1758. .columns.small-centered {
  1759. margin-left: auto;
  1760. margin-right: auto;
  1761. float: none; }
  1762. .column.small-uncentered,
  1763. .columns.small-uncentered {
  1764. float: left;
  1765. margin-left: 0;
  1766. margin-right: 0; }
  1767. .column.small-centered:last-child,
  1768. .columns.small-centered:last-child {
  1769. float: none; }
  1770. .column.small-uncentered:last-child,
  1771. .columns.small-uncentered:last-child {
  1772. float: left; }
  1773. .column.small-uncentered.opposite,
  1774. .columns.small-uncentered.opposite {
  1775. float: right; }
  1776. .row.small-collapse > .column,
  1777. .row.small-collapse > .columns {
  1778. padding-left: 0;
  1779. padding-right: 0; }
  1780. .row.small-collapse .row {
  1781. margin-left: 0;
  1782. margin-right: 0; }
  1783. .row.small-uncollapse > .column,
  1784. .row.small-uncollapse > .columns {
  1785. padding-left: 0.9375rem;
  1786. padding-right: 0.9375rem;
  1787. float: left; } }
  1788. @media only screen and (min-width: 40.0625em) {
  1789. .medium-push-0 {
  1790. position: relative;
  1791. left: 0;
  1792. right: auto; }
  1793. .medium-pull-0 {
  1794. position: relative;
  1795. right: 0;
  1796. left: auto; }
  1797. .medium-push-1 {
  1798. position: relative;
  1799. left: 8.33333%;
  1800. right: auto; }
  1801. .medium-pull-1 {
  1802. position: relative;
  1803. right: 8.33333%;
  1804. left: auto; }
  1805. .medium-push-2 {
  1806. position: relative;
  1807. left: 16.66667%;
  1808. right: auto; }
  1809. .medium-pull-2 {
  1810. position: relative;
  1811. right: 16.66667%;
  1812. left: auto; }
  1813. .medium-push-3 {
  1814. position: relative;
  1815. left: 25%;
  1816. right: auto; }
  1817. .medium-pull-3 {
  1818. position: relative;
  1819. right: 25%;
  1820. left: auto; }
  1821. .medium-push-4 {
  1822. position: relative;
  1823. left: 33.33333%;
  1824. right: auto; }
  1825. .medium-pull-4 {
  1826. position: relative;
  1827. right: 33.33333%;
  1828. left: auto; }
  1829. .medium-push-5 {
  1830. position: relative;
  1831. left: 41.66667%;
  1832. right: auto; }
  1833. .medium-pull-5 {
  1834. position: relative;
  1835. right: 41.66667%;
  1836. left: auto; }
  1837. .medium-push-6 {
  1838. position: relative;
  1839. left: 50%;
  1840. right: auto; }
  1841. .medium-pull-6 {
  1842. position: relative;
  1843. right: 50%;
  1844. left: auto; }
  1845. .medium-push-7 {
  1846. position: relative;
  1847. left: 58.33333%;
  1848. right: auto; }
  1849. .medium-pull-7 {
  1850. position: relative;
  1851. right: 58.33333%;
  1852. left: auto; }
  1853. .medium-push-8 {
  1854. position: relative;
  1855. left: 66.66667%;
  1856. right: auto; }
  1857. .medium-pull-8 {
  1858. position: relative;
  1859. right: 66.66667%;
  1860. left: auto; }
  1861. .medium-push-9 {
  1862. position: relative;
  1863. left: 75%;
  1864. right: auto; }
  1865. .medium-pull-9 {
  1866. position: relative;
  1867. right: 75%;
  1868. left: auto; }
  1869. .medium-push-10 {
  1870. position: relative;
  1871. left: 83.33333%;
  1872. right: auto; }
  1873. .medium-pull-10 {
  1874. position: relative;
  1875. right: 83.33333%;
  1876. left: auto; }
  1877. .medium-push-11 {
  1878. position: relative;
  1879. left: 91.66667%;
  1880. right: auto; }
  1881. .medium-pull-11 {
  1882. position: relative;
  1883. right: 91.66667%;
  1884. left: auto; }
  1885. .column,
  1886. .columns {
  1887. position: relative;
  1888. padding-left: 0.9375rem;
  1889. padding-right: 0.9375rem;
  1890. float: left; }
  1891. .medium-1 {
  1892. width: 8.33333%; }
  1893. .medium-2 {
  1894. width: 16.66667%; }
  1895. .medium-3 {
  1896. width: 25%; }
  1897. .medium-4 {
  1898. width: 33.33333%; }
  1899. .medium-5 {
  1900. width: 41.66667%; }
  1901. .medium-6 {
  1902. width: 50%; }
  1903. .medium-7 {
  1904. width: 58.33333%; }
  1905. .medium-8 {
  1906. width: 66.66667%; }
  1907. .medium-9 {
  1908. width: 75%; }
  1909. .medium-10 {
  1910. width: 83.33333%; }
  1911. .medium-11 {
  1912. width: 91.66667%; }
  1913. .medium-12 {
  1914. width: 100%; }
  1915. .medium-offset-0 {
  1916. margin-left: 0 !important; }
  1917. .medium-offset-1 {
  1918. margin-left: 8.33333% !important; }
  1919. .medium-offset-2 {
  1920. margin-left: 16.66667% !important; }
  1921. .medium-offset-3 {
  1922. margin-left: 25% !important; }
  1923. .medium-offset-4 {
  1924. margin-left: 33.33333% !important; }
  1925. .medium-offset-5 {
  1926. margin-left: 41.66667% !important; }
  1927. .medium-offset-6 {
  1928. margin-left: 50% !important; }
  1929. .medium-offset-7 {
  1930. margin-left: 58.33333% !important; }
  1931. .medium-offset-8 {
  1932. margin-left: 66.66667% !important; }
  1933. .medium-offset-9 {
  1934. margin-left: 75% !important; }
  1935. .medium-offset-10 {
  1936. margin-left: 83.33333% !important; }
  1937. .medium-offset-11 {
  1938. margin-left: 91.66667% !important; }
  1939. .medium-reset-order {
  1940. float: left;
  1941. left: auto;
  1942. margin-left: 0;
  1943. margin-right: 0;
  1944. right: auto; }
  1945. .column.medium-centered,
  1946. .columns.medium-centered {
  1947. margin-left: auto;
  1948. margin-right: auto;
  1949. float: none; }
  1950. .column.medium-uncentered,
  1951. .columns.medium-uncentered {
  1952. float: left;
  1953. margin-left: 0;
  1954. margin-right: 0; }
  1955. .column.medium-centered:last-child,
  1956. .columns.medium-centered:last-child {
  1957. float: none; }
  1958. .column.medium-uncentered:last-child,
  1959. .columns.medium-uncentered:last-child {
  1960. float: left; }
  1961. .column.medium-uncentered.opposite,
  1962. .columns.medium-uncentered.opposite {
  1963. float: right; }
  1964. .row.medium-collapse > .column,
  1965. .row.medium-collapse > .columns {
  1966. padding-left: 0;
  1967. padding-right: 0; }
  1968. .row.medium-collapse .row {
  1969. margin-left: 0;
  1970. margin-right: 0; }
  1971. .row.medium-uncollapse > .column,
  1972. .row.medium-uncollapse > .columns {
  1973. padding-left: 0.9375rem;
  1974. padding-right: 0.9375rem;
  1975. float: left; }
  1976. .push-0 {
  1977. position: relative;
  1978. left: 0;
  1979. right: auto; }
  1980. .pull-0 {
  1981. position: relative;
  1982. right: 0;
  1983. left: auto; }
  1984. .push-1 {
  1985. position: relative;
  1986. left: 8.33333%;
  1987. right: auto; }
  1988. .pull-1 {
  1989. position: relative;
  1990. right: 8.33333%;
  1991. left: auto; }
  1992. .push-2 {
  1993. position: relative;
  1994. left: 16.66667%;
  1995. right: auto; }
  1996. .pull-2 {
  1997. position: relative;
  1998. right: 16.66667%;
  1999. left: auto; }
  2000. .push-3 {
  2001. position: relative;
  2002. left: 25%;
  2003. right: auto; }
  2004. .pull-3 {
  2005. position: relative;
  2006. right: 25%;
  2007. left: auto; }
  2008. .push-4 {
  2009. position: relative;
  2010. left: 33.33333%;
  2011. right: auto; }
  2012. .pull-4 {
  2013. position: relative;
  2014. right: 33.33333%;
  2015. left: auto; }
  2016. .push-5 {
  2017. position: relative;
  2018. left: 41.66667%;
  2019. right: auto; }
  2020. .pull-5 {
  2021. position: relative;
  2022. right: 41.66667%;
  2023. left: auto; }
  2024. .push-6 {
  2025. position: relative;
  2026. left: 50%;
  2027. right: auto; }
  2028. .pull-6 {
  2029. position: relative;
  2030. right: 50%;
  2031. left: auto; }
  2032. .push-7 {
  2033. position: relative;
  2034. left: 58.33333%;
  2035. right: auto; }
  2036. .pull-7 {
  2037. position: relative;
  2038. right: 58.33333%;
  2039. left: auto; }
  2040. .push-8 {
  2041. position: relative;
  2042. left: 66.66667%;
  2043. right: auto; }
  2044. .pull-8 {
  2045. position: relative;
  2046. right: 66.66667%;
  2047. left: auto; }
  2048. .push-9 {
  2049. position: relative;
  2050. left: 75%;
  2051. right: auto; }
  2052. .pull-9 {
  2053. position: relative;
  2054. right: 75%;
  2055. left: auto; }
  2056. .push-10 {
  2057. position: relative;
  2058. left: 83.33333%;
  2059. right: auto; }
  2060. .pull-10 {
  2061. position: relative;
  2062. right: 83.33333%;
  2063. left: auto; }
  2064. .push-11 {
  2065. position: relative;
  2066. left: 91.66667%;
  2067. right: auto; }
  2068. .pull-11 {
  2069. position: relative;
  2070. right: 91.66667%;
  2071. left: auto; } }
  2072. @media only screen and (min-width: 64.0625em) {
  2073. .large-push-0 {
  2074. position: relative;
  2075. left: 0;
  2076. right: auto; }
  2077. .large-pull-0 {
  2078. position: relative;
  2079. right: 0;
  2080. left: auto; }
  2081. .large-push-1 {
  2082. position: relative;
  2083. left: 8.33333%;
  2084. right: auto; }
  2085. .large-pull-1 {
  2086. position: relative;
  2087. right: 8.33333%;
  2088. left: auto; }
  2089. .large-push-2 {
  2090. position: relative;
  2091. left: 16.66667%;
  2092. right: auto; }
  2093. .large-pull-2 {
  2094. position: relative;
  2095. right: 16.66667%;
  2096. left: auto; }
  2097. .large-push-3 {
  2098. position: relative;
  2099. left: 25%;
  2100. right: auto; }
  2101. .large-pull-3 {
  2102. position: relative;
  2103. right: 25%;
  2104. left: auto; }
  2105. .large-push-4 {
  2106. position: relative;
  2107. left: 33.33333%;
  2108. right: auto; }
  2109. .large-pull-4 {
  2110. position: relative;
  2111. right: 33.33333%;
  2112. left: auto; }
  2113. .large-push-5 {
  2114. position: relative;
  2115. left: 41.66667%;
  2116. right: auto; }
  2117. .large-pull-5 {
  2118. position: relative;
  2119. right: 41.66667%;
  2120. left: auto; }
  2121. .large-push-6 {
  2122. position: relative;
  2123. left: 50%;
  2124. right: auto; }
  2125. .large-pull-6 {
  2126. position: relative;
  2127. right: 50%;
  2128. left: auto; }
  2129. .large-push-7 {
  2130. position: relative;
  2131. left: 58.33333%;
  2132. right: auto; }
  2133. .large-pull-7 {
  2134. position: relative;
  2135. right: 58.33333%;
  2136. left: auto; }
  2137. .large-push-8 {
  2138. position: relative;
  2139. left: 66.66667%;
  2140. right: auto; }
  2141. .large-pull-8 {
  2142. position: relative;
  2143. right: 66.66667%;
  2144. left: auto; }
  2145. .large-push-9 {
  2146. position: relative;
  2147. left: 75%;
  2148. right: auto; }
  2149. .large-pull-9 {
  2150. position: relative;
  2151. right: 75%;
  2152. left: auto; }
  2153. .large-push-10 {
  2154. position: relative;
  2155. left: 83.33333%;
  2156. right: auto; }
  2157. .large-pull-10 {
  2158. position: relative;
  2159. right: 83.33333%;
  2160. left: auto; }
  2161. .large-push-11 {
  2162. position: relative;
  2163. left: 91.66667%;
  2164. right: auto; }
  2165. .large-pull-11 {
  2166. position: relative;
  2167. right: 91.66667%;
  2168. left: auto; }
  2169. .column,
  2170. .columns {
  2171. position: relative;
  2172. padding-left: 0.9375rem;
  2173. padding-right: 0.9375rem;
  2174. float: left; }
  2175. .large-1 {
  2176. width: 8.33333%; }
  2177. .large-2 {
  2178. width: 16.66667%; }
  2179. .large-3 {
  2180. width: 25%; }
  2181. .large-4 {
  2182. width: 33.33333%; }
  2183. .large-5 {
  2184. width: 41.66667%; }
  2185. .large-6 {
  2186. width: 50%; }
  2187. .large-7 {
  2188. width: 58.33333%; }
  2189. .large-8 {
  2190. width: 66.66667%; }
  2191. .large-9 {
  2192. width: 75%; }
  2193. .large-10 {
  2194. width: 83.33333%; }
  2195. .large-11 {
  2196. width: 91.66667%; }
  2197. .large-12 {
  2198. width: 100%; }
  2199. .large-offset-0 {
  2200. margin-left: 0 !important; }
  2201. .large-offset-1 {
  2202. margin-left: 8.33333% !important; }
  2203. .large-offset-2 {
  2204. margin-left: 16.66667% !important; }
  2205. .large-offset-3 {
  2206. margin-left: 25% !important; }
  2207. .large-offset-4 {
  2208. margin-left: 33.33333% !important; }
  2209. .large-offset-5 {
  2210. margin-left: 41.66667% !important; }
  2211. .large-offset-6 {
  2212. margin-left: 50% !important; }
  2213. .large-offset-7 {
  2214. margin-left: 58.33333% !important; }
  2215. .large-offset-8 {
  2216. margin-left: 66.66667% !important; }
  2217. .large-offset-9 {
  2218. margin-left: 75% !important; }
  2219. .large-offset-10 {
  2220. margin-left: 83.33333% !important; }
  2221. .large-offset-11 {
  2222. margin-left: 91.66667% !important; }
  2223. .large-reset-order {
  2224. float: left;
  2225. left: auto;
  2226. margin-left: 0;
  2227. margin-right: 0;
  2228. right: auto; }
  2229. .column.large-centered,
  2230. .columns.large-centered {
  2231. margin-left: auto;
  2232. margin-right: auto;
  2233. float: none; }
  2234. .column.large-uncentered,
  2235. .columns.large-uncentered {
  2236. float: left;
  2237. margin-left: 0;
  2238. margin-right: 0; }
  2239. .column.large-centered:last-child,
  2240. .columns.large-centered:last-child {
  2241. float: none; }
  2242. .column.large-uncentered:last-child,
  2243. .columns.large-uncentered:last-child {
  2244. float: left; }
  2245. .column.large-uncentered.opposite,
  2246. .columns.large-uncentered.opposite {
  2247. float: right; }
  2248. .row.large-collapse > .column,
  2249. .row.large-collapse > .columns {
  2250. padding-left: 0;
  2251. padding-right: 0; }
  2252. .row.large-collapse .row {
  2253. margin-left: 0;
  2254. margin-right: 0; }
  2255. .row.large-uncollapse > .column,
  2256. .row.large-uncollapse > .columns {
  2257. padding-left: 0.9375rem;
  2258. padding-right: 0.9375rem;
  2259. float: left; }
  2260. .push-0 {
  2261. position: relative;
  2262. left: 0;
  2263. right: auto; }
  2264. .pull-0 {
  2265. position: relative;
  2266. right: 0;
  2267. left: auto; }
  2268. .push-1 {
  2269. position: relative;
  2270. left: 8.33333%;
  2271. right: auto; }
  2272. .pull-1 {
  2273. position: relative;
  2274. right: 8.33333%;
  2275. left: auto; }
  2276. .push-2 {
  2277. position: relative;
  2278. left: 16.66667%;
  2279. right: auto; }
  2280. .pull-2 {
  2281. position: relative;
  2282. right: 16.66667%;
  2283. left: auto; }
  2284. .push-3 {
  2285. position: relative;
  2286. left: 25%;
  2287. right: auto; }
  2288. .pull-3 {
  2289. position: relative;
  2290. right: 25%;
  2291. left: auto; }
  2292. .push-4 {
  2293. position: relative;
  2294. left: 33.33333%;
  2295. right: auto; }
  2296. .pull-4 {
  2297. position: relative;
  2298. right: 33.33333%;
  2299. left: auto; }
  2300. .push-5 {
  2301. position: relative;
  2302. left: 41.66667%;
  2303. right: auto; }
  2304. .pull-5 {
  2305. position: relative;
  2306. right: 41.66667%;
  2307. left: auto; }
  2308. .push-6 {
  2309. position: relative;
  2310. left: 50%;
  2311. right: auto; }
  2312. .pull-6 {
  2313. position: relative;
  2314. right: 50%;
  2315. left: auto; }
  2316. .push-7 {
  2317. position: relative;
  2318. left: 58.33333%;
  2319. right: auto; }
  2320. .pull-7 {
  2321. position: relative;
  2322. right: 58.33333%;
  2323. left: auto; }
  2324. .push-8 {
  2325. position: relative;
  2326. left: 66.66667%;
  2327. right: auto; }
  2328. .pull-8 {
  2329. position: relative;
  2330. right: 66.66667%;
  2331. left: auto; }
  2332. .push-9 {
  2333. position: relative;
  2334. left: 75%;
  2335. right: auto; }
  2336. .pull-9 {
  2337. position: relative;
  2338. right: 75%;
  2339. left: auto; }
  2340. .push-10 {
  2341. position: relative;
  2342. left: 83.33333%;
  2343. right: auto; }
  2344. .pull-10 {
  2345. position: relative;
  2346. right: 83.33333%;
  2347. left: auto; }
  2348. .push-11 {
  2349. position: relative;
  2350. left: 91.66667%;
  2351. right: auto; }
  2352. .pull-11 {
  2353. position: relative;
  2354. right: 91.66667%;
  2355. left: auto; } }
  2356. /*
  2357. * www.g-u-i.net
  2358. */
  2359. /*
  2360. __
  2361. _________ / /___ __________
  2362. / ___/ __ \/ / __ \/ ___/ ___/
  2363. / /__/ /_/ / / /_/ / / (__ )
  2364. \___/\____/_/\____/_/ /____/
  2365. */
  2366. body {
  2367. font-size: 16px;
  2368. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2369. font-weight: 500;
  2370. font-style: normal;
  2371. line-height: 1.3; }
  2372. a {
  2373. color: #007BC2;
  2374. text-decoration: none; }
  2375. h1 {
  2376. font-size: 1.6em; }
  2377. h2 {
  2378. font-size: 1.5em; }
  2379. h3 {
  2380. font-size: 1.4em; }
  2381. h4 {
  2382. font-size: 1.3em; }
  2383. h5 {
  2384. font-size: 1.2em; }
  2385. h6 {
  2386. font-size: 1.1em; }
  2387. input, button, select, textarea {
  2388. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2389. font-weight: 500;
  2390. font-style: normal; }
  2391. #footer #footer-bottom {
  2392. text-align: center; }
  2393. #footer #footer-bottom .block {
  2394. font-size: 8px; }
  2395. /** RESPONSIVE break points */
  2396. /*
  2397. $small-breakpoint: em-calc(480) !default;
  2398. $medium-breakpoint: em-calc(768) !default;
  2399. $large-breakpoint: em-calc(980) !default;
  2400. $xlarge-breakpoint: em-calc(1200) !default;
  2401. $small-range: (0, $small-breakpoint) !default; // 0, 480px
  2402. $medium-range: ($small-breakpoint + em-calc(1), $medium-breakpoint) !default; 481px, 768px //
  2403. $large-range: ($medium-breakpoint + em-calc(1), $large-breakpoint) !default; // 769px, 980px
  2404. $xlarge-range: ($large-breakpoint + em-calc(1), $xlarge-breakpoint) !default; // 981px, 1200px
  2405. $xxlarge-range: ($xlarge-breakpoint + em-calc(1), em-calc(99999999)) !default; // 1201px, ...
  2406. // Media Queries
  2407. $screen: "only screen" !default;
  2408. $landscape: "only screen and (orientation: landscape)" !default;
  2409. $portrait: "only screen and (orientation: portrait)" !default;
  2410. $small-up: $screen !default;
  2411. $small-only: "only screen and (max-width: 40em)" !default;
  2412. $medium-up: "only screen and (min-width:40.0625em)" !default;
  2413. $medium-only: "only screen and (min-width:40.0625em) and (max-width:64em)" !default;
  2414. $large-up: "only screen and (min-width:64.0625em)" !default;
  2415. $large-only: "only screen and (min-width:64.0625em) and (max-width:90em)" !default;
  2416. $xlarge-up: "only screen and (min-width:90.0625em)" !default;
  2417. $xlarge-only: "only screen and (min-width:90.0625em) and (max-width:120em)" !default;
  2418. $xxlarge-up: "only screen and (min-width:120.0625em)" !default;
  2419. $xxlarge-only: "only screen and (min-width:120.0625em) and (max-width:6249999.9375em)" !default;
  2420. $retina: (
  2421. "only screen and (-webkit-min-device-pixel-ratio: 2)",
  2422. "only screen and (min--moz-device-pixel-ratio: 2)",
  2423. "only screen and (-o-min-device-pixel-ratio: 2/1)",
  2424. "only screen and (min-device-pixel-ratio: 2)",
  2425. "only screen and (min-resolution: 192dpi)",
  2426. "only screen and (min-resolution: 2dppx)"
  2427. );
  2428. */
  2429. * {
  2430. box-sizing: content-box; }
  2431. *:before, *:after {
  2432. box-sizing: content-box; }
  2433. body {
  2434. overflow-y: scroll;
  2435. top: 0;
  2436. background-color: #f7f4ed; }
  2437. h1, h2, h3, h4, h5, h6 {
  2438. font-family: inherit; }
  2439. h1 {
  2440. font-weight: bold; }
  2441. figure {
  2442. margin: 0; }
  2443. input[type="checkbox"] + label {
  2444. margin: 0; }
  2445. p {
  2446. font-family: inherit;
  2447. font-weight: inherit;
  2448. font-size: inherit;
  2449. line-height: inherit;
  2450. margin-bottom: inherit; }
  2451. a {
  2452. font-size: inherit; }
  2453. .column, .columns {
  2454. padding: inherit;
  2455. float: inherit; }
  2456. /** NIVEAU 0 */
  2457. #root {
  2458. min-width: 320px; }
  2459. .ie8 #root {
  2460. min-width: 1024px; }
  2461. /** NIVEAU 1 */
  2462. #container {
  2463. margin: 0 auto;
  2464. position: relative;
  2465. transition: padding-top 0.5s ease-out, 1s, ease-out; }
  2466. /** NIVEAU 2 */
  2467. #header {
  2468. background-color: #fff;
  2469. z-index: 1000;
  2470. width: 96%;
  2471. padding-left: 2%;
  2472. padding-right: 2%; }
  2473. html.no-touch #header {
  2474. position: fixed;
  2475. top: 0;
  2476. margin: 0 auto;
  2477. min-width: 310.4px; }
  2478. .admin-menu #header {
  2479. margin-top: 35px; }
  2480. #utilities {
  2481. z-index: 999;
  2482. width: 96%;
  2483. padding-left: 2%;
  2484. padding-right: 2%; }
  2485. html.no-touch #utilities {
  2486. position: fixed;
  2487. top: 0;
  2488. margin: 0 auto;
  2489. min-width: 310.4px;
  2490. margin-top: 60px; }
  2491. html.no-touch .admin-menu #utilities {
  2492. margin-top: 85px; }
  2493. @media only screen and (max-width: 40em) {
  2494. #utilities > .region {
  2495. padding-top: 5px;
  2496. padding-bottom: 5px; } }
  2497. #main {
  2498. width: 96%;
  2499. padding-left: 2%;
  2500. padding-right: 2%;
  2501. overflow-x: hidden; }
  2502. #footer {
  2503. width: 96%;
  2504. padding-left: 2%;
  2505. padding-right: 2%;
  2506. padding-top: 2em; }
  2507. /** NIVEAU 3 */
  2508. /** NIVEAU 4 */
  2509. /** Z-INDEX */
  2510. #block-feedback-form {
  2511. z-index: 1001; }
  2512. #admin-menu {
  2513. z-index: 1002; }
  2514. #admin-toolbar {
  2515. z-index: 1003; }
  2516. /*
  2517. __ __ ___
  2518. / / / /___ ____ ___ ___ _ _|__ / /_/ / __ \/ __ `__ \/ _ \ | | / /_/ /
  2519. / __ / /_/ / / / / / / __/ | |/ / __/
  2520. /_/ /_/\____/_/ /_/ /_/\___/ |___/____/
  2521. */
  2522. body.front:not(.page-actuality) #header > .inner, body.front:not(.page-actuality) #utilities > .inner, body.front:not(.page-actuality) #center, body.front:not(.page-actuality) #footer,
  2523. body.page-whoweare #header > .inner,
  2524. body.page-whoweare #utilities > .inner,
  2525. body.page-whoweare #center,
  2526. body.page-whoweare #footer,
  2527. body.page-node-11187 #header > .inner,
  2528. body.page-node-11187 #utilities > .inner,
  2529. body.page-node-11187 #center,
  2530. body.page-node-11187 #footer,
  2531. body.page-node-11175 #header > .inner,
  2532. body.page-node-11175 #utilities > .inner,
  2533. body.page-node-11175 #center,
  2534. body.page-node-11175 #footer,
  2535. body.page-node-12324 #header > .inner,
  2536. body.page-node-12324 #utilities > .inner,
  2537. body.page-node-12324 #center,
  2538. body.page-node-12324 #footer,
  2539. body.page-user #header > .inner,
  2540. body.page-user #utilities > .inner,
  2541. body.page-user #center,
  2542. body.page-user #footer,
  2543. body.page-node-11186 #header > .inner,
  2544. body.page-node-11186 #utilities > .inner,
  2545. body.page-node-11186 #center,
  2546. body.page-node-11186 #footer,
  2547. body.page-cart #header > .inner,
  2548. body.page-cart #utilities > .inner,
  2549. body.page-cart #center,
  2550. body.page-cart #footer,
  2551. body.node-type-simplenews #header > .inner,
  2552. body.node-type-simplenews #utilities > .inner,
  2553. body.node-type-simplenews #center,
  2554. body.node-type-simplenews #footer,
  2555. body.node-type-publication #header > .inner,
  2556. body.node-type-publication #utilities > .inner,
  2557. body.node-type-publication #center,
  2558. body.node-type-publication #footer {
  2559. margin: 0 auto;
  2560. max-width: 80rem;
  2561. width: 100%; }
  2562. body.front:not(.page-actuality) #header > .inner:before, body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:before, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:before, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:before, body.front:not(.page-actuality) #footer:after,
  2563. body.page-whoweare #header > .inner:before,
  2564. body.page-whoweare #header > .inner:after,
  2565. body.page-whoweare #utilities > .inner:before,
  2566. body.page-whoweare #utilities > .inner:after,
  2567. body.page-whoweare #center:before,
  2568. body.page-whoweare #center:after,
  2569. body.page-whoweare #footer:before,
  2570. body.page-whoweare #footer:after,
  2571. body.page-node-11187 #header > .inner:before,
  2572. body.page-node-11187 #header > .inner:after,
  2573. body.page-node-11187 #utilities > .inner:before,
  2574. body.page-node-11187 #utilities > .inner:after,
  2575. body.page-node-11187 #center:before,
  2576. body.page-node-11187 #center:after,
  2577. body.page-node-11187 #footer:before,
  2578. body.page-node-11187 #footer:after,
  2579. body.page-node-11175 #header > .inner:before,
  2580. body.page-node-11175 #header > .inner:after,
  2581. body.page-node-11175 #utilities > .inner:before,
  2582. body.page-node-11175 #utilities > .inner:after,
  2583. body.page-node-11175 #center:before,
  2584. body.page-node-11175 #center:after,
  2585. body.page-node-11175 #footer:before,
  2586. body.page-node-11175 #footer:after,
  2587. body.page-node-12324 #header > .inner:before,
  2588. body.page-node-12324 #header > .inner:after,
  2589. body.page-node-12324 #utilities > .inner:before,
  2590. body.page-node-12324 #utilities > .inner:after,
  2591. body.page-node-12324 #center:before,
  2592. body.page-node-12324 #center:after,
  2593. body.page-node-12324 #footer:before,
  2594. body.page-node-12324 #footer:after,
  2595. body.page-user #header > .inner:before,
  2596. body.page-user #header > .inner:after,
  2597. body.page-user #utilities > .inner:before,
  2598. body.page-user #utilities > .inner:after,
  2599. body.page-user #center:before,
  2600. body.page-user #center:after,
  2601. body.page-user #footer:before,
  2602. body.page-user #footer:after,
  2603. body.page-node-11186 #header > .inner:before,
  2604. body.page-node-11186 #header > .inner:after,
  2605. body.page-node-11186 #utilities > .inner:before,
  2606. body.page-node-11186 #utilities > .inner:after,
  2607. body.page-node-11186 #center:before,
  2608. body.page-node-11186 #center:after,
  2609. body.page-node-11186 #footer:before,
  2610. body.page-node-11186 #footer:after,
  2611. body.page-cart #header > .inner:before,
  2612. body.page-cart #header > .inner:after,
  2613. body.page-cart #utilities > .inner:before,
  2614. body.page-cart #utilities > .inner:after,
  2615. body.page-cart #center:before,
  2616. body.page-cart #center:after,
  2617. body.page-cart #footer:before,
  2618. body.page-cart #footer:after,
  2619. body.node-type-simplenews #header > .inner:before,
  2620. body.node-type-simplenews #header > .inner:after,
  2621. body.node-type-simplenews #utilities > .inner:before,
  2622. body.node-type-simplenews #utilities > .inner:after,
  2623. body.node-type-simplenews #center:before,
  2624. body.node-type-simplenews #center:after,
  2625. body.node-type-simplenews #footer:before,
  2626. body.node-type-simplenews #footer:after,
  2627. body.node-type-publication #header > .inner:before,
  2628. body.node-type-publication #header > .inner:after,
  2629. body.node-type-publication #utilities > .inner:before,
  2630. body.node-type-publication #utilities > .inner:after,
  2631. body.node-type-publication #center:before,
  2632. body.node-type-publication #center:after,
  2633. body.node-type-publication #footer:before,
  2634. body.node-type-publication #footer:after {
  2635. content: " ";
  2636. display: table; }
  2637. body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:after,
  2638. body.page-whoweare #header > .inner:after,
  2639. body.page-whoweare #utilities > .inner:after,
  2640. body.page-whoweare #center:after,
  2641. body.page-whoweare #footer:after,
  2642. body.page-node-11187 #header > .inner:after,
  2643. body.page-node-11187 #utilities > .inner:after,
  2644. body.page-node-11187 #center:after,
  2645. body.page-node-11187 #footer:after,
  2646. body.page-node-11175 #header > .inner:after,
  2647. body.page-node-11175 #utilities > .inner:after,
  2648. body.page-node-11175 #center:after,
  2649. body.page-node-11175 #footer:after,
  2650. body.page-node-12324 #header > .inner:after,
  2651. body.page-node-12324 #utilities > .inner:after,
  2652. body.page-node-12324 #center:after,
  2653. body.page-node-12324 #footer:after,
  2654. body.page-user #header > .inner:after,
  2655. body.page-user #utilities > .inner:after,
  2656. body.page-user #center:after,
  2657. body.page-user #footer:after,
  2658. body.page-node-11186 #header > .inner:after,
  2659. body.page-node-11186 #utilities > .inner:after,
  2660. body.page-node-11186 #center:after,
  2661. body.page-node-11186 #footer:after,
  2662. body.page-cart #header > .inner:after,
  2663. body.page-cart #utilities > .inner:after,
  2664. body.page-cart #center:after,
  2665. body.page-cart #footer:after,
  2666. body.node-type-simplenews #header > .inner:after,
  2667. body.node-type-simplenews #utilities > .inner:after,
  2668. body.node-type-simplenews #center:after,
  2669. body.node-type-simplenews #footer:after,
  2670. body.node-type-publication #header > .inner:after,
  2671. body.node-type-publication #utilities > .inner:after,
  2672. body.node-type-publication #center:after,
  2673. body.node-type-publication #footer:after {
  2674. clear: both; }
  2675. .op-visible {
  2676. visibility: visible; }
  2677. .csstransitions .op-visible {
  2678. opacity: 1;
  2679. transition: opacity 0.3s ease-out; }
  2680. .op-hidden {
  2681. visibility: hidden; }
  2682. .op-hidden > * {
  2683. margin-top: -100000px; }
  2684. .csstransition .op-hidden {
  2685. opacity: 0;
  2686. transition: visibility 0s 0.3s; }
  2687. .csstransition .op-hidden > * {
  2688. transition: margin-top 0s 0.3s; }
  2689. /** colomnized() */
  2690. /*
  2691. __ ___________ ____ __________
  2692. / / / / ____/ | / __ \/ ____/ __ / /_/ / __/ / /| | / / / / __/ / /_/ /
  2693. / __ / /___/ ___ |/ /_/ / /___/ _, _/
  2694. /_/ /_/_____/_/ |_/_____/_____/_/ |_|
  2695. */
  2696. #header {
  2697. padding-top: 5px;
  2698. padding-bottom: 10px;
  2699. height: 45px; }
  2700. #header a, #header a:active, #header a:visited {
  2701. color: #000; }
  2702. #header .logo {
  2703. display: moz-inline-stack;
  2704. display: inline-block;
  2705. vertical-align: top;
  2706. zoom: 1;
  2707. *display: inline; }
  2708. #header .logo h1 {
  2709. margin: 0;
  2710. font-size: 36px;
  2711. display: moz-inline-stack;
  2712. display: inline-block;
  2713. vertical-align: top;
  2714. zoom: 1;
  2715. *display: inline;
  2716. vertical-align: baseline;
  2717. position: relative;
  2718. line-height: 1.25; }
  2719. #header .logo h1 a:hover {
  2720. text-decoration: none; }
  2721. #header .logo span.slogan {
  2722. font-size: 14px;
  2723. margin-top: -3px;
  2724. margin-left: -0.5em;
  2725. font-weight: 900; }
  2726. @media only screen and (max-width: 40em) {
  2727. #header .logo span.slogan {
  2728. display: none; } }
  2729. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2730. #header .logo span.slogan {
  2731. display: block;
  2732. margin-left: 0.1em; } }
  2733. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  2734. #header .logo span.slogan {
  2735. display: block;
  2736. margin-left: 0.1em; } }
  2737. .ie8 #header .logo span.slogan {
  2738. position: absolute;
  2739. margin-top: 22px; }
  2740. #header #header-blocks {
  2741. padding-top: 17px;
  2742. float: right;
  2743. text-align: right;
  2744. text-transform: capitalize; }
  2745. #header #header-blocks > .region {
  2746. display: moz-inline-stack;
  2747. display: inline-block;
  2748. vertical-align: top;
  2749. zoom: 1;
  2750. *display: inline;
  2751. vertical-align: middle;
  2752. padding-right: 1em;
  2753. margin-right: 1em;
  2754. border-right: 1px solid #707070; }
  2755. @media only screen and (max-width: 40em) {
  2756. #header #header-blocks > .region {
  2757. padding-right: 0.3em;
  2758. margin-right: 0.3em; } }
  2759. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2760. #header #header-blocks > .region {
  2761. padding-right: 0.3em;
  2762. margin-right: 0.3em; } }
  2763. #header #header-blocks > .region:last-child {
  2764. border: none;
  2765. padding: 0;
  2766. margin: 0; }
  2767. #header #header-blocks .block {
  2768. display: moz-inline-stack;
  2769. display: inline-block;
  2770. vertical-align: top;
  2771. zoom: 1;
  2772. *display: inline;
  2773. vertical-align: middle; }
  2774. #header #header-blocks .block h2 {
  2775. font-size: 12px;
  2776. margin: 0;
  2777. line-height: 1.2;
  2778. font-weight: normal; }
  2779. #header #header-blocks .block:not(:last-child) {
  2780. padding-right: 0.8em; }
  2781. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  2782. #header #header-blocks .block:not(:last-child) {
  2783. padding-right: 0.3em; } }
  2784. @media only screen and (max-width: 40em) {
  2785. #header #header-blocks #headerblock-left {
  2786. display: none; } }
  2787. #header #header-blocks #block-social-media-links-social-media-links ul.social-media-links {
  2788. margin: 0;
  2789. line-height: 0; }
  2790. #header #header-blocks #block-social-media-links-social-media-links li {
  2791. line-height: 1; }
  2792. #header #header-blocks #block-social-media-links-social-media-links li.facebook a {
  2793. background-image: url("../img/socialicons/svg/Facebook-color.svg"); }
  2794. #header #header-blocks #block-social-media-links-social-media-links li.twitter a {
  2795. background-image: url("../img/socialicons/svg/Twitter-color.svg"); }
  2796. #header #header-blocks #block-social-media-links-social-media-links li.linkedin a {
  2797. background-image: url("../img/socialicons/svg/LinkedIn-color.svg"); }
  2798. #header #header-blocks #block-social-media-links-social-media-links li.pinterest a {
  2799. background-image: url("../img/socialicons/svg/Pinterest-color.svg"); }
  2800. #header #header-blocks #block-social-media-links-social-media-links li.vimeo a {
  2801. background-image: url("../img/socialicons/svg/Vimeo-color.svg"); }
  2802. #header #header-blocks #block-social-media-links-social-media-links li.rss a {
  2803. background-image: url("../img/socialicons/svg/RSS-color.svg"); }
  2804. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2805. #header #header-blocks #block-social-media-links-social-media-links li.linkedin, #header #header-blocks #block-social-media-links-social-media-links li.pinterest, #header #header-blocks #block-social-media-links-social-media-links li.vimeo {
  2806. display: none; } }
  2807. #header #header-blocks #block-social-media-links-social-media-links a {
  2808. display: block;
  2809. width: 16px;
  2810. height: 16px;
  2811. background-position: center;
  2812. background-repeat: no-repeat;
  2813. background-size: contain; }
  2814. #header #header-blocks #block-social-media-links-social-media-links img {
  2815. display: none; }
  2816. #header #header-blocks #block-materio-user-front-link a {
  2817. font-size: 12px; }
  2818. #header #header-blocks #block-materio-user-front-link span.text {
  2819. display: none; }
  2820. #header #header-blocks #block-user-login {
  2821. font-size: 12px;
  2822. text-align: left;
  2823. position: relative; }
  2824. #header #header-blocks #block-user-login h2 {
  2825. padding-right: 5px; }
  2826. #header #header-blocks #block-user-login h2 i {
  2827. vertical-align: text-bottom;
  2828. margin: 0 2px 2px 0; }
  2829. #header #header-blocks #block-user-login form#user-login-form {
  2830. position: absolute;
  2831. overflow: hidden;
  2832. right: 0;
  2833. margin: 0;
  2834. height: 0;
  2835. transition: height 0.3s ease-out; }
  2836. #header #header-blocks #block-user-login form#user-login-form > div {
  2837. padding: 5px;
  2838. margin: 5px;
  2839. background-color: #e6e6e6;
  2840. border-radius: 5px;
  2841. background-clip: padding-box;
  2842. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  2843. #header #header-blocks #block-user-login form#user-login-form .form-item {
  2844. margin: 0;
  2845. padding-bottom: 5px; }
  2846. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  2847. margin: 0;
  2848. font-size: 10px; }
  2849. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  2850. width: 150px;
  2851. height: 2em; }
  2852. #header #header-blocks #block-user-login form#user-login-form .form-actions {
  2853. margin: 5px 0;
  2854. padding: 0;
  2855. background-color: transparent;
  2856. text-align: right; }
  2857. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit {
  2858. font-size: 16px;
  2859. padding: 0.1em 0.6em 0.2em;
  2860. border-radius: 0.3em;
  2861. background-clip: padding-box;
  2862. font-weight: bold;
  2863. margin-bottom: 4px;
  2864. border: 2px solid #E6DE1C;
  2865. background-color: #E6DE1C;
  2866. color: #fff;
  2867. cursor: pointer;
  2868. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  2869. transition: text-shadow 0.2s ease-out; }
  2870. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:hover, #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:focus {
  2871. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  2872. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:active {
  2873. transition: text-shadow 0s ease-out;
  2874. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  2875. #header #header-blocks #block-user-login form#user-login-form div.newpass {
  2876. text-align: right; }
  2877. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  2878. font-size: 10px;
  2879. color: #686868;
  2880. text-transform: lowercase; }
  2881. html.no-touch #header #header-blocks #block-user-login:hover form#user-login-form, #header #header-blocks #block-user-login.hovered form#user-login-form {
  2882. height: 300px;
  2883. z-index: 1000; }
  2884. @media only screen and (max-width: 40em) {
  2885. #header #header-blocks #block-user-login span.login {
  2886. display: none; } }
  2887. #header #header-blocks #block-ajax-register-ajax-register-block {
  2888. font-size: 12px;
  2889. text-transform: lowercase; }
  2890. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2891. font-size: 12px;
  2892. line-height: 1.5; }
  2893. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2894. vertical-align: text-bottom;
  2895. margin: 0 5px 1px 0;
  2896. line-height: 1; }
  2897. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2898. text-transform: lowercase; }
  2899. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2900. display: none;
  2901. margin-left: 5px; }
  2902. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2903. margin: 0 0.5em 0 0.5em; }
  2904. @media only screen and (max-width: 40em) {
  2905. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2906. display: none; } }
  2907. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2908. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2909. display: none; } }
  2910. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  2911. position: relative; }
  2912. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  2913. margin: 0;
  2914. font-size: 12px;
  2915. line-height: 1.5; }
  2916. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2917. line-height: 1; }
  2918. @media only screen and (max-width: 40em) {
  2919. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2920. display: none; } }
  2921. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2922. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2923. display: none; } }
  2924. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2925. position: absolute;
  2926. z-index: 20;
  2927. background-color: rgba(255, 255, 255, 0.9);
  2928. min-width: 100%;
  2929. margin: 0 0 0 -5px;
  2930. border-radius: 3px;
  2931. background-clip: padding-box;
  2932. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  2933. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2934. background: #FFF; }
  2935. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2936. margin: 0; }
  2937. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2938. list-style: none;
  2939. font-size: 12px;
  2940. font-weight: 700;
  2941. padding: 0 10px;
  2942. text-align: left;
  2943. width: 200px;
  2944. height: 0;
  2945. overflow: hidden;
  2946. transition: height 0.3s ease-out; }
  2947. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview {
  2948. white-space: nowrap;
  2949. cursor: pointer; }
  2950. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2951. max-width: 150px; }
  2952. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2953. font-weight: 300;
  2954. padding: 0 5px; }
  2955. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.edit-list {
  2956. padding-right: 5px; }
  2957. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2958. visibility: hidden; }
  2959. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2960. margin-top: -100000px; }
  2961. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2962. opacity: 0;
  2963. transition: visibility 0s 0.3s; }
  2964. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2965. transition: margin-top 0s 0.3s; }
  2966. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2967. padding-bottom: 5px; }
  2968. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2969. height: 15px;
  2970. padding: 3px 10px; }
  2971. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2972. vertical-align: text-bottom;
  2973. margin: 0 2px 2px 0; }
  2974. @media only screen and (max-width: 40em) {
  2975. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2976. display: none; } }
  2977. #header #header-blocks #headerblock-right .block {
  2978. display: moz-inline-stack;
  2979. display: inline-block;
  2980. vertical-align: top;
  2981. zoom: 1;
  2982. *display: inline;
  2983. padding: 0;
  2984. vertical-align: middle; }
  2985. #header #header-blocks #headerblock-right .block:first-child {
  2986. padding: 0; }
  2987. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2988. display: none; }
  2989. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2990. vertical-align: text-bottom;
  2991. margin: 0 0 2px 0; }
  2992. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2993. font-size: 12px;
  2994. list-style: none; }
  2995. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2996. display: inline; }
  2997. @media only screen and (min-width: 40.0625em) {
  2998. #header #header-blocks #block-menu-menu-top-menu h2 {
  2999. display: none; }
  3000. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  3001. display: moz-inline-stack;
  3002. display: inline-block;
  3003. vertical-align: top;
  3004. zoom: 1;
  3005. *display: inline;
  3006. vertical-align: middle;
  3007. padding: 0;
  3008. margin: 0; }
  3009. #header #header-blocks #block-menu-menu-top-menu a {
  3010. padding: 0 0.5em 0 0; } }
  3011. @media only screen and (max-width: 40em) {
  3012. #header #header-blocks #block-menu-menu-top-menu {
  3013. position: relative; }
  3014. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  3015. display: none; }
  3016. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  3017. position: absolute;
  3018. width: 150px;
  3019. display: none;
  3020. right: 0;
  3021. padding-top: 5px; }
  3022. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  3023. background-color: #e6e6e6;
  3024. border-radius: 5px;
  3025. background-clip: padding-box;
  3026. padding: 0 5px 5px 5px;
  3027. margin: 0;
  3028. text-align: right; }
  3029. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  3030. height: 0;
  3031. overflow: hidden;
  3032. transition: height 0.3s ease-out; }
  3033. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  3034. display: block;
  3035. width: 100%;
  3036. padding: 2px 5px;
  3037. font-size: 12px; }
  3038. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  3039. z-index: 1000; }
  3040. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper {
  3041. display: block; }
  3042. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper ul.menu li, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper ul.menu li {
  3043. height: 25px; } }
  3044. #header #header-blocks #block-locale-language {
  3045. position: relative; }
  3046. #header #header-blocks #block-locale-language h2 {
  3047. font-size: 9px;
  3048. line-height: 1.6;
  3049. display: inline-block;
  3050. padding: 0.20em 0.45em 0.10em;
  3051. margin: 0;
  3052. border-radius: 3px;
  3053. background-clip: padding-box;
  3054. color: #fff;
  3055. text-transform: uppercase;
  3056. background-color: #4d4b4b; }
  3057. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  3058. margin: 0;
  3059. padding: 0;
  3060. list-style-type: none;
  3061. font-size: 12px;
  3062. line-height: 0.9; }
  3063. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  3064. display: none; }
  3065. .ie8 #header #header-blocks #block-locale-language {
  3066. padding-top: 5px; }
  3067. #header #header-blocks #block-locale-language ul {
  3068. padding-top: 2.1em;
  3069. position: absolute;
  3070. top: 0;
  3071. left: 0;
  3072. text-align: left; }
  3073. #header #header-blocks #block-locale-language li {
  3074. height: 0;
  3075. overflow: hidden;
  3076. transition: height 0.3s ease-in-out; }
  3077. #header #header-blocks #block-locale-language li a {
  3078. display: inline-block;
  3079. font-size: 0.9em;
  3080. padding: 0.33em 0.34em 0.3em;
  3081. border-radius: 3px;
  3082. background-clip: padding-box;
  3083. color: #fff;
  3084. text-transform: uppercase;
  3085. background-color: #808080;
  3086. transition: background-color 0.3s ease-out; }
  3087. #header #header-blocks #block-locale-language li a:hover {
  3088. background-color: #1A1A1A; }
  3089. #header #header-blocks #block-locale-language:hover li {
  3090. height: 1.5em; }
  3091. #header #header-blocks #block-materio-user-old-database-link a {
  3092. font-size: 12px; }
  3093. /*
  3094. __ _ ___ __ _
  3095. __ __/ /_(_) (_) /_(_)__ _____
  3096. / / / / __/ / / / __/ / _ \/ ___/
  3097. / /_/ / /_/ / / / /_/ / __(__ )
  3098. \__,_/\__/_/_/_/\__/_/\___/____/
  3099. */
  3100. #utilities {
  3101. background-color: #fff;
  3102. margin-top: 60px; }
  3103. .not-logged-in #utilities {
  3104. overflow: hidden; }
  3105. #utilities > .inner {
  3106. padding: 0.5em 0; }
  3107. #utilities.closed {
  3108. height: 0; }
  3109. #utilities.closed .tabs, #utilities.closed .node-didactique {
  3110. display: none; }
  3111. @media only screen and (max-width: 40em) {
  3112. #utilities {
  3113. margin-top: 0; } }
  3114. /*
  3115. _
  3116. ____ ___ ____ _(_)___
  3117. / __ `__ \/ __ `/ / __ / / / / / / /_/ / / / / /
  3118. /_/ /_/ /_/\__,_/_/_/ /_/
  3119. */
  3120. body.home-v2 #main {
  3121. padding-top: 60px; }
  3122. /*
  3123. __ _ __ ___ __ __ __
  3124. / /_ (_)___ _/ /_ / (_)___ _/ /_ / /____ ____/ /
  3125. / __ \/ / __ `/ __ \/ / / __ `/ __ \/ __/ _ \/ __ /
  3126. / / / / / /_/ / / / / / / /_/ / / / / /_/ __/ /_/ /
  3127. /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/
  3128. /____/ /____/
  3129. */
  3130. #highlighted {
  3131. border-radius: 5px;
  3132. background-clip: padding-box;
  3133. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  3134. padding: 0.5em;
  3135. position: relative; }
  3136. @media only screen and (min-width: 40.0625em) {
  3137. #highlighted {
  3138. margin: 20px 0 6px; }
  3139. #highlighted .block {
  3140. display: moz-inline-stack;
  3141. display: inline-block;
  3142. vertical-align: top;
  3143. zoom: 1;
  3144. *display: inline;
  3145. vertical-align: top; }
  3146. #highlighted .block-materio-didactique {
  3147. width: 65%; }
  3148. #highlighted .block-materio-didactique .side {
  3149. display: moz-inline-stack;
  3150. display: inline-block;
  3151. vertical-align: top;
  3152. zoom: 1;
  3153. *display: inline;
  3154. vertical-align: top;
  3155. position: relative; }
  3156. #highlighted .block-materio-didactique .group-sideleft {
  3157. width: 65%; }
  3158. #highlighted .block-materio-didactique .group-sideright {
  3159. width: 30%; }
  3160. #highlighted .block-materio-didactique .field-name-title-field {
  3161. font-size: 24px; }
  3162. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3163. width: 47%; }
  3164. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3165. margin-right: 2%; }
  3166. #highlighted #block-materio-user-user-register {
  3167. width: 30%;
  3168. padding: 5px;
  3169. height: 290px; } }
  3170. @media only screen {
  3171. #highlighted .block-materio-didactique .side {
  3172. display: moz-inline-stack;
  3173. display: inline-block;
  3174. vertical-align: top;
  3175. zoom: 1;
  3176. *display: inline;
  3177. vertical-align: top; } }
  3178. @media only screen and (max-width: 40em) {
  3179. #highlighted {
  3180. margin: 10px 0 6px; }
  3181. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3182. width: 100%; }
  3183. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3184. font-size: 20px;
  3185. font-weight: normal !important; }
  3186. #highlighted .block-materio-didactique .node-didactique .field-name-title-field:after {
  3187. content: "\a0\f10b";
  3188. font-family: "foundation-icons";
  3189. font-style: normal;
  3190. font-weight: normal;
  3191. font-variant: normal;
  3192. text-transform: none;
  3193. line-height: 1;
  3194. -webkit-font-smoothing: antialiased;
  3195. display: inline-block;
  3196. text-decoration: inherit;
  3197. font-size: 16px; }
  3198. html.js #highlighted .block-materio-didactique .node-didactique {
  3199. height: auto;
  3200. height: 30px;
  3201. overflow: hidden; }
  3202. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3203. height: auto; } }
  3204. .oldie #highlighted .block {
  3205. display: moz-inline-stack;
  3206. display: inline-block;
  3207. vertical-align: top;
  3208. zoom: 1;
  3209. *display: inline; }
  3210. #highlighted .block-materio-didactique .node-didactique {
  3211. font-size: 14px;
  3212. background-color: #fff;
  3213. margin: 0 auto; }
  3214. #highlighted .block-materio-didactique .node-didactique .side {
  3215. position: relative; }
  3216. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3217. font-weight: 900;
  3218. font-style: italic;
  3219. padding: 5px 0; }
  3220. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3221. text-align: center; }
  3222. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3223. display: inline; }
  3224. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3225. display: none; }
  3226. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3227. display: none; }
  3228. html.js #highlighted .block-materio-didactique {
  3229. position: relative;
  3230. overflow: hidden; }
  3231. html.js #highlighted .block-materio-didactique .slides {
  3232. height: 270px;
  3233. margin: 0;
  3234. position: relative;
  3235. width: 100%;
  3236. overflow: hidden; }
  3237. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3238. position: absolute;
  3239. width: 100%;
  3240. height: 100%;
  3241. top: 0;
  3242. left: 0; }
  3243. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3244. height: 30px; }
  3245. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3246. height: 240px; }
  3247. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3248. height: 100%; }
  3249. @media only screen and (max-width: 40em) {
  3250. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3251. width: 290px;
  3252. height: 163.125px; } }
  3253. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  3254. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3255. width: 216px;
  3256. height: 121.5px; } }
  3257. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  3258. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3259. width: 216px;
  3260. height: 121.5px; } }
  3261. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  3262. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3263. width: 280px;
  3264. height: 157.5px; } }
  3265. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  3266. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3267. width: 340px;
  3268. height: 191.25px; } }
  3269. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3270. height: 100%;
  3271. width: 100%; }
  3272. html.js #highlighted .block-materio-didactique .tabs {
  3273. height: 30px;
  3274. margin: 0;
  3275. text-align: left; }
  3276. html.js #highlighted .block-materio-didactique .tabs > * {
  3277. display: moz-inline-stack;
  3278. display: inline-block;
  3279. vertical-align: top;
  3280. zoom: 1;
  3281. *display: inline;
  3282. vertical-align: top;
  3283. padding: 5px 10px;
  3284. font-size: 12px;
  3285. cursor: pointer;
  3286. color: #bfbfbf; }
  3287. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3288. color: #3f3f3f; }
  3289. /*
  3290. __ __ __ _ __
  3291. / /_ / /___ _____/ /__ ________ ____ _(_)____/ /____ _____
  3292. / __ \/ / __ \/ ___/ //_/ / ___/ _ \/ __ `/ / ___/ __/ _ \/ ___/
  3293. / /_/ / / /_/ / /__/ ,< / / / __/ /_/ / (__ ) /_/ __/ /
  3294. /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/
  3295. /____/
  3296. */
  3297. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3298. min-height: 120px;
  3299. padding: 5px;
  3300. background: transparent url("../img/register-block.png") no-repeat 100% 90%; }
  3301. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3302. max-width: 250px;
  3303. float: right;
  3304. background-image: none; }
  3305. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3306. font-weight: 900;
  3307. font-style: italic;
  3308. padding: 5px 0;
  3309. margin: 0;
  3310. line-height: 1;
  3311. background-color: #fff;
  3312. display: moz-inline-stack;
  3313. display: inline-block;
  3314. vertical-align: top;
  3315. zoom: 1;
  3316. *display: inline;
  3317. min-width: 50%; }
  3318. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3319. font-size: 24px; }
  3320. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3321. font-size: 16px; }
  3322. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3323. margin: 0;
  3324. background-color: rgba(255, 255, 255, 0.7);
  3325. padding-bottom: 5px;
  3326. display: moz-inline-stack;
  3327. display: inline-block;
  3328. vertical-align: top;
  3329. zoom: 1;
  3330. *display: inline; }
  3331. #block-materio-user-user-register .form-item, #block-materio-user-user-register .form-wrapper, #block-materio-user-user-createaccount .form-item, #block-materio-user-user-createaccount .form-wrapper {
  3332. margin: 0;
  3333. display: moz-inline-stack;
  3334. display: inline-block;
  3335. vertical-align: top;
  3336. zoom: 1;
  3337. *display: inline;
  3338. vertical-align: middle;
  3339. position: relative; }
  3340. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3341. margin-right: 5px; }
  3342. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3343. font-size: 12px;
  3344. border-radius: 5px;
  3345. background-clip: padding-box;
  3346. margin-bottom: 4px; }
  3347. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3348. margin-right: 5px; }
  3349. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3350. width: 11em; }
  3351. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3352. width: 7em; }
  3353. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3354. position: absolute;
  3355. bottom: 100%;
  3356. z-index: 9999;
  3357. background-image: none;
  3358. height: auto;
  3359. padding: 5px;
  3360. border-radius: 5px;
  3361. background-clip: padding-box;
  3362. margin-bottom: 10px;
  3363. font-size: 10px;
  3364. background-color: #fff;
  3365. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3366. transition: bottom 0.1s ease-out; }
  3367. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3368. background-color: #f3968d;
  3369. color: #fff; }
  3370. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3371. display: none; }
  3372. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3373. font-size: 16px;
  3374. padding: 0.1em 0.6em 0.2em;
  3375. border-radius: 0.3em;
  3376. background-clip: padding-box;
  3377. font-weight: bold;
  3378. margin-bottom: 4px; }
  3379. #block-materio-user-user-register .form-item-termsofservices, #block-materio-user-user-register #edit-field-newsletter, #block-materio-user-user-createaccount .form-item-termsofservices, #block-materio-user-user-createaccount #edit-field-newsletter {
  3380. margin-bottom: 0;
  3381. display: block;
  3382. line-height: 1; }
  3383. #block-materio-user-user-register .form-item-termsofservices > *, #block-materio-user-user-register #edit-field-newsletter > *, #block-materio-user-user-createaccount .form-item-termsofservices > *, #block-materio-user-user-createaccount #edit-field-newsletter > * {
  3384. display: moz-inline-stack;
  3385. display: inline-block;
  3386. vertical-align: top;
  3387. zoom: 1;
  3388. *display: inline;
  3389. vertical-align: middle;
  3390. margin: 0; }
  3391. #block-materio-user-user-register .form-item-termsofservices label, #block-materio-user-user-register #edit-field-newsletter label, #block-materio-user-user-createaccount .form-item-termsofservices label, #block-materio-user-user-createaccount #edit-field-newsletter label {
  3392. font-size: 10px;
  3393. background-color: #fff;
  3394. border-radius: 3px;
  3395. background-clip: padding-box; }
  3396. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3397. border: 2px solid #69CDCF;
  3398. background-color: #69CDCF;
  3399. color: #fff;
  3400. cursor: pointer;
  3401. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3402. transition: text-shadow 0.2s ease-out; }
  3403. #block-materio-user-user-register #user-register-form .form-submit:hover, #block-materio-user-user-register #user-register-form .form-submit:focus, #block-materio-user-user-createaccount #user-register-form .form-submit:hover, #block-materio-user-user-createaccount #user-register-form .form-submit:focus {
  3404. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3405. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3406. transition: text-shadow 0s ease-out;
  3407. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3408. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3409. background-color: #ddd;
  3410. border: 2px solid #ddd; }
  3411. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3412. border: 2px solid #E6DE1C;
  3413. background-color: #E6DE1C;
  3414. color: #fff;
  3415. cursor: pointer;
  3416. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3417. transition: text-shadow 0.2s ease-out; }
  3418. #block-materio-user-user-register #user-login .form-submit:hover, #block-materio-user-user-register #user-login .form-submit:focus, #block-materio-user-user-createaccount #user-login .form-submit:hover, #block-materio-user-user-createaccount #user-login .form-submit:focus {
  3419. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3420. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3421. transition: text-shadow 0s ease-out;
  3422. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3423. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3424. padding-top: 0.5em; }
  3425. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3426. font-size: 12px; }
  3427. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3428. display: block; }
  3429. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3430. font-size: 12px; }
  3431. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3432. display: block;
  3433. width: 5em;
  3434. font-size: 16px;
  3435. padding: 0.1em 0.3em 0.2em;
  3436. border-radius: 0.3em;
  3437. background-clip: padding-box;
  3438. font-weight: bold;
  3439. border: 2px solid #69CDCF;
  3440. background-color: #69CDCF;
  3441. color: #fff;
  3442. cursor: pointer;
  3443. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3444. transition: text-shadow 0.2s ease-out;
  3445. text-align: center;
  3446. text-decoration: none; }
  3447. #block-materio-user-user-register a.join:hover, #block-materio-user-user-register a.join:focus, #block-materio-user-user-createaccount a.join:hover, #block-materio-user-user-createaccount a.join:focus {
  3448. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3449. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3450. transition: text-shadow 0s ease-out;
  3451. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3452. @media only screen and (max-width: 40em) {
  3453. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3454. background-position: 160% 50%;
  3455. min-height: 60px;
  3456. padding: 15px 0; }
  3457. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3458. width: 7em; } }
  3459. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3460. color: #b94a48;
  3461. font-size: 12px; }
  3462. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3463. padding: 2em;
  3464. width: 400px;
  3465. background-color: #fff;
  3466. padding: 5px;
  3467. border-radius: 5px;
  3468. background-clip: padding-box;
  3469. box-shadow: 0 0 7px rgba(0, 0, 0, 0.4); }
  3470. .modal-content #block-materio-user-user-register #user-register-form div.homepage-textfield, .modal-content #block-materio-user-user-createaccount #user-register-form div.homepage-textfield {
  3471. display: none; }
  3472. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3473. font-size: 12px; }
  3474. /*
  3475. __ __ __
  3476. _________ ____ / /____ ____ / /_ / /_____ ____
  3477. / ___/ __ \/ __ \/ __/ _ \/ __ \/ __/_____/ __/ __ \/ __ / /__/ /_/ / / / / /_/ __/ / / / /_/_____/ /_/ /_/ / /_/ /
  3478. \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/
  3479. /_/
  3480. */
  3481. #content-top {
  3482. /*
  3483. ___ _ _ _ _
  3484. | _| |___ ___ ___| |_|___| |_
  3485. | _| | .'| . |___| | |_ -| _|
  3486. |_| |_|__,|_ | |_|_|___|_|
  3487. |___|
  3488. */ }
  3489. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3490. font-size: 10px;
  3491. color: #666666;
  3492. font-weight: 300; }
  3493. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3494. margin-top: 40px; }
  3495. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3496. font-size: 12px;
  3497. font-weight: 700;
  3498. line-height: 1.2;
  3499. margin: 0;
  3500. color: #000; }
  3501. #content-top #block-materio-flag-materio-flag-mybookmarks h2 a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks h2 i.fi-x, #content-top #block-materio-flag-materio-flag-mylists h2 a.open-list, #content-top #block-materio-flag-materio-flag-mylists h2 i.fi-x {
  3502. display: moz-inline-stack;
  3503. display: inline-block;
  3504. vertical-align: top;
  3505. zoom: 1;
  3506. *display: inline;
  3507. cursor: pointer;
  3508. color: #000;
  3509. margin-left: 0.5em;
  3510. opacity: 0;
  3511. transition: opacity 0.1s ease-out; }
  3512. #content-top #block-materio-flag-materio-flag-mybookmarks h2 i:before, #content-top #block-materio-flag-materio-flag-mylists h2 i:before {
  3513. font-size: 14px; }
  3514. #content-top #block-materio-flag-materio-flag-mybookmarks:hover a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks:hover i.fi-x, #content-top #block-materio-flag-materio-flag-mylists:hover a.open-list, #content-top #block-materio-flag-materio-flag-mylists:hover i.fi-x {
  3515. opacity: 1; }
  3516. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3517. cursor: pointer; }
  3518. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3519. height: 0;
  3520. overflow: hidden; }
  3521. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3522. height: auto; }
  3523. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks article.node.vm-bookmark, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks article.node.vm-bookmark {
  3524. overflow: hidden; }
  3525. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section .flaged {
  3526. height: 0;
  3527. overflow: hidden; }
  3528. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active .flaged {
  3529. height: auto; }
  3530. #tool-bar {
  3531. position: relative; }
  3532. #tool-bar .inner-content {
  3533. padding-top: 10px;
  3534. padding-bottom: 10px; }
  3535. #tool-bar .inner-content > * {
  3536. display: moz-inline-stack;
  3537. display: inline-block;
  3538. vertical-align: top;
  3539. zoom: 1;
  3540. *display: inline;
  3541. vertical-align: middle; }
  3542. .oldie #tool-bar {
  3543. background-color: #B1ADAD;
  3544. padding: 0 10px; }
  3545. #tool-bar .btn-group {
  3546. padding: 0;
  3547. border-radius: 3px;
  3548. background-clip: padding-box;
  3549. background-color: #fff;
  3550. margin: 4px;
  3551. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3552. transition: box-shadow 0.3s ease-out; }
  3553. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3554. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3555. #tool-bar .btn-group:active {
  3556. transition: box-shadow 0s ease-out;
  3557. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3558. #tool-bar #block-materio-page-title-materio-page-title {
  3559. margin: 0 10px 0 0; }
  3560. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3561. margin: 0;
  3562. font-size: 24px;
  3563. text-transform: capitalize;
  3564. font-weight: 300; }
  3565. #tool-bar #block-materio-page-title-materio-page-title i {
  3566. vertical-align: middle;
  3567. margin-right: 5px; }
  3568. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3569. visibility: hidden; }
  3570. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3571. margin-top: -100000px; }
  3572. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3573. opacity: 0;
  3574. transition: visibility 0s 0.3s; }
  3575. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3576. transition: margin-top 0s 0.3s; }
  3577. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3578. margin: 0 0 0 5px; }
  3579. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3580. visibility: visible; }
  3581. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3582. opacity: 1;
  3583. transition: opacity 0.3s ease-out; }
  3584. @media only screen and (max-width: 40em) {
  3585. #tool-bar #block-materio-page-title-materio-page-title {
  3586. display: block; } }
  3587. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3588. display: moz-inline-stack;
  3589. display: inline-block;
  3590. vertical-align: top;
  3591. zoom: 1;
  3592. *display: inline;
  3593. margin: 0 2px; }
  3594. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3595. cursor: normal; }
  3596. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3597. display: none;
  3598. font-size: 10px; }
  3599. @media only screen and (max-width: 40em) {
  3600. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3601. display: block; }
  3602. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3603. display: none; } }
  3604. @media only screen and (max-width: 40em) {
  3605. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium {
  3606. display: block; } }
  3607. @media only screen and (max-width: 40em) {
  3608. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardbig, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardbig {
  3609. display: block; } }
  3610. #tool-bar #block-materio-search-api-materio-search-api-search {
  3611. float: right; }
  3612. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3613. display: moz-inline-stack;
  3614. display: inline-block;
  3615. vertical-align: top;
  3616. zoom: 1;
  3617. *display: inline;
  3618. margin: 0 0 0 10px;
  3619. min-width: 400px;
  3620. padding: 5px 10px;
  3621. background-color: #fff;
  3622. border-radius: 3px;
  3623. background-clip: padding-box;
  3624. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3625. transition: box-shadow 0.3s ease-out;
  3626. text-align: right; }
  3627. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3628. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3629. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3630. transition: box-shadow 0s ease-out;
  3631. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3632. #tool-bar #block-materio-search-api-materio-search-api-search > .inner h4.form-title {
  3633. padding: 0.2em 0 0.1em 0.2em;
  3634. margin: 0.2em 0 0.1em 0.2em;
  3635. text-align: left;
  3636. font-size: 14px; }
  3637. html.no-js #tool-bar #block-materio-search-api-materio-search-api-search > .inner h4.form-title {
  3638. display: none; }
  3639. html.no-js #tool-bar #block-materio-search-api-materio-search-api-search > .inner.msa-advanced-search {
  3640. display: none; }
  3641. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs {
  3642. text-align: left;
  3643. margin-bottom: 4px; }
  3644. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4 {
  3645. display: moz-inline-stack;
  3646. display: inline-block;
  3647. vertical-align: top;
  3648. zoom: 1;
  3649. *display: inline;
  3650. font-size: 12px;
  3651. cursor: pointer;
  3652. border-radius: 5px 5px 0 0;
  3653. padding: 0.1em 0.5em;
  3654. transition: color 0.5s ease-in-out; }
  3655. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4.active {
  3656. border: 1px solid #ccc;
  3657. border-bottom: 1px solid #FFF;
  3658. background-color: #fff; }
  3659. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4:not(.active) {
  3660. color: #ccc; }
  3661. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs h4:not(.active):hover {
  3662. color: inherit; }
  3663. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .searchform-tabs:after {
  3664. content: "";
  3665. display: block;
  3666. background-color: #fff;
  3667. border-top: 1px solid #ccc;
  3668. margin-top: -3px; }
  3669. #tool-bar #block-materio-search-api-materio-search-api-search.tabed .msa-form-wrapper:not(.active) {
  3670. display: none; }
  3671. #tool-bar #materio-search-api-search-form {
  3672. text-align: right;
  3673. display: moz-inline-stack;
  3674. display: inline-block;
  3675. vertical-align: top;
  3676. zoom: 1;
  3677. *display: inline;
  3678. margin: 0; }
  3679. #tool-bar #materio-search-api-search-form .form-item, #tool-bar #materio-search-api-search-form input, #tool-bar #materio-search-api-search-form .form-checkboxes, #tool-bar #materio-search-api-search-form .form-wrapper {
  3680. display: moz-inline-stack;
  3681. display: inline-block;
  3682. vertical-align: top;
  3683. zoom: 1;
  3684. *display: inline;
  3685. margin: 0;
  3686. vertical-align: middle;
  3687. padding: 0; }
  3688. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3689. padding: 3px;
  3690. font-size: 12px; }
  3691. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3692. margin: 0 5px; }
  3693. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3694. font-size: 10px; }
  3695. #tool-bar #materio-search-api-search-form #edit-rightcol {
  3696. padding-left: 0.5em;
  3697. margin-left: 0.5em;
  3698. border-left: 1px solid #ccc; }
  3699. #tool-bar #materio-search-api-search-form a.back-search-home {
  3700. display: inline-block;
  3701. vertical-align: middle;
  3702. color: #000; }
  3703. #tool-bar #materio-search-api-search-form a.back-search-home i:before {
  3704. font-size: 1.3em; }
  3705. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3706. border: 1px solid #ccc;
  3707. border-radius: 15px;
  3708. background-clip: padding-box;
  3709. margin: 3px 0 3px 3px;
  3710. padding: 4px 5px;
  3711. height: 20px;
  3712. font-size: 12px;
  3713. line-height: 1;
  3714. background-position: 100% 7px; }
  3715. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3716. background-position: 100% -15px; }
  3717. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3718. background-color: #1a1a1a; }
  3719. #tool-bar #materio-search-api-search-form div.search-btn-wrapper {
  3720. display: inline-block;
  3721. padding: 3px; }
  3722. #tool-bar #materio-search-api-search-form.loading div.search-btn-wrapper {
  3723. background: transparent url("../img/ajax-loader.gif") no-repeat center center; }
  3724. #tool-bar #materio-search-api-search-form.loading div.search-btn-wrapper input {
  3725. visibility: hidden; }
  3726. @media only screen and (max-width: 40em) {
  3727. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3728. width: 16em; }
  3729. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3730. display: none; } }
  3731. #tool-bar #materio-search-api-advanced-search-form > div {
  3732. position: relative; }
  3733. #tool-bar #materio-search-api-advanced-search-form > div #advancedsearch-filters, #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper {
  3734. display: inline-block;
  3735. vertical-align: top; }
  3736. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper {
  3737. position: relative;
  3738. text-align: center; }
  3739. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper > * {
  3740. display: block; }
  3741. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper a.back-search-home {
  3742. color: #000;
  3743. padding-top: 0.45em; }
  3744. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper a.back-search-home i:before {
  3745. font-size: 1.3em; }
  3746. #tool-bar #materio-search-api-advanced-search-form > div > .form-wrapper #edit-search {
  3747. margin: 1em 0 0.5em; }
  3748. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters {
  3749. padding-right: 0.5em;
  3750. margin-right: 0.5em;
  3751. border-right: 1px solid #ccc; }
  3752. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .filter-line {
  3753. margin: 0.3em 0;
  3754. padding-top: 0.3em; }
  3755. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .filter-line:not(:first-child) {
  3756. border-top: 1px solid #ccc; }
  3757. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .filter-line .form-item {
  3758. display: inline-block;
  3759. vertical-align: middle;
  3760. font-size: 12px;
  3761. line-height: 1;
  3762. text-transform: capitalize;
  3763. margin: 0 0em 0 0; }
  3764. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .filter-line select {
  3765. width: auto; }
  3766. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .rm-btn {
  3767. float: right;
  3768. margin: 0.4em 0 0.4em 0.4em; }
  3769. #tool-bar #materio-search-api-advanced-search-form #advancedsearch-filters .add-filter {
  3770. margin: 0.5em 0; }
  3771. #tool-bar #materio-search-api-advanced-search-form div.search-btn-wrapper {
  3772. display: inline-block; }
  3773. #tool-bar #materio-search-api-advanced-search-form.loading div.search-btn-wrapper {
  3774. background: transparent url("../img/ajax-loader.gif") no-repeat center center; }
  3775. #tool-bar #materio-search-api-advanced-search-form.loading div.search-btn-wrapper input {
  3776. visibility: hidden; }
  3777. #center {
  3778. border-radius: 10px;
  3779. background-clip: padding-box; }
  3780. .node-type-page:not(.page-node-11187) #center {
  3781. background-color: #fff; }
  3782. .ie8 #center {
  3783. height: 100%;
  3784. margin-top: 20px; }
  3785. #content {
  3786. padding: 1em;
  3787. transition: height 0.3s ease-out; }
  3788. #content.faded {
  3789. opacity: 0.5;
  3790. transition: opacity 0.3s ease-out; }
  3791. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3792. padding: 0 0 30px 0;
  3793. margin: 0 0 20px 0; }
  3794. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3795. background-image: url("../img/ajax-loader.gif");
  3796. background-position: center bottom;
  3797. background-repeat: no-repeat; }
  3798. #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 {
  3799. font-size: 12px;
  3800. font-weight: 500;
  3801. margin: 0;
  3802. padding: 10px 0 5px 15px; }
  3803. #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 {
  3804. font-size: 0;
  3805. text-align: center; }
  3806. #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 > * {
  3807. font-size: 16px; }
  3808. #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 > * {
  3809. text-align: left; }
  3810. #content ul.pager {
  3811. padding: 1em 0;
  3812. text-align: left; }
  3813. .ie8 #content ul.pager {
  3814. position: absolute;
  3815. left: 37px;
  3816. bottom: 35px; }
  3817. #content ul.pager li {
  3818. margin: 0;
  3819. display: moz-inline-stack;
  3820. display: inline-block;
  3821. vertical-align: top;
  3822. zoom: 1;
  3823. *display: inline;
  3824. vertical-align: middle; }
  3825. #content ul.pager .pager-current, #content ul.pager a {
  3826. color: #000;
  3827. font-size: 12px; }
  3828. #content ul.pager .pager-current {
  3829. font-weight: 900;
  3830. font-size: 14px; }
  3831. .ie8 #content ul.pager .pager-current {
  3832. background: #fff;
  3833. padding: 0.3em 1em 0.3em 1em;
  3834. margin-top: 0.05em;
  3835. border: 1px solid #333333; }
  3836. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3837. font-size: 24px;
  3838. font-weight: 300; }
  3839. /** #content-bottom */
  3840. #content-bottom {
  3841. padding-top: 10px; }
  3842. /*
  3843. _________ ____ ____ _____
  3844. / ____/ | / __ \/ __ \/ ___/
  3845. / / / /| | / /_/ / / / /\__ / /___/ ___ |/ _, _/ /_/ /___/ /
  3846. \____/_/ |_/_/ |_/_____//____/
  3847. */
  3848. /*
  3849. _ _ ___
  3850. ___ ___ ___ _| | ___ ___ ___ ___ ___| |_ ___ ___ ___| _|___ ___ _____ ___ ___ ___ ___
  3851. | _| .'| _| . | |_ -| -_| .'| _| _| | | . | -_| _| _| . | _| | .'| | _| -_|
  3852. |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___|
  3853. |_|
  3854. */
  3855. article.search-performance .inner {
  3856. padding: 1em; }
  3857. article.search-performance p {
  3858. font-size: 14px; }
  3859. article.search-performance a.button {
  3860. display: block;
  3861. margin: 10px auto;
  3862. max-width: 10em;
  3863. font-size: 18px;
  3864. padding: 0.1em 0.6em 0.2em;
  3865. border-radius: 0.3em;
  3866. background-clip: padding-box;
  3867. font-weight: bold;
  3868. border: 2px solid #69CDCF;
  3869. background-color: #69CDCF;
  3870. color: #fff;
  3871. cursor: pointer;
  3872. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3873. transition: text-shadow 0.2s ease-out;
  3874. text-align: center;
  3875. text-decoration: none; }
  3876. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3877. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3878. article.search-performance a.button:active {
  3879. transition: text-shadow 0s ease-out;
  3880. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3881. article.search-performance.view-mode-cardsmall {
  3882. width: 327px;
  3883. height: 140px;
  3884. display: moz-inline-stack;
  3885. display: inline-block;
  3886. vertical-align: top;
  3887. zoom: 1;
  3888. *display: inline;
  3889. position: relative;
  3890. margin: 7px;
  3891. border-radius: 5px;
  3892. background-clip: padding-box;
  3893. background-color: #FFF;
  3894. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3895. transition: box-shadow 0.3s ease-out; }
  3896. article.search-performance.view-mode-cardmedium {
  3897. width: 210px;
  3898. height: 295px;
  3899. display: moz-inline-stack;
  3900. display: inline-block;
  3901. vertical-align: top;
  3902. zoom: 1;
  3903. *display: inline;
  3904. position: relative;
  3905. margin: 7px;
  3906. border-radius: 5px;
  3907. background-clip: padding-box;
  3908. background-color: #FFF;
  3909. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3910. transition: box-shadow 0.3s ease-out; }
  3911. article.search-performance.view-mode-cardmedium .inner {
  3912. padding: 4em 1em 0; }
  3913. article.search-performance.view-mode-cardbig {
  3914. width: 425px;
  3915. height: 115px;
  3916. display: moz-inline-stack;
  3917. display: inline-block;
  3918. vertical-align: top;
  3919. zoom: 1;
  3920. *display: inline;
  3921. position: relative;
  3922. margin: 7px;
  3923. border-radius: 5px;
  3924. background-clip: padding-box;
  3925. background-color: #FFF;
  3926. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3927. transition: box-shadow 0.3s ease-out;
  3928. display: block;
  3929. margin: 0 auto; }
  3930. article.search-performance.view-mode-cardfull {
  3931. width: 850px;
  3932. height: 115px;
  3933. display: moz-inline-stack;
  3934. display: inline-block;
  3935. vertical-align: top;
  3936. zoom: 1;
  3937. *display: inline;
  3938. position: relative;
  3939. margin: 7px;
  3940. border-radius: 5px;
  3941. background-clip: padding-box;
  3942. background-color: #FFF;
  3943. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3944. transition: box-shadow 0.3s ease-out;
  3945. display: block;
  3946. margin: 0 auto; }
  3947. article.search-performance.view-mode-cardfull .inner {
  3948. padding: 1em 212px; }
  3949. /*
  3950. ______ __ ____ __ __
  3951. / ____/___ __________/ / / __ )____ ____ / /______ ___ ____ ______/ /_______
  3952. / / / __ `/ ___/ __ / / __ / __ \/ __ \/ //_/ __ `__ \/ __ `/ ___/ //_/ ___/
  3953. / /___/ /_/ / / / /_/ / / /_/ / /_/ / /_/ / ,< / / / / / / /_/ / / / ,< (__ )
  3954. \____/\__,_/_/ \__,_/ /_____/\____/\____/_/|_/_/ /_/ /_/\__,_/_/ /_/|_/____/
  3955. */
  3956. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  3957. width: 50px;
  3958. height: 70px;
  3959. display: moz-inline-stack;
  3960. display: inline-block;
  3961. vertical-align: top;
  3962. zoom: 1;
  3963. *display: inline;
  3964. position: relative;
  3965. margin: 7px;
  3966. border-radius: 5px;
  3967. background-clip: padding-box;
  3968. background-color: #FFF;
  3969. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3970. transition: box-shadow 0.3s ease-out;
  3971. margin: 3px; }
  3972. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  3973. border-radius: 5px;
  3974. background-clip: padding-box;
  3975. overflow: hidden; }
  3976. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  3977. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  3978. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  3979. opacity: 0; }
  3980. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  3981. transition: margin 0.3s ease-out; }
  3982. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  3983. margin-left: -50px;
  3984. margin-right: 50px; }
  3985. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  3986. position: absolute;
  3987. top: 0;
  3988. left: 0;
  3989. z-index: 999; }
  3990. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  3991. transition: width 0.3s ease-out;
  3992. width: 0;
  3993. padding-left: 0;
  3994. padding-right: 0;
  3995. margin-right: 0;
  3996. margin-left: 0;
  3997. overflow: hidden; }
  3998. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  3999. position: absolute;
  4000. top: 0;
  4001. right: 0;
  4002. z-index: 11;
  4003. padding: 5px 0;
  4004. border-radius: 0 5px 0 3px;
  4005. background-clip: padding-box;
  4006. font-size: 10px;
  4007. background-color: rgba(255, 255, 255, 0.9);
  4008. color: #000; }
  4009. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  4010. color: #000; }
  4011. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4012. background-color: rgba(255, 255, 255, 0.9); }
  4013. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  4014. font-weight: 900;
  4015. font-size: 14px; }
  4016. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4017. padding: 0;
  4018. margin: 0; }
  4019. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  4020. position: relative; }
  4021. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  4022. margin: 0 5px; }
  4023. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  4024. cursor: pointer; }
  4025. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4026. position: absolute;
  4027. right: 0;
  4028. top: 0;
  4029. margin-right: 22px;
  4030. min-width: 80px;
  4031. padding: 0;
  4032. display: block;
  4033. border-radius: 3px;
  4034. background-clip: padding-box;
  4035. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4036. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  4037. padding: 0;
  4038. margin: 0;
  4039. line-height: 1;
  4040. display: block;
  4041. height: 0;
  4042. overflow: hidden;
  4043. transition: height 0.2s ease-out; }
  4044. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  4045. display: block; }
  4046. article.node-materiau.vm-bookmark nav.nav ul.links a, article.node-breve.vm-bookmark nav.nav ul.links a {
  4047. font-size: 12px; }
  4048. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  4049. width: 160px;
  4050. font-size: 0; }
  4051. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  4052. font-size: 11px; }
  4053. 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 {
  4054. display: moz-inline-stack;
  4055. display: inline-block;
  4056. vertical-align: top;
  4057. zoom: 1;
  4058. *display: inline;
  4059. min-width: 48%;
  4060. max-width: 98%;
  4061. padding-left: 2px; }
  4062. 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 {
  4063. color: #a6a6a6;
  4064. transition: color 0.2s ease-out; }
  4065. 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 {
  4066. color: #000;
  4067. text-decoration: none; }
  4068. 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 {
  4069. display: block;
  4070. width: 100%; }
  4071. 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 > * {
  4072. margin-top: 1px;
  4073. padding-top: 1px;
  4074. border-top: 1px solid #e6e6e6; }
  4075. 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 {
  4076. color: #000; }
  4077. 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 {
  4078. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4079. 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 {
  4080. visibility: hidden; }
  4081. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  4082. background: #FFF; }
  4083. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  4084. padding: 5px 5px; }
  4085. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  4086. height: 17px; }
  4087. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4088. position: absolute;
  4089. bottom: 0;
  4090. right: 0;
  4091. z-index: 11;
  4092. padding: 5px;
  4093. border-radius: 3px 0 5px 0;
  4094. background-clip: padding-box;
  4095. font-size: 10px;
  4096. vertical-align: top;
  4097. background-color: rgba(20, 20, 20, 0.9);
  4098. color: #fff; }
  4099. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  4100. padding: 3px 0 0 4px;
  4101. display: moz-inline-stack;
  4102. display: inline-block;
  4103. vertical-align: top;
  4104. zoom: 1;
  4105. *display: inline; }
  4106. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  4107. font-size: 12px;
  4108. padding-top: 4em;
  4109. margin-top: -4.5em;
  4110. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4111. position: relative; }
  4112. 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 {
  4113. padding: 10px;
  4114. font-size: 12px; }
  4115. 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 {
  4116. display: block;
  4117. margin: 10px 0;
  4118. font-size: 18px;
  4119. padding: 0.1em 0.6em 0.2em;
  4120. border-radius: 0.3em;
  4121. background-clip: padding-box;
  4122. font-weight: bold;
  4123. border: 2px solid #69CDCF;
  4124. background-color: #69CDCF;
  4125. color: #fff;
  4126. cursor: pointer;
  4127. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4128. transition: text-shadow 0.2s ease-out;
  4129. text-align: center;
  4130. text-decoration: none; }
  4131. 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 {
  4132. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4133. 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 {
  4134. transition: text-shadow 0s ease-out;
  4135. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4136. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  4137. display: none; }
  4138. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  4139. position: relative;
  4140. z-index: 1;
  4141. background-color: #fff; }
  4142. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  4143. position: absolute;
  4144. top: 0;
  4145. left: 0; }
  4146. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  4147. position: relative;
  4148. z-index: 1; }
  4149. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4150. display: none; }
  4151. /*
  4152. ______ __ _____ ____
  4153. / ____/___ __________/ / / ___/____ ___ ____ _/ / /
  4154. / / / __ `/ ___/ __ / \__ \/ __ `__ \/ __ `/ / /
  4155. / /___/ /_/ / / / /_/ / ___/ / / / / / / /_/ / / /
  4156. \____/\__,_/_/ \__,_/ /____/_/ /_/ /_/\__,_/_/_/
  4157. */
  4158. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4159. width: 100px;
  4160. height: 140px;
  4161. display: moz-inline-stack;
  4162. display: inline-block;
  4163. vertical-align: top;
  4164. zoom: 1;
  4165. *display: inline;
  4166. position: relative;
  4167. margin: 7px;
  4168. border-radius: 5px;
  4169. background-clip: padding-box;
  4170. background-color: #FFF;
  4171. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4172. transition: box-shadow 0.3s ease-out; }
  4173. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4174. border-radius: 5px;
  4175. background-clip: padding-box;
  4176. overflow: hidden; }
  4177. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4178. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4179. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4180. opacity: 0; }
  4181. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4182. transition: margin 0.3s ease-out; }
  4183. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4184. margin-left: -100px;
  4185. margin-right: 100px; }
  4186. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4187. position: absolute;
  4188. top: 0;
  4189. left: 0;
  4190. z-index: 999; }
  4191. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4192. transition: width 0.3s ease-out;
  4193. width: 0;
  4194. padding-left: 0;
  4195. padding-right: 0;
  4196. margin-right: 0;
  4197. margin-left: 0;
  4198. overflow: hidden; }
  4199. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4200. position: absolute;
  4201. top: 0;
  4202. right: 0;
  4203. z-index: 11;
  4204. padding: 5px 0;
  4205. border-radius: 0 5px 0 3px;
  4206. background-clip: padding-box;
  4207. font-size: 10px;
  4208. background-color: rgba(255, 255, 255, 0.9);
  4209. color: #000; }
  4210. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4211. color: #000; }
  4212. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4213. background-color: rgba(255, 255, 255, 0.9); }
  4214. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4215. font-weight: 900;
  4216. font-size: 14px; }
  4217. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4218. padding: 0;
  4219. margin: 0; }
  4220. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4221. position: relative; }
  4222. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4223. margin: 0 5px; }
  4224. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4225. cursor: pointer; }
  4226. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4227. position: absolute;
  4228. right: 0;
  4229. top: 0;
  4230. margin-right: 22px;
  4231. min-width: 80px;
  4232. padding: 0;
  4233. display: block;
  4234. border-radius: 3px;
  4235. background-clip: padding-box;
  4236. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4237. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4238. padding: 0;
  4239. margin: 0;
  4240. line-height: 1;
  4241. display: block;
  4242. height: 0;
  4243. overflow: hidden;
  4244. transition: height 0.2s ease-out; }
  4245. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4246. display: block; }
  4247. article.node-materiau.vm-cardsmall nav.nav ul.links a, article.node-breve.vm-cardsmall nav.nav ul.links a {
  4248. font-size: 12px; }
  4249. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4250. width: 160px;
  4251. font-size: 0; }
  4252. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4253. font-size: 11px; }
  4254. 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 {
  4255. display: moz-inline-stack;
  4256. display: inline-block;
  4257. vertical-align: top;
  4258. zoom: 1;
  4259. *display: inline;
  4260. min-width: 48%;
  4261. max-width: 98%;
  4262. padding-left: 2px; }
  4263. 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 {
  4264. color: #a6a6a6;
  4265. transition: color 0.2s ease-out; }
  4266. 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 {
  4267. color: #000;
  4268. text-decoration: none; }
  4269. 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 {
  4270. display: block;
  4271. width: 100%; }
  4272. 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 > * {
  4273. margin-top: 1px;
  4274. padding-top: 1px;
  4275. border-top: 1px solid #e6e6e6; }
  4276. 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 {
  4277. color: #000; }
  4278. 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 {
  4279. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4280. 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 {
  4281. visibility: hidden; }
  4282. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4283. background: #FFF; }
  4284. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4285. padding: 5px 5px; }
  4286. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4287. height: 17px; }
  4288. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4289. position: absolute;
  4290. bottom: 0;
  4291. right: 0;
  4292. z-index: 11;
  4293. padding: 5px;
  4294. border-radius: 3px 0 5px 0;
  4295. background-clip: padding-box;
  4296. font-size: 10px;
  4297. vertical-align: top;
  4298. background-color: rgba(20, 20, 20, 0.9);
  4299. color: #fff; }
  4300. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4301. padding: 3px 0 0 4px;
  4302. display: moz-inline-stack;
  4303. display: inline-block;
  4304. vertical-align: top;
  4305. zoom: 1;
  4306. *display: inline; }
  4307. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4308. font-size: 12px;
  4309. padding-top: 4em;
  4310. margin-top: -4.5em;
  4311. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4312. position: relative; }
  4313. 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 {
  4314. padding: 10px;
  4315. font-size: 12px; }
  4316. 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 {
  4317. display: block;
  4318. margin: 10px 0;
  4319. font-size: 18px;
  4320. padding: 0.1em 0.6em 0.2em;
  4321. border-radius: 0.3em;
  4322. background-clip: padding-box;
  4323. font-weight: bold;
  4324. border: 2px solid #69CDCF;
  4325. background-color: #69CDCF;
  4326. color: #fff;
  4327. cursor: pointer;
  4328. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4329. transition: text-shadow 0.2s ease-out;
  4330. text-align: center;
  4331. text-decoration: none; }
  4332. 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 {
  4333. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4334. 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 {
  4335. transition: text-shadow 0s ease-out;
  4336. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4337. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4338. display: none;
  4339. position: absolute;
  4340. font-size: 14px;
  4341. font-weight: 500; }
  4342. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4343. font-weight: 700; }
  4344. 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 {
  4345. display: moz-inline-stack;
  4346. display: inline-block;
  4347. vertical-align: top;
  4348. zoom: 1;
  4349. *display: inline;
  4350. font-size: 12px; }
  4351. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4352. float: right; }
  4353. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4354. position: relative;
  4355. z-index: 1;
  4356. background-color: #fff;
  4357. border-radius: 5px;
  4358. background-clip: padding-box;
  4359. overflow: hidden; }
  4360. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4361. position: absolute;
  4362. top: 0;
  4363. left: 0; }
  4364. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4365. position: relative;
  4366. z-index: 1; }
  4367. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4368. width: 75px;
  4369. min-width: 75px; }
  4370. 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 {
  4371. width: 98%; }
  4372. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4373. background: #FFF; }
  4374. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4375. visibility: hidden; }
  4376. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4377. margin-top: -100000px; }
  4378. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4379. opacity: 0;
  4380. transition: visibility 0s 0.3s; }
  4381. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4382. transition: margin-top 0s 0.3s; }
  4383. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4384. visibility: hidden; }
  4385. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4386. margin-top: -100000px; }
  4387. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4388. opacity: 0;
  4389. transition: visibility 0s 0.3s; }
  4390. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4391. transition: margin-top 0s 0.3s; }
  4392. /*
  4393. ______ ____ _ ____ __
  4394. /_ __/___ ____ / / /_(_)___ _________ ___ ____ _/ / / _________ __________/ /
  4395. / / / __ \/ __ \/ / __/ / __ \ / ___/ __ `__ \/ __ `/ / / / ___/ __ `/ ___/ __ /
  4396. / / / /_/ / /_/ / / /_/ / /_/ / (__ ) / / / / / /_/ / / / / /__/ /_/ / / / /_/ /
  4397. /_/ \____/\____/_/\__/_/ .___/ /____/_/ /_/ /_/\__,_/_/_/ \___/\__,_/_/ \__,_/
  4398. /_/
  4399. */
  4400. #tooltip .group-header.smallcard {
  4401. font-size: 14px;
  4402. font-weight: 500; }
  4403. #tooltip .group-header.smallcard .field-name-title-field {
  4404. font-weight: 700; }
  4405. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4406. display: moz-inline-stack;
  4407. display: inline-block;
  4408. vertical-align: top;
  4409. zoom: 1;
  4410. *display: inline;
  4411. font-size: 12px; }
  4412. #tooltip .group-header.smallcard .field-name-field-localisation {
  4413. float: right; }
  4414. /*
  4415. ______ __ __ ___ ___
  4416. / ____/___ __________/ / / |/ /__ ____/ (_)_ ______ ___
  4417. / / / __ `/ ___/ __ / / /|_/ / _ \/ __ / / / / / __ `__ / /___/ /_/ / / / /_/ / / / / / __/ /_/ / / /_/ / / / / / /
  4418. \____/\__,_/_/ \__,_/ /_/ /_/\___/\__,_/_/\__,_/_/ /_/ /_/
  4419. */
  4420. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4421. width: 210px;
  4422. height: 295px;
  4423. display: moz-inline-stack;
  4424. display: inline-block;
  4425. vertical-align: top;
  4426. zoom: 1;
  4427. *display: inline;
  4428. position: relative;
  4429. margin: 7px;
  4430. border-radius: 5px;
  4431. background-clip: padding-box;
  4432. background-color: #FFF;
  4433. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4434. transition: box-shadow 0.3s ease-out; }
  4435. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4436. border-radius: 5px;
  4437. background-clip: padding-box;
  4438. overflow: hidden; }
  4439. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4440. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4441. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4442. opacity: 0; }
  4443. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4444. transition: margin 0.3s ease-out; }
  4445. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4446. margin-left: -210px;
  4447. margin-right: 210px; }
  4448. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4449. position: absolute;
  4450. top: 0;
  4451. left: 0;
  4452. z-index: 999; }
  4453. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4454. transition: width 0.3s ease-out;
  4455. width: 0;
  4456. padding-left: 0;
  4457. padding-right: 0;
  4458. margin-right: 0;
  4459. margin-left: 0;
  4460. overflow: hidden; }
  4461. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4462. position: absolute;
  4463. top: 0;
  4464. right: 0;
  4465. z-index: 11;
  4466. padding: 5px 0;
  4467. border-radius: 0 5px 0 3px;
  4468. background-clip: padding-box;
  4469. font-size: 10px;
  4470. background-color: rgba(255, 255, 255, 0.9);
  4471. color: #000; }
  4472. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4473. color: #000; }
  4474. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4475. background-color: rgba(255, 255, 255, 0.9); }
  4476. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4477. font-weight: 900;
  4478. font-size: 14px; }
  4479. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4480. padding: 0;
  4481. margin: 0; }
  4482. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4483. position: relative; }
  4484. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4485. margin: 0 5px; }
  4486. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4487. cursor: pointer; }
  4488. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4489. position: absolute;
  4490. right: 0;
  4491. top: 0;
  4492. margin-right: 22px;
  4493. min-width: 80px;
  4494. padding: 0;
  4495. display: block;
  4496. border-radius: 3px;
  4497. background-clip: padding-box;
  4498. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4499. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4500. padding: 0;
  4501. margin: 0;
  4502. line-height: 1;
  4503. display: block;
  4504. height: 0;
  4505. overflow: hidden;
  4506. transition: height 0.2s ease-out; }
  4507. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4508. display: block; }
  4509. article.node-materiau.vm-cardmedium nav.nav ul.links a, article.node-breve.vm-cardmedium nav.nav ul.links a {
  4510. font-size: 12px; }
  4511. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4512. width: 160px;
  4513. font-size: 0; }
  4514. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4515. font-size: 11px; }
  4516. 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 {
  4517. display: moz-inline-stack;
  4518. display: inline-block;
  4519. vertical-align: top;
  4520. zoom: 1;
  4521. *display: inline;
  4522. min-width: 48%;
  4523. max-width: 98%;
  4524. padding-left: 2px; }
  4525. 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 {
  4526. color: #a6a6a6;
  4527. transition: color 0.2s ease-out; }
  4528. 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 {
  4529. color: #000;
  4530. text-decoration: none; }
  4531. 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 {
  4532. display: block;
  4533. width: 100%; }
  4534. 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 > * {
  4535. margin-top: 1px;
  4536. padding-top: 1px;
  4537. border-top: 1px solid #e6e6e6; }
  4538. 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 {
  4539. color: #000; }
  4540. 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 {
  4541. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4542. 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 {
  4543. visibility: hidden; }
  4544. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4545. background: #FFF; }
  4546. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4547. padding: 5px 5px; }
  4548. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4549. height: 17px; }
  4550. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4551. position: absolute;
  4552. bottom: 0;
  4553. right: 0;
  4554. z-index: 11;
  4555. padding: 5px;
  4556. border-radius: 3px 0 5px 0;
  4557. background-clip: padding-box;
  4558. font-size: 10px;
  4559. vertical-align: top;
  4560. background-color: rgba(20, 20, 20, 0.9);
  4561. color: #fff; }
  4562. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4563. padding: 3px 0 0 4px;
  4564. display: moz-inline-stack;
  4565. display: inline-block;
  4566. vertical-align: top;
  4567. zoom: 1;
  4568. *display: inline; }
  4569. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4570. font-size: 12px;
  4571. padding-top: 4em;
  4572. margin-top: -4.5em;
  4573. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4574. position: relative; }
  4575. 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 {
  4576. padding: 10px;
  4577. font-size: 12px; }
  4578. 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 {
  4579. display: block;
  4580. margin: 10px 0;
  4581. font-size: 18px;
  4582. padding: 0.1em 0.6em 0.2em;
  4583. border-radius: 0.3em;
  4584. background-clip: padding-box;
  4585. font-weight: bold;
  4586. border: 2px solid #69CDCF;
  4587. background-color: #69CDCF;
  4588. color: #fff;
  4589. cursor: pointer;
  4590. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4591. transition: text-shadow 0.2s ease-out;
  4592. text-align: center;
  4593. text-decoration: none; }
  4594. 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 {
  4595. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4596. 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 {
  4597. transition: text-shadow 0s ease-out;
  4598. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4599. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  4600. position: absolute;
  4601. width: 100%;
  4602. height: 100%;
  4603. top: 0;
  4604. left: 0;
  4605. background-color: #fff;
  4606. cursor: pointer; }
  4607. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  4608. z-index: 1; }
  4609. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  4610. position: absolute;
  4611. bottom: 0;
  4612. z-index: 2;
  4613. width: 190px;
  4614. padding: 5px 15px 5px 5px;
  4615. min-height: 55px;
  4616. font-size: 20px;
  4617. font-weight: 300;
  4618. line-height: 1;
  4619. background-color: rgba(255, 255, 255, 0.8);
  4620. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4621. transition: background-color 0.2s ease-out;
  4622. border-radius: 0 0 4px 4px;
  4623. background-clip: padding-box;
  4624. overflow: hidden; }
  4625. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  4626. font-weight: 700; }
  4627. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  4628. font-size: 14px; }
  4629. 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 {
  4630. display: moz-inline-stack;
  4631. display: inline-block;
  4632. vertical-align: top;
  4633. zoom: 1;
  4634. *display: inline;
  4635. font-size: 12px;
  4636. vertical-align: bottom;
  4637. width: 48%; }
  4638. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  4639. text-align: right; }
  4640. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  4641. background: #fff;
  4642. font-color: #000;
  4643. line-height: 1em;
  4644. padding: 10px; }
  4645. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  4646. color: #fff;
  4647. background-color: rgba(0, 0, 0, 0.7);
  4648. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4649. transition: background-color 0.2s ease-out; }
  4650. 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 {
  4651. font-size: 12px;
  4652. font-weight: 500; }
  4653. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  4654. background: #000;
  4655. font-size: 15px;
  4656. line-height: 1.2em; }
  4657. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  4658. position: relative;
  4659. z-index: 1;
  4660. background-color: #fff; }
  4661. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  4662. position: absolute;
  4663. top: 0;
  4664. left: 0; }
  4665. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  4666. position: relative;
  4667. z-index: 1; }
  4668. 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 {
  4669. font-size: 12px;
  4670. font-weight: 300;
  4671. overflow: hidden;
  4672. z-index: -1;
  4673. padding: 5px; }
  4674. 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 {
  4675. padding: 0;
  4676. transition: margin-left 0.3s ease-out; }
  4677. 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 > * {
  4678. padding: 5px; }
  4679. 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 {
  4680. display: inline-block;
  4681. border-radius: 3px;
  4682. background-clip: padding-box;
  4683. color: #fff;
  4684. background-color: #3e3e3e;
  4685. vertical-align: middle;
  4686. font-weight: 700;
  4687. font-size: 22px;
  4688. padding: 0.05em 0.15em 0.2em 0.2em;
  4689. line-height: 0.5;
  4690. font-weight: normal; }
  4691. 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 {
  4692. cursor: w-resize; }
  4693. 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 {
  4694. cursor: e-resize; }
  4695. 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 > * {
  4696. padding-right: 25px; }
  4697. article.node-materiau.vm-cardmedium .field-name-field-location, article.node-breve.vm-cardmedium .field-name-field-location {
  4698. font-size: 12px;
  4699. padding: 5px;
  4700. font-weight: 300; }
  4701. article.node-materiau.vm-cardmedium .field-name-field-location .field-label, article.node-breve.vm-cardmedium .field-name-field-location .field-label {
  4702. font-size: 10px;
  4703. text-transform: lowercase;
  4704. margin: 0; }
  4705. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  4706. padding: 5px; }
  4707. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  4708. padding: 0;
  4709. transition: margin-left 0.3s ease-out; }
  4710. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  4711. padding: 5px; }
  4712. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  4713. display: inline-block;
  4714. border-radius: 3px;
  4715. background-clip: padding-box;
  4716. color: #fff;
  4717. background-color: #3e3e3e;
  4718. vertical-align: middle;
  4719. font-weight: 700;
  4720. font-size: 22px;
  4721. padding: 0.05em 0.15em 0.2em 0.2em;
  4722. line-height: 0.5;
  4723. font-weight: normal; }
  4724. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  4725. cursor: w-resize; }
  4726. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  4727. cursor: e-resize; }
  4728. 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 {
  4729. font-size: 12px;
  4730. padding: 5px;
  4731. font-weight: 300; }
  4732. 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 {
  4733. font-size: 10px;
  4734. text-transform: lowercase;
  4735. margin: 0; }
  4736. 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 {
  4737. font-size: 14px; }
  4738. 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 {
  4739. font-size: 12px;
  4740. padding: 5px;
  4741. font-weight: 300; }
  4742. 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 {
  4743. color: #000; }
  4744. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  4745. font-weight: 900;
  4746. margin: 1em 0 0.5em; }
  4747. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4748. visibility: hidden; }
  4749. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4750. margin-top: -100000px; }
  4751. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4752. opacity: 0;
  4753. transition: visibility 0s 0.3s; }
  4754. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4755. transition: margin-top 0s 0.3s; }
  4756. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4757. visibility: hidden; }
  4758. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4759. margin-top: -100000px; }
  4760. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4761. opacity: 0;
  4762. transition: visibility 0s 0.3s; }
  4763. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4764. transition: margin-top 0s 0.3s; }
  4765. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  4766. background: #FFF; }
  4767. /*
  4768. ______ __ ____ _
  4769. / ____/___ __________/ / / __ )(_)___ _
  4770. / / / __ `/ ___/ __ / / __ / / __ `/
  4771. / /___/ /_/ / / / /_/ / / /_/ / / /_/ /
  4772. \____/\__,_/_/ \__,_/ /_____/_/\__, /
  4773. /____/
  4774. */
  4775. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  4776. width: 425px;
  4777. height: 610px;
  4778. display: moz-inline-stack;
  4779. display: inline-block;
  4780. vertical-align: top;
  4781. zoom: 1;
  4782. *display: inline;
  4783. position: relative;
  4784. margin: 7px;
  4785. border-radius: 5px;
  4786. background-clip: padding-box;
  4787. background-color: #FFF;
  4788. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4789. transition: box-shadow 0.3s ease-out; }
  4790. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  4791. border-radius: 5px;
  4792. background-clip: padding-box;
  4793. overflow: hidden; }
  4794. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  4795. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4796. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  4797. opacity: 0; }
  4798. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  4799. transition: margin 0.3s ease-out; }
  4800. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  4801. margin-left: -425px;
  4802. margin-right: 425px; }
  4803. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  4804. position: absolute;
  4805. top: 0;
  4806. left: 0;
  4807. z-index: 999; }
  4808. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  4809. transition: width 0.3s ease-out;
  4810. width: 0;
  4811. padding-left: 0;
  4812. padding-right: 0;
  4813. margin-right: 0;
  4814. margin-left: 0;
  4815. overflow: hidden; }
  4816. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  4817. position: absolute;
  4818. top: 0;
  4819. right: 0;
  4820. z-index: 11;
  4821. padding: 5px 0;
  4822. border-radius: 0 5px 0 3px;
  4823. background-clip: padding-box;
  4824. font-size: 10px;
  4825. background-color: rgba(255, 255, 255, 0.9);
  4826. color: #000; }
  4827. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  4828. color: #000; }
  4829. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4830. background-color: rgba(255, 255, 255, 0.9); }
  4831. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  4832. font-weight: 900;
  4833. font-size: 14px; }
  4834. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4835. padding: 0;
  4836. margin: 0; }
  4837. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  4838. position: relative; }
  4839. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  4840. margin: 0 5px; }
  4841. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  4842. cursor: pointer; }
  4843. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4844. position: absolute;
  4845. right: 0;
  4846. top: 0;
  4847. margin-right: 22px;
  4848. min-width: 80px;
  4849. padding: 0;
  4850. display: block;
  4851. border-radius: 3px;
  4852. background-clip: padding-box;
  4853. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4854. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  4855. padding: 0;
  4856. margin: 0;
  4857. line-height: 1;
  4858. display: block;
  4859. height: 0;
  4860. overflow: hidden;
  4861. transition: height 0.2s ease-out; }
  4862. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  4863. display: block; }
  4864. article.node-materiau.vm-cardbig nav.nav ul.links a, article.node-breve.vm-cardbig nav.nav ul.links a {
  4865. font-size: 12px; }
  4866. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  4867. width: 160px;
  4868. font-size: 0; }
  4869. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  4870. font-size: 11px; }
  4871. 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 {
  4872. display: moz-inline-stack;
  4873. display: inline-block;
  4874. vertical-align: top;
  4875. zoom: 1;
  4876. *display: inline;
  4877. min-width: 48%;
  4878. max-width: 98%;
  4879. padding-left: 2px; }
  4880. 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 {
  4881. color: #a6a6a6;
  4882. transition: color 0.2s ease-out; }
  4883. 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 {
  4884. color: #000;
  4885. text-decoration: none; }
  4886. 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 {
  4887. display: block;
  4888. width: 100%; }
  4889. 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 > * {
  4890. margin-top: 1px;
  4891. padding-top: 1px;
  4892. border-top: 1px solid #e6e6e6; }
  4893. 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 {
  4894. color: #000; }
  4895. 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 {
  4896. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4897. 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 {
  4898. visibility: hidden; }
  4899. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  4900. background: #FFF; }
  4901. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  4902. padding: 5px 5px; }
  4903. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  4904. height: 17px; }
  4905. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  4906. position: absolute;
  4907. bottom: 0;
  4908. right: 0;
  4909. z-index: 11;
  4910. padding: 5px;
  4911. border-radius: 3px 0 5px 0;
  4912. background-clip: padding-box;
  4913. font-size: 10px;
  4914. vertical-align: top;
  4915. background-color: rgba(20, 20, 20, 0.9);
  4916. color: #fff; }
  4917. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  4918. padding: 3px 0 0 4px;
  4919. display: moz-inline-stack;
  4920. display: inline-block;
  4921. vertical-align: top;
  4922. zoom: 1;
  4923. *display: inline; }
  4924. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  4925. font-size: 12px;
  4926. padding-top: 4em;
  4927. margin-top: -4.5em;
  4928. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4929. position: relative; }
  4930. 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 {
  4931. padding: 10px;
  4932. font-size: 12px; }
  4933. 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 {
  4934. display: block;
  4935. margin: 10px 0;
  4936. font-size: 18px;
  4937. padding: 0.1em 0.6em 0.2em;
  4938. border-radius: 0.3em;
  4939. background-clip: padding-box;
  4940. font-weight: bold;
  4941. border: 2px solid #69CDCF;
  4942. background-color: #69CDCF;
  4943. color: #fff;
  4944. cursor: pointer;
  4945. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4946. transition: text-shadow 0.2s ease-out;
  4947. text-align: center;
  4948. text-decoration: none; }
  4949. 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 {
  4950. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4951. 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 {
  4952. transition: text-shadow 0s ease-out;
  4953. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4954. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  4955. position: absolute;
  4956. width: 100%;
  4957. height: 100%;
  4958. top: 0;
  4959. left: 0;
  4960. background-color: #fff;
  4961. height: 270px;
  4962. top: 340px;
  4963. cursor: pointer; }
  4964. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  4965. z-index: 1; }
  4966. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  4967. position: relative;
  4968. border-radius: 5px 5px 0 0;
  4969. background-clip: padding-box;
  4970. overflow: hidden; }
  4971. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  4972. position: absolute;
  4973. bottom: 0;
  4974. z-index: 2;
  4975. width: 405px;
  4976. padding: 10px;
  4977. font-size: 20px;
  4978. font-weight: 300;
  4979. line-height: 1.1;
  4980. background-color: rgba(255, 255, 255, 0.8);
  4981. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4982. transition: background-color 0.2s ease-out; }
  4983. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  4984. font-weight: 700; }
  4985. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  4986. font-size: 14px; }
  4987. 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 {
  4988. display: moz-inline-stack;
  4989. display: inline-block;
  4990. vertical-align: top;
  4991. zoom: 1;
  4992. *display: inline;
  4993. font-size: 12px;
  4994. vertical-align: bottom;
  4995. width: 48%; }
  4996. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  4997. text-align: right; }
  4998. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  4999. background: #fff;
  5000. font-color: #000;
  5001. line-height: 1em;
  5002. padding: 20px;
  5003. border-bottom: 1px solid #C6C6C6; }
  5004. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  5005. color: #fff;
  5006. background-color: rgba(0, 0, 0, 0.7);
  5007. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5008. transition: background-color 0.2s ease-out; }
  5009. 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 {
  5010. font-size: 12px;
  5011. font-weight: 500; }
  5012. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  5013. background: #000;
  5014. font-color: #fff;
  5015. line-height: 1em;
  5016. padding: 20px; }
  5017. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  5018. position: relative;
  5019. z-index: 1;
  5020. background-color: #fff;
  5021. height: auto; }
  5022. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  5023. position: absolute;
  5024. top: 0;
  5025. left: 0; }
  5026. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  5027. position: relative;
  5028. z-index: 1; }
  5029. 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 {
  5030. font-size: 12px;
  5031. font-weight: 300;
  5032. padding: 10px; }
  5033. 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 {
  5034. padding: 0;
  5035. transition: margin-left 0.3s ease-out; }
  5036. 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 > * {
  5037. padding: 10px; }
  5038. 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 {
  5039. display: inline-block;
  5040. border-radius: 3px;
  5041. background-clip: padding-box;
  5042. color: #fff;
  5043. background-color: #3e3e3e;
  5044. vertical-align: middle;
  5045. font-weight: 700;
  5046. font-size: 22px;
  5047. padding: 0.05em 0.15em 0.2em 0.2em;
  5048. line-height: 0.5;
  5049. font-weight: normal; }
  5050. 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 {
  5051. cursor: w-resize; }
  5052. 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 {
  5053. cursor: e-resize; }
  5054. article.node-materiau.vm-cardbig .field-name-field-location, article.node-breve.vm-cardbig .field-name-field-location {
  5055. font-size: 12px;
  5056. padding: 10px;
  5057. font-weight: 300; }
  5058. article.node-materiau.vm-cardbig .field-name-field-location .field-label, article.node-breve.vm-cardbig .field-name-field-location .field-label {
  5059. font-size: 10px;
  5060. text-transform: lowercase;
  5061. float: none; }
  5062. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  5063. padding: 10px; }
  5064. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  5065. padding: 0;
  5066. transition: margin-left 0.3s ease-out; }
  5067. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  5068. padding: 10px; }
  5069. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  5070. display: inline-block;
  5071. border-radius: 3px;
  5072. background-clip: padding-box;
  5073. color: #fff;
  5074. background-color: #3e3e3e;
  5075. vertical-align: middle;
  5076. font-weight: 700;
  5077. font-size: 22px;
  5078. padding: 0.05em 0.15em 0.2em 0.2em;
  5079. line-height: 0.5;
  5080. font-weight: normal; }
  5081. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  5082. cursor: w-resize; }
  5083. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  5084. cursor: e-resize; }
  5085. 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 {
  5086. font-size: 12px;
  5087. padding: 10px;
  5088. font-weight: 300; }
  5089. 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 {
  5090. font-size: 10px;
  5091. text-transform: lowercase;
  5092. float: none; }
  5093. 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 {
  5094. font-size: 14px; }
  5095. 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 {
  5096. font-size: 12px;
  5097. padding: 10px;
  5098. font-weight: 300; }
  5099. 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 {
  5100. color: #000; }
  5101. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  5102. font-weight: 900;
  5103. margin: 0 0 0.5em; }
  5104. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  5105. background: #FFF; }
  5106. 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 {
  5107. padding: 3em; }
  5108. 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 {
  5109. border: 2px solid #eee;
  5110. background-color: #eee;
  5111. color: #fff;
  5112. transition: border 0.3s ease-out;
  5113. transition: background-color 0.3s ease-out; }
  5114. 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 {
  5115. border: 2px solid #69CDCF;
  5116. background-color: #69CDCF; }
  5117. /*
  5118. ______ __ ______ ____
  5119. / ____/___ __________/ / / ____/_ __/ / /
  5120. / / / __ `/ ___/ __ / / /_ / / / / / /
  5121. / /___/ /_/ / / / /_/ / / __/ / /_/ / / /
  5122. \____/\__,_/_/ \__,_/ /_/ \__,_/_/_/
  5123. */
  5124. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  5125. width: 850px;
  5126. height: 610px;
  5127. display: moz-inline-stack;
  5128. display: inline-block;
  5129. vertical-align: top;
  5130. zoom: 1;
  5131. *display: inline;
  5132. position: relative;
  5133. margin: 7px;
  5134. border-radius: 5px;
  5135. background-clip: padding-box;
  5136. background-color: #FFF;
  5137. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5138. transition: box-shadow 0.3s ease-out;
  5139. font-size: 0px; }
  5140. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  5141. border-radius: 5px;
  5142. background-clip: padding-box;
  5143. overflow: hidden; }
  5144. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  5145. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5146. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  5147. opacity: 0; }
  5148. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  5149. transition: margin 0.3s ease-out; }
  5150. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  5151. margin-left: -850px;
  5152. margin-right: 850px; }
  5153. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  5154. position: absolute;
  5155. top: 0;
  5156. left: 0;
  5157. z-index: 999; }
  5158. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  5159. transition: width 0.3s ease-out;
  5160. width: 0;
  5161. padding-left: 0;
  5162. padding-right: 0;
  5163. margin-right: 0;
  5164. margin-left: 0;
  5165. overflow: hidden; }
  5166. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5167. position: absolute;
  5168. top: 0;
  5169. right: 0;
  5170. z-index: 11;
  5171. padding: 5px 0;
  5172. border-radius: 0 5px 0 3px;
  5173. background-clip: padding-box;
  5174. font-size: 10px;
  5175. background-color: rgba(255, 255, 255, 0.9);
  5176. color: #000; }
  5177. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5178. color: #000; }
  5179. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5180. background-color: rgba(255, 255, 255, 0.9); }
  5181. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5182. font-weight: 900;
  5183. font-size: 14px; }
  5184. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5185. padding: 0;
  5186. margin: 0; }
  5187. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5188. position: relative; }
  5189. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5190. margin: 0 5px; }
  5191. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5192. cursor: pointer; }
  5193. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5194. position: absolute;
  5195. right: 0;
  5196. top: 0;
  5197. margin-right: 22px;
  5198. min-width: 80px;
  5199. padding: 0;
  5200. display: block;
  5201. border-radius: 3px;
  5202. background-clip: padding-box;
  5203. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5204. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5205. padding: 0;
  5206. margin: 0;
  5207. line-height: 1;
  5208. display: block;
  5209. height: 0;
  5210. overflow: hidden;
  5211. transition: height 0.2s ease-out; }
  5212. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5213. display: block; }
  5214. article.node-materiau.vm-cardfull nav.nav ul.links a, article.node-breve.vm-cardfull nav.nav ul.links a {
  5215. font-size: 12px; }
  5216. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5217. width: 160px;
  5218. font-size: 0; }
  5219. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5220. font-size: 11px; }
  5221. 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 {
  5222. display: moz-inline-stack;
  5223. display: inline-block;
  5224. vertical-align: top;
  5225. zoom: 1;
  5226. *display: inline;
  5227. min-width: 48%;
  5228. max-width: 98%;
  5229. padding-left: 2px; }
  5230. 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 {
  5231. color: #a6a6a6;
  5232. transition: color 0.2s ease-out; }
  5233. 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 {
  5234. color: #000;
  5235. text-decoration: none; }
  5236. 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 {
  5237. display: block;
  5238. width: 100%; }
  5239. 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 > * {
  5240. margin-top: 1px;
  5241. padding-top: 1px;
  5242. border-top: 1px solid #e6e6e6; }
  5243. 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 {
  5244. color: #000; }
  5245. 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 {
  5246. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5247. 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 {
  5248. visibility: hidden; }
  5249. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5250. background: #FFF; }
  5251. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5252. padding: 5px 5px; }
  5253. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5254. height: 17px; }
  5255. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5256. position: absolute;
  5257. bottom: 0;
  5258. right: 0;
  5259. z-index: 11;
  5260. padding: 5px;
  5261. border-radius: 3px 0 5px 0;
  5262. background-clip: padding-box;
  5263. font-size: 10px;
  5264. vertical-align: top;
  5265. background-color: rgba(20, 20, 20, 0.9);
  5266. color: #fff; }
  5267. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5268. padding: 3px 0 0 4px;
  5269. display: moz-inline-stack;
  5270. display: inline-block;
  5271. vertical-align: top;
  5272. zoom: 1;
  5273. *display: inline; }
  5274. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5275. font-size: 12px;
  5276. padding-top: 4em;
  5277. margin-top: -4.5em;
  5278. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5279. position: relative; }
  5280. 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 {
  5281. padding: 10px;
  5282. font-size: 12px; }
  5283. 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 {
  5284. display: block;
  5285. margin: 10px 0;
  5286. font-size: 18px;
  5287. padding: 0.1em 0.6em 0.2em;
  5288. border-radius: 0.3em;
  5289. background-clip: padding-box;
  5290. font-weight: bold;
  5291. border: 2px solid #69CDCF;
  5292. background-color: #69CDCF;
  5293. color: #fff;
  5294. cursor: pointer;
  5295. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5296. transition: text-shadow 0.2s ease-out;
  5297. text-align: center;
  5298. text-decoration: none; }
  5299. 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 {
  5300. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5301. 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 {
  5302. transition: text-shadow 0s ease-out;
  5303. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  5304. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5305. top: 0; }
  5306. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  5307. font-size: 16px; }
  5308. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  5309. display: moz-inline-stack;
  5310. display: inline-block;
  5311. vertical-align: top;
  5312. zoom: 1;
  5313. *display: inline;
  5314. width: 50%; }
  5315. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  5316. border-radius: 5px 0 0 5px;
  5317. background-clip: padding-box; }
  5318. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  5319. border-radius: 0 5px 5px 0;
  5320. background-clip: padding-box; }
  5321. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  5322. position: relative;
  5323. z-index: 1;
  5324. background-color: #fff; }
  5325. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  5326. position: absolute;
  5327. top: 0;
  5328. left: 0; }
  5329. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  5330. position: relative;
  5331. z-index: 1; }
  5332. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  5333. font-size: 20px;
  5334. font-weight: 300;
  5335. padding: 10px 10px 0 10px; }
  5336. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  5337. font-weight: 700; }
  5338. 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 {
  5339. display: moz-inline-stack;
  5340. display: inline-block;
  5341. vertical-align: top;
  5342. zoom: 1;
  5343. *display: inline;
  5344. vertical-align: baseline; }
  5345. article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio {
  5346. font-size: 12px; }
  5347. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  5348. color: #fff;
  5349. background-color: rgba(0, 0, 0, 0.7);
  5350. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5351. transition: background-color 0.2s ease-out; }
  5352. 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 {
  5353. font-weight: 500; }
  5354. article.node-materiau.vm-cardfull .field-name-field-location, article.node-breve.vm-cardfull .field-name-field-location {
  5355. font-size: 12px;
  5356. padding: 5px 10px 0 10px;
  5357. font-weight: 300; }
  5358. 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 {
  5359. display: moz-inline-stack;
  5360. display: inline-block;
  5361. vertical-align: top;
  5362. zoom: 1;
  5363. *display: inline;
  5364. vertical-align: baseline; }
  5365. article.node-materiau.vm-cardfull .field-name-field-location .field-label, article.node-breve.vm-cardfull .field-name-field-location .field-label {
  5366. font-size: 10px;
  5367. text-transform: lowercase;
  5368. float: none; }
  5369. 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 {
  5370. font-size: 12px;
  5371. font-weight: 300;
  5372. padding: 5px 10px 0 10px; }
  5373. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  5374. padding: 10px;
  5375. font-size: 12px; }
  5376. 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 {
  5377. font-size: 12px;
  5378. padding: 10px;
  5379. font-weight: 300;
  5380. display: moz-inline-stack;
  5381. display: inline-block;
  5382. vertical-align: top;
  5383. zoom: 1;
  5384. *display: inline;
  5385. width: 40%; }
  5386. 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 {
  5387. margin-top: 1em; }
  5388. 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 {
  5389. font-size: 10px;
  5390. text-transform: lowercase;
  5391. float: none; }
  5392. 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 {
  5393. font-size: 14px; }
  5394. 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 {
  5395. font-size: 12px;
  5396. padding: 10px;
  5397. font-weight: 300; }
  5398. 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 {
  5399. color: #000; }
  5400. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  5401. font-weight: 900;
  5402. margin: 0 0 0.5em; }
  5403. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5404. margin: 5px; }
  5405. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5406. margin: 5px; }
  5407. 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 {
  5408. padding: 3em; }
  5409. 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 {
  5410. border: 2px solid #eee;
  5411. background-color: #eee;
  5412. color: #fff;
  5413. transition: border 0.3s ease-out;
  5414. transition: background-color 0.3s ease-out; }
  5415. 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 {
  5416. border: 2px solid #69CDCF;
  5417. background-color: #69CDCF; }
  5418. /*
  5419. __ ____ _ __
  5420. _________ __________/ / / __ \_____(_)___ / /_
  5421. / ___/ __ `/ ___/ __ / / /_/ / ___/ / __ \/ __/
  5422. / /__/ /_/ / / / /_/ / / ____/ / / / / / / /_
  5423. \___/\__,_/_/ \__,_/ /_/ /_/ /_/_/ /_/\__/
  5424. */
  5425. .print-node-materiau {
  5426. margin: 0 auto; }
  5427. @media screen {
  5428. .print-node-materiau {
  5429. width: 850px;
  5430. height: auto;
  5431. display: moz-inline-stack;
  5432. display: inline-block;
  5433. vertical-align: top;
  5434. zoom: 1;
  5435. *display: inline;
  5436. position: relative;
  5437. margin: 7px;
  5438. border-radius: 5px;
  5439. background-clip: padding-box;
  5440. background-color: #FFF;
  5441. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5442. transition: box-shadow 0.3s ease-out;
  5443. width: 1024px;
  5444. padding: 1em; }
  5445. .print-node-materiau > div.side {
  5446. border-radius: 5px;
  5447. background-clip: padding-box;
  5448. overflow: hidden; }
  5449. .print-node-materiau.focused {
  5450. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5451. .print-node-materiau.just-added {
  5452. opacity: 0; }
  5453. .print-node-materiau.associated {
  5454. transition: margin 0.3s ease-out; }
  5455. .print-node-materiau.associated.just-added {
  5456. margin-left: -850px;
  5457. margin-right: 850px; }
  5458. .modal-content .print-node-materiau.associated {
  5459. position: absolute;
  5460. top: 0;
  5461. left: 0;
  5462. z-index: 999; }
  5463. .print-node-materiau.removed {
  5464. transition: width 0.3s ease-out;
  5465. width: 0;
  5466. padding-left: 0;
  5467. padding-right: 0;
  5468. margin-right: 0;
  5469. margin-left: 0;
  5470. overflow: hidden; }
  5471. .print-node-materiau nav.nav {
  5472. position: absolute;
  5473. top: 0;
  5474. right: 0;
  5475. z-index: 11;
  5476. padding: 5px 0;
  5477. border-radius: 0 5px 0 3px;
  5478. background-clip: padding-box;
  5479. font-size: 10px;
  5480. background-color: rgba(255, 255, 255, 0.9);
  5481. color: #000; }
  5482. .print-node-materiau nav.nav a {
  5483. color: #000; }
  5484. .print-node-materiau nav.nav ul {
  5485. background-color: rgba(255, 255, 255, 0.9); }
  5486. .print-node-materiau nav.nav span.op {
  5487. font-weight: 900;
  5488. font-size: 14px; }
  5489. .print-node-materiau nav.nav ul {
  5490. padding: 0;
  5491. margin: 0; }
  5492. .print-node-materiau nav.nav section {
  5493. position: relative; }
  5494. .print-node-materiau nav.nav section > i {
  5495. margin: 0 5px; }
  5496. .print-node-materiau nav.nav section > i:hover {
  5497. cursor: pointer; }
  5498. .print-node-materiau nav.nav ul {
  5499. position: absolute;
  5500. right: 0;
  5501. top: 0;
  5502. margin-right: 22px;
  5503. min-width: 80px;
  5504. padding: 0;
  5505. display: block;
  5506. border-radius: 3px;
  5507. background-clip: padding-box;
  5508. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5509. .print-node-materiau nav.nav ul li {
  5510. padding: 0;
  5511. margin: 0;
  5512. line-height: 1;
  5513. display: block;
  5514. height: 0;
  5515. overflow: hidden;
  5516. transition: height 0.2s ease-out; }
  5517. .print-node-materiau nav.nav ul li a {
  5518. display: block; }
  5519. .print-node-materiau nav.nav ul.links a {
  5520. font-size: 12px; }
  5521. .print-node-materiau nav.nav ul.flag-lists-entity-links {
  5522. width: 160px;
  5523. font-size: 0; }
  5524. .print-node-materiau nav.nav ul.flag-lists-entity-links > * {
  5525. font-size: 11px; }
  5526. .print-node-materiau nav.nav ul.flag-lists-entity-links li {
  5527. display: moz-inline-stack;
  5528. display: inline-block;
  5529. vertical-align: top;
  5530. zoom: 1;
  5531. *display: inline;
  5532. min-width: 48%;
  5533. max-width: 98%;
  5534. padding-left: 2px; }
  5535. .print-node-materiau nav.nav ul.flag-lists-entity-links li a {
  5536. color: #a6a6a6;
  5537. transition: color 0.2s ease-out; }
  5538. .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 {
  5539. color: #000;
  5540. text-decoration: none; }
  5541. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5542. display: block;
  5543. width: 100%; }
  5544. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5545. margin-top: 1px;
  5546. padding-top: 1px;
  5547. border-top: 1px solid #e6e6e6; }
  5548. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5549. color: #000; }
  5550. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading {
  5551. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5552. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading a {
  5553. visibility: hidden; }
  5554. .ie8 .print-node-materiau nav.nav ul {
  5555. background: #FFF; }
  5556. .print-node-materiau nav.nav section:hover ul {
  5557. padding: 5px 5px; }
  5558. .print-node-materiau nav.nav section:hover ul li {
  5559. height: 17px; }
  5560. .print-node-materiau div.workflow {
  5561. position: absolute;
  5562. bottom: 0;
  5563. right: 0;
  5564. z-index: 11;
  5565. padding: 5px;
  5566. border-radius: 3px 0 5px 0;
  5567. background-clip: padding-box;
  5568. font-size: 10px;
  5569. vertical-align: top;
  5570. background-color: rgba(20, 20, 20, 0.9);
  5571. color: #fff; }
  5572. .print-node-materiau div.workflow span {
  5573. padding: 3px 0 0 4px;
  5574. display: moz-inline-stack;
  5575. display: inline-block;
  5576. vertical-align: top;
  5577. zoom: 1;
  5578. *display: inline; }
  5579. .print-node-materiau .field-name-field-description .upgrade {
  5580. font-size: 12px;
  5581. padding-top: 4em;
  5582. margin-top: -4.5em;
  5583. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5584. position: relative; }
  5585. .print-node-materiau .side.oops p, .print-node-materiau .side .upgrade p {
  5586. padding: 10px;
  5587. font-size: 12px; }
  5588. .print-node-materiau .side.oops p a, .print-node-materiau .side .upgrade p a {
  5589. display: block;
  5590. margin: 10px 0;
  5591. font-size: 18px;
  5592. padding: 0.1em 0.6em 0.2em;
  5593. border-radius: 0.3em;
  5594. background-clip: padding-box;
  5595. font-weight: bold;
  5596. border: 2px solid #69CDCF;
  5597. background-color: #69CDCF;
  5598. color: #fff;
  5599. cursor: pointer;
  5600. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5601. transition: text-shadow 0.2s ease-out;
  5602. text-align: center;
  5603. text-decoration: none; }
  5604. .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 {
  5605. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5606. .print-node-materiau .side.oops p a:active, .print-node-materiau .side .upgrade p a:active {
  5607. transition: text-shadow 0s ease-out;
  5608. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } }
  5609. .print-content .node-materiau.vm-print {
  5610. margin: 0;
  5611. position: relative; }
  5612. .print-content .node-materiau.vm-print .field-name-title-field {
  5613. font-weight: 500;
  5614. font-size: 1.4em; }
  5615. .print-content .node-materiau.vm-print .field-name-field-nature-titre {
  5616. font-weight: 500;
  5617. font-size: 1em;
  5618. margin-bottom: 0.5em; }
  5619. .print-content .node-materiau.vm-print .group-head-right {
  5620. position: absolute;
  5621. top: 0;
  5622. right: 0;
  5623. padding-top: 1em;
  5624. text-align: right;
  5625. font-size: 0.8em; }
  5626. .print-content .node-materiau.vm-print .group-head-right .field-name-field-reference-materio {
  5627. font-weight: 800;
  5628. font-size: 1.2em; }
  5629. .print-content .node-materiau.vm-print .side.group-side-left {
  5630. width: 45%;
  5631. position: absolute; }
  5632. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-description {
  5633. font-size: 0.8em; }
  5634. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-location {
  5635. font-size: 0.7em; }
  5636. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference {
  5637. display: inline-block;
  5638. vertical-align: top;
  5639. width: 45%;
  5640. margin: 0.5em 1em 0 0;
  5641. font-size: 0.7em; }
  5642. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .field-label {
  5643. font-size: 0.8em;
  5644. font-weight: 300; }
  5645. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-name-field-tode-company {
  5646. font-size: 1.2em; }
  5647. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-label {
  5648. display: none; }
  5649. .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 {
  5650. max-width: 100%; }
  5651. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image {
  5652. text-align: right; }
  5653. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure {
  5654. display: inline-block;
  5655. max-width: 19%;
  5656. margin: 0.5em 0 0 0.5em;
  5657. max-width: 100%;
  5658. margin-left: 50%; }
  5659. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure img {
  5660. max-width: 100%; }
  5661. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item {
  5662. display: none;
  5663. max-width: 19%;
  5664. margin: 0.5em 0 0 0.5em; }
  5665. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+7) {
  5666. display: inline-block; }
  5667. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+2) {
  5668. max-width: 100%;
  5669. margin-left: 50%; }
  5670. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item img {
  5671. max-width: 100%; }
  5672. .print-content .node-materiau.vm-print .field-name-field-tode-company {
  5673. font-size: 1.5em;
  5674. font-weight: 700; }
  5675. .print-content .node-materiau.vm-print .field-name-field-description,
  5676. .print-content .node-materiau.vm-print .field-name-field-company-fab,
  5677. .print-content .node-materiau.vm-print .field-name-field-reference-distrib {
  5678. padding-bottom: 1em; }
  5679. /*
  5680. ____ ____ _____ ________
  5681. / __ \/ __ \/ _/ | / /_ __/
  5682. / /_/ / /_/ // // |/ / / /
  5683. / ____/ _, _// // /| / / /
  5684. /_/ /_/ |_/___/_/ |_/ /_/
  5685. */
  5686. @media print {
  5687. @page {
  5688. margin: 1.5cm 7mm 8mm; } }
  5689. .print-site_name {
  5690. width: 100%;
  5691. vertical-align: bottom;
  5692. margin-bottom: 0.5em; }
  5693. .print-site_name h1 {
  5694. margin: 0 0 0 0;
  5695. font-size: 1.4em;
  5696. text-align: center; }
  5697. .print-site_name h1 a {
  5698. color: inherit; }
  5699. .print-site_name h1 a:hover {
  5700. text-decoration: none; }
  5701. .print-site_name span.slogan {
  5702. display: none;
  5703. font-size: 0.8em;
  5704. margin-top: -3px;
  5705. margin-left: -0.5em;
  5706. font-weight: 900; }
  5707. .ie8 .print-site_name span.slogan {
  5708. position: absolute;
  5709. margin-top: 22px; }
  5710. .print-content {
  5711. margin-bottom: 1em; }
  5712. .print-footer {
  5713. position: absolute;
  5714. bottom: 0;
  5715. text-align: center;
  5716. width: 100%; }
  5717. .print-footer p {
  5718. display: inline-block;
  5719. width: 45%;
  5720. text-align: center; }
  5721. /*
  5722. ___ __ ____________ __________ __ _______ __ __________________
  5723. / | / / / /_ __/ __ \/ ____/ __ \/ |/ / __ \/ / / ____/_ __/ ____/
  5724. / /| |/ / / / / / / / / / / / / / / /|_/ / /_/ / / / __/ / / / __/
  5725. / ___ / /_/ / / / / /_/ / /___/ /_/ / / / / ____/ /___/ /___ / / / /___
  5726. /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/
  5727. */
  5728. #autocomplete {
  5729. border: 0;
  5730. border-radius: 3px;
  5731. background-clip: padding-box;
  5732. background-color: rgba(0, 0, 0, 0.6);
  5733. text-align: left;
  5734. margin-left: 2px; }
  5735. .oldie #autocomplete {
  5736. background-color: #545454; }
  5737. #autocomplete li {
  5738. color: #FFF;
  5739. background-color: transparent;
  5740. font-size: 12px; }
  5741. #autocomplete li.selected {
  5742. background-color: rgba(0, 0, 0, 0.8); }
  5743. #autocomplete li div {
  5744. padding: 0.1em 5px; }
  5745. /**
  5746. * the old modal api (balck bg) for contextual forms (create new flag list)
  5747. */
  5748. #modal {
  5749. background-color: rgba(0, 0, 0, 0.7);
  5750. border-radius: 5px;
  5751. background-clip: padding-box;
  5752. border: 0;
  5753. font-size: 12px; }
  5754. #modal * {
  5755. color: #fff;
  5756. background-color: transparent; }
  5757. #modal form {
  5758. background-color: transparent;
  5759. color: #fff;
  5760. border: 0px; }
  5761. #modal form .form-actions {
  5762. background-color: transparent;
  5763. margin: 0;
  5764. padding: 0;
  5765. border: 0; }
  5766. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  5767. background-color: #fff;
  5768. color: #000;
  5769. border: 0; }
  5770. #modal form .form-actions {
  5771. text-align: right; }
  5772. #modal form input.form-submit {
  5773. -webkit-appearance: none;
  5774. -moz-appearance: none;
  5775. border-radius: 0;
  5776. border-style: solid;
  5777. border-width: 0;
  5778. cursor: pointer;
  5779. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5780. font-weight: normal;
  5781. line-height: normal;
  5782. margin: 0 0 1.25rem;
  5783. position: relative;
  5784. text-align: center;
  5785. text-decoration: none;
  5786. display: inline-block;
  5787. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5788. font-size: 0.6875rem;
  5789. background-color: #008CBA;
  5790. border-color: #007095;
  5791. color: #FFFFFF;
  5792. transition: background-color, 300ms, ease-out; }
  5793. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5794. background-color: #007095; }
  5795. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5796. color: #FFFFFF; }
  5797. #modal form input.form-submit[name="create"] {
  5798. -webkit-appearance: none;
  5799. -moz-appearance: none;
  5800. border-radius: 0;
  5801. border-style: solid;
  5802. border-width: 0;
  5803. cursor: pointer;
  5804. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5805. font-weight: normal;
  5806. line-height: normal;
  5807. margin: 0 0 1.25rem;
  5808. position: relative;
  5809. text-align: center;
  5810. text-decoration: none;
  5811. display: inline-block;
  5812. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5813. font-size: 0.6875rem;
  5814. background-color: #43AC6A;
  5815. border-color: #368a55;
  5816. color: #FFFFFF;
  5817. transition: background-color, 300ms, ease-out; }
  5818. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5819. background-color: #368a55; }
  5820. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5821. color: #FFFFFF; }
  5822. #modal form input.form-submit[name="save"] {
  5823. -webkit-appearance: none;
  5824. -moz-appearance: none;
  5825. border-radius: 0;
  5826. border-style: solid;
  5827. border-width: 0;
  5828. cursor: pointer;
  5829. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5830. font-weight: normal;
  5831. line-height: normal;
  5832. margin: 0 0 1.25rem;
  5833. position: relative;
  5834. text-align: center;
  5835. text-decoration: none;
  5836. display: inline-block;
  5837. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5838. font-size: 0.6875rem;
  5839. background-color: #43AC6A;
  5840. border-color: #368a55;
  5841. color: #FFFFFF;
  5842. transition: background-color, 300ms, ease-out; }
  5843. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5844. background-color: #368a55; }
  5845. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5846. color: #FFFFFF; }
  5847. #modal form input.form-submit[name="delete"] {
  5848. -webkit-appearance: none;
  5849. -moz-appearance: none;
  5850. border-radius: 0;
  5851. border-style: solid;
  5852. border-width: 0;
  5853. cursor: pointer;
  5854. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5855. font-weight: normal;
  5856. line-height: normal;
  5857. margin: 0 0 1.25rem;
  5858. position: relative;
  5859. text-align: center;
  5860. text-decoration: none;
  5861. display: inline-block;
  5862. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5863. font-size: 0.6875rem;
  5864. background-color: #f04124;
  5865. border-color: #cf2a0e;
  5866. color: #FFFFFF;
  5867. transition: background-color, 300ms, ease-out; }
  5868. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5869. background-color: #cf2a0e; }
  5870. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5871. color: #FFFFFF; }
  5872. #modal form input.form-submit[name="cancel"] {
  5873. -webkit-appearance: none;
  5874. -moz-appearance: none;
  5875. border-radius: 0;
  5876. border-style: solid;
  5877. border-width: 0;
  5878. cursor: pointer;
  5879. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5880. font-weight: normal;
  5881. line-height: normal;
  5882. margin: 0 0 1.25rem;
  5883. position: relative;
  5884. text-align: center;
  5885. text-decoration: none;
  5886. display: inline-block;
  5887. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5888. font-size: 0.6875rem;
  5889. background-color: #e7e7e7;
  5890. border-color: #b9b9b9;
  5891. color: #333333;
  5892. transition: background-color, 300ms, ease-out; }
  5893. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5894. background-color: #b9b9b9; }
  5895. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5896. color: #333333; }
  5897. #modal > * {
  5898. padding: 10px; }
  5899. #modal #flag-lists-form .form-item-title input {
  5900. width: 95%; }
  5901. #modal .actions {
  5902. text-align: right; }
  5903. /**
  5904. * the new modal api used for preview and register modal
  5905. */
  5906. .modal-wrapper {
  5907. bottom: 0;
  5908. left: 0;
  5909. position: fixed;
  5910. right: 0;
  5911. text-align: center;
  5912. top: 0;
  5913. white-space: nowrap;
  5914. z-index: 99998; }
  5915. .modal-wrapper:before {
  5916. content: "";
  5917. display: inline-block;
  5918. height: 100%;
  5919. margin-right: -0.25em;
  5920. vertical-align: middle; }
  5921. .modal-wrapper:after, .modal-wrapper:before {
  5922. -moz-box-sizing: border-box; }
  5923. .modal-wrapper .modal-bg {
  5924. background-color: #000;
  5925. position: absolute;
  5926. top: 0;
  5927. left: 0;
  5928. width: 100%;
  5929. height: 100%;
  5930. opacity: 0.5; }
  5931. .modal-wrapper .modal-content {
  5932. position: relative;
  5933. display: inline-block;
  5934. margin: 0 auto;
  5935. text-align: left;
  5936. vertical-align: middle;
  5937. white-space: normal;
  5938. min-height: 200px; }
  5939. /*
  5940. _______ __________ ____ __ __ ____ ___ _ __
  5941. / / ___// ____/ __ \/ __ \/ / / / / __ \/ | / | / /
  5942. __ / /\__ \/ / / /_/ / / / / / / / / /_/ / /| | / |/ /
  5943. / /_/ /___/ / /___/ _, _/ /_/ / /___/ /___/ ____/ ___ |/ /| /
  5944. \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/
  5945. */
  5946. .jspContainer .jspVerticalBar {
  5947. background-color: transparent;
  5948. width: 5px; }
  5949. .jspContainer .jspVerticalBar .jspTrack {
  5950. background-color: transparent; }
  5951. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  5952. background-color: #ccc;
  5953. border-radius: 3px;
  5954. background-clip: padding-box; }
  5955. /*
  5956. __________ ____ __ ______________
  5957. /_ __/ __ \/ __ \/ / /_ __/ _/ __ / / / / / / / / / / / / / // /_/ /
  5958. / / / /_/ / /_/ / /___/ / _/ // ____/
  5959. /_/ \____/\____/_____/_/ /___/_/
  5960. */
  5961. #tooltip {
  5962. position: absolute;
  5963. z-index: 999;
  5964. max-width: 180px;
  5965. background-color: white;
  5966. padding: 5px;
  5967. border-radius: 3px;
  5968. background-clip: padding-box;
  5969. font-size: 12px;
  5970. font-weight: 500;
  5971. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  5972. #tooltip.op-visible {
  5973. transition: opacity 0.1s ease-out; }
  5974. /*
  5975. ______________________ ____ ___ ________ __
  5976. / ____/ ____/ ____/ __ \/ __ )/ | / ____/ //_/
  5977. / /_ / __/ / __/ / / / / __ / /| |/ / / ,<
  5978. / __/ / /___/ /___/ /_/ / /_/ / ___ / /___/ /| |
  5979. /_/ /_____/_____/_____/_____/_/ |_\____/_/ |_|
  5980. */
  5981. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  5982. #block-feedback-form {
  5983. bottom: 5px;
  5984. left: 5px;
  5985. right: auto; } }
  5986. #block-feedback-form h2 {
  5987. line-height: 1.2;
  5988. font-size: 14px;
  5989. margin: 0; }
  5990. #block-feedback-form h2 .title {
  5991. display: none; }
  5992. #block-feedback-form #feedback-form-toggle {
  5993. padding: 2px 3px;
  5994. border-radius: 3px;
  5995. background-clip: padding-box;
  5996. background-color: #ff7600;
  5997. color: #fff;
  5998. line-height: 2;
  5999. font-weight: 900; }
  6000. #block-feedback-form .content {
  6001. background-color: rgba(0, 0, 0, 0.7);
  6002. border-radius: 5px;
  6003. background-clip: padding-box;
  6004. border: 0;
  6005. font-size: 12px; }
  6006. #block-feedback-form .content * {
  6007. color: #fff;
  6008. background-color: transparent; }
  6009. #block-feedback-form .content form {
  6010. background-color: transparent;
  6011. color: #fff;
  6012. border: 0px; }
  6013. #block-feedback-form .content form .form-actions {
  6014. background-color: transparent;
  6015. margin: 0;
  6016. padding: 0;
  6017. border: 0; }
  6018. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  6019. background-color: #fff;
  6020. color: #000;
  6021. border: 0; }
  6022. #block-feedback-form .content form .form-actions {
  6023. text-align: right; }
  6024. #block-feedback-form .content form input.form-submit {
  6025. -webkit-appearance: none;
  6026. -moz-appearance: none;
  6027. border-radius: 0;
  6028. border-style: solid;
  6029. border-width: 0;
  6030. cursor: pointer;
  6031. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6032. font-weight: normal;
  6033. line-height: normal;
  6034. margin: 0 0 1.25rem;
  6035. position: relative;
  6036. text-align: center;
  6037. text-decoration: none;
  6038. display: inline-block;
  6039. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6040. font-size: 0.6875rem;
  6041. background-color: #008CBA;
  6042. border-color: #007095;
  6043. color: #FFFFFF;
  6044. transition: background-color, 300ms, ease-out; }
  6045. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6046. background-color: #007095; }
  6047. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6048. color: #FFFFFF; }
  6049. #block-feedback-form .content form input.form-submit[name="create"] {
  6050. -webkit-appearance: none;
  6051. -moz-appearance: none;
  6052. border-radius: 0;
  6053. border-style: solid;
  6054. border-width: 0;
  6055. cursor: pointer;
  6056. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6057. font-weight: normal;
  6058. line-height: normal;
  6059. margin: 0 0 1.25rem;
  6060. position: relative;
  6061. text-align: center;
  6062. text-decoration: none;
  6063. display: inline-block;
  6064. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6065. font-size: 0.6875rem;
  6066. background-color: #43AC6A;
  6067. border-color: #368a55;
  6068. color: #FFFFFF;
  6069. transition: background-color, 300ms, ease-out; }
  6070. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6071. background-color: #368a55; }
  6072. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6073. color: #FFFFFF; }
  6074. #block-feedback-form .content form input.form-submit[name="save"] {
  6075. -webkit-appearance: none;
  6076. -moz-appearance: none;
  6077. border-radius: 0;
  6078. border-style: solid;
  6079. border-width: 0;
  6080. cursor: pointer;
  6081. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6082. font-weight: normal;
  6083. line-height: normal;
  6084. margin: 0 0 1.25rem;
  6085. position: relative;
  6086. text-align: center;
  6087. text-decoration: none;
  6088. display: inline-block;
  6089. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6090. font-size: 0.6875rem;
  6091. background-color: #43AC6A;
  6092. border-color: #368a55;
  6093. color: #FFFFFF;
  6094. transition: background-color, 300ms, ease-out; }
  6095. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6096. background-color: #368a55; }
  6097. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6098. color: #FFFFFF; }
  6099. #block-feedback-form .content form input.form-submit[name="delete"] {
  6100. -webkit-appearance: none;
  6101. -moz-appearance: none;
  6102. border-radius: 0;
  6103. border-style: solid;
  6104. border-width: 0;
  6105. cursor: pointer;
  6106. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6107. font-weight: normal;
  6108. line-height: normal;
  6109. margin: 0 0 1.25rem;
  6110. position: relative;
  6111. text-align: center;
  6112. text-decoration: none;
  6113. display: inline-block;
  6114. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6115. font-size: 0.6875rem;
  6116. background-color: #f04124;
  6117. border-color: #cf2a0e;
  6118. color: #FFFFFF;
  6119. transition: background-color, 300ms, ease-out; }
  6120. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6121. background-color: #cf2a0e; }
  6122. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6123. color: #FFFFFF; }
  6124. #block-feedback-form .content form input.form-submit[name="cancel"] {
  6125. -webkit-appearance: none;
  6126. -moz-appearance: none;
  6127. border-radius: 0;
  6128. border-style: solid;
  6129. border-width: 0;
  6130. cursor: pointer;
  6131. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6132. font-weight: normal;
  6133. line-height: normal;
  6134. margin: 0 0 1.25rem;
  6135. position: relative;
  6136. text-align: center;
  6137. text-decoration: none;
  6138. display: inline-block;
  6139. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6140. font-size: 0.6875rem;
  6141. background-color: #e7e7e7;
  6142. border-color: #b9b9b9;
  6143. color: #333333;
  6144. transition: background-color, 300ms, ease-out; }
  6145. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6146. background-color: #b9b9b9; }
  6147. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6148. color: #333333; }
  6149. .ie8 #block-feedback-form .content {
  6150. background: #000; }
  6151. #block-feedback-form #feedback-status-message {
  6152. background-color: #fff;
  6153. padding: 5px; }
  6154. /*
  6155. _________ _____ __ __ __ _________ ____ _____
  6156. /_ __/ | / ___// //_/ _/_/ /_ __/ | / __ ) ___/
  6157. / / / /| | \__ \/ ,< _/_/ / / / /| | / __ \__ / / / ___ |___/ / /| | _/_/ / / / ___ |/ /_/ /__/ /
  6158. /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/
  6159. */
  6160. #tasks ul.tabs {
  6161. display: moz-inline-stack;
  6162. display: inline-block;
  6163. vertical-align: top;
  6164. zoom: 1;
  6165. *display: inline;
  6166. border: 0 solid #fff;
  6167. padding: 0;
  6168. margin: 0; }
  6169. #tasks ul.tabs li {
  6170. padding: 0;
  6171. margin: 2px 5px;
  6172. border: 0 solid #fff; }
  6173. #tasks ul.tabs a {
  6174. border: 0;
  6175. color: #7f7f7f; }
  6176. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6177. font-weight: 900;
  6178. color: #000; }
  6179. #tasks ul.tabs.primary a {
  6180. font-size: 12px;
  6181. padding: 5px 10px;
  6182. background-color: #e6e6e6;
  6183. border-radius: 3px;
  6184. background-clip: padding-box; }
  6185. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6186. background-color: #e6e6e6; }
  6187. #tasks ul.tabs.secondary {
  6188. font-size: 10px;
  6189. padding: 0.5em 1em; }
  6190. /*
  6191. ______________ _____________________
  6192. / ___/_ __/ |/_ __/ _/ ____/ ___/
  6193. \__ \ / / / /| | / / / // / \__ ___/ // / / ___ |/ / _/ // /___ ___/ /
  6194. /____//_/ /_/ |_/_/ /___/\____//____/
  6195. */
  6196. /*
  6197. _ _ ___ ___ ___
  6198. | | |_ -| -_| _|
  6199. |___|___|___|_|
  6200. */
  6201. .page-user #center, .page-user-edit #center, .page-user-password #center, .page-user-reset #center, .page-toboggan #center {
  6202. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right; }
  6203. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6204. width: 800px;
  6205. margin: 0 auto; }
  6206. .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 {
  6207. display: none; }
  6208. .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 {
  6209. font-size: 12px;
  6210. padding: 5px 10px;
  6211. background-color: #e6e6e6;
  6212. border-radius: 3px;
  6213. background-clip: padding-box; }
  6214. .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 {
  6215. background-color: #e6e6e6; }
  6216. .page-user #center > *, .page-user-edit #center > *, .page-user-password #center > *, .page-user-reset #center > *, .page-toboggan #center > * {
  6217. width: 800px;
  6218. margin: 0 auto;
  6219. padding-top: 1em;
  6220. font-size: 14px; }
  6221. .page-user #center > * fieldset, .page-user-edit #center > * fieldset, .page-user-password #center > * fieldset, .page-user-reset #center > * fieldset, .page-toboggan #center > * fieldset {
  6222. margin-bottom: 1em;
  6223. border: none; }
  6224. .page-user #center > * legend, .page-user-edit #center > * legend, .page-user-password #center > * legend, .page-user-reset #center > * legend, .page-toboggan #center > * legend {
  6225. font-size: 16px;
  6226. margin: 0;
  6227. padding: 10px 0 5px 0;
  6228. line-height: 1;
  6229. border: 0 solid #fff; }
  6230. .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 {
  6231. color: #000; }
  6232. .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 {
  6233. margin: 0 0 0.5em 0;
  6234. width: 100%; }
  6235. .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 {
  6236. display: moz-inline-stack;
  6237. display: inline-block;
  6238. vertical-align: top;
  6239. zoom: 1;
  6240. *display: inline;
  6241. vertical-align: middle; }
  6242. .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 {
  6243. margin-right: 1em; }
  6244. .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 {
  6245. padding: 2px 4px;
  6246. width: 20em; }
  6247. .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 {
  6248. margin: 0 0 2em 0; }
  6249. .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 {
  6250. width: 9em; }
  6251. .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 {
  6252. width: auto; }
  6253. .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 {
  6254. width: 15em;
  6255. margin-top: 0; }
  6256. .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 {
  6257. margin: 0; }
  6258. .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 {
  6259. font-size: 14px;
  6260. margin: 0; }
  6261. .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 {
  6262. display: moz-inline-stack;
  6263. display: inline-block;
  6264. vertical-align: top;
  6265. zoom: 1;
  6266. *display: inline;
  6267. width: auto;
  6268. margin-right: 1em; }
  6269. .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 {
  6270. margin: 0; }
  6271. .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 {
  6272. width: auto;
  6273. padding: 2px 4px;
  6274. height: auto; }
  6275. .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 {
  6276. font-size: 10px; }
  6277. .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 {
  6278. margin: 0;
  6279. text-align: right;
  6280. padding: 1em 0.5em; }
  6281. .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 {
  6282. min-width: 10em; }
  6283. .page-user #center > * #edit-profile-adherent-field-first-name, .page-user #center > * #edit-profile-adherent-field-name,
  6284. .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,
  6285. .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,
  6286. .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,
  6287. .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,
  6288. .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,
  6289. .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,
  6290. .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,
  6291. .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,
  6292. .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,
  6293. .page-toboggan #center > * #edit-profile-adherent-field-naf, .page-toboggan #center > * #edit-profile-adherent-field-siret {
  6294. display: moz-inline-stack;
  6295. display: inline-block;
  6296. vertical-align: top;
  6297. zoom: 1;
  6298. *display: inline;
  6299. vertical-align: middle;
  6300. width: auto;
  6301. margin: 0 1em 0.5em 0; }
  6302. .page-user #center > * #edit-profile-adherent-field-first-name div, .page-user #center > * #edit-profile-adherent-field-name div,
  6303. .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,
  6304. .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,
  6305. .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,
  6306. .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,
  6307. .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,
  6308. .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,
  6309. .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,
  6310. .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,
  6311. .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,
  6312. .page-toboggan #center > * #edit-profile-adherent-field-naf div, .page-toboggan #center > * #edit-profile-adherent-field-siret div {
  6313. width: auto;
  6314. margin: 0;
  6315. padding: 0; }
  6316. .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 {
  6317. width: auto; }
  6318. .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 {
  6319. width: 8em; }
  6320. .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 {
  6321. width: 13em; }
  6322. .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 {
  6323. margin: 2em 0 0 0; }
  6324. .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 {
  6325. width: auto; }
  6326. .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 {
  6327. width: 4em; }
  6328. .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 {
  6329. display: moz-inline-stack;
  6330. display: inline-block;
  6331. vertical-align: top;
  6332. zoom: 1;
  6333. *display: inline;
  6334. vertical-align: middle; }
  6335. .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 {
  6336. width: 10em; }
  6337. .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 {
  6338. padding: 0; }
  6339. .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 {
  6340. width: 35em; }
  6341. .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 {
  6342. width: auto;
  6343. margin-right: 1em; }
  6344. .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 {
  6345. margin: 2em 0 0 0; }
  6346. .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 > * {
  6347. display: moz-inline-stack;
  6348. display: inline-block;
  6349. vertical-align: top;
  6350. zoom: 1;
  6351. *display: inline;
  6352. vertical-align: middle; }
  6353. .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 {
  6354. width: 35em; }
  6355. .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 {
  6356. border: 0 solid transparent; }
  6357. .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 {
  6358. display: inline; }
  6359. .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 {
  6360. padding: 0; }
  6361. /*
  6362. _ __
  6363. _____(_)___ ___ ____ / /__ ____ ___ _ _______
  6364. / ___/ / __ `__ \/ __ \/ / _ \/ __ \/ _ \ | /| / / ___/
  6365. (__ ) / / / / / / /_/ / / __/ / / / __/ |/ |/ (__ )
  6366. /____/_/_/ /_/ /_/ .___/_/\___/_/ /_/\___/|__/|__/____/
  6367. /_/
  6368. */
  6369. body.node-type-simplenews #content .inner-content {
  6370. text-align: center; }
  6371. body.node-type-simplenews #content article.node.node-simplenews {
  6372. display: moz-inline-stack;
  6373. display: inline-block;
  6374. vertical-align: top;
  6375. zoom: 1;
  6376. *display: inline;
  6377. max-width: 600px;
  6378. padding: 1em 0; }
  6379. body.node-type-simplenews #content article.node.node-simplenews tbody {
  6380. border-top: 0px; }
  6381. body.node-type-simplenews #content article.node.node-simplenews img {
  6382. max-width: 9999px; }
  6383. @media only screen and (max-width: 40em) {
  6384. body.node-type-simplenews #content article.node.node-simplenews {
  6385. max-width: 100%;
  6386. overflow-x: hidden; }
  6387. body.node-type-simplenews #content article.node.node-simplenews table {
  6388. width: 100% !important; }
  6389. body.node-type-simplenews #content article.node.node-simplenews td {
  6390. vertical-align: top; }
  6391. body.node-type-simplenews #content article.node.node-simplenews img {
  6392. max-width: 100%; }
  6393. body.node-type-simplenews #content article.node.node-simplenews p {
  6394. padding: 0 0.5em; } }
  6395. /*
  6396. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6397. | _ | _ | __| __| | | | | |_ _| _ | |_ _|
  6398. | __| | | | __| | --| | | | | | | | | | --| | |
  6399. |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_|
  6400. */
  6401. .page-node-11175 #main #center {
  6402. background: #fff url("../img/bg-contact.gif") no-repeat bottom right; }
  6403. .page-node-11175 #main .field-name-body p {
  6404. display: moz-inline-stack;
  6405. display: inline-block;
  6406. vertical-align: top;
  6407. zoom: 1;
  6408. *display: inline;
  6409. margin: 15px; }
  6410. .page-node-11175 #main .field-name-body p strong {
  6411. font-size: 18px; }
  6412. /*
  6413. _____ _____ _____ _____ _____ _____ _____
  6414. | _ | __ | | | | | | __|
  6415. | __| -|- -| --|- -| | | | | |
  6416. |__| |__|__|_____|_____|_____|_|___|_____|
  6417. */
  6418. @media only screen and (min-width: 40.0625em) {
  6419. 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 {
  6420. display: moz-inline-stack;
  6421. display: inline-block;
  6422. vertical-align: top;
  6423. zoom: 1;
  6424. *display: inline;
  6425. margin: 10px;
  6426. float: none; }
  6427. body.page-node-11187 .node-11187 .field-name-body div.column {
  6428. width: 22.4%; }
  6429. 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 {
  6430. min-height: 170px; }
  6431. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  6432. width: 46%; }
  6433. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  6434. min-height: 110px; }
  6435. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  6436. width: 92%; }
  6437. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  6438. width: auto;
  6439. max-width: 98%; }
  6440. body.page-node-11187 #block-materio-user-user-register {
  6441. width: 600px;
  6442. margin: 0 auto;
  6443. padding: 2em; } }
  6444. @media only screen and (max-width: 40em) {
  6445. body.page-node-11187 #block-system-help {
  6446. text-align: center; } }
  6447. body.page-node-11187 .node-11187 .field-name-body {
  6448. text-align: center; }
  6449. body.page-node-11187 .node-11187 .field-name-body > * {
  6450. text-align: left; }
  6451. 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 {
  6452. position: relative;
  6453. background-color: #fff;
  6454. border-radius: 5px;
  6455. background-clip: padding-box;
  6456. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  6457. overflow: hidden; }
  6458. .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 {
  6459. max-width: 500px;
  6460. margin: auto;
  6461. margin-bottom: 15px;
  6462. border: 1px solid #C6C6C6; }
  6463. 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 > * {
  6464. padding: 0 10px; }
  6465. 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 {
  6466. text-align: left;
  6467. margin: 5px 0 0 15px; }
  6468. 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 {
  6469. padding: 0 0 0 15px;
  6470. font-size: 18px;
  6471. font-style: italic;
  6472. font-weight: bold;
  6473. line-height: 1; }
  6474. 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 {
  6475. margin: 0;
  6476. padding: 0 15px; }
  6477. 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 {
  6478. list-style: none;
  6479. font-size: 12px; }
  6480. 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 {
  6481. content: "+ ";
  6482. font-weight: 900; }
  6483. 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 {
  6484. font-size: 12px;
  6485. margin: 0;
  6486. padding: 0 15px; }
  6487. 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 {
  6488. margin: 0;
  6489. border-radius: 0 0 5px 5px 0 0 0;
  6490. background-clip: padding-box;
  6491. border: 1px solid #fff;
  6492. min-height: 92px; }
  6493. 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 {
  6494. display: block;
  6495. width: 100%;
  6496. padding: 15px 0;
  6497. color: #1A1A1A;
  6498. text-decoration: none; }
  6499. 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 {
  6500. background-color: #C8C8C8; }
  6501. 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 {
  6502. background-color: #69CDCF; }
  6503. 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 {
  6504. background-color: #D476AE; }
  6505. 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 {
  6506. background-color: #E6DE1C; }
  6507. 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 {
  6508. background-color: #4BA13D; }
  6509. 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 {
  6510. min-height: 62px;
  6511. padding: 15px 0; }
  6512. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  6513. padding: 10px 0 0;
  6514. font-size: 24px; }
  6515. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  6516. padding: 0;
  6517. font-size: 24px;
  6518. text-align: center;
  6519. font-style: italic;
  6520. font-weight: 900;
  6521. cursor: pointer;
  6522. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6523. transition: text-shadow 0.3s ease-out; }
  6524. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  6525. font-size: 20px; }
  6526. 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 {
  6527. text-shadow: 0 0 3px white; }
  6528. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  6529. transition: text-shadow 0s ease-out;
  6530. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6531. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  6532. padding: 10px 0 0;
  6533. font-size: 24px;
  6534. top: 0; }
  6535. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  6536. min-height: 2em; }
  6537. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  6538. font-size: 14px;
  6539. min-height: 120px; }
  6540. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  6541. font-size: 14px;
  6542. text-align: left;
  6543. padding: 0 1em;
  6544. background-color: #ddd; }
  6545. /*
  6546. _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6547. | _ | \| | | __| __| | | | | | __| | __ | |
  6548. | | | | | __|__ |- -| | | | | | | __| | | -| | | |
  6549. |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_|
  6550. */
  6551. .node-11186 nav ul.links a.language-link {
  6552. display: none; }
  6553. #webform-client-form-11186 {
  6554. background-color: #e6e6e6;
  6555. border-radius: 10px;
  6556. background-clip: padding-box; }
  6557. @media only screen and (min-width: 40.0625em) {
  6558. #webform-client-form-11186 {
  6559. padding: 10px 30px; }
  6560. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6561. margin: 10px 0; }
  6562. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6563. width: auto; }
  6564. #webform-client-form-11186 fieldset {
  6565. border-radius: 5px;
  6566. background-clip: padding-box;
  6567. border-left: 1px solid #cccccc;
  6568. border-bottom: 1px solid #cccccc;
  6569. padding: 10px;
  6570. border-top-width: 0;
  6571. border-right-width: 0;
  6572. border-bottom-width: 0; }
  6573. #webform-client-form-11186 fieldset fieldset {
  6574. border: 0 solid #ddd;
  6575. padding: 0; }
  6576. #webform-client-form-11186 legend {
  6577. margin: 0;
  6578. font-size: 18px;
  6579. font-weight: 700; }
  6580. #webform-client-form-11186 .form-item {
  6581. margin: 0 20px 0 0; }
  6582. #webform-client-form-11186 label {
  6583. font-size: 12px;
  6584. width: 10em;
  6585. display: moz-inline-stack;
  6586. display: inline-block;
  6587. vertical-align: top;
  6588. zoom: 1;
  6589. *display: inline;
  6590. vertical-align: middle;
  6591. margin-right: 1em;
  6592. border-bottom: 1px solid #cccccc; }
  6593. #webform-client-form-11186 .description {
  6594. font-size: 10px;
  6595. width: 25em;
  6596. display: moz-inline-stack;
  6597. display: inline-block;
  6598. vertical-align: top;
  6599. zoom: 1;
  6600. *display: inline;
  6601. vertical-align: bottom;
  6602. margin-left: 1em;
  6603. color: #7f7f7f; }
  6604. #webform-client-form-11186 input.form-text {
  6605. width: 13em; } }
  6606. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  6607. #webform-client-form-11186 {
  6608. padding: 10px; }
  6609. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6610. margin: 0 0 10px 0; }
  6611. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  6612. width: 100%; }
  6613. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6614. width: 75%; }
  6615. #webform-client-form-11186 legend {
  6616. margin: 0;
  6617. font-size: 16px;
  6618. font-weight: 700; }
  6619. #webform-client-form-11186 .form-item {
  6620. margin: 0;
  6621. float: none; }
  6622. #webform-client-form-11186 label {
  6623. font-size: 12px;
  6624. width: 30%;
  6625. display: moz-inline-stack;
  6626. display: inline-block;
  6627. vertical-align: top;
  6628. zoom: 1;
  6629. *display: inline;
  6630. vertical-align: middle;
  6631. margin-right: 0.5em; }
  6632. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  6633. width: 60%; }
  6634. #webform-client-form-11186 #webform-component-infos {
  6635. font-size: 14px; } }
  6636. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  6637. display: moz-inline-stack;
  6638. display: inline-block;
  6639. vertical-align: top;
  6640. zoom: 1;
  6641. *display: inline; }
  6642. #webform-client-form-11186 #webform-component-column-left {
  6643. display: moz-inline-stack;
  6644. display: inline-block;
  6645. vertical-align: top;
  6646. zoom: 1;
  6647. *display: inline;
  6648. width: 25%;
  6649. border: none; }
  6650. #webform-client-form-11186 #webform-component-column-right {
  6651. display: moz-inline-stack;
  6652. display: inline-block;
  6653. vertical-align: top;
  6654. zoom: 1;
  6655. *display: inline;
  6656. min-width: 70%; }
  6657. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  6658. border: 1px solid #ddd;
  6659. border-radius: 5px;
  6660. background-clip: padding-box;
  6661. padding: 10px 5px;
  6662. margin: 5px 0;
  6663. background-color: #fff; }
  6664. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  6665. display: moz-inline-stack;
  6666. display: inline-block;
  6667. vertical-align: top;
  6668. zoom: 1;
  6669. *display: inline;
  6670. vertical-align: middle;
  6671. margin: 0px 5px; }
  6672. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  6673. font-size: 20px;
  6674. font-weight: 700;
  6675. display: moz-inline-stack;
  6676. display: inline-block;
  6677. vertical-align: top;
  6678. zoom: 1;
  6679. *display: inline;
  6680. vertical-align: middle;
  6681. margin: 0; }
  6682. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  6683. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  6684. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  6685. background-color: #69CDCF; }
  6686. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  6687. background-color: #D476AE; }
  6688. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  6689. background-color: #E6DE1C; }
  6690. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  6691. opacity: 0.4; }
  6692. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  6693. width: 200px;
  6694. font-size: 18px;
  6695. font-weight: 700; }
  6696. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6697. border: 0; }
  6698. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  6699. display: block; }
  6700. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  6701. display: moz-inline-stack;
  6702. display: inline-block;
  6703. vertical-align: top;
  6704. zoom: 1;
  6705. *display: inline; }
  6706. #webform-client-form-11186 #addressfield-wrapper {
  6707. margin-top: 1em; }
  6708. #webform-client-form-11186 .street-block .form-item {
  6709. display: moz-inline-stack;
  6710. display: inline-block;
  6711. vertical-align: top;
  6712. zoom: 1;
  6713. *display: inline; }
  6714. #webform-client-form-11186 #webform-component-column-right--collaborators {
  6715. margin: 20px 0;
  6716. overflow: hidden; }
  6717. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  6718. display: moz-inline-stack;
  6719. display: inline-block;
  6720. vertical-align: top;
  6721. zoom: 1;
  6722. *display: inline;
  6723. width: 33%; }
  6724. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  6725. display: block; }
  6726. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  6727. width: 6em; }
  6728. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  6729. width: 11em; }
  6730. #webform-client-form-11186 #webform-component-infos {
  6731. margin: 20px 0; }
  6732. #webform-client-form-11186 .form-actions {
  6733. padding: 0;
  6734. margin: 0;
  6735. border: 0px;
  6736. background-color: transparent;
  6737. text-align: left; }
  6738. #webform-client-form-11186 .form-actions .form-submit {
  6739. border: 2px solid #69CDCF;
  6740. background-color: #69CDCF;
  6741. color: #fff;
  6742. font-size: 18px;
  6743. padding: 0.2em 1em 0.3em;
  6744. border-radius: 0.3em;
  6745. background-clip: padding-box;
  6746. font-weight: bold;
  6747. margin-bottom: 9px;
  6748. cursor: pointer;
  6749. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6750. transition: text-shadow 0.2s ease-out; }
  6751. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  6752. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6753. #webform-client-form-11186 .form-actions .form-submit:active {
  6754. transition: text-shadow 0s ease-out;
  6755. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6756. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  6757. margin: 0;
  6758. font-size: 18px;
  6759. font-weight: 700;
  6760. border: none;
  6761. line-height: 40px; }
  6762. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  6763. display: moz-inline-stack;
  6764. display: inline-block;
  6765. vertical-align: top;
  6766. zoom: 1;
  6767. *display: inline; }
  6768. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  6769. width: auto; }
  6770. #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 {
  6771. margin: 0; }
  6772. #webform-client-form-11186 #edit-submitted-terms-of-services {
  6773. margin-bottom: 0.5em; }
  6774. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6775. margin: 0 0.3em 0 0; }
  6776. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6777. width: auto; }
  6778. /*
  6779. _____ _____ _____ _____ _____ _____ _____ _____ _____ _ _ _ _____ _____ _____ _____
  6780. | | | | | | _ | __ |_ _| | | | | __| | | | | __| | __ | |
  6781. | | | --| | --| | -| | | | | |- -| __| | | | | __| | | -| | | |
  6782. |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_|
  6783. */
  6784. #uc-cart-view-form {
  6785. background-color: #e6e6e6;
  6786. padding: 10px, 30px;
  6787. display: inline-block; }
  6788. #uc-cart-view-form table {
  6789. width: auto;
  6790. display: table;
  6791. background-color: #fff; }
  6792. #uc-cart-view-form table thead th {
  6793. border-bottom: none;
  6794. padding: 1em; }
  6795. #uc-cart-view-form table tbody {
  6796. border-top: none; }
  6797. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  6798. background-color: #fff;
  6799. border-bottom: none; }
  6800. #uc-cart-view-form table tbody td {
  6801. padding: 1em; }
  6802. #uc-cart-view-form fieldset {
  6803. border: none !important; }
  6804. #uc-cart-view-form .form-type-uc-quantity input {
  6805. width: 2em; }
  6806. #uc-cart-view-form .form-actions {
  6807. padding: 0;
  6808. margin: 0;
  6809. border: 0px;
  6810. background-color: transparent;
  6811. text-align: right;
  6812. display: block;
  6813. width: 100%; }
  6814. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  6815. display: block; }
  6816. #uc-cart-view-form .form-actions .form-submit {
  6817. font-size: 16px;
  6818. font-weight: bold;
  6819. padding: 0.1em 0.3em 0.2em;
  6820. border-radius: 0.3em;
  6821. background-clip: padding-box;
  6822. border: 2px solid #ccc;
  6823. background-color: #ccc;
  6824. color: #4D4D4D;
  6825. cursor: pointer;
  6826. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6827. transition: text-shadow 0.3s ease-out;
  6828. text-align: center;
  6829. text-decoration: none;
  6830. margin-left: 1em; }
  6831. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  6832. text-shadow: 0 0 3px white; }
  6833. #uc-cart-view-form .form-actions .form-submit:active {
  6834. transition: text-shadow 0s ease-out;
  6835. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6836. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  6837. font-size: 16px;
  6838. font-weight: bold;
  6839. padding: 0.1em 0.3em 0.2em;
  6840. border-radius: 0.3em;
  6841. background-clip: padding-box;
  6842. border: 2px solid #ccc;
  6843. background-color: #ccc;
  6844. color: #4D4D4D;
  6845. cursor: pointer;
  6846. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6847. transition: text-shadow 0.3s ease-out;
  6848. text-align: center;
  6849. text-decoration: none;
  6850. cursor: pointer;
  6851. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6852. transition: text-shadow 0.2s ease-out;
  6853. border-color: #69CDCF;
  6854. background-color: #69CDCF;
  6855. color: #fff; }
  6856. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6857. text-shadow: 0 0 3px white; }
  6858. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6859. transition: text-shadow 0s ease-out;
  6860. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6861. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6862. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6863. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6864. transition: text-shadow 0s ease-out;
  6865. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6866. /*
  6867. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6868. | | | | | | | | __| | | | | | |_ _| | __| | __ | |
  6869. | | | --| | --| | __| --| -| | | | | | | | __| | | -| | | |
  6870. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_|
  6871. */
  6872. #uc-cart-checkout-form {
  6873. background-color: #e6e6e6;
  6874. padding: 10px, 30px; }
  6875. #uc-cart-checkout-form fieldset {
  6876. border: none !important; }
  6877. #uc-cart-checkout-form fieldset.form-row {
  6878. padding-bottom: 20px;
  6879. margin-bottom: 20px; }
  6880. #uc-cart-checkout-form fieldset.form-column {
  6881. display: moz-inline-stack;
  6882. display: inline-block;
  6883. vertical-align: top;
  6884. zoom: 1;
  6885. *display: inline;
  6886. max-width: 39%;
  6887. clear: both;
  6888. float: none;
  6889. margin: 15px 1em; }
  6890. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  6891. margin: 10px 0; }
  6892. #uc-cart-checkout-form fieldset.form-column-right {
  6893. border-left: 1px solid #ccc;
  6894. margin-left: 2em;
  6895. padding-left: 2em; }
  6896. #uc-cart-checkout-form legend {
  6897. margin: 0;
  6898. font-size: 18px;
  6899. font-weight: 700;
  6900. border: none;
  6901. line-height: 2; }
  6902. #uc-cart-checkout-form .fieldset-description {
  6903. font-size: 12px; }
  6904. #uc-cart-checkout-form .fieldset-wrapper {
  6905. font-size: 12px; }
  6906. #uc-cart-checkout-form .form-item {
  6907. margin: 0 20px 0 0; }
  6908. #uc-cart-checkout-form .description {
  6909. font-size: 10px;
  6910. width: 25em;
  6911. display: moz-inline-stack;
  6912. display: inline-block;
  6913. vertical-align: top;
  6914. zoom: 1;
  6915. *display: inline;
  6916. vertical-align: bottom;
  6917. margin-left: 1em;
  6918. color: #7f7f7f; }
  6919. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  6920. display: moz-inline-stack;
  6921. display: inline-block;
  6922. vertical-align: top;
  6923. zoom: 1;
  6924. *display: inline;
  6925. border-radius: 5px;
  6926. background-clip: padding-box;
  6927. padding: 10px;
  6928. background-color: #fff; }
  6929. #uc-cart-checkout-form #cart-pane table {
  6930. font-size: 14px;
  6931. min-width: 20em; }
  6932. #uc-cart-checkout-form #cart-pane table td.price {
  6933. width: 4em; }
  6934. #uc-cart-checkout-form #cart-pane tbody {
  6935. border: none; }
  6936. #uc-cart-checkout-form #cart-pane tr {
  6937. background-color: transparent;
  6938. border: none; }
  6939. #uc-cart-checkout-form #cart-pane td {
  6940. padding: 0 5px;
  6941. vertical-align: bottom; }
  6942. #uc-cart-checkout-form #cart-pane td.products {
  6943. width: auto; }
  6944. #uc-cart-checkout-form #cart-pane td.products a {
  6945. color: inherit;
  6946. font-weight: 700; }
  6947. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  6948. margin: 0;
  6949. font-size: 12px; }
  6950. #uc-cart-checkout-form #cart-pane td.products li {
  6951. list-style: none; }
  6952. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  6953. font-size: 16px;
  6954. font-weight: 700; }
  6955. #uc-cart-checkout-form #customer-pane {
  6956. width: 35em; }
  6957. #uc-cart-checkout-form #billing-pane label {
  6958. font-size: 12px;
  6959. width: 8em;
  6960. display: moz-inline-stack;
  6961. display: inline-block;
  6962. vertical-align: top;
  6963. zoom: 1;
  6964. *display: inline;
  6965. vertical-align: middle;
  6966. margin-right: 1em;
  6967. border-bottom: 1px solid #cccccc; }
  6968. #uc-cart-checkout-form #billing-pane input.form-text {
  6969. width: 13em; }
  6970. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  6971. background-color: #fff;
  6972. border-radius: 5px;
  6973. background-clip: padding-box;
  6974. padding: 10px; }
  6975. #uc-cart-checkout-form #payment-pane #line-items-div {
  6976. float: none;
  6977. border: none;
  6978. display: moz-inline-stack;
  6979. display: inline-block;
  6980. vertical-align: top;
  6981. zoom: 1;
  6982. *display: inline;
  6983. margin: 10px 0 20px; }
  6984. #uc-cart-checkout-form #payment-pane #line-items-div table {
  6985. font-size: 14px;
  6986. min-width: 20em; }
  6987. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  6988. width: 4em; }
  6989. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  6990. border: none; }
  6991. #uc-cart-checkout-form #payment-pane #line-items-div td {
  6992. padding: 0 5px; }
  6993. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  6994. font-weight: 500; }
  6995. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  6996. font-size: 16px;
  6997. font-weight: 700;
  6998. text-align: right; }
  6999. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  7000. width: auto;
  7001. border-bottom: none; }
  7002. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  7003. border: 1px solid #ddd;
  7004. border-radius: 5px;
  7005. margin: 0.5em;
  7006. padding: 0.5em; }
  7007. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  7008. font-weight: bold; }
  7009. #uc-cart-checkout-form #payment-pane #payment-details {
  7010. width: 25em;
  7011. border-top: none;
  7012. padding: 0;
  7013. margin: 0; }
  7014. #uc-cart-checkout-form #edit-actions {
  7015. width: 100%;
  7016. padding: 1em 0;
  7017. margin: 0;
  7018. border: 0px;
  7019. background-color: transparent;
  7020. text-align: center; }
  7021. #uc-cart-checkout-form #edit-actions .form-submit {
  7022. font-size: 16px;
  7023. font-weight: bold;
  7024. padding: 0.1em 0.3em 0.2em;
  7025. border-radius: 0.3em;
  7026. background-clip: padding-box;
  7027. border: 2px solid #ccc;
  7028. background-color: #ccc;
  7029. color: #4D4D4D;
  7030. cursor: pointer;
  7031. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7032. transition: text-shadow 0.3s ease-out;
  7033. text-align: center;
  7034. text-decoration: none;
  7035. margin-left: 1em; }
  7036. #uc-cart-checkout-form #edit-actions .form-submit:hover, #uc-cart-checkout-form #edit-actions .form-submit:focus {
  7037. text-shadow: 0 0 3px white; }
  7038. #uc-cart-checkout-form #edit-actions .form-submit:active {
  7039. transition: text-shadow 0s ease-out;
  7040. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7041. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue {
  7042. font-size: 16px;
  7043. font-weight: bold;
  7044. padding: 0.1em 0.3em 0.2em;
  7045. border-radius: 0.3em;
  7046. background-clip: padding-box;
  7047. border: 2px solid #ccc;
  7048. background-color: #ccc;
  7049. color: #4D4D4D;
  7050. cursor: pointer;
  7051. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7052. transition: text-shadow 0.3s ease-out;
  7053. text-align: center;
  7054. text-decoration: none;
  7055. cursor: pointer;
  7056. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7057. transition: text-shadow 0.2s ease-out;
  7058. border-color: #69CDCF;
  7059. background-color: #69CDCF;
  7060. color: #fff; }
  7061. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  7062. text-shadow: 0 0 3px white; }
  7063. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  7064. transition: text-shadow 0s ease-out;
  7065. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7066. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  7067. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7068. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  7069. transition: text-shadow 0s ease-out;
  7070. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7071. /*
  7072. _____ _____ _____ _____ _____ _____
  7073. | | | | | | _ | __ |_ _|
  7074. | | | --| | --| | -| | |
  7075. |_____|_____| |_____|__|__|__|__| |_|
  7076. &&
  7077. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ ____ _____ _____ _____ _____ _____
  7078. | | | | | | | | __| | | | | | |_ _| | | | _ | | | | \| _ |_ _| | | | |
  7079. | | | --| | --| | __| --| -| | | | | | | | | | | |__|- -| | | | | | |- -| | | | | |
  7080. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___|
  7081. */
  7082. .page-cart-checkout-review #content > .inner-content {
  7083. display: inline-block;
  7084. padding: 1em; }
  7085. .page-cart-checkout-review #edit-actions {
  7086. margin: 0;
  7087. padding: 0; }
  7088. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  7089. display: block; }
  7090. .page-cart-checkout-review #review-instructions {
  7091. width: 30em;
  7092. padding: 1em 0; }
  7093. .page-cart-checkout-review table.order-review-table {
  7094. border: none; }
  7095. .page-cart-checkout-review table.order-review-table .pane-title-row {
  7096. border: none;
  7097. background-color: transparent;
  7098. text-align: left;
  7099. font-size: 18px; }
  7100. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  7101. padding: 1em 0 0 0; }
  7102. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  7103. background-color: transparent;
  7104. border: none; }
  7105. .page-cart-checkout-review table.order-review-table td.title-col {
  7106. padding: 0;
  7107. text-align: left; }
  7108. .page-cart-checkout-review table.order-review-table td.data-col {
  7109. padding: 0;
  7110. width: 75%; }
  7111. .page-cart-checkout-review table.order-review-table .review-button-row {
  7112. border: none;
  7113. background-color: transparent; }
  7114. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  7115. padding: 3em 0 0 0; }
  7116. .page-cart-checkout-review table.order-review-table .review-button-row form {
  7117. margin: 0 0.5em 0 0;
  7118. display: moz-inline-stack;
  7119. display: inline-block;
  7120. vertical-align: top;
  7121. zoom: 1;
  7122. *display: inline; }
  7123. .page-cart-checkout-review #edit-actions {
  7124. border: 0px;
  7125. background-color: transparent;
  7126. text-align: right; }
  7127. .page-cart-checkout-review input.form-submit {
  7128. font-size: 16px;
  7129. font-weight: bold;
  7130. padding: 0.1em 0.3em 0.2em;
  7131. border-radius: 0.3em;
  7132. background-clip: padding-box;
  7133. border: 2px solid #ccc;
  7134. background-color: #ccc;
  7135. color: #4D4D4D;
  7136. cursor: pointer;
  7137. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7138. transition: text-shadow 0.3s ease-out;
  7139. text-align: center;
  7140. text-decoration: none;
  7141. margin-left: 1em; }
  7142. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  7143. text-shadow: 0 0 3px white; }
  7144. .page-cart-checkout-review input.form-submit:active {
  7145. transition: text-shadow 0s ease-out;
  7146. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7147. .page-cart-checkout-review input.form-submit#edit-submit {
  7148. font-size: 16px;
  7149. font-weight: bold;
  7150. padding: 0.1em 0.3em 0.2em;
  7151. border-radius: 0.3em;
  7152. background-clip: padding-box;
  7153. border: 2px solid #ccc;
  7154. background-color: #ccc;
  7155. color: #4D4D4D;
  7156. cursor: pointer;
  7157. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7158. transition: text-shadow 0.3s ease-out;
  7159. text-align: center;
  7160. text-decoration: none;
  7161. cursor: pointer;
  7162. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7163. transition: text-shadow 0.2s ease-out;
  7164. border-color: #69CDCF;
  7165. background-color: #69CDCF;
  7166. color: #fff; }
  7167. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7168. text-shadow: 0 0 3px white; }
  7169. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7170. transition: text-shadow 0s ease-out;
  7171. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7172. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7173. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7174. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7175. transition: text-shadow 0s ease-out;
  7176. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7177. /*
  7178. ____ _____ ____ _____ _____ _____ _____ _____ _____ _____
  7179. | \| | \| _ | |_ _| | | | | __|
  7180. | | |- -| | | | --| | | |- -| | | | | __|
  7181. |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____|
  7182. |__|
  7183. */
  7184. #didactique-page .node-didactique {
  7185. border-radius: 5px;
  7186. background-clip: padding-box;
  7187. background-color: #FFF;
  7188. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7189. max-width: 850px;
  7190. font-size: 14px;
  7191. background-color: #fff;
  7192. margin: 1em auto;
  7193. padding: 1em; }
  7194. #didactique-page .node-didactique .field-name-field-emvideo {
  7195. margin: 1em 0; }
  7196. #didactique-page .node-didactique .field-name-title-field {
  7197. font-size: 24px;
  7198. font-weight: 900;
  7199. font-style: italic;
  7200. padding: 5px 0; }
  7201. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  7202. max-width: 100%; }
  7203. @media only screen and (min-width: 40.0625em) {
  7204. #didactique-page .side {
  7205. display: moz-inline-stack;
  7206. display: inline-block;
  7207. vertical-align: top;
  7208. zoom: 1;
  7209. *display: inline;
  7210. vertical-align: top; }
  7211. #didactique-page .group-sideleft {
  7212. width: 60%; }
  7213. #didactique-page .group-sideright {
  7214. width: 39%; } }
  7215. /*
  7216. _ _ _ _____ _____ _ _ _ _____ _____ _____ _____
  7217. | | | | | | | | | | | __| | _ | __ | __|
  7218. | | | | | | | | | | | __| | | -| __|
  7219. |_____|__|__|_____| |_____|_____| |__|__|__|__|_____|
  7220. */
  7221. @media only screen and (max-width: 40em) {
  7222. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  7223. display: none; } }
  7224. /*
  7225. _ _
  7226. _____ ___|_|___| |_ ___ ___ ___ ___ ___ ___
  7227. | | .'| | | _| -_| | .'| | _| -_|
  7228. |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___|
  7229. */
  7230. .maintenance-page #container, .maintenance-page #header {
  7231. text-align: center;
  7232. padding: 0;
  7233. position: relative; }
  7234. .maintenance-page #main {
  7235. background-color: transparent; }
  7236. .maintenance-page #header h1.site-name {
  7237. font-size: 36px;
  7238. margin: 0;
  7239. padding-left: 0; }
  7240. .maintenance-page h2.site-slogan {
  7241. font-size: 16px;
  7242. font-weight: 300;
  7243. margin: 0;
  7244. line-height: 1.1; }
  7245. /*
  7246. _____ _____ _____
  7247. | __| _ | |
  7248. | __| | | |
  7249. |__| |__|__|__ _|
  7250. |__|
  7251. */
  7252. .page-faq-page #main {
  7253. background: #fff url("../img/bg-faq.png") no-repeat bottom right; }
  7254. #content .faq-content .faq-description {
  7255. font-size: 12px;
  7256. padding-bottom: 2em; }
  7257. #content .faq-content ul.faq-ul-questions-top {
  7258. margin: 0; }
  7259. #content .faq-content ul.faq-ul-questions-top li {
  7260. list-style: none; }
  7261. #content .faq-content ul.faq-ul-questions-top li a {
  7262. font-size: 18px;
  7263. font-weight: 500; }
  7264. #content .faq-content h3.faq-header {
  7265. font-size: 20px;
  7266. font-weight: 700;
  7267. line-height: 1.2;
  7268. margin: 0; }
  7269. #content .faq-content h3.faq-header a {
  7270. color: #000; }
  7271. #content .faq-content .faq-dl-hide-answer {
  7272. padding: 0; }
  7273. #content .faq-content .faq-category-group {
  7274. padding-bottom: 1em; }
  7275. #content .faq-content .faq-question-answer {
  7276. padding: 0.3em 0 0 0.8em; }
  7277. #content .faq-content .faq-question-answer .faq-question {
  7278. font-size: 16px;
  7279. padding: 0;
  7280. font-weight: 500; }
  7281. #content .faq-content .faq-question-answer .faq-question a {
  7282. color: #000; }
  7283. #content .faq-content .faq-question-answer .faq-answer {
  7284. padding: 0;
  7285. margin-bottom: 2em;
  7286. font-size: 12px; }
  7287. #content .faq-content .field-name-body img {
  7288. max-width: 50%;
  7289. height: auto; }
  7290. /*
  7291. __ __ _ _____
  7292. / / / /___ ____ ___ ___ | | / /__ / /_/ / __ \/ __ `__ \/ _ \ | | / /__/ /
  7293. / __ / /_/ / / / / / / __/ | |/ // __/
  7294. /_/ /_/\____/_/ /_/ /_/\___/ |___//____/
  7295. */
  7296. body.home-v2 #center {
  7297. background-color: transparent;
  7298. padding: 0; }
  7299. #home-v2 h2 {
  7300. font-size: 2.1em;
  7301. font-weight: 300; }
  7302. #home-v2 a {
  7303. color: #000; }
  7304. #home-v2 .field-name-field-liens {
  7305. margin-top: 1em; }
  7306. #home-v2 .field-name-field-liens .field-item {
  7307. display: moz-inline-stack;
  7308. display: inline-block;
  7309. vertical-align: top;
  7310. zoom: 1;
  7311. *display: inline;
  7312. margin: 0 0.5em 0.5em 0; }
  7313. #home-v2 .field-name-field-liens a {
  7314. font-weight: 700;
  7315. display: moz-inline-stack;
  7316. display: inline-block;
  7317. vertical-align: top;
  7318. zoom: 1;
  7319. *display: inline;
  7320. padding: 0.5em 1em 0.7em;
  7321. border-radius: 5px;
  7322. background-clip: padding-box;
  7323. background-color: rgba(255, 255, 255, 0.8); }
  7324. body.logged-in #home-v2 .field-name-field-liens a.visitor {
  7325. display: none; }
  7326. body.not-logged-in #home-v2 .field-name-field-liens a.member {
  7327. display: none; }
  7328. #home-v2 .panel-separator {
  7329. clear: both; }
  7330. #home-v2 > .panel-panel > div > .panel-pane {
  7331. overflow: hidden; }
  7332. #home-v2 > .panel-panel > div > .panel-pane.pane-node {
  7333. border-radius: 5px;
  7334. background-clip: padding-box;
  7335. overflow: hidden; }
  7336. #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node {
  7337. position: relative;
  7338. width: 100%;
  7339. height: 100%;
  7340. overflow: hidden; }
  7341. #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a {
  7342. background-color: rgba(255, 255, 255, 0.7);
  7343. border-radius: 5px;
  7344. background-clip: padding-box;
  7345. padding: 15px; }
  7346. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7347. height: auto;
  7348. background-color: #f7f4ed;
  7349. margin-top: 2em;
  7350. margin-bottom: 2em;
  7351. padding-top: 0; }
  7352. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7353. margin: 0 auto; }
  7354. @media only screen and (max-width: 40em) {
  7355. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7356. width: 320px;
  7357. height: 180px; } }
  7358. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  7359. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7360. width: 640px;
  7361. height: 360px; } }
  7362. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  7363. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7364. width: 800px;
  7365. height: 450px; } }
  7366. @media only screen and (min-width: 90.0625em) {
  7367. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7368. width: 1024px;
  7369. height: 576px; } }
  7370. #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 {
  7371. width: 100%;
  7372. height: 100%; }
  7373. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field {
  7374. display: none; }
  7375. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body {
  7376. margin-top: 1em;
  7377. text-align: center; }
  7378. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7379. text-align: left;
  7380. display: moz-inline-stack;
  7381. display: inline-block;
  7382. vertical-align: top;
  7383. zoom: 1;
  7384. *display: inline;
  7385. width: 35%;
  7386. margin-left: 2%;
  7387. font-size: 0.756em; }
  7388. @media only screen and (max-width: 40em) {
  7389. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7390. width: 100%;
  7391. text-align: center; } }
  7392. @media only screen and (max-width: 40em) {
  7393. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7394. margin-top: 0.5em; } }
  7395. #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 {
  7396. margin: 2em 0; }
  7397. #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 {
  7398. margin: 0px;
  7399. text-align: center; }
  7400. #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 {
  7401. margin: 0 1em 0 0;
  7402. padding: 0px;
  7403. list-style: none;
  7404. height: 2.5em;
  7405. display: moz-inline-stack;
  7406. display: inline-block;
  7407. vertical-align: top;
  7408. zoom: 1;
  7409. *display: inline; }
  7410. #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 {
  7411. background-color: #4d4d4d;
  7412. border-radius: 5px;
  7413. background-clip: padding-box;
  7414. padding: 5px 12px 7px;
  7415. color: #f7f4ed;
  7416. font-size: 18px;
  7417. font-weight: 500;
  7418. transition: opacity,background-color 0.2s ease-out; }
  7419. #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"] {
  7420. background-color: #e6de1c;
  7421. cursor: pointer;
  7422. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7423. transition: text-shadow 0.2s ease-out; }
  7424. #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 {
  7425. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7426. #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 {
  7427. transition: text-shadow 0s ease-out;
  7428. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7429. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7430. padding: 2em 0;
  7431. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  7432. text-align: center; }
  7433. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content {
  7434. display: moz-inline-stack;
  7435. display: inline-block;
  7436. vertical-align: top;
  7437. zoom: 1;
  7438. *display: inline;
  7439. text-align: left; }
  7440. #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 {
  7441. font-weight: 900;
  7442. font-style: italic;
  7443. padding: 5px 0;
  7444. margin: 0;
  7445. line-height: 1;
  7446. display: moz-inline-stack;
  7447. display: inline-block;
  7448. vertical-align: top;
  7449. zoom: 1;
  7450. *display: inline;
  7451. vertical-align: middle; }
  7452. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 {
  7453. font-size: 24px; }
  7454. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 {
  7455. font-size: 16px; }
  7456. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form {
  7457. margin: 0 1em;
  7458. padding: 0px;
  7459. display: moz-inline-stack;
  7460. display: inline-block;
  7461. vertical-align: top;
  7462. zoom: 1;
  7463. *display: inline;
  7464. vertical-align: middle; }
  7465. #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 {
  7466. margin: 0;
  7467. position: relative;
  7468. display: moz-inline-stack;
  7469. display: inline-block;
  7470. vertical-align: top;
  7471. zoom: 1;
  7472. *display: inline;
  7473. vertical-align: middle; }
  7474. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-account {
  7475. margin-right: 5px; }
  7476. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7477. font-size: 12px;
  7478. border-radius: 5px;
  7479. background-clip: padding-box;
  7480. margin-bottom: 4px; }
  7481. .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7482. margin-right: 5px; }
  7483. #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 {
  7484. width: 11em; }
  7485. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text {
  7486. width: 7em; }
  7487. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check {
  7488. position: absolute;
  7489. bottom: 100%;
  7490. z-index: 9999;
  7491. background-image: none;
  7492. height: auto;
  7493. padding: 5px;
  7494. border-radius: 5px;
  7495. background-clip: padding-box;
  7496. margin-bottom: 10px;
  7497. font-size: 10px;
  7498. background-color: #fff;
  7499. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  7500. transition: bottom 0.1s ease-out; }
  7501. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error {
  7502. background-color: #f3968d;
  7503. color: #fff; }
  7504. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok {
  7505. display: none; }
  7506. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit {
  7507. font-size: 16px;
  7508. padding: 0.1em 0.6em 0.2em;
  7509. border-radius: 0.3em;
  7510. background-clip: padding-box;
  7511. font-weight: bold;
  7512. margin-bottom: 4px; }
  7513. #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 {
  7514. margin-bottom: 0;
  7515. display: block;
  7516. line-height: 1; }
  7517. #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 > * {
  7518. display: moz-inline-stack;
  7519. display: inline-block;
  7520. vertical-align: top;
  7521. zoom: 1;
  7522. *display: inline;
  7523. vertical-align: middle;
  7524. margin: 0; }
  7525. #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 {
  7526. font-size: 10px;
  7527. background-color: #fff;
  7528. border-radius: 3px;
  7529. background-clip: padding-box; }
  7530. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit {
  7531. border: 2px solid #69CDCF;
  7532. background-color: #69CDCF;
  7533. color: #fff;
  7534. cursor: pointer;
  7535. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7536. transition: text-shadow 0.2s ease-out; }
  7537. #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 {
  7538. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7539. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:active {
  7540. transition: text-shadow 0s ease-out;
  7541. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7542. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] {
  7543. background-color: #ddd;
  7544. border: 2px solid #ddd; }
  7545. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit {
  7546. border: 2px solid #E6DE1C;
  7547. background-color: #E6DE1C;
  7548. color: #fff;
  7549. cursor: pointer;
  7550. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7551. transition: text-shadow 0.2s ease-out; }
  7552. #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 {
  7553. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7554. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:active {
  7555. transition: text-shadow 0s ease-out;
  7556. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7557. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews {
  7558. display: none; }
  7559. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join {
  7560. display: moz-inline-stack;
  7561. display: inline-block;
  7562. vertical-align: top;
  7563. zoom: 1;
  7564. *display: inline;
  7565. vertical-align: middle;
  7566. margin: 0 1em;
  7567. font-size: 16px;
  7568. padding: 0.1em 0.3em 0.2em;
  7569. border-radius: 0.3em;
  7570. background-clip: padding-box;
  7571. font-weight: bold;
  7572. border: 2px solid #69CDCF;
  7573. background-color: #69CDCF;
  7574. color: #fff;
  7575. cursor: pointer;
  7576. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7577. transition: text-shadow 0.2s ease-out;
  7578. text-align: center;
  7579. text-decoration: none; }
  7580. #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 {
  7581. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7582. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:active {
  7583. transition: text-shadow 0s ease-out;
  7584. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7585. @media only screen and (max-width: 40em) {
  7586. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7587. background-position: 160% 50%;
  7588. min-height: 60px;
  7589. padding: 15px 0; }
  7590. #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 {
  7591. width: 7em; } }
  7592. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error {
  7593. color: #b94a48;
  7594. font-size: 12px; }
  7595. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7596. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7597. transition: box-shadow 0.3s ease-out;
  7598. height: 450px;
  7599. margin-top: 15px;
  7600. background-color: #fff;
  7601. position: relative; }
  7602. #home-v2 > .panel-panel > div > .panel-pane.showroom:hover {
  7603. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7604. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content {
  7605. width: 100%;
  7606. height: 100%;
  7607. position: relative; }
  7608. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node {
  7609. position: absolute;
  7610. height: 100%;
  7611. width: 100%; }
  7612. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7613. position: absolute;
  7614. width: 100%;
  7615. height: 100%;
  7616. overflow: hidden; }
  7617. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img {
  7618. width: 100%;
  7619. margin-top: -10%; }
  7620. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7621. position: relative;
  7622. z-index: 2;
  7623. width: 30%;
  7624. margin: 3em 2em; }
  7625. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content {
  7626. background-color: rgba(255, 255, 255, 0.8);
  7627. padding: 1em;
  7628. border-radius: 5px;
  7629. background-clip: padding-box; }
  7630. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field {
  7631. font-size: 2.1em;
  7632. font-weight: 300; }
  7633. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body {
  7634. margin-top: 0.5em; }
  7635. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7636. content: url("../img/bulle.png");
  7637. transform: scale(0.8);
  7638. position: absolute;
  7639. bottom: -120px;
  7640. right: -20px;
  7641. z-index: 10; }
  7642. @media only screen and (max-width: 40em) {
  7643. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7644. margin-top: 10px; }
  7645. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7646. position: absolute;
  7647. width: 400%;
  7648. height: 100%;
  7649. overflow: hidden; }
  7650. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7651. width: auto;
  7652. padding: 2%;
  7653. margin: 2%; }
  7654. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body {
  7655. font-size: 0.756em;
  7656. margin-top: 0.5em; }
  7657. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7658. opacity: 0.4; } }
  7659. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7660. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7661. transition: box-shadow 0.3s ease-out;
  7662. height: 450px;
  7663. margin-top: 30px;
  7664. background-color: #FFF;
  7665. position: relative; }
  7666. #home-v2 > .panel-panel > div > .panel-pane.bdd:hover {
  7667. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7668. #home-v2 > .panel-panel > div > .panel-pane.bdd .links a {
  7669. background-color: #e6e6e6; }
  7670. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7671. display: moz-inline-stack;
  7672. display: inline-block;
  7673. vertical-align: top;
  7674. zoom: 1;
  7675. *display: inline;
  7676. width: 60%;
  7677. height: 100%;
  7678. overflow: hidden; }
  7679. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img {
  7680. max-width: 2000px; }
  7681. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7682. display: moz-inline-stack;
  7683. display: inline-block;
  7684. vertical-align: top;
  7685. zoom: 1;
  7686. *display: inline;
  7687. width: 35%;
  7688. padding: 1em;
  7689. border-radius: 5px;
  7690. background-clip: padding-box; }
  7691. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field {
  7692. font-size: 2.1em;
  7693. font-weight: 300; }
  7694. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body {
  7695. margin-top: 1em; }
  7696. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a {
  7697. background-color: rgba(230, 230, 230, 0.8); }
  7698. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7699. content: url("../img/boule.png");
  7700. transform: scale(0.8);
  7701. position: absolute;
  7702. bottom: -50px;
  7703. left: -50px; }
  7704. @media only screen and (max-width: 40em) {
  7705. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7706. height: auto; }
  7707. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7708. width: 100%;
  7709. display: block;
  7710. height: 310px;
  7711. overflow: hidden; }
  7712. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7713. display: block;
  7714. width: 100%;
  7715. z-index: 1;
  7716. padding: 0; }
  7717. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper > * {
  7718. padding: 1em; }
  7719. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7720. opacity: 0.6;
  7721. z-index: 0; } }
  7722. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7723. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7724. transition: box-shadow 0.3s ease-out;
  7725. position: relative;
  7726. height: 300px;
  7727. margin-top: 30px;
  7728. background-color: #000;
  7729. color: #FFF; }
  7730. #home-v2 > .panel-panel > div > .panel-pane.formations:hover {
  7731. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7732. #home-v2 > .panel-panel > div > .panel-pane.formations a {
  7733. color: #FFF; }
  7734. #home-v2 > .panel-panel > div > .panel-pane.formations .node {
  7735. padding: 0 0 0 30%;
  7736. width: 70%; }
  7737. #home-v2 > .panel-panel > div > .panel-pane.formations .node:before {
  7738. content: " ";
  7739. background: transparent url("../img/formations.png") no-repeat center center;
  7740. background-clip: padding-box;
  7741. background-size: contain;
  7742. position: absolute;
  7743. left: 0;
  7744. z-index: 2;
  7745. width: 30%;
  7746. height: 100%; }
  7747. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper {
  7748. padding: 1em;
  7749. position: relative; }
  7750. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field {
  7751. font-size: 2.1em;
  7752. font-weight: 300; }
  7753. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body {
  7754. margin-top: 1em; }
  7755. @media only screen and (max-width: 40em) {
  7756. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7757. height: auto; } }
  7758. #home-v2 > .panel-panel > div > .panel-pane.services {
  7759. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7760. transition: box-shadow 0.3s ease-out;
  7761. background-color: #FFF;
  7762. height: 300px;
  7763. margin-top: 30px; }
  7764. #home-v2 > .panel-panel > div > .panel-pane.services:hover {
  7765. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7766. #home-v2 > .panel-panel > div > .panel-pane.services .node {
  7767. padding: 0 30% 0 0;
  7768. width: 70%; }
  7769. #home-v2 > .panel-panel > div > .panel-pane.services .node:before {
  7770. content: " ";
  7771. background: transparent url("../img/services.png") no-repeat center center;
  7772. background-clip: padding-box;
  7773. background-size: contain;
  7774. position: absolute;
  7775. right: 0;
  7776. z-index: 2;
  7777. width: 30%;
  7778. height: 100%; }
  7779. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper {
  7780. padding: 1em;
  7781. position: relative; }
  7782. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field {
  7783. font-size: 2.1em;
  7784. font-weight: 300; }
  7785. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body {
  7786. margin-top: 1em; }
  7787. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-field-liens a {
  7788. background-color: rgba(230, 230, 230, 0.8); }
  7789. @media only screen and (max-width: 40em) {
  7790. #home-v2 > .panel-panel > div > .panel-pane.services {
  7791. height: auto; } }
  7792. #home-v2 > .panel-panel > div > .panel-pane.publication {
  7793. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7794. transition: box-shadow 0.3s ease-out;
  7795. position: relative;
  7796. margin-top: 30px;
  7797. padding: 1em;
  7798. background-color: #000;
  7799. border-radius: 10px;
  7800. background-clip: padding-box; }
  7801. #home-v2 > .panel-panel > div > .panel-pane.publication:hover {
  7802. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7803. #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 {
  7804. color: #fff; }
  7805. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7806. display: moz-inline-stack;
  7807. display: inline-block;
  7808. vertical-align: top;
  7809. zoom: 1;
  7810. *display: inline;
  7811. width: 30%; }
  7812. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 {
  7813. display: none; }
  7814. @media only screen and (max-width: 40em) {
  7815. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7816. display: block;
  7817. width: 90%;
  7818. margin-bottom: 1em; } }
  7819. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7820. background-color: #e6e6e6;
  7821. border-radius: 10px;
  7822. background-clip: padding-box;
  7823. margin-top: 30px;
  7824. padding-top: 1em;
  7825. padding-bottom: 1em;
  7826. position: relative; }
  7827. #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 {
  7828. font-size: 30px; }
  7829. @media only screen and (min-width: 40.0625em) {
  7830. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper {
  7831. margin: 0 auto;
  7832. max-width: 80rem;
  7833. width: 100%; }
  7834. #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 {
  7835. content: " ";
  7836. display: table; }
  7837. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after {
  7838. clear: both; }
  7839. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7840. overflow: hidden;
  7841. padding-left: 0.9375rem;
  7842. padding-right: 0.9375rem;
  7843. width: 33.33333%;
  7844. float: left;
  7845. padding: 0em;
  7846. margin-left: 1em; }
  7847. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first {
  7848. width: auto; }
  7849. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) {
  7850. width: 31%; }
  7851. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7852. margin: 0; }
  7853. #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 {
  7854. margin: 0;
  7855. height: 610px; } }
  7856. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom {
  7857. margin: 0 auto;
  7858. max-width: 80rem;
  7859. width: 100%;
  7860. margin-top: 1.5em;
  7861. margin-bottom: 1.5em; }
  7862. #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 {
  7863. content: " ";
  7864. display: table; }
  7865. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after {
  7866. clear: both; }
  7867. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside {
  7868. padding-left: 0.9375rem;
  7869. padding-right: 0.9375rem;
  7870. width: 100%;
  7871. float: left; }
  7872. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p {
  7873. display: none; }
  7874. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes {
  7875. margin: 0 0 0.5em 0; }
  7876. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item {
  7877. display: moz-inline-stack;
  7878. display: inline-block;
  7879. vertical-align: top;
  7880. zoom: 1;
  7881. *display: inline;
  7882. margin-right: 1em; }
  7883. #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 {
  7884. vertical-align: middle; }
  7885. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail {
  7886. display: moz-inline-stack;
  7887. display: inline-block;
  7888. vertical-align: top;
  7889. zoom: 1;
  7890. *display: inline;
  7891. margin: 0; }
  7892. #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 {
  7893. display: moz-inline-stack;
  7894. display: inline-block;
  7895. vertical-align: top;
  7896. zoom: 1;
  7897. *display: inline;
  7898. margin-right: 1em; }
  7899. #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 {
  7900. display: moz-inline-stack;
  7901. display: inline-block;
  7902. vertical-align: top;
  7903. zoom: 1;
  7904. *display: inline; }
  7905. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews {
  7906. border-radius: 5px;
  7907. background-clip: padding-box;
  7908. background-color: #FFF;
  7909. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7910. transition: box-shadow 0.3s ease-out;
  7911. overflow: hidden;
  7912. position: relative;
  7913. margin: 7px; }
  7914. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a {
  7915. position: absolute;
  7916. bottom: 0;
  7917. width: 100%;
  7918. background-color: #FFF;
  7919. text-align: center; }
  7920. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 {
  7921. padding: 10px;
  7922. margin: 0;
  7923. font-size: 1em; }
  7924. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7925. content: url("../img/point.png");
  7926. position: absolute;
  7927. bottom: 20px;
  7928. right: 10px; }
  7929. @media only screen and (max-width: 40em) {
  7930. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7931. background-color: transparent; }
  7932. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7933. width: 100%; }
  7934. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7935. margin: 0; }
  7936. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node {
  7937. max-width: 100%;
  7938. margin: 0; }
  7939. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body {
  7940. width: 100%;
  7941. padding: 0; }
  7942. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body p {
  7943. max-width: 100%;
  7944. padding: 1em; }
  7945. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a {
  7946. padding: 0;
  7947. display: block;
  7948. height: 100%; }
  7949. #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 {
  7950. max-width: 100%; }
  7951. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7952. z-index: -1;
  7953. opacity: 0.4; } }
  7954. #home-v2 #contact-pane {
  7955. margin: 2em 0;
  7956. padding: 1em;
  7957. background-color: #e6e6e6; }
  7958. #home-v2 #contact-pane .field-name-body {
  7959. text-align: center; }
  7960. #home-v2 #contact-pane .field-name-body p {
  7961. display: moz-inline-stack;
  7962. display: inline-block;
  7963. vertical-align: top;
  7964. zoom: 1;
  7965. *display: inline;
  7966. min-width: 20%; }
  7967. /*
  7968. _ _ _ _ _
  7969. | | | (_) | | (_)
  7970. _ __ _ _| |__ | |_ ___ __ _| |_ _ ___ _ __ ___
  7971. | '_ \| | | | '_ \| | |/ __/ _` | __| |/ _ \| '_ \/ __|
  7972. | |_) | |_| | |_) | | | (_| (_| | |_| | (_) | | | \__ | .__/ \__,_|_.__/|_|_|\___\__,_|\__|_|\___/|_| |_|___/
  7973. | |
  7974. |_|
  7975. */
  7976. body.node-type-publication article.node-publication .field figure, body.node-type-publication article.node-publication .field img {
  7977. max-width: 100%; }
  7978. @media only screen and (min-width: 64.0625em) {
  7979. body.node-type-publication article.node-publication .field {
  7980. display: moz-inline-stack;
  7981. display: inline-block;
  7982. vertical-align: top;
  7983. zoom: 1;
  7984. *display: inline; }
  7985. body.node-type-publication article.node-publication .field-name-field-couverture {
  7986. width: 25%; }
  7987. body.node-type-publication article.node-publication .field-name-body {
  7988. margin-left: 1em;
  7989. width: 70%; } }
  7990. /*
  7991. __ ___
  7992. / |/ /__ ______________ _____ ____ _____
  7993. / /|_/ / _ \/ ___/ ___/ __ `/ __ `/ _ \/ ___/
  7994. / / / / __(__ |__ ) /_/ / /_/ / __(__ )
  7995. /_/ /_/\___/____/____/\__,_/\__, /\___/____/
  7996. /____/
  7997. */
  7998. div.messages {
  7999. padding: 9px;
  8000. margin: 0.5em 0 0;
  8001. color: #3a87ad;
  8002. background: #d9edf7;
  8003. border: 1px solid #bce8f1;
  8004. border-radius: 5px;
  8005. font-size: 12px; }
  8006. div.messages.warning {
  8007. color: #c09853;
  8008. background-color: #fcf8e3;
  8009. border-color: #fbeed5; }
  8010. div.messages.error {
  8011. color: #b94a48;
  8012. background-color: #f2dede;
  8013. border-color: #eed3d7; }
  8014. div.messages.status {
  8015. color: #468847;
  8016. background-color: #dff0d8;
  8017. border-color: #d6e9c6;
  8018. font-size: 14px; }
  8019. .messages-label {
  8020. display: none; }
  8021. #better-messages-wrapper {
  8022. background-color: rgba(255, 255, 255, 0.7);
  8023. padding: 10px;
  8024. border-radius: 5px;
  8025. background-clip: padding-box;
  8026. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }
  8027. #better-messages-wrapper #better-messages-default div.messages {
  8028. padding: 9px;
  8029. margin: 0.5em 0 0;
  8030. color: #3a87ad;
  8031. background: #d9edf7;
  8032. border: 1px solid #bce8f1;
  8033. border-radius: 5px;
  8034. font-size: 12px;
  8035. margin: 0 0 10px 0; }
  8036. #better-messages-wrapper #better-messages-default div.messages.warning {
  8037. color: #c09853;
  8038. background-color: #fcf8e3;
  8039. border-color: #fbeed5; }
  8040. #better-messages-wrapper #better-messages-default div.messages.error {
  8041. color: #b94a48;
  8042. background-color: #f2dede;
  8043. border-color: #eed3d7; }
  8044. #better-messages-wrapper #better-messages-default div.messages.status {
  8045. color: #468847;
  8046. background-color: #dff0d8;
  8047. border-color: #d6e9c6;
  8048. font-size: 14px; }
  8049. #better-messages-wrapper #better-messages-default .footer {
  8050. border: none;
  8051. padding: 0;
  8052. margin: 0; }
  8053. #better-messages-wrapper #better-messages-default .footer a.message-close {
  8054. background: #fff url("../img/close.png") no-repeat center center;
  8055. width: 15px;
  8056. height: 15px;
  8057. border-radius: 3px;
  8058. background-clip: padding-box;
  8059. display: block; }
  8060. /** Tab navigation */
  8061. /**
  8062. * icons
  8063. */
  8064. /**
  8065. * figures
  8066. */
  8067. figure figcaption {
  8068. display: none; }
  8069. figure .blank {
  8070. position: absolute;
  8071. top: 0;
  8072. left: 0;
  8073. width: 100%;
  8074. height: 100%; }
  8075. /* ==|== print styles =======================================================
  8076. Print styles.
  8077. Inlined to avoid required HTTP connection: h5bp.com/r
  8078. ========================================================================== */
  8079. a:focus {
  8080. outline: 0; }
  8081. /*
  8082. * Improves readability when focused and also mouse hovered in all browsers.
  8083. */
  8084. a:active,
  8085. a:hover {
  8086. outline: 0; }
  8087. i {
  8088. transition: color 0.3s; }
  8089. i:hover {
  8090. color: #606060;
  8091. text-shadow: 1px 4px 6px #FFF,0 0 0 #000,1px 4px 6px #FFF; }
  8092. /** COLORBOX */
  8093. #colorbox {
  8094. border-radius: 2px;
  8095. background-clip: padding-box;
  8096. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  8097. #colorbox #cboxLoadedContent {
  8098. background-color: #fff; }
  8099. /** embed player */
  8100. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  8101. .embedded-video .player iframe {
  8102. max-width: 100%;
  8103. height: auto; } }
  8104. /** devel */
  8105. .not-logged-in #tasks ul.tabs.primary {
  8106. display: none; }
  8107. /*
  8108. __ _
  8109. ____ _____/ /___ ___ (_)___ ____ ___ ___ ____ __ __
  8110. / __ `/ __ / __ `__ \/ / __ \ / __ `__ \/ _ \/ __ \/ / / /
  8111. / /_/ / /_/ / / / / / / / / / / / / / / / / __/ / / / /_/ /
  8112. \__,_/\__,_/_/ /_/ /_/_/_/ /_/ /_/ /_/ /_/\___/_/ /_/\__,_/
  8113. */
  8114. #admin-menu {
  8115. top: 0; }