styles.css 344 KB

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