styles.css 346 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  6. /**
  7. * 1. Set default font family to sans-serif.
  8. * 2. Prevent iOS and IE text size adjust after device orientation change,
  9. * without disabling user zoom.
  10. */
  11. @import url(../fonts/icon/foundation-icons.css);
  12. html {
  13. font-family: sans-serif;
  14. /* 1 */
  15. -ms-text-size-adjust: 100%;
  16. /* 2 */
  17. -webkit-text-size-adjust: 100%;
  18. /* 2 */ }
  19. /**
  20. * Remove default margin.
  21. */
  22. body {
  23. margin: 0; }
  24. /* HTML5 display definitions
  25. ========================================================================== */
  26. /**
  27. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  28. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  29. * and Firefox.
  30. * Correct `block` display not defined for `main` in IE 11.
  31. */
  32. article,
  33. aside,
  34. details,
  35. figcaption,
  36. figure,
  37. footer,
  38. header,
  39. hgroup,
  40. main,
  41. menu,
  42. nav,
  43. section,
  44. summary {
  45. display: block; }
  46. /**
  47. * 1. Correct `inline-block` display not defined in IE 8/9.
  48. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  49. */
  50. audio,
  51. canvas,
  52. progress,
  53. video {
  54. display: inline-block;
  55. /* 1 */
  56. vertical-align: baseline;
  57. /* 2 */ }
  58. /**
  59. * Prevent modern browsers from displaying `audio` without controls.
  60. * Remove excess height in iOS 5 devices.
  61. */
  62. audio:not([controls]) {
  63. display: none;
  64. height: 0; }
  65. /**
  66. * Address `[hidden]` styling not present in IE 8/9/10.
  67. * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
  68. */
  69. [hidden],
  70. template {
  71. display: none; }
  72. /* Links
  73. ========================================================================== */
  74. /**
  75. * Remove the gray background color from active links in IE 10.
  76. */
  77. a {
  78. background-color: transparent; }
  79. /**
  80. * Improve readability of focused elements when they are also in an
  81. * active/hover state.
  82. */
  83. a:active,
  84. a:hover {
  85. outline: 0; }
  86. /* Text-level semantics
  87. ========================================================================== */
  88. /**
  89. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  90. */
  91. abbr[title] {
  92. border-bottom: 1px dotted; }
  93. /**
  94. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  95. */
  96. b,
  97. strong {
  98. font-weight: bold; }
  99. /**
  100. * Address styling not present in Safari and Chrome.
  101. */
  102. dfn {
  103. font-style: italic; }
  104. /**
  105. * Address variable `h1` font-size and margin within `section` and `article`
  106. * contexts in Firefox 4+, Safari, and Chrome.
  107. */
  108. h1 {
  109. font-size: 2em;
  110. margin: 0.67em 0; }
  111. /**
  112. * Address styling not present in IE 8/9.
  113. */
  114. mark {
  115. background: #ff0;
  116. color: #000; }
  117. /**
  118. * Address inconsistent and variable font size in all browsers.
  119. */
  120. small {
  121. font-size: 80%; }
  122. /**
  123. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  124. */
  125. sub,
  126. sup {
  127. font-size: 75%;
  128. line-height: 0;
  129. position: relative;
  130. vertical-align: baseline; }
  131. sup {
  132. top: -0.5em; }
  133. sub {
  134. bottom: -0.25em; }
  135. /* Embedded content
  136. ========================================================================== */
  137. /**
  138. * Remove border when inside `a` element in IE 8/9/10.
  139. */
  140. img {
  141. border: 0; }
  142. /**
  143. * Correct overflow not hidden in IE 9/10/11.
  144. */
  145. svg:not(:root) {
  146. overflow: hidden; }
  147. /* Grouping content
  148. ========================================================================== */
  149. /**
  150. * Address margin not present in IE 8/9 and Safari.
  151. */
  152. figure {
  153. margin: 1em 40px; }
  154. /**
  155. * Address differences between Firefox and other browsers.
  156. */
  157. hr {
  158. box-sizing: content-box;
  159. height: 0; }
  160. /**
  161. * Contain overflow in all browsers.
  162. */
  163. pre {
  164. overflow: auto; }
  165. /**
  166. * Address odd `em`-unit font size rendering in all browsers.
  167. */
  168. code,
  169. kbd,
  170. pre,
  171. samp {
  172. font-family: monospace, monospace;
  173. font-size: 1em; }
  174. /* Forms
  175. ========================================================================== */
  176. /**
  177. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  178. * styling of `select`, unless a `border` property is set.
  179. */
  180. /**
  181. * 1. Correct color not being inherited.
  182. * Known issue: affects color of disabled elements.
  183. * 2. Correct font properties not being inherited.
  184. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  185. */
  186. button,
  187. input,
  188. optgroup,
  189. select,
  190. textarea {
  191. color: inherit;
  192. /* 1 */
  193. font: inherit;
  194. /* 2 */
  195. margin: 0;
  196. /* 3 */ }
  197. /**
  198. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  199. */
  200. button {
  201. overflow: visible; }
  202. /**
  203. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  204. * All other form control elements do not inherit `text-transform` values.
  205. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  206. * Correct `select` style inheritance in Firefox.
  207. */
  208. button,
  209. select {
  210. text-transform: none; }
  211. /**
  212. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  213. * and `video` controls.
  214. * 2. Correct inability to style clickable `input` types in iOS.
  215. * 3. Improve usability and consistency of cursor style between image-type
  216. * `input` and others.
  217. */
  218. button,
  219. html input[type="button"],
  220. input[type="reset"],
  221. input[type="submit"] {
  222. -webkit-appearance: button;
  223. /* 2 */
  224. cursor: pointer;
  225. /* 3 */ }
  226. /**
  227. * Re-set default cursor for disabled elements.
  228. */
  229. button[disabled],
  230. html input[disabled] {
  231. cursor: default; }
  232. /**
  233. * Remove inner padding and border in Firefox 4+.
  234. */
  235. button::-moz-focus-inner,
  236. input::-moz-focus-inner {
  237. border: 0;
  238. padding: 0; }
  239. /**
  240. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  241. * the UA stylesheet.
  242. */
  243. input {
  244. line-height: normal; }
  245. /**
  246. * It's recommended that you don't attempt to style these elements.
  247. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  248. *
  249. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  250. * 2. Remove excess padding in IE 8/9/10.
  251. */
  252. input[type="checkbox"],
  253. input[type="radio"] {
  254. box-sizing: border-box;
  255. /* 1 */
  256. padding: 0;
  257. /* 2 */ }
  258. /**
  259. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  260. * `font-size` values of the `input`, it causes the cursor style of the
  261. * decrement button to change from `default` to `text`.
  262. */
  263. input[type="number"]::-webkit-inner-spin-button,
  264. input[type="number"]::-webkit-outer-spin-button {
  265. height: auto; }
  266. /**
  267. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  268. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
  269. */
  270. input[type="search"] {
  271. -webkit-appearance: textfield;
  272. /* 1 */
  273. box-sizing: content-box;
  274. /* 2 */ }
  275. /**
  276. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  277. * Safari (but not Chrome) clips the cancel button when the search input has
  278. * padding (and `textfield` appearance).
  279. */
  280. input[type="search"]::-webkit-search-cancel-button,
  281. input[type="search"]::-webkit-search-decoration {
  282. -webkit-appearance: none; }
  283. /**
  284. * Define consistent border, margin, and padding.
  285. */
  286. fieldset {
  287. border: 1px solid #c0c0c0;
  288. margin: 0 2px;
  289. padding: 0.35em 0.625em 0.75em; }
  290. /**
  291. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  292. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  293. */
  294. legend {
  295. border: 0;
  296. /* 1 */
  297. padding: 0;
  298. /* 2 */ }
  299. /**
  300. * Remove default vertical scrollbar in IE 8/9/10/11.
  301. */
  302. textarea {
  303. overflow: auto; }
  304. /**
  305. * Don't inherit the `font-weight` (applied by a rule above).
  306. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  307. */
  308. optgroup {
  309. font-weight: bold; }
  310. /* Tables
  311. ========================================================================== */
  312. /**
  313. * Remove most spacing between table cells.
  314. */
  315. table {
  316. border-collapse: collapse;
  317. border-spacing: 0; }
  318. td,
  319. th {
  320. padding: 0; }
  321. meta.foundation-version {
  322. font-family: "/5.5.3/"; }
  323. meta.foundation-mq-small {
  324. font-family: "/only screen/";
  325. width: 0; }
  326. meta.foundation-mq-small-only {
  327. font-family: "/only screen and (max-width: 40em)/";
  328. width: 0; }
  329. meta.foundation-mq-medium {
  330. font-family: "/only screen and (min-width:40.0625em)/";
  331. width: 40.0625em; }
  332. meta.foundation-mq-medium-only {
  333. font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  334. width: 40.0625em; }
  335. meta.foundation-mq-large {
  336. font-family: "/only screen and (min-width:64.0625em)/";
  337. width: 64.0625em; }
  338. meta.foundation-mq-large-only {
  339. font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  340. width: 64.0625em; }
  341. meta.foundation-mq-xlarge {
  342. font-family: "/only screen and (min-width:90.0625em)/";
  343. width: 90.0625em; }
  344. meta.foundation-mq-xlarge-only {
  345. font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  346. width: 90.0625em; }
  347. meta.foundation-mq-xxlarge {
  348. font-family: "/only screen and (min-width:120.0625em)/";
  349. width: 120.0625em; }
  350. meta.foundation-data-attribute-namespace {
  351. font-family: false; }
  352. html, body {
  353. height: 100%; }
  354. *,
  355. *:before,
  356. *:after {
  357. box-sizing: border-box; }
  358. html,
  359. body {
  360. font-size: 100%; }
  361. body {
  362. background: #fff;
  363. color: #222;
  364. cursor: auto;
  365. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  366. font-style: normal;
  367. font-weight: normal;
  368. line-height: 1.5;
  369. margin: 0;
  370. padding: 0;
  371. position: relative; }
  372. a:hover {
  373. cursor: pointer; }
  374. img {
  375. max-width: 100%;
  376. height: auto; }
  377. img {
  378. -ms-interpolation-mode: bicubic; }
  379. #map_canvas img,
  380. #map_canvas embed,
  381. #map_canvas object,
  382. .map_canvas img,
  383. .map_canvas embed,
  384. .map_canvas object,
  385. .mqa-display img,
  386. .mqa-display embed,
  387. .mqa-display object {
  388. max-width: none !important; }
  389. .left {
  390. float: left !important; }
  391. .right {
  392. float: right !important; }
  393. .clearfix:before, .clearfix:after {
  394. content: " ";
  395. display: table; }
  396. .clearfix:after {
  397. clear: both; }
  398. .hide {
  399. display: none; }
  400. .invisible {
  401. visibility: hidden; }
  402. .antialiased {
  403. -webkit-font-smoothing: antialiased;
  404. -moz-osx-font-smoothing: grayscale; }
  405. img {
  406. display: inline-block;
  407. vertical-align: middle; }
  408. textarea {
  409. height: auto;
  410. min-height: 50px; }
  411. select {
  412. width: 100%; }
  413. .text-left {
  414. text-align: left !important; }
  415. .text-right {
  416. text-align: right !important; }
  417. .text-center {
  418. text-align: center !important; }
  419. .text-justify {
  420. text-align: justify !important; }
  421. @media only screen and (max-width: 40em) {
  422. .small-only-text-left {
  423. text-align: left !important; }
  424. .small-only-text-right {
  425. text-align: right !important; }
  426. .small-only-text-center {
  427. text-align: center !important; }
  428. .small-only-text-justify {
  429. text-align: justify !important; } }
  430. @media only screen {
  431. .small-text-left {
  432. text-align: left !important; }
  433. .small-text-right {
  434. text-align: right !important; }
  435. .small-text-center {
  436. text-align: center !important; }
  437. .small-text-justify {
  438. text-align: justify !important; } }
  439. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  440. .medium-only-text-left {
  441. text-align: left !important; }
  442. .medium-only-text-right {
  443. text-align: right !important; }
  444. .medium-only-text-center {
  445. text-align: center !important; }
  446. .medium-only-text-justify {
  447. text-align: justify !important; } }
  448. @media only screen and (min-width: 40.0625em) {
  449. .medium-text-left {
  450. text-align: left !important; }
  451. .medium-text-right {
  452. text-align: right !important; }
  453. .medium-text-center {
  454. text-align: center !important; }
  455. .medium-text-justify {
  456. text-align: justify !important; } }
  457. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  458. .large-only-text-left {
  459. text-align: left !important; }
  460. .large-only-text-right {
  461. text-align: right !important; }
  462. .large-only-text-center {
  463. text-align: center !important; }
  464. .large-only-text-justify {
  465. text-align: justify !important; } }
  466. @media only screen and (min-width: 64.0625em) {
  467. .large-text-left {
  468. text-align: left !important; }
  469. .large-text-right {
  470. text-align: right !important; }
  471. .large-text-center {
  472. text-align: center !important; }
  473. .large-text-justify {
  474. text-align: justify !important; } }
  475. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  476. .xlarge-only-text-left {
  477. text-align: left !important; }
  478. .xlarge-only-text-right {
  479. text-align: right !important; }
  480. .xlarge-only-text-center {
  481. text-align: center !important; }
  482. .xlarge-only-text-justify {
  483. text-align: justify !important; } }
  484. @media only screen and (min-width: 90.0625em) {
  485. .xlarge-text-left {
  486. text-align: left !important; }
  487. .xlarge-text-right {
  488. text-align: right !important; }
  489. .xlarge-text-center {
  490. text-align: center !important; }
  491. .xlarge-text-justify {
  492. text-align: justify !important; } }
  493. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  494. .xxlarge-only-text-left {
  495. text-align: left !important; }
  496. .xxlarge-only-text-right {
  497. text-align: right !important; }
  498. .xxlarge-only-text-center {
  499. text-align: center !important; }
  500. .xxlarge-only-text-justify {
  501. text-align: justify !important; } }
  502. @media only screen and (min-width: 120.0625em) {
  503. .xxlarge-text-left {
  504. text-align: left !important; }
  505. .xxlarge-text-right {
  506. text-align: right !important; }
  507. .xxlarge-text-center {
  508. text-align: center !important; }
  509. .xxlarge-text-justify {
  510. text-align: justify !important; } }
  511. /* Typography resets */
  512. div,
  513. dl,
  514. dt,
  515. dd,
  516. ul,
  517. ol,
  518. li,
  519. h1,
  520. h2,
  521. h3,
  522. h4,
  523. h5,
  524. h6,
  525. pre,
  526. form,
  527. p,
  528. blockquote,
  529. th,
  530. td {
  531. margin: 0;
  532. padding: 0; }
  533. /* Default Link Styles */
  534. a {
  535. color: #008CBA;
  536. line-height: inherit;
  537. text-decoration: none; }
  538. a:hover, a:focus {
  539. color: #0078a0; }
  540. a img {
  541. border: none; }
  542. /* Default paragraph styles */
  543. p {
  544. font-family: inherit;
  545. font-size: 1rem;
  546. font-weight: normal;
  547. line-height: 1.6;
  548. margin-bottom: 1.25rem;
  549. text-rendering: optimizeLegibility; }
  550. p.lead {
  551. font-size: 1.21875rem;
  552. line-height: 1.6; }
  553. p aside {
  554. font-size: 0.875rem;
  555. font-style: italic;
  556. line-height: 1.35; }
  557. /* Default header styles */
  558. h1, h2, h3, h4, h5, h6 {
  559. color: #222222;
  560. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  561. font-style: normal;
  562. font-weight: normal;
  563. line-height: 1.4;
  564. margin-bottom: 0.5rem;
  565. margin-top: 0.2rem;
  566. text-rendering: optimizeLegibility; }
  567. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  568. color: #6f6f6f;
  569. font-size: 60%;
  570. line-height: 0; }
  571. h1 {
  572. font-size: 2.125rem; }
  573. h2 {
  574. font-size: 1.6875rem; }
  575. h3 {
  576. font-size: 1.375rem; }
  577. h4 {
  578. font-size: 1.125rem; }
  579. h5 {
  580. font-size: 1.125rem; }
  581. h6 {
  582. font-size: 1rem; }
  583. .subheader {
  584. line-height: 1.4;
  585. color: #6f6f6f;
  586. font-weight: normal;
  587. margin-top: 0.2rem;
  588. margin-bottom: 0.5rem; }
  589. hr {
  590. border: solid #DDDDDD;
  591. border-width: 1px 0 0;
  592. clear: both;
  593. height: 0;
  594. margin: 1.25rem 0 1.1875rem; }
  595. /* Helpful Typography Defaults */
  596. em,
  597. i {
  598. font-style: italic;
  599. line-height: inherit; }
  600. strong,
  601. b {
  602. font-weight: bold;
  603. line-height: inherit; }
  604. small {
  605. font-size: 60%;
  606. line-height: inherit; }
  607. code {
  608. background-color: #f8f8f8;
  609. border-color: #dfdfdf;
  610. border-style: solid;
  611. border-width: 1px;
  612. color: #333333;
  613. font-family: Consolas, "Liberation Mono", Courier, monospace;
  614. font-weight: normal;
  615. padding: 0.125rem 0.3125rem 0.0625rem; }
  616. /* Lists */
  617. ul,
  618. ol,
  619. dl {
  620. font-family: inherit;
  621. font-size: 1rem;
  622. line-height: 1.6;
  623. list-style-position: outside;
  624. margin-bottom: 1.25rem; }
  625. ul {
  626. margin-left: 1.1rem; }
  627. /* Unordered Lists */
  628. ul li ul,
  629. ul li ol {
  630. margin-left: 1.25rem;
  631. margin-bottom: 0; }
  632. ul.square li ul, ul.circle li ul, ul.disc li ul {
  633. list-style: inherit; }
  634. ul.square {
  635. list-style-type: square;
  636. margin-left: 1.1rem; }
  637. ul.circle {
  638. list-style-type: circle;
  639. margin-left: 1.1rem; }
  640. ul.disc {
  641. list-style-type: disc;
  642. margin-left: 1.1rem; }
  643. /* Ordered Lists */
  644. ol {
  645. margin-left: 1.4rem; }
  646. ol li ul,
  647. ol li ol {
  648. margin-left: 1.25rem;
  649. margin-bottom: 0; }
  650. .no-bullet {
  651. list-style-type: none;
  652. margin-left: 0; }
  653. .no-bullet li ul,
  654. .no-bullet li ol {
  655. margin-left: 1.25rem;
  656. margin-bottom: 0;
  657. list-style: none; }
  658. /* Definition Lists */
  659. dl dt {
  660. margin-bottom: 0.3rem;
  661. font-weight: bold; }
  662. dl dd {
  663. margin-bottom: 0.75rem; }
  664. /* Abbreviations */
  665. abbr,
  666. acronym {
  667. text-transform: uppercase;
  668. font-size: 90%;
  669. color: #222;
  670. cursor: help; }
  671. abbr {
  672. text-transform: none; }
  673. abbr[title] {
  674. border-bottom: 1px dotted #DDDDDD; }
  675. /* Blockquotes */
  676. blockquote {
  677. margin: 0 0 1.25rem;
  678. padding: 0.5625rem 1.25rem 0 1.1875rem;
  679. border-left: 1px solid #DDDDDD; }
  680. blockquote cite {
  681. display: block;
  682. font-size: 0.8125rem;
  683. color: #555555; }
  684. blockquote cite:before {
  685. content: "\2014 \0020"; }
  686. blockquote cite a,
  687. blockquote cite a:visited {
  688. color: #555555; }
  689. blockquote,
  690. blockquote p {
  691. line-height: 1.6;
  692. color: #6f6f6f; }
  693. /* Microformats */
  694. .vcard {
  695. display: inline-block;
  696. margin: 0 0 1.25rem 0;
  697. border: 1px solid #DDDDDD;
  698. padding: 0.625rem 0.75rem; }
  699. .vcard li {
  700. margin: 0;
  701. display: block; }
  702. .vcard .fn {
  703. font-weight: bold;
  704. font-size: 0.9375rem; }
  705. .vevent .summary {
  706. font-weight: bold; }
  707. .vevent abbr {
  708. cursor: default;
  709. text-decoration: none;
  710. font-weight: bold;
  711. border: none;
  712. padding: 0 0.0625rem; }
  713. @media only screen and (min-width: 40.0625em) {
  714. h1, h2, h3, h4, h5, h6 {
  715. line-height: 1.4; }
  716. h1 {
  717. font-size: 2.75rem; }
  718. h2 {
  719. font-size: 2.3125rem; }
  720. h3 {
  721. font-size: 1.6875rem; }
  722. h4 {
  723. font-size: 1.4375rem; }
  724. h5 {
  725. font-size: 1.125rem; }
  726. h6 {
  727. font-size: 1rem; } }
  728. /*
  729. * Print styles.
  730. *
  731. * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
  732. * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
  733. */
  734. @media print {
  735. * {
  736. background: transparent !important;
  737. color: #000000 !important;
  738. /* Black prints faster: h5bp.com/s */
  739. box-shadow: none !important;
  740. text-shadow: none !important; }
  741. a,
  742. a:visited {
  743. text-decoration: underline; }
  744. a[href]:after {
  745. content: " (" attr(href) ")"; }
  746. abbr[title]:after {
  747. content: " (" attr(title) ")"; }
  748. .ir a:after,
  749. a[href^="javascript:"]:after,
  750. a[href^="#"]:after {
  751. content: ""; }
  752. pre,
  753. blockquote {
  754. border: 1px solid #999999;
  755. page-break-inside: avoid; }
  756. thead {
  757. display: table-header-group;
  758. /* h5bp.com/t */ }
  759. tr,
  760. img {
  761. page-break-inside: avoid; }
  762. img {
  763. max-width: 100% !important; }
  764. @page {
  765. margin: 0.34in; }
  766. p,
  767. h2,
  768. h3 {
  769. orphans: 3;
  770. widows: 3; }
  771. h2,
  772. h3 {
  773. page-break-after: avoid; } }
  774. /* Clearing Styles */
  775. .clearing-thumbs, [data-clearing] {
  776. list-style: none;
  777. margin-left: 0;
  778. margin-bottom: 0; }
  779. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  780. content: " ";
  781. display: table; }
  782. .clearing-thumbs:after, [data-clearing]:after {
  783. clear: both; }
  784. .clearing-thumbs li, [data-clearing] li {
  785. float: left;
  786. margin-right: 10px; }
  787. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  788. margin-right: 0; }
  789. .clearing-blackout {
  790. background: #333333;
  791. height: 100%;
  792. position: fixed;
  793. top: 0;
  794. width: 100%;
  795. z-index: 998;
  796. left: 0; }
  797. .clearing-blackout .clearing-close {
  798. display: block; }
  799. .clearing-container {
  800. height: 100%;
  801. margin: 0;
  802. overflow: hidden;
  803. position: relative;
  804. z-index: 998; }
  805. .clearing-touch-label {
  806. color: #AAAAAA;
  807. font-size: .6em;
  808. left: 50%;
  809. position: absolute;
  810. top: 50%; }
  811. .visible-img {
  812. height: 95%;
  813. position: relative; }
  814. .visible-img img {
  815. position: absolute;
  816. left: 50%;
  817. top: 50%;
  818. transform: translateY(-50%) translateX(-50%);
  819. max-height: 100%;
  820. max-width: 100%; }
  821. .clearing-caption {
  822. background: #333333;
  823. bottom: 0;
  824. color: #CCCCCC;
  825. font-size: 0.875em;
  826. line-height: 1.3;
  827. margin-bottom: 0;
  828. padding: 10px 30px 20px;
  829. position: absolute;
  830. text-align: center;
  831. width: 100%;
  832. left: 0; }
  833. .clearing-close {
  834. color: #CCCCCC;
  835. display: none;
  836. font-size: 30px;
  837. line-height: 1;
  838. padding-left: 20px;
  839. padding-top: 10px;
  840. z-index: 999; }
  841. .clearing-close:hover, .clearing-close:focus {
  842. color: #CCCCCC; }
  843. .clearing-assembled .clearing-container {
  844. height: 100%; }
  845. .clearing-assembled .clearing-container .carousel > ul {
  846. display: none; }
  847. .clearing-feature li {
  848. display: none; }
  849. .clearing-feature li.clearing-featured-img {
  850. display: block; }
  851. @media only screen and (min-width: 40.0625em) {
  852. .clearing-main-prev,
  853. .clearing-main-next {
  854. height: 100%;
  855. position: absolute;
  856. top: 0;
  857. width: 40px; }
  858. .clearing-main-prev > span,
  859. .clearing-main-next > span {
  860. border: solid 12px;
  861. display: block;
  862. height: 0;
  863. position: absolute;
  864. top: 50%;
  865. width: 0; }
  866. .clearing-main-prev > span:hover,
  867. .clearing-main-next > span:hover {
  868. opacity: .8; }
  869. .clearing-main-prev {
  870. left: 0; }
  871. .clearing-main-prev > span {
  872. left: 5px;
  873. border-color: transparent;
  874. border-right-color: #CCCCCC; }
  875. .clearing-main-next {
  876. right: 0; }
  877. .clearing-main-next > span {
  878. border-color: transparent;
  879. border-left-color: #CCCCCC; }
  880. .clearing-main-prev.disabled,
  881. .clearing-main-next.disabled {
  882. opacity: .3; }
  883. .clearing-assembled .clearing-container .carousel {
  884. background: rgba(51, 51, 51, 0.8);
  885. height: 120px;
  886. margin-top: 10px;
  887. text-align: center; }
  888. .clearing-assembled .clearing-container .carousel > ul {
  889. display: inline-block;
  890. z-index: 999;
  891. height: 100%;
  892. position: relative;
  893. float: none; }
  894. .clearing-assembled .clearing-container .carousel > ul li {
  895. clear: none;
  896. cursor: pointer;
  897. display: block;
  898. float: left;
  899. margin-right: 0;
  900. min-height: inherit;
  901. opacity: .4;
  902. overflow: hidden;
  903. padding: 0;
  904. position: relative;
  905. width: 120px; }
  906. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  907. height: 100%;
  908. max-width: none; }
  909. .clearing-assembled .clearing-container .carousel > ul li a.th {
  910. border: none;
  911. box-shadow: none;
  912. display: block; }
  913. .clearing-assembled .clearing-container .carousel > ul li img {
  914. cursor: pointer !important;
  915. width: 100% !important; }
  916. .clearing-assembled .clearing-container .carousel > ul li.visible {
  917. opacity: 1; }
  918. .clearing-assembled .clearing-container .carousel > ul li:hover {
  919. opacity: .8; }
  920. .clearing-assembled .clearing-container .visible-img {
  921. background: #333333;
  922. height: 85%;
  923. overflow: hidden; }
  924. .clearing-close {
  925. padding-left: 0;
  926. padding-top: 0;
  927. position: absolute;
  928. top: 10px;
  929. right: 20px; } }
  930. .inline-list {
  931. list-style: none;
  932. margin-top: 0;
  933. margin-bottom: 1.0625rem;
  934. margin-left: -1.375rem;
  935. margin-right: 0;
  936. overflow: hidden;
  937. padding: 0; }
  938. .inline-list > li {
  939. display: block;
  940. float: left;
  941. list-style: none;
  942. margin-left: 1.375rem; }
  943. .inline-list > li > * {
  944. display: block; }
  945. button, .button {
  946. -webkit-appearance: none;
  947. -moz-appearance: none;
  948. border-radius: 0;
  949. border-style: solid;
  950. border-width: 0;
  951. cursor: pointer;
  952. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  953. font-weight: normal;
  954. line-height: normal;
  955. margin: 0 0 1.25rem;
  956. position: relative;
  957. text-align: center;
  958. text-decoration: none;
  959. display: inline-block;
  960. padding: 1rem 2rem 1.0625rem 2rem;
  961. font-size: 1rem;
  962. background-color: #008CBA;
  963. border-color: #007095;
  964. color: #FFFFFF;
  965. transition: background-color 300ms ease-out; }
  966. button:hover, button:focus, .button:hover, .button:focus {
  967. background-color: #007095; }
  968. button:hover, button:focus, .button:hover, .button:focus {
  969. color: #FFFFFF; }
  970. button.secondary, .button.secondary {
  971. background-color: #e7e7e7;
  972. border-color: #b9b9b9;
  973. color: #333333; }
  974. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  975. background-color: #b9b9b9; }
  976. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  977. color: #333333; }
  978. button.success, .button.success {
  979. background-color: #43AC6A;
  980. border-color: #368a55;
  981. color: #FFFFFF; }
  982. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  983. background-color: #368a55; }
  984. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  985. color: #FFFFFF; }
  986. button.alert, .button.alert {
  987. background-color: #f04124;
  988. border-color: #cf2a0e;
  989. color: #FFFFFF; }
  990. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  991. background-color: #cf2a0e; }
  992. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  993. color: #FFFFFF; }
  994. button.warning, .button.warning {
  995. background-color: #f08a24;
  996. border-color: #cf6e0e;
  997. color: #FFFFFF; }
  998. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  999. background-color: #cf6e0e; }
  1000. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  1001. color: #FFFFFF; }
  1002. button.info, .button.info {
  1003. background-color: #a0d3e8;
  1004. border-color: #61b6d9;
  1005. color: #333333; }
  1006. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1007. background-color: #61b6d9; }
  1008. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1009. color: #FFFFFF; }
  1010. button.large, .button.large {
  1011. padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  1012. font-size: 1.25rem; }
  1013. button.small, .button.small {
  1014. padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  1015. font-size: 0.8125rem; }
  1016. button.tiny, .button.tiny {
  1017. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  1018. font-size: 0.6875rem; }
  1019. button.expand, .button.expand {
  1020. padding: 1rem 2rem 1.0625rem 2rem;
  1021. font-size: 1rem;
  1022. padding-bottom: 1.0625rem;
  1023. padding-top: 1rem;
  1024. padding-left: 1rem;
  1025. padding-right: 1rem;
  1026. width: 100%; }
  1027. button.left-align, .button.left-align {
  1028. text-align: left;
  1029. text-indent: 0.75rem; }
  1030. button.right-align, .button.right-align {
  1031. text-align: right;
  1032. padding-right: 0.75rem; }
  1033. button.radius, .button.radius {
  1034. border-radius: 3px; }
  1035. button.round, .button.round {
  1036. border-radius: 1000px; }
  1037. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  1038. background-color: #008CBA;
  1039. border-color: #007095;
  1040. color: #FFFFFF;
  1041. box-shadow: none;
  1042. cursor: default;
  1043. opacity: 0.7; }
  1044. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1045. background-color: #007095; }
  1046. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1047. color: #FFFFFF; }
  1048. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1049. background-color: #008CBA; }
  1050. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  1051. background-color: #e7e7e7;
  1052. border-color: #b9b9b9;
  1053. color: #333333;
  1054. box-shadow: none;
  1055. cursor: default;
  1056. opacity: 0.7; }
  1057. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1058. background-color: #b9b9b9; }
  1059. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1060. color: #333333; }
  1061. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1062. background-color: #e7e7e7; }
  1063. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  1064. background-color: #43AC6A;
  1065. border-color: #368a55;
  1066. color: #FFFFFF;
  1067. box-shadow: none;
  1068. cursor: default;
  1069. opacity: 0.7; }
  1070. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1071. background-color: #368a55; }
  1072. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1073. color: #FFFFFF; }
  1074. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1075. background-color: #43AC6A; }
  1076. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  1077. background-color: #f04124;
  1078. border-color: #cf2a0e;
  1079. color: #FFFFFF;
  1080. box-shadow: none;
  1081. cursor: default;
  1082. opacity: 0.7; }
  1083. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1084. background-color: #cf2a0e; }
  1085. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1086. color: #FFFFFF; }
  1087. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1088. background-color: #f04124; }
  1089. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  1090. background-color: #f08a24;
  1091. border-color: #cf6e0e;
  1092. color: #FFFFFF;
  1093. box-shadow: none;
  1094. cursor: default;
  1095. opacity: 0.7; }
  1096. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1097. background-color: #cf6e0e; }
  1098. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1099. color: #FFFFFF; }
  1100. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1101. background-color: #f08a24; }
  1102. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  1103. background-color: #a0d3e8;
  1104. border-color: #61b6d9;
  1105. color: #333333;
  1106. box-shadow: none;
  1107. cursor: default;
  1108. opacity: 0.7; }
  1109. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1110. background-color: #61b6d9; }
  1111. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1112. color: #FFFFFF; }
  1113. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1114. background-color: #a0d3e8; }
  1115. button::-moz-focus-inner {
  1116. border: 0;
  1117. padding: 0; }
  1118. @media only screen and (min-width: 40.0625em) {
  1119. button, .button {
  1120. display: inline-block; } }
  1121. .button-group {
  1122. list-style: none;
  1123. margin: 0;
  1124. left: 0; }
  1125. .button-group:before, .button-group:after {
  1126. content: " ";
  1127. display: table; }
  1128. .button-group:after {
  1129. clear: both; }
  1130. .button-group.even-2 li {
  1131. display: inline-block;
  1132. margin: 0 -2px;
  1133. width: 50%; }
  1134. .button-group.even-2 li > button, .button-group.even-2 li .button {
  1135. border-left: 1px solid;
  1136. border-color: rgba(255, 255, 255, 0.5); }
  1137. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  1138. border-left: 0; }
  1139. .button-group.even-2 li button, .button-group.even-2 li .button {
  1140. width: 100%; }
  1141. .button-group.even-3 li {
  1142. display: inline-block;
  1143. margin: 0 -2px;
  1144. width: 33.33333%; }
  1145. .button-group.even-3 li > button, .button-group.even-3 li .button {
  1146. border-left: 1px solid;
  1147. border-color: rgba(255, 255, 255, 0.5); }
  1148. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  1149. border-left: 0; }
  1150. .button-group.even-3 li button, .button-group.even-3 li .button {
  1151. width: 100%; }
  1152. .button-group.even-4 li {
  1153. display: inline-block;
  1154. margin: 0 -2px;
  1155. width: 25%; }
  1156. .button-group.even-4 li > button, .button-group.even-4 li .button {
  1157. border-left: 1px solid;
  1158. border-color: rgba(255, 255, 255, 0.5); }
  1159. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  1160. border-left: 0; }
  1161. .button-group.even-4 li button, .button-group.even-4 li .button {
  1162. width: 100%; }
  1163. .button-group.even-5 li {
  1164. display: inline-block;
  1165. margin: 0 -2px;
  1166. width: 20%; }
  1167. .button-group.even-5 li > button, .button-group.even-5 li .button {
  1168. border-left: 1px solid;
  1169. border-color: rgba(255, 255, 255, 0.5); }
  1170. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  1171. border-left: 0; }
  1172. .button-group.even-5 li button, .button-group.even-5 li .button {
  1173. width: 100%; }
  1174. .button-group.even-6 li {
  1175. display: inline-block;
  1176. margin: 0 -2px;
  1177. width: 16.66667%; }
  1178. .button-group.even-6 li > button, .button-group.even-6 li .button {
  1179. border-left: 1px solid;
  1180. border-color: rgba(255, 255, 255, 0.5); }
  1181. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  1182. border-left: 0; }
  1183. .button-group.even-6 li button, .button-group.even-6 li .button {
  1184. width: 100%; }
  1185. .button-group.even-7 li {
  1186. display: inline-block;
  1187. margin: 0 -2px;
  1188. width: 14.28571%; }
  1189. .button-group.even-7 li > button, .button-group.even-7 li .button {
  1190. border-left: 1px solid;
  1191. border-color: rgba(255, 255, 255, 0.5); }
  1192. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  1193. border-left: 0; }
  1194. .button-group.even-7 li button, .button-group.even-7 li .button {
  1195. width: 100%; }
  1196. .button-group.even-8 li {
  1197. display: inline-block;
  1198. margin: 0 -2px;
  1199. width: 12.5%; }
  1200. .button-group.even-8 li > button, .button-group.even-8 li .button {
  1201. border-left: 1px solid;
  1202. border-color: rgba(255, 255, 255, 0.5); }
  1203. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  1204. border-left: 0; }
  1205. .button-group.even-8 li button, .button-group.even-8 li .button {
  1206. width: 100%; }
  1207. .button-group > li {
  1208. display: inline-block;
  1209. margin: 0 -2px; }
  1210. .button-group > li > button, .button-group > li .button {
  1211. border-left: 1px solid;
  1212. border-color: rgba(255, 255, 255, 0.5); }
  1213. .button-group > li:first-child button, .button-group > li:first-child .button {
  1214. border-left: 0; }
  1215. .button-group.stack > li {
  1216. display: block;
  1217. margin: 0;
  1218. float: none; }
  1219. .button-group.stack > li > button, .button-group.stack > li .button {
  1220. border-left: 1px solid;
  1221. border-color: rgba(255, 255, 255, 0.5); }
  1222. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1223. border-left: 0; }
  1224. .button-group.stack > li > button, .button-group.stack > li .button {
  1225. border-color: rgba(255, 255, 255, 0.5);
  1226. border-left-width: 0;
  1227. border-top: 1px solid;
  1228. display: block;
  1229. margin: 0; }
  1230. .button-group.stack > li > button {
  1231. width: 100%; }
  1232. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1233. border-top: 0; }
  1234. .button-group.stack-for-small > li {
  1235. display: inline-block;
  1236. margin: 0 -2px; }
  1237. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1238. border-left: 1px solid;
  1239. border-color: rgba(255, 255, 255, 0.5); }
  1240. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1241. border-left: 0; }
  1242. @media only screen and (max-width: 40em) {
  1243. .button-group.stack-for-small > li {
  1244. display: block;
  1245. margin: 0;
  1246. width: 100%; }
  1247. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1248. border-left: 1px solid;
  1249. border-color: rgba(255, 255, 255, 0.5); }
  1250. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1251. border-left: 0; }
  1252. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1253. border-color: rgba(255, 255, 255, 0.5);
  1254. border-left-width: 0;
  1255. border-top: 1px solid;
  1256. display: block;
  1257. margin: 0; }
  1258. .button-group.stack-for-small > li > button {
  1259. width: 100%; }
  1260. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1261. border-top: 0; } }
  1262. .button-group.radius > * {
  1263. display: inline-block;
  1264. margin: 0 -2px; }
  1265. .button-group.radius > * > button, .button-group.radius > * .button {
  1266. border-left: 1px solid;
  1267. border-color: rgba(255, 255, 255, 0.5); }
  1268. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  1269. border-left: 0; }
  1270. .button-group.radius > *,
  1271. .button-group.radius > * > a,
  1272. .button-group.radius > * > button,
  1273. .button-group.radius > * > .button {
  1274. border-radius: 0; }
  1275. .button-group.radius > *:first-child,
  1276. .button-group.radius > *:first-child > a,
  1277. .button-group.radius > *:first-child > button,
  1278. .button-group.radius > *:first-child > .button {
  1279. -webkit-border-bottom-left-radius: 3px;
  1280. -webkit-border-top-left-radius: 3px;
  1281. border-bottom-left-radius: 3px;
  1282. border-top-left-radius: 3px; }
  1283. .button-group.radius > *:last-child,
  1284. .button-group.radius > *:last-child > a,
  1285. .button-group.radius > *:last-child > button,
  1286. .button-group.radius > *:last-child > .button {
  1287. -webkit-border-bottom-right-radius: 3px;
  1288. -webkit-border-top-right-radius: 3px;
  1289. border-bottom-right-radius: 3px;
  1290. border-top-right-radius: 3px; }
  1291. .button-group.radius.stack > * {
  1292. display: block;
  1293. margin: 0; }
  1294. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1295. border-left: 1px solid;
  1296. border-color: rgba(255, 255, 255, 0.5); }
  1297. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1298. border-left: 0; }
  1299. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1300. border-color: rgba(255, 255, 255, 0.5);
  1301. border-left-width: 0;
  1302. border-top: 1px solid;
  1303. display: block;
  1304. margin: 0; }
  1305. .button-group.radius.stack > * > button {
  1306. width: 100%; }
  1307. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1308. border-top: 0; }
  1309. .button-group.radius.stack > *,
  1310. .button-group.radius.stack > * > a,
  1311. .button-group.radius.stack > * > button,
  1312. .button-group.radius.stack > * > .button {
  1313. border-radius: 0; }
  1314. .button-group.radius.stack > *:first-child,
  1315. .button-group.radius.stack > *:first-child > a,
  1316. .button-group.radius.stack > *:first-child > button,
  1317. .button-group.radius.stack > *:first-child > .button {
  1318. -webkit-top-left-radius: 3px;
  1319. -webkit-top-right-radius: 3px;
  1320. border-top-left-radius: 3px;
  1321. border-top-right-radius: 3px; }
  1322. .button-group.radius.stack > *:last-child,
  1323. .button-group.radius.stack > *:last-child > a,
  1324. .button-group.radius.stack > *:last-child > button,
  1325. .button-group.radius.stack > *:last-child > .button {
  1326. -webkit-bottom-left-radius: 3px;
  1327. -webkit-bottom-right-radius: 3px;
  1328. border-bottom-left-radius: 3px;
  1329. border-bottom-right-radius: 3px; }
  1330. @media only screen and (min-width: 40.0625em) {
  1331. .button-group.radius.stack-for-small > * {
  1332. display: inline-block;
  1333. margin: 0 -2px; }
  1334. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1335. border-left: 1px solid;
  1336. border-color: rgba(255, 255, 255, 0.5); }
  1337. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1338. border-left: 0; }
  1339. .button-group.radius.stack-for-small > *,
  1340. .button-group.radius.stack-for-small > * > a,
  1341. .button-group.radius.stack-for-small > * > button,
  1342. .button-group.radius.stack-for-small > * > .button {
  1343. border-radius: 0; }
  1344. .button-group.radius.stack-for-small > *:first-child,
  1345. .button-group.radius.stack-for-small > *:first-child > a,
  1346. .button-group.radius.stack-for-small > *:first-child > button,
  1347. .button-group.radius.stack-for-small > *:first-child > .button {
  1348. -webkit-border-bottom-left-radius: 3px;
  1349. -webkit-border-top-left-radius: 3px;
  1350. border-bottom-left-radius: 3px;
  1351. border-top-left-radius: 3px; }
  1352. .button-group.radius.stack-for-small > *:last-child,
  1353. .button-group.radius.stack-for-small > *:last-child > a,
  1354. .button-group.radius.stack-for-small > *:last-child > button,
  1355. .button-group.radius.stack-for-small > *:last-child > .button {
  1356. -webkit-border-bottom-right-radius: 3px;
  1357. -webkit-border-top-right-radius: 3px;
  1358. border-bottom-right-radius: 3px;
  1359. border-top-right-radius: 3px; } }
  1360. @media only screen and (max-width: 40em) {
  1361. .button-group.radius.stack-for-small > * {
  1362. display: block;
  1363. margin: 0; }
  1364. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1365. border-left: 1px solid;
  1366. border-color: rgba(255, 255, 255, 0.5); }
  1367. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1368. border-left: 0; }
  1369. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1370. border-color: rgba(255, 255, 255, 0.5);
  1371. border-left-width: 0;
  1372. border-top: 1px solid;
  1373. display: block;
  1374. margin: 0; }
  1375. .button-group.radius.stack-for-small > * > button {
  1376. width: 100%; }
  1377. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1378. border-top: 0; }
  1379. .button-group.radius.stack-for-small > *,
  1380. .button-group.radius.stack-for-small > * > a,
  1381. .button-group.radius.stack-for-small > * > button,
  1382. .button-group.radius.stack-for-small > * > .button {
  1383. border-radius: 0; }
  1384. .button-group.radius.stack-for-small > *:first-child,
  1385. .button-group.radius.stack-for-small > *:first-child > a,
  1386. .button-group.radius.stack-for-small > *:first-child > button,
  1387. .button-group.radius.stack-for-small > *:first-child > .button {
  1388. -webkit-top-left-radius: 3px;
  1389. -webkit-top-right-radius: 3px;
  1390. border-top-left-radius: 3px;
  1391. border-top-right-radius: 3px; }
  1392. .button-group.radius.stack-for-small > *:last-child,
  1393. .button-group.radius.stack-for-small > *:last-child > a,
  1394. .button-group.radius.stack-for-small > *:last-child > button,
  1395. .button-group.radius.stack-for-small > *:last-child > .button {
  1396. -webkit-bottom-left-radius: 3px;
  1397. -webkit-bottom-right-radius: 3px;
  1398. border-bottom-left-radius: 3px;
  1399. border-bottom-right-radius: 3px; } }
  1400. .button-group.round > * {
  1401. display: inline-block;
  1402. margin: 0 -2px; }
  1403. .button-group.round > * > button, .button-group.round > * .button {
  1404. border-left: 1px solid;
  1405. border-color: rgba(255, 255, 255, 0.5); }
  1406. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  1407. border-left: 0; }
  1408. .button-group.round > *,
  1409. .button-group.round > * > a,
  1410. .button-group.round > * > button,
  1411. .button-group.round > * > .button {
  1412. border-radius: 0; }
  1413. .button-group.round > *:first-child,
  1414. .button-group.round > *:first-child > a,
  1415. .button-group.round > *:first-child > button,
  1416. .button-group.round > *:first-child > .button {
  1417. -webkit-border-bottom-left-radius: 1000px;
  1418. -webkit-border-top-left-radius: 1000px;
  1419. border-bottom-left-radius: 1000px;
  1420. border-top-left-radius: 1000px; }
  1421. .button-group.round > *:last-child,
  1422. .button-group.round > *:last-child > a,
  1423. .button-group.round > *:last-child > button,
  1424. .button-group.round > *:last-child > .button {
  1425. -webkit-border-bottom-right-radius: 1000px;
  1426. -webkit-border-top-right-radius: 1000px;
  1427. border-bottom-right-radius: 1000px;
  1428. border-top-right-radius: 1000px; }
  1429. .button-group.round.stack > * {
  1430. display: block;
  1431. margin: 0; }
  1432. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1433. border-left: 1px solid;
  1434. border-color: rgba(255, 255, 255, 0.5); }
  1435. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1436. border-left: 0; }
  1437. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1438. border-color: rgba(255, 255, 255, 0.5);
  1439. border-left-width: 0;
  1440. border-top: 1px solid;
  1441. display: block;
  1442. margin: 0; }
  1443. .button-group.round.stack > * > button {
  1444. width: 100%; }
  1445. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1446. border-top: 0; }
  1447. .button-group.round.stack > *,
  1448. .button-group.round.stack > * > a,
  1449. .button-group.round.stack > * > button,
  1450. .button-group.round.stack > * > .button {
  1451. border-radius: 0; }
  1452. .button-group.round.stack > *:first-child,
  1453. .button-group.round.stack > *:first-child > a,
  1454. .button-group.round.stack > *:first-child > button,
  1455. .button-group.round.stack > *:first-child > .button {
  1456. -webkit-top-left-radius: 1rem;
  1457. -webkit-top-right-radius: 1rem;
  1458. border-top-left-radius: 1rem;
  1459. border-top-right-radius: 1rem; }
  1460. .button-group.round.stack > *:last-child,
  1461. .button-group.round.stack > *:last-child > a,
  1462. .button-group.round.stack > *:last-child > button,
  1463. .button-group.round.stack > *:last-child > .button {
  1464. -webkit-bottom-left-radius: 1rem;
  1465. -webkit-bottom-right-radius: 1rem;
  1466. border-bottom-left-radius: 1rem;
  1467. border-bottom-right-radius: 1rem; }
  1468. @media only screen and (min-width: 40.0625em) {
  1469. .button-group.round.stack-for-small > * {
  1470. display: inline-block;
  1471. margin: 0 -2px; }
  1472. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1473. border-left: 1px solid;
  1474. border-color: rgba(255, 255, 255, 0.5); }
  1475. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1476. border-left: 0; }
  1477. .button-group.round.stack-for-small > *,
  1478. .button-group.round.stack-for-small > * > a,
  1479. .button-group.round.stack-for-small > * > button,
  1480. .button-group.round.stack-for-small > * > .button {
  1481. border-radius: 0; }
  1482. .button-group.round.stack-for-small > *:first-child,
  1483. .button-group.round.stack-for-small > *:first-child > a,
  1484. .button-group.round.stack-for-small > *:first-child > button,
  1485. .button-group.round.stack-for-small > *:first-child > .button {
  1486. -webkit-border-bottom-left-radius: 1000px;
  1487. -webkit-border-top-left-radius: 1000px;
  1488. border-bottom-left-radius: 1000px;
  1489. border-top-left-radius: 1000px; }
  1490. .button-group.round.stack-for-small > *:last-child,
  1491. .button-group.round.stack-for-small > *:last-child > a,
  1492. .button-group.round.stack-for-small > *:last-child > button,
  1493. .button-group.round.stack-for-small > *:last-child > .button {
  1494. -webkit-border-bottom-right-radius: 1000px;
  1495. -webkit-border-top-right-radius: 1000px;
  1496. border-bottom-right-radius: 1000px;
  1497. border-top-right-radius: 1000px; } }
  1498. @media only screen and (max-width: 40em) {
  1499. .button-group.round.stack-for-small > * {
  1500. display: block;
  1501. margin: 0; }
  1502. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1503. border-left: 1px solid;
  1504. border-color: rgba(255, 255, 255, 0.5); }
  1505. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1506. border-left: 0; }
  1507. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1508. border-color: rgba(255, 255, 255, 0.5);
  1509. border-left-width: 0;
  1510. border-top: 1px solid;
  1511. display: block;
  1512. margin: 0; }
  1513. .button-group.round.stack-for-small > * > button {
  1514. width: 100%; }
  1515. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1516. border-top: 0; }
  1517. .button-group.round.stack-for-small > *,
  1518. .button-group.round.stack-for-small > * > a,
  1519. .button-group.round.stack-for-small > * > button,
  1520. .button-group.round.stack-for-small > * > .button {
  1521. border-radius: 0; }
  1522. .button-group.round.stack-for-small > *:first-child,
  1523. .button-group.round.stack-for-small > *:first-child > a,
  1524. .button-group.round.stack-for-small > *:first-child > button,
  1525. .button-group.round.stack-for-small > *:first-child > .button {
  1526. -webkit-top-left-radius: 1rem;
  1527. -webkit-top-right-radius: 1rem;
  1528. border-top-left-radius: 1rem;
  1529. border-top-right-radius: 1rem; }
  1530. .button-group.round.stack-for-small > *:last-child,
  1531. .button-group.round.stack-for-small > *:last-child > a,
  1532. .button-group.round.stack-for-small > *:last-child > button,
  1533. .button-group.round.stack-for-small > *:last-child > .button {
  1534. -webkit-bottom-left-radius: 1rem;
  1535. -webkit-bottom-right-radius: 1rem;
  1536. border-bottom-left-radius: 1rem;
  1537. border-bottom-right-radius: 1rem; } }
  1538. .button-bar:before, .button-bar:after {
  1539. content: " ";
  1540. display: table; }
  1541. .button-bar:after {
  1542. clear: both; }
  1543. .button-bar .button-group {
  1544. float: left;
  1545. margin-right: 0.625rem; }
  1546. .button-bar .button-group div {
  1547. overflow: hidden; }
  1548. .row {
  1549. margin: 0 auto;
  1550. max-width: 62.5rem;
  1551. width: 100%; }
  1552. .row:before, .row:after {
  1553. content: " ";
  1554. display: table; }
  1555. .row:after {
  1556. clear: both; }
  1557. .row.collapse > .column,
  1558. .row.collapse > .columns {
  1559. padding-left: 0;
  1560. padding-right: 0; }
  1561. .row.collapse .row {
  1562. margin-left: 0;
  1563. margin-right: 0; }
  1564. .row .row {
  1565. margin: 0 -0.9375rem;
  1566. max-width: none;
  1567. width: auto; }
  1568. .row .row:before, .row .row:after {
  1569. content: " ";
  1570. display: table; }
  1571. .row .row:after {
  1572. clear: both; }
  1573. .row .row.collapse {
  1574. margin: 0;
  1575. max-width: none;
  1576. width: auto; }
  1577. .row .row.collapse:before, .row .row.collapse:after {
  1578. content: " ";
  1579. display: table; }
  1580. .row .row.collapse:after {
  1581. clear: both; }
  1582. .column,
  1583. .columns {
  1584. padding-left: 0.9375rem;
  1585. padding-right: 0.9375rem;
  1586. width: 100%;
  1587. float: left; }
  1588. .column + .column:last-child,
  1589. .columns + .column:last-child, .column +
  1590. .columns:last-child,
  1591. .columns +
  1592. .columns:last-child {
  1593. float: right; }
  1594. .column + .column.end,
  1595. .columns + .column.end, .column +
  1596. .columns.end,
  1597. .columns +
  1598. .columns.end {
  1599. float: left; }
  1600. @media only screen {
  1601. .small-push-0 {
  1602. position: relative;
  1603. left: 0;
  1604. right: auto; }
  1605. .small-pull-0 {
  1606. position: relative;
  1607. right: 0;
  1608. left: auto; }
  1609. .small-push-1 {
  1610. position: relative;
  1611. left: 8.33333%;
  1612. right: auto; }
  1613. .small-pull-1 {
  1614. position: relative;
  1615. right: 8.33333%;
  1616. left: auto; }
  1617. .small-push-2 {
  1618. position: relative;
  1619. left: 16.66667%;
  1620. right: auto; }
  1621. .small-pull-2 {
  1622. position: relative;
  1623. right: 16.66667%;
  1624. left: auto; }
  1625. .small-push-3 {
  1626. position: relative;
  1627. left: 25%;
  1628. right: auto; }
  1629. .small-pull-3 {
  1630. position: relative;
  1631. right: 25%;
  1632. left: auto; }
  1633. .small-push-4 {
  1634. position: relative;
  1635. left: 33.33333%;
  1636. right: auto; }
  1637. .small-pull-4 {
  1638. position: relative;
  1639. right: 33.33333%;
  1640. left: auto; }
  1641. .small-push-5 {
  1642. position: relative;
  1643. left: 41.66667%;
  1644. right: auto; }
  1645. .small-pull-5 {
  1646. position: relative;
  1647. right: 41.66667%;
  1648. left: auto; }
  1649. .small-push-6 {
  1650. position: relative;
  1651. left: 50%;
  1652. right: auto; }
  1653. .small-pull-6 {
  1654. position: relative;
  1655. right: 50%;
  1656. left: auto; }
  1657. .small-push-7 {
  1658. position: relative;
  1659. left: 58.33333%;
  1660. right: auto; }
  1661. .small-pull-7 {
  1662. position: relative;
  1663. right: 58.33333%;
  1664. left: auto; }
  1665. .small-push-8 {
  1666. position: relative;
  1667. left: 66.66667%;
  1668. right: auto; }
  1669. .small-pull-8 {
  1670. position: relative;
  1671. right: 66.66667%;
  1672. left: auto; }
  1673. .small-push-9 {
  1674. position: relative;
  1675. left: 75%;
  1676. right: auto; }
  1677. .small-pull-9 {
  1678. position: relative;
  1679. right: 75%;
  1680. left: auto; }
  1681. .small-push-10 {
  1682. position: relative;
  1683. left: 83.33333%;
  1684. right: auto; }
  1685. .small-pull-10 {
  1686. position: relative;
  1687. right: 83.33333%;
  1688. left: auto; }
  1689. .small-push-11 {
  1690. position: relative;
  1691. left: 91.66667%;
  1692. right: auto; }
  1693. .small-pull-11 {
  1694. position: relative;
  1695. right: 91.66667%;
  1696. left: auto; }
  1697. .column,
  1698. .columns {
  1699. position: relative;
  1700. padding-left: 0.9375rem;
  1701. padding-right: 0.9375rem;
  1702. float: left; }
  1703. .small-1 {
  1704. width: 8.33333%; }
  1705. .small-2 {
  1706. width: 16.66667%; }
  1707. .small-3 {
  1708. width: 25%; }
  1709. .small-4 {
  1710. width: 33.33333%; }
  1711. .small-5 {
  1712. width: 41.66667%; }
  1713. .small-6 {
  1714. width: 50%; }
  1715. .small-7 {
  1716. width: 58.33333%; }
  1717. .small-8 {
  1718. width: 66.66667%; }
  1719. .small-9 {
  1720. width: 75%; }
  1721. .small-10 {
  1722. width: 83.33333%; }
  1723. .small-11 {
  1724. width: 91.66667%; }
  1725. .small-12 {
  1726. width: 100%; }
  1727. .small-offset-0 {
  1728. margin-left: 0 !important; }
  1729. .small-offset-1 {
  1730. margin-left: 8.33333% !important; }
  1731. .small-offset-2 {
  1732. margin-left: 16.66667% !important; }
  1733. .small-offset-3 {
  1734. margin-left: 25% !important; }
  1735. .small-offset-4 {
  1736. margin-left: 33.33333% !important; }
  1737. .small-offset-5 {
  1738. margin-left: 41.66667% !important; }
  1739. .small-offset-6 {
  1740. margin-left: 50% !important; }
  1741. .small-offset-7 {
  1742. margin-left: 58.33333% !important; }
  1743. .small-offset-8 {
  1744. margin-left: 66.66667% !important; }
  1745. .small-offset-9 {
  1746. margin-left: 75% !important; }
  1747. .small-offset-10 {
  1748. margin-left: 83.33333% !important; }
  1749. .small-offset-11 {
  1750. margin-left: 91.66667% !important; }
  1751. .small-reset-order {
  1752. float: left;
  1753. left: auto;
  1754. margin-left: 0;
  1755. margin-right: 0;
  1756. right: auto; }
  1757. .column.small-centered,
  1758. .columns.small-centered {
  1759. margin-left: auto;
  1760. margin-right: auto;
  1761. float: none; }
  1762. .column.small-uncentered,
  1763. .columns.small-uncentered {
  1764. float: left;
  1765. margin-left: 0;
  1766. margin-right: 0; }
  1767. .column.small-centered:last-child,
  1768. .columns.small-centered:last-child {
  1769. float: none; }
  1770. .column.small-uncentered:last-child,
  1771. .columns.small-uncentered:last-child {
  1772. float: left; }
  1773. .column.small-uncentered.opposite,
  1774. .columns.small-uncentered.opposite {
  1775. float: right; }
  1776. .row.small-collapse > .column,
  1777. .row.small-collapse > .columns {
  1778. padding-left: 0;
  1779. padding-right: 0; }
  1780. .row.small-collapse .row {
  1781. margin-left: 0;
  1782. margin-right: 0; }
  1783. .row.small-uncollapse > .column,
  1784. .row.small-uncollapse > .columns {
  1785. padding-left: 0.9375rem;
  1786. padding-right: 0.9375rem;
  1787. float: left; } }
  1788. @media only screen and (min-width: 40.0625em) {
  1789. .medium-push-0 {
  1790. position: relative;
  1791. left: 0;
  1792. right: auto; }
  1793. .medium-pull-0 {
  1794. position: relative;
  1795. right: 0;
  1796. left: auto; }
  1797. .medium-push-1 {
  1798. position: relative;
  1799. left: 8.33333%;
  1800. right: auto; }
  1801. .medium-pull-1 {
  1802. position: relative;
  1803. right: 8.33333%;
  1804. left: auto; }
  1805. .medium-push-2 {
  1806. position: relative;
  1807. left: 16.66667%;
  1808. right: auto; }
  1809. .medium-pull-2 {
  1810. position: relative;
  1811. right: 16.66667%;
  1812. left: auto; }
  1813. .medium-push-3 {
  1814. position: relative;
  1815. left: 25%;
  1816. right: auto; }
  1817. .medium-pull-3 {
  1818. position: relative;
  1819. right: 25%;
  1820. left: auto; }
  1821. .medium-push-4 {
  1822. position: relative;
  1823. left: 33.33333%;
  1824. right: auto; }
  1825. .medium-pull-4 {
  1826. position: relative;
  1827. right: 33.33333%;
  1828. left: auto; }
  1829. .medium-push-5 {
  1830. position: relative;
  1831. left: 41.66667%;
  1832. right: auto; }
  1833. .medium-pull-5 {
  1834. position: relative;
  1835. right: 41.66667%;
  1836. left: auto; }
  1837. .medium-push-6 {
  1838. position: relative;
  1839. left: 50%;
  1840. right: auto; }
  1841. .medium-pull-6 {
  1842. position: relative;
  1843. right: 50%;
  1844. left: auto; }
  1845. .medium-push-7 {
  1846. position: relative;
  1847. left: 58.33333%;
  1848. right: auto; }
  1849. .medium-pull-7 {
  1850. position: relative;
  1851. right: 58.33333%;
  1852. left: auto; }
  1853. .medium-push-8 {
  1854. position: relative;
  1855. left: 66.66667%;
  1856. right: auto; }
  1857. .medium-pull-8 {
  1858. position: relative;
  1859. right: 66.66667%;
  1860. left: auto; }
  1861. .medium-push-9 {
  1862. position: relative;
  1863. left: 75%;
  1864. right: auto; }
  1865. .medium-pull-9 {
  1866. position: relative;
  1867. right: 75%;
  1868. left: auto; }
  1869. .medium-push-10 {
  1870. position: relative;
  1871. left: 83.33333%;
  1872. right: auto; }
  1873. .medium-pull-10 {
  1874. position: relative;
  1875. right: 83.33333%;
  1876. left: auto; }
  1877. .medium-push-11 {
  1878. position: relative;
  1879. left: 91.66667%;
  1880. right: auto; }
  1881. .medium-pull-11 {
  1882. position: relative;
  1883. right: 91.66667%;
  1884. left: auto; }
  1885. .column,
  1886. .columns {
  1887. position: relative;
  1888. padding-left: 0.9375rem;
  1889. padding-right: 0.9375rem;
  1890. float: left; }
  1891. .medium-1 {
  1892. width: 8.33333%; }
  1893. .medium-2 {
  1894. width: 16.66667%; }
  1895. .medium-3 {
  1896. width: 25%; }
  1897. .medium-4 {
  1898. width: 33.33333%; }
  1899. .medium-5 {
  1900. width: 41.66667%; }
  1901. .medium-6 {
  1902. width: 50%; }
  1903. .medium-7 {
  1904. width: 58.33333%; }
  1905. .medium-8 {
  1906. width: 66.66667%; }
  1907. .medium-9 {
  1908. width: 75%; }
  1909. .medium-10 {
  1910. width: 83.33333%; }
  1911. .medium-11 {
  1912. width: 91.66667%; }
  1913. .medium-12 {
  1914. width: 100%; }
  1915. .medium-offset-0 {
  1916. margin-left: 0 !important; }
  1917. .medium-offset-1 {
  1918. margin-left: 8.33333% !important; }
  1919. .medium-offset-2 {
  1920. margin-left: 16.66667% !important; }
  1921. .medium-offset-3 {
  1922. margin-left: 25% !important; }
  1923. .medium-offset-4 {
  1924. margin-left: 33.33333% !important; }
  1925. .medium-offset-5 {
  1926. margin-left: 41.66667% !important; }
  1927. .medium-offset-6 {
  1928. margin-left: 50% !important; }
  1929. .medium-offset-7 {
  1930. margin-left: 58.33333% !important; }
  1931. .medium-offset-8 {
  1932. margin-left: 66.66667% !important; }
  1933. .medium-offset-9 {
  1934. margin-left: 75% !important; }
  1935. .medium-offset-10 {
  1936. margin-left: 83.33333% !important; }
  1937. .medium-offset-11 {
  1938. margin-left: 91.66667% !important; }
  1939. .medium-reset-order {
  1940. float: left;
  1941. left: auto;
  1942. margin-left: 0;
  1943. margin-right: 0;
  1944. right: auto; }
  1945. .column.medium-centered,
  1946. .columns.medium-centered {
  1947. margin-left: auto;
  1948. margin-right: auto;
  1949. float: none; }
  1950. .column.medium-uncentered,
  1951. .columns.medium-uncentered {
  1952. float: left;
  1953. margin-left: 0;
  1954. margin-right: 0; }
  1955. .column.medium-centered:last-child,
  1956. .columns.medium-centered:last-child {
  1957. float: none; }
  1958. .column.medium-uncentered:last-child,
  1959. .columns.medium-uncentered:last-child {
  1960. float: left; }
  1961. .column.medium-uncentered.opposite,
  1962. .columns.medium-uncentered.opposite {
  1963. float: right; }
  1964. .row.medium-collapse > .column,
  1965. .row.medium-collapse > .columns {
  1966. padding-left: 0;
  1967. padding-right: 0; }
  1968. .row.medium-collapse .row {
  1969. margin-left: 0;
  1970. margin-right: 0; }
  1971. .row.medium-uncollapse > .column,
  1972. .row.medium-uncollapse > .columns {
  1973. padding-left: 0.9375rem;
  1974. padding-right: 0.9375rem;
  1975. float: left; }
  1976. .push-0 {
  1977. position: relative;
  1978. left: 0;
  1979. right: auto; }
  1980. .pull-0 {
  1981. position: relative;
  1982. right: 0;
  1983. left: auto; }
  1984. .push-1 {
  1985. position: relative;
  1986. left: 8.33333%;
  1987. right: auto; }
  1988. .pull-1 {
  1989. position: relative;
  1990. right: 8.33333%;
  1991. left: auto; }
  1992. .push-2 {
  1993. position: relative;
  1994. left: 16.66667%;
  1995. right: auto; }
  1996. .pull-2 {
  1997. position: relative;
  1998. right: 16.66667%;
  1999. left: auto; }
  2000. .push-3 {
  2001. position: relative;
  2002. left: 25%;
  2003. right: auto; }
  2004. .pull-3 {
  2005. position: relative;
  2006. right: 25%;
  2007. left: auto; }
  2008. .push-4 {
  2009. position: relative;
  2010. left: 33.33333%;
  2011. right: auto; }
  2012. .pull-4 {
  2013. position: relative;
  2014. right: 33.33333%;
  2015. left: auto; }
  2016. .push-5 {
  2017. position: relative;
  2018. left: 41.66667%;
  2019. right: auto; }
  2020. .pull-5 {
  2021. position: relative;
  2022. right: 41.66667%;
  2023. left: auto; }
  2024. .push-6 {
  2025. position: relative;
  2026. left: 50%;
  2027. right: auto; }
  2028. .pull-6 {
  2029. position: relative;
  2030. right: 50%;
  2031. left: auto; }
  2032. .push-7 {
  2033. position: relative;
  2034. left: 58.33333%;
  2035. right: auto; }
  2036. .pull-7 {
  2037. position: relative;
  2038. right: 58.33333%;
  2039. left: auto; }
  2040. .push-8 {
  2041. position: relative;
  2042. left: 66.66667%;
  2043. right: auto; }
  2044. .pull-8 {
  2045. position: relative;
  2046. right: 66.66667%;
  2047. left: auto; }
  2048. .push-9 {
  2049. position: relative;
  2050. left: 75%;
  2051. right: auto; }
  2052. .pull-9 {
  2053. position: relative;
  2054. right: 75%;
  2055. left: auto; }
  2056. .push-10 {
  2057. position: relative;
  2058. left: 83.33333%;
  2059. right: auto; }
  2060. .pull-10 {
  2061. position: relative;
  2062. right: 83.33333%;
  2063. left: auto; }
  2064. .push-11 {
  2065. position: relative;
  2066. left: 91.66667%;
  2067. right: auto; }
  2068. .pull-11 {
  2069. position: relative;
  2070. right: 91.66667%;
  2071. left: auto; } }
  2072. @media only screen and (min-width: 64.0625em) {
  2073. .large-push-0 {
  2074. position: relative;
  2075. left: 0;
  2076. right: auto; }
  2077. .large-pull-0 {
  2078. position: relative;
  2079. right: 0;
  2080. left: auto; }
  2081. .large-push-1 {
  2082. position: relative;
  2083. left: 8.33333%;
  2084. right: auto; }
  2085. .large-pull-1 {
  2086. position: relative;
  2087. right: 8.33333%;
  2088. left: auto; }
  2089. .large-push-2 {
  2090. position: relative;
  2091. left: 16.66667%;
  2092. right: auto; }
  2093. .large-pull-2 {
  2094. position: relative;
  2095. right: 16.66667%;
  2096. left: auto; }
  2097. .large-push-3 {
  2098. position: relative;
  2099. left: 25%;
  2100. right: auto; }
  2101. .large-pull-3 {
  2102. position: relative;
  2103. right: 25%;
  2104. left: auto; }
  2105. .large-push-4 {
  2106. position: relative;
  2107. left: 33.33333%;
  2108. right: auto; }
  2109. .large-pull-4 {
  2110. position: relative;
  2111. right: 33.33333%;
  2112. left: auto; }
  2113. .large-push-5 {
  2114. position: relative;
  2115. left: 41.66667%;
  2116. right: auto; }
  2117. .large-pull-5 {
  2118. position: relative;
  2119. right: 41.66667%;
  2120. left: auto; }
  2121. .large-push-6 {
  2122. position: relative;
  2123. left: 50%;
  2124. right: auto; }
  2125. .large-pull-6 {
  2126. position: relative;
  2127. right: 50%;
  2128. left: auto; }
  2129. .large-push-7 {
  2130. position: relative;
  2131. left: 58.33333%;
  2132. right: auto; }
  2133. .large-pull-7 {
  2134. position: relative;
  2135. right: 58.33333%;
  2136. left: auto; }
  2137. .large-push-8 {
  2138. position: relative;
  2139. left: 66.66667%;
  2140. right: auto; }
  2141. .large-pull-8 {
  2142. position: relative;
  2143. right: 66.66667%;
  2144. left: auto; }
  2145. .large-push-9 {
  2146. position: relative;
  2147. left: 75%;
  2148. right: auto; }
  2149. .large-pull-9 {
  2150. position: relative;
  2151. right: 75%;
  2152. left: auto; }
  2153. .large-push-10 {
  2154. position: relative;
  2155. left: 83.33333%;
  2156. right: auto; }
  2157. .large-pull-10 {
  2158. position: relative;
  2159. right: 83.33333%;
  2160. left: auto; }
  2161. .large-push-11 {
  2162. position: relative;
  2163. left: 91.66667%;
  2164. right: auto; }
  2165. .large-pull-11 {
  2166. position: relative;
  2167. right: 91.66667%;
  2168. left: auto; }
  2169. .column,
  2170. .columns {
  2171. position: relative;
  2172. padding-left: 0.9375rem;
  2173. padding-right: 0.9375rem;
  2174. float: left; }
  2175. .large-1 {
  2176. width: 8.33333%; }
  2177. .large-2 {
  2178. width: 16.66667%; }
  2179. .large-3 {
  2180. width: 25%; }
  2181. .large-4 {
  2182. width: 33.33333%; }
  2183. .large-5 {
  2184. width: 41.66667%; }
  2185. .large-6 {
  2186. width: 50%; }
  2187. .large-7 {
  2188. width: 58.33333%; }
  2189. .large-8 {
  2190. width: 66.66667%; }
  2191. .large-9 {
  2192. width: 75%; }
  2193. .large-10 {
  2194. width: 83.33333%; }
  2195. .large-11 {
  2196. width: 91.66667%; }
  2197. .large-12 {
  2198. width: 100%; }
  2199. .large-offset-0 {
  2200. margin-left: 0 !important; }
  2201. .large-offset-1 {
  2202. margin-left: 8.33333% !important; }
  2203. .large-offset-2 {
  2204. margin-left: 16.66667% !important; }
  2205. .large-offset-3 {
  2206. margin-left: 25% !important; }
  2207. .large-offset-4 {
  2208. margin-left: 33.33333% !important; }
  2209. .large-offset-5 {
  2210. margin-left: 41.66667% !important; }
  2211. .large-offset-6 {
  2212. margin-left: 50% !important; }
  2213. .large-offset-7 {
  2214. margin-left: 58.33333% !important; }
  2215. .large-offset-8 {
  2216. margin-left: 66.66667% !important; }
  2217. .large-offset-9 {
  2218. margin-left: 75% !important; }
  2219. .large-offset-10 {
  2220. margin-left: 83.33333% !important; }
  2221. .large-offset-11 {
  2222. margin-left: 91.66667% !important; }
  2223. .large-reset-order {
  2224. float: left;
  2225. left: auto;
  2226. margin-left: 0;
  2227. margin-right: 0;
  2228. right: auto; }
  2229. .column.large-centered,
  2230. .columns.large-centered {
  2231. margin-left: auto;
  2232. margin-right: auto;
  2233. float: none; }
  2234. .column.large-uncentered,
  2235. .columns.large-uncentered {
  2236. float: left;
  2237. margin-left: 0;
  2238. margin-right: 0; }
  2239. .column.large-centered:last-child,
  2240. .columns.large-centered:last-child {
  2241. float: none; }
  2242. .column.large-uncentered:last-child,
  2243. .columns.large-uncentered:last-child {
  2244. float: left; }
  2245. .column.large-uncentered.opposite,
  2246. .columns.large-uncentered.opposite {
  2247. float: right; }
  2248. .row.large-collapse > .column,
  2249. .row.large-collapse > .columns {
  2250. padding-left: 0;
  2251. padding-right: 0; }
  2252. .row.large-collapse .row {
  2253. margin-left: 0;
  2254. margin-right: 0; }
  2255. .row.large-uncollapse > .column,
  2256. .row.large-uncollapse > .columns {
  2257. padding-left: 0.9375rem;
  2258. padding-right: 0.9375rem;
  2259. float: left; }
  2260. .push-0 {
  2261. position: relative;
  2262. left: 0;
  2263. right: auto; }
  2264. .pull-0 {
  2265. position: relative;
  2266. right: 0;
  2267. left: auto; }
  2268. .push-1 {
  2269. position: relative;
  2270. left: 8.33333%;
  2271. right: auto; }
  2272. .pull-1 {
  2273. position: relative;
  2274. right: 8.33333%;
  2275. left: auto; }
  2276. .push-2 {
  2277. position: relative;
  2278. left: 16.66667%;
  2279. right: auto; }
  2280. .pull-2 {
  2281. position: relative;
  2282. right: 16.66667%;
  2283. left: auto; }
  2284. .push-3 {
  2285. position: relative;
  2286. left: 25%;
  2287. right: auto; }
  2288. .pull-3 {
  2289. position: relative;
  2290. right: 25%;
  2291. left: auto; }
  2292. .push-4 {
  2293. position: relative;
  2294. left: 33.33333%;
  2295. right: auto; }
  2296. .pull-4 {
  2297. position: relative;
  2298. right: 33.33333%;
  2299. left: auto; }
  2300. .push-5 {
  2301. position: relative;
  2302. left: 41.66667%;
  2303. right: auto; }
  2304. .pull-5 {
  2305. position: relative;
  2306. right: 41.66667%;
  2307. left: auto; }
  2308. .push-6 {
  2309. position: relative;
  2310. left: 50%;
  2311. right: auto; }
  2312. .pull-6 {
  2313. position: relative;
  2314. right: 50%;
  2315. left: auto; }
  2316. .push-7 {
  2317. position: relative;
  2318. left: 58.33333%;
  2319. right: auto; }
  2320. .pull-7 {
  2321. position: relative;
  2322. right: 58.33333%;
  2323. left: auto; }
  2324. .push-8 {
  2325. position: relative;
  2326. left: 66.66667%;
  2327. right: auto; }
  2328. .pull-8 {
  2329. position: relative;
  2330. right: 66.66667%;
  2331. left: auto; }
  2332. .push-9 {
  2333. position: relative;
  2334. left: 75%;
  2335. right: auto; }
  2336. .pull-9 {
  2337. position: relative;
  2338. right: 75%;
  2339. left: auto; }
  2340. .push-10 {
  2341. position: relative;
  2342. left: 83.33333%;
  2343. right: auto; }
  2344. .pull-10 {
  2345. position: relative;
  2346. right: 83.33333%;
  2347. left: auto; }
  2348. .push-11 {
  2349. position: relative;
  2350. left: 91.66667%;
  2351. right: auto; }
  2352. .pull-11 {
  2353. position: relative;
  2354. right: 91.66667%;
  2355. left: auto; } }
  2356. /*
  2357. * www.g-u-i.net
  2358. */
  2359. /*
  2360. __
  2361. _________ / /___ __________
  2362. / ___/ __ \/ / __ \/ ___/ ___/
  2363. / /__/ /_/ / / /_/ / / (__ )
  2364. \___/\____/_/\____/_/ /____/
  2365. */
  2366. body {
  2367. font-size: 16px;
  2368. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2369. font-weight: 500;
  2370. font-style: normal;
  2371. line-height: 1.3; }
  2372. a {
  2373. color: #007BC2;
  2374. text-decoration: none; }
  2375. h1 {
  2376. font-size: 1.6em; }
  2377. h2 {
  2378. font-size: 1.5em; }
  2379. h3 {
  2380. font-size: 1.4em; }
  2381. h4 {
  2382. font-size: 1.3em; }
  2383. h5 {
  2384. font-size: 1.2em; }
  2385. h6 {
  2386. font-size: 1.1em; }
  2387. input, button, select, textarea {
  2388. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2389. font-weight: 500;
  2390. font-style: normal; }
  2391. #footer #footer-bottom {
  2392. text-align: center; }
  2393. #footer #footer-bottom .block {
  2394. font-size: 8px; }
  2395. /** RESPONSIVE break points */
  2396. /*
  2397. $small-breakpoint: em-calc(480) !default;
  2398. $medium-breakpoint: em-calc(768) !default;
  2399. $large-breakpoint: em-calc(980) !default;
  2400. $xlarge-breakpoint: em-calc(1200) !default;
  2401. $small-range: (0, $small-breakpoint) !default; // 0, 480px
  2402. $medium-range: ($small-breakpoint + em-calc(1), $medium-breakpoint) !default; 481px, 768px //
  2403. $large-range: ($medium-breakpoint + em-calc(1), $large-breakpoint) !default; // 769px, 980px
  2404. $xlarge-range: ($large-breakpoint + em-calc(1), $xlarge-breakpoint) !default; // 981px, 1200px
  2405. $xxlarge-range: ($xlarge-breakpoint + em-calc(1), em-calc(99999999)) !default; // 1201px, ...
  2406. // Media Queries
  2407. $screen: "only screen" !default;
  2408. $landscape: "only screen and (orientation: landscape)" !default;
  2409. $portrait: "only screen and (orientation: portrait)" !default;
  2410. $small-up: $screen !default;
  2411. $small-only: "only screen and (max-width: 40em)" !default;
  2412. $medium-up: "only screen and (min-width:40.0625em)" !default;
  2413. $medium-only: "only screen and (min-width:40.0625em) and (max-width:64em)" !default;
  2414. $large-up: "only screen and (min-width:64.0625em)" !default;
  2415. $large-only: "only screen and (min-width:64.0625em) and (max-width:90em)" !default;
  2416. $xlarge-up: "only screen and (min-width:90.0625em)" !default;
  2417. $xlarge-only: "only screen and (min-width:90.0625em) and (max-width:120em)" !default;
  2418. $xxlarge-up: "only screen and (min-width:120.0625em)" !default;
  2419. $xxlarge-only: "only screen and (min-width:120.0625em) and (max-width:6249999.9375em)" !default;
  2420. $retina: (
  2421. "only screen and (-webkit-min-device-pixel-ratio: 2)",
  2422. "only screen and (min--moz-device-pixel-ratio: 2)",
  2423. "only screen and (-o-min-device-pixel-ratio: 2/1)",
  2424. "only screen and (min-device-pixel-ratio: 2)",
  2425. "only screen and (min-resolution: 192dpi)",
  2426. "only screen and (min-resolution: 2dppx)"
  2427. );
  2428. */
  2429. * {
  2430. box-sizing: content-box; }
  2431. *:before, *:after {
  2432. box-sizing: content-box; }
  2433. body {
  2434. overflow-y: scroll;
  2435. top: 0;
  2436. background-color: #f7f4ed; }
  2437. h1, h2, h3, h4, h5, h6 {
  2438. font-family: inherit; }
  2439. h1 {
  2440. font-weight: bold; }
  2441. figure {
  2442. margin: 0; }
  2443. input[type="checkbox"] + label {
  2444. margin: 0; }
  2445. p {
  2446. font-family: inherit;
  2447. font-weight: inherit;
  2448. font-size: inherit;
  2449. line-height: inherit;
  2450. margin-bottom: inherit; }
  2451. a {
  2452. font-size: inherit; }
  2453. .column, .columns {
  2454. padding: inherit;
  2455. float: inherit; }
  2456. /** NIVEAU 0 */
  2457. #root {
  2458. min-width: 320px; }
  2459. .ie8 #root {
  2460. min-width: 1024px; }
  2461. /** NIVEAU 1 */
  2462. #container {
  2463. margin: 0 auto;
  2464. position: relative;
  2465. transition: padding-top 0.5s ease-out, 1s, ease-out; }
  2466. /** NIVEAU 2 */
  2467. #header {
  2468. background-color: #fff;
  2469. z-index: 1000;
  2470. width: 96%;
  2471. padding-left: 2%;
  2472. padding-right: 2%; }
  2473. html.no-touch #header {
  2474. position: fixed;
  2475. top: 0;
  2476. margin: 0 auto;
  2477. min-width: 310.4px; }
  2478. .admin-menu #header {
  2479. margin-top: 35px; }
  2480. #utilities {
  2481. z-index: 999;
  2482. width: 96%;
  2483. padding-left: 2%;
  2484. padding-right: 2%; }
  2485. html.no-touch #utilities {
  2486. position: fixed;
  2487. top: 0;
  2488. margin: 0 auto;
  2489. min-width: 310.4px;
  2490. margin-top: 60px; }
  2491. html.no-touch .admin-menu #utilities {
  2492. margin-top: 85px; }
  2493. @media only screen and (max-width: 40em) {
  2494. #utilities > .region {
  2495. padding-top: 5px;
  2496. padding-bottom: 5px; } }
  2497. #main {
  2498. width: 96%;
  2499. padding-left: 2%;
  2500. padding-right: 2%;
  2501. overflow-x: hidden; }
  2502. #footer {
  2503. width: 96%;
  2504. padding-left: 2%;
  2505. padding-right: 2%;
  2506. padding-top: 2em; }
  2507. /** NIVEAU 3 */
  2508. /** NIVEAU 4 */
  2509. /** Z-INDEX */
  2510. #block-feedback-form {
  2511. z-index: 1001; }
  2512. #admin-menu {
  2513. z-index: 1002; }
  2514. #admin-toolbar {
  2515. z-index: 1003; }
  2516. /*
  2517. __ __ ___
  2518. / / / /___ ____ ___ ___ _ _|__ / /_/ / __ \/ __ `__ \/ _ \ | | / /_/ /
  2519. / __ / /_/ / / / / / / __/ | |/ / __/
  2520. /_/ /_/\____/_/ /_/ /_/\___/ |___/____/
  2521. */
  2522. body.front:not(.page-actuality) #header > .inner, body.front:not(.page-actuality) #utilities > .inner, body.front:not(.page-actuality) #center, body.front:not(.page-actuality) #footer,
  2523. body.page-whoweare #header > .inner,
  2524. body.page-whoweare #utilities > .inner,
  2525. body.page-whoweare #center,
  2526. body.page-whoweare #footer,
  2527. body.page-node-11187 #header > .inner,
  2528. body.page-node-11187 #utilities > .inner,
  2529. body.page-node-11187 #center,
  2530. body.page-node-11187 #footer,
  2531. body.page-node-11175 #header > .inner,
  2532. body.page-node-11175 #utilities > .inner,
  2533. body.page-node-11175 #center,
  2534. body.page-node-11175 #footer,
  2535. body.page-node-12324 #header > .inner,
  2536. body.page-node-12324 #utilities > .inner,
  2537. body.page-node-12324 #center,
  2538. body.page-node-12324 #footer,
  2539. body.page-user #header > .inner,
  2540. body.page-user #utilities > .inner,
  2541. body.page-user #center,
  2542. body.page-user #footer,
  2543. body.page-node-11186 #header > .inner,
  2544. body.page-node-11186 #utilities > .inner,
  2545. body.page-node-11186 #center,
  2546. body.page-node-11186 #footer,
  2547. body.page-cart #header > .inner,
  2548. body.page-cart #utilities > .inner,
  2549. body.page-cart #center,
  2550. body.page-cart #footer,
  2551. body.node-type-simplenews #header > .inner,
  2552. body.node-type-simplenews #utilities > .inner,
  2553. body.node-type-simplenews #center,
  2554. body.node-type-simplenews #footer,
  2555. body.node-type-publication #header > .inner,
  2556. body.node-type-publication #utilities > .inner,
  2557. body.node-type-publication #center,
  2558. body.node-type-publication #footer {
  2559. margin: 0 auto;
  2560. max-width: 80rem;
  2561. width: 100%; }
  2562. body.front:not(.page-actuality) #header > .inner:before, body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:before, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:before, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:before, body.front:not(.page-actuality) #footer:after,
  2563. body.page-whoweare #header > .inner:before,
  2564. body.page-whoweare #header > .inner:after,
  2565. body.page-whoweare #utilities > .inner:before,
  2566. body.page-whoweare #utilities > .inner:after,
  2567. body.page-whoweare #center:before,
  2568. body.page-whoweare #center:after,
  2569. body.page-whoweare #footer:before,
  2570. body.page-whoweare #footer:after,
  2571. body.page-node-11187 #header > .inner:before,
  2572. body.page-node-11187 #header > .inner:after,
  2573. body.page-node-11187 #utilities > .inner:before,
  2574. body.page-node-11187 #utilities > .inner:after,
  2575. body.page-node-11187 #center:before,
  2576. body.page-node-11187 #center:after,
  2577. body.page-node-11187 #footer:before,
  2578. body.page-node-11187 #footer:after,
  2579. body.page-node-11175 #header > .inner:before,
  2580. body.page-node-11175 #header > .inner:after,
  2581. body.page-node-11175 #utilities > .inner:before,
  2582. body.page-node-11175 #utilities > .inner:after,
  2583. body.page-node-11175 #center:before,
  2584. body.page-node-11175 #center:after,
  2585. body.page-node-11175 #footer:before,
  2586. body.page-node-11175 #footer:after,
  2587. body.page-node-12324 #header > .inner:before,
  2588. body.page-node-12324 #header > .inner:after,
  2589. body.page-node-12324 #utilities > .inner:before,
  2590. body.page-node-12324 #utilities > .inner:after,
  2591. body.page-node-12324 #center:before,
  2592. body.page-node-12324 #center:after,
  2593. body.page-node-12324 #footer:before,
  2594. body.page-node-12324 #footer:after,
  2595. body.page-user #header > .inner:before,
  2596. body.page-user #header > .inner:after,
  2597. body.page-user #utilities > .inner:before,
  2598. body.page-user #utilities > .inner:after,
  2599. body.page-user #center:before,
  2600. body.page-user #center:after,
  2601. body.page-user #footer:before,
  2602. body.page-user #footer:after,
  2603. body.page-node-11186 #header > .inner:before,
  2604. body.page-node-11186 #header > .inner:after,
  2605. body.page-node-11186 #utilities > .inner:before,
  2606. body.page-node-11186 #utilities > .inner:after,
  2607. body.page-node-11186 #center:before,
  2608. body.page-node-11186 #center:after,
  2609. body.page-node-11186 #footer:before,
  2610. body.page-node-11186 #footer:after,
  2611. body.page-cart #header > .inner:before,
  2612. body.page-cart #header > .inner:after,
  2613. body.page-cart #utilities > .inner:before,
  2614. body.page-cart #utilities > .inner:after,
  2615. body.page-cart #center:before,
  2616. body.page-cart #center:after,
  2617. body.page-cart #footer:before,
  2618. body.page-cart #footer:after,
  2619. body.node-type-simplenews #header > .inner:before,
  2620. body.node-type-simplenews #header > .inner:after,
  2621. body.node-type-simplenews #utilities > .inner:before,
  2622. body.node-type-simplenews #utilities > .inner:after,
  2623. body.node-type-simplenews #center:before,
  2624. body.node-type-simplenews #center:after,
  2625. body.node-type-simplenews #footer:before,
  2626. body.node-type-simplenews #footer:after,
  2627. body.node-type-publication #header > .inner:before,
  2628. body.node-type-publication #header > .inner:after,
  2629. body.node-type-publication #utilities > .inner:before,
  2630. body.node-type-publication #utilities > .inner:after,
  2631. body.node-type-publication #center:before,
  2632. body.node-type-publication #center:after,
  2633. body.node-type-publication #footer:before,
  2634. body.node-type-publication #footer:after {
  2635. content: " ";
  2636. display: table; }
  2637. body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:after,
  2638. body.page-whoweare #header > .inner:after,
  2639. body.page-whoweare #utilities > .inner:after,
  2640. body.page-whoweare #center:after,
  2641. body.page-whoweare #footer:after,
  2642. body.page-node-11187 #header > .inner:after,
  2643. body.page-node-11187 #utilities > .inner:after,
  2644. body.page-node-11187 #center:after,
  2645. body.page-node-11187 #footer:after,
  2646. body.page-node-11175 #header > .inner:after,
  2647. body.page-node-11175 #utilities > .inner:after,
  2648. body.page-node-11175 #center:after,
  2649. body.page-node-11175 #footer:after,
  2650. body.page-node-12324 #header > .inner:after,
  2651. body.page-node-12324 #utilities > .inner:after,
  2652. body.page-node-12324 #center:after,
  2653. body.page-node-12324 #footer:after,
  2654. body.page-user #header > .inner:after,
  2655. body.page-user #utilities > .inner:after,
  2656. body.page-user #center:after,
  2657. body.page-user #footer:after,
  2658. body.page-node-11186 #header > .inner:after,
  2659. body.page-node-11186 #utilities > .inner:after,
  2660. body.page-node-11186 #center:after,
  2661. body.page-node-11186 #footer:after,
  2662. body.page-cart #header > .inner:after,
  2663. body.page-cart #utilities > .inner:after,
  2664. body.page-cart #center:after,
  2665. body.page-cart #footer:after,
  2666. body.node-type-simplenews #header > .inner:after,
  2667. body.node-type-simplenews #utilities > .inner:after,
  2668. body.node-type-simplenews #center:after,
  2669. body.node-type-simplenews #footer:after,
  2670. body.node-type-publication #header > .inner:after,
  2671. body.node-type-publication #utilities > .inner:after,
  2672. body.node-type-publication #center:after,
  2673. body.node-type-publication #footer:after {
  2674. clear: both; }
  2675. .op-visible {
  2676. visibility: visible; }
  2677. .csstransitions .op-visible {
  2678. opacity: 1;
  2679. transition: opacity 0.3s ease-out; }
  2680. .op-hidden {
  2681. visibility: hidden; }
  2682. .op-hidden > * {
  2683. margin-top: -100000px; }
  2684. .csstransition .op-hidden {
  2685. opacity: 0;
  2686. transition: visibility 0s 0.3s; }
  2687. .csstransition .op-hidden > * {
  2688. transition: margin-top 0s 0.3s; }
  2689. /** colomnized() */
  2690. /*
  2691. __ ___________ ____ __________
  2692. / / / / ____/ | / __ \/ ____/ __ / /_/ / __/ / /| | / / / / __/ / /_/ /
  2693. / __ / /___/ ___ |/ /_/ / /___/ _, _/
  2694. /_/ /_/_____/_/ |_/_____/_____/_/ |_|
  2695. */
  2696. #header {
  2697. padding-top: 5px;
  2698. padding-bottom: 10px;
  2699. height: 45px; }
  2700. #header a, #header a:active, #header a:visited {
  2701. color: #000; }
  2702. #header .logo {
  2703. display: moz-inline-stack;
  2704. display: inline-block;
  2705. vertical-align: top;
  2706. zoom: 1;
  2707. *display: inline; }
  2708. #header .logo h1 {
  2709. margin: 0;
  2710. font-size: 36px;
  2711. display: moz-inline-stack;
  2712. display: inline-block;
  2713. vertical-align: top;
  2714. zoom: 1;
  2715. *display: inline;
  2716. vertical-align: baseline;
  2717. position: relative;
  2718. line-height: 1.25; }
  2719. #header .logo h1 a:hover {
  2720. text-decoration: none; }
  2721. #header .logo span.slogan {
  2722. font-size: 14px;
  2723. margin-top: -3px;
  2724. margin-left: -0.5em;
  2725. font-weight: 900; }
  2726. @media only screen and (max-width: 40em) {
  2727. #header .logo span.slogan {
  2728. display: none; } }
  2729. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2730. #header .logo span.slogan {
  2731. display: block;
  2732. margin-left: 0.1em; } }
  2733. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  2734. #header .logo span.slogan {
  2735. display: block;
  2736. margin-left: 0.1em; } }
  2737. .ie8 #header .logo span.slogan {
  2738. position: absolute;
  2739. margin-top: 22px; }
  2740. #header #header-blocks {
  2741. padding-top: 17px;
  2742. float: right;
  2743. text-align: right;
  2744. text-transform: capitalize; }
  2745. #header #header-blocks > .region {
  2746. display: moz-inline-stack;
  2747. display: inline-block;
  2748. vertical-align: top;
  2749. zoom: 1;
  2750. *display: inline;
  2751. vertical-align: middle;
  2752. padding-right: 1em;
  2753. margin-right: 1em;
  2754. border-right: 1px solid #707070; }
  2755. @media only screen and (max-width: 40em) {
  2756. #header #header-blocks > .region {
  2757. padding-right: 0.3em;
  2758. margin-right: 0.3em; } }
  2759. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2760. #header #header-blocks > .region {
  2761. padding-right: 0.3em;
  2762. margin-right: 0.3em; } }
  2763. #header #header-blocks > .region:last-child {
  2764. border: none;
  2765. padding: 0;
  2766. margin: 0; }
  2767. #header #header-blocks .block {
  2768. display: moz-inline-stack;
  2769. display: inline-block;
  2770. vertical-align: top;
  2771. zoom: 1;
  2772. *display: inline;
  2773. vertical-align: middle; }
  2774. #header #header-blocks .block h2 {
  2775. font-size: 12px;
  2776. margin: 0;
  2777. line-height: 1.2;
  2778. font-weight: normal; }
  2779. #header #header-blocks .block:not(:last-child) {
  2780. padding-right: 0.8em; }
  2781. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  2782. #header #header-blocks .block:not(:last-child) {
  2783. padding-right: 0.3em; } }
  2784. @media only screen and (max-width: 40em) {
  2785. #header #header-blocks #headerblock-left {
  2786. display: none; } }
  2787. #header #header-blocks #block-social-media-links-social-media-links ul.social-media-links {
  2788. margin: 0;
  2789. line-height: 0; }
  2790. #header #header-blocks #block-social-media-links-social-media-links li {
  2791. line-height: 1; }
  2792. #header #header-blocks #block-social-media-links-social-media-links li.facebook a {
  2793. background-image: url("../img/socialicons/svg/Facebook-color.svg"); }
  2794. #header #header-blocks #block-social-media-links-social-media-links li.twitter a {
  2795. background-image: url("../img/socialicons/svg/Twitter-color.svg"); }
  2796. #header #header-blocks #block-social-media-links-social-media-links li.linkedin a {
  2797. background-image: url("../img/socialicons/svg/LinkedIn-color.svg"); }
  2798. #header #header-blocks #block-social-media-links-social-media-links li.pinterest a {
  2799. background-image: url("../img/socialicons/svg/Pinterest-color.svg"); }
  2800. #header #header-blocks #block-social-media-links-social-media-links li.vimeo a {
  2801. background-image: url("../img/socialicons/svg/Vimeo-color.svg"); }
  2802. #header #header-blocks #block-social-media-links-social-media-links li.rss a {
  2803. background-image: url("../img/socialicons/svg/RSS-color.svg"); }
  2804. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2805. #header #header-blocks #block-social-media-links-social-media-links li.linkedin, #header #header-blocks #block-social-media-links-social-media-links li.pinterest, #header #header-blocks #block-social-media-links-social-media-links li.vimeo {
  2806. display: none; } }
  2807. #header #header-blocks #block-social-media-links-social-media-links a {
  2808. display: block;
  2809. width: 16px;
  2810. height: 16px;
  2811. background-position: center;
  2812. background-repeat: no-repeat;
  2813. background-size: contain; }
  2814. #header #header-blocks #block-social-media-links-social-media-links img {
  2815. display: none; }
  2816. #header #header-blocks #block-materio-user-front-link a {
  2817. font-size: 12px; }
  2818. #header #header-blocks #block-materio-user-front-link span.text {
  2819. display: none; }
  2820. #header #header-blocks #block-user-login {
  2821. font-size: 12px;
  2822. text-align: left;
  2823. position: relative; }
  2824. #header #header-blocks #block-user-login h2 {
  2825. padding-right: 5px; }
  2826. #header #header-blocks #block-user-login h2 i {
  2827. vertical-align: text-bottom;
  2828. margin: 0 2px 2px 0; }
  2829. #header #header-blocks #block-user-login form#user-login-form {
  2830. position: absolute;
  2831. overflow: hidden;
  2832. right: 0;
  2833. margin: 0;
  2834. height: 0;
  2835. transition: height 0.3s ease-out; }
  2836. #header #header-blocks #block-user-login form#user-login-form > div {
  2837. padding: 5px;
  2838. margin: 5px;
  2839. background-color: #e6e6e6;
  2840. border-radius: 5px;
  2841. background-clip: padding-box;
  2842. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  2843. #header #header-blocks #block-user-login form#user-login-form .form-item {
  2844. margin: 0;
  2845. padding-bottom: 5px; }
  2846. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  2847. margin: 0;
  2848. font-size: 10px; }
  2849. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  2850. width: 150px;
  2851. height: 2em; }
  2852. #header #header-blocks #block-user-login form#user-login-form .form-actions {
  2853. margin: 5px 0;
  2854. padding: 0;
  2855. background-color: transparent;
  2856. text-align: right; }
  2857. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit {
  2858. font-size: 16px;
  2859. padding: 0.1em 0.6em 0.2em;
  2860. border-radius: 0.3em;
  2861. background-clip: padding-box;
  2862. font-weight: bold;
  2863. margin-bottom: 4px;
  2864. border: 2px solid #E6DE1C;
  2865. background-color: #E6DE1C;
  2866. color: #fff;
  2867. cursor: pointer;
  2868. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  2869. transition: text-shadow 0.2s ease-out; }
  2870. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:hover, #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:focus {
  2871. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  2872. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:active {
  2873. transition: text-shadow 0s ease-out;
  2874. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  2875. #header #header-blocks #block-user-login form#user-login-form div.newpass {
  2876. text-align: right; }
  2877. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  2878. font-size: 10px;
  2879. color: #686868;
  2880. text-transform: lowercase; }
  2881. html.no-touch #header #header-blocks #block-user-login:hover form#user-login-form, #header #header-blocks #block-user-login.hovered form#user-login-form {
  2882. height: 300px;
  2883. z-index: 1000; }
  2884. @media only screen and (max-width: 40em) {
  2885. #header #header-blocks #block-user-login span.login {
  2886. display: none; } }
  2887. #header #header-blocks #block-ajax-register-ajax-register-block {
  2888. font-size: 12px;
  2889. text-transform: lowercase; }
  2890. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2891. font-size: 12px;
  2892. line-height: 1.5; }
  2893. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2894. vertical-align: text-bottom;
  2895. margin: 0 5px 1px 0;
  2896. line-height: 1; }
  2897. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2898. text-transform: lowercase; }
  2899. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2900. display: none;
  2901. margin-left: 5px; }
  2902. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2903. margin: 0 0.5em 0 0.5em; }
  2904. @media only screen and (max-width: 40em) {
  2905. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2906. display: none; } }
  2907. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2908. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2909. display: none; } }
  2910. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  2911. position: relative; }
  2912. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  2913. margin: 0;
  2914. font-size: 12px;
  2915. line-height: 1.5; }
  2916. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2917. line-height: 1; }
  2918. @media only screen and (max-width: 40em) {
  2919. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2920. display: none; } }
  2921. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  2922. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2923. display: none; } }
  2924. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2925. position: absolute;
  2926. z-index: 20;
  2927. background-color: rgba(255, 255, 255, 0.9);
  2928. min-width: 100%;
  2929. margin: 0 0 0 -5px;
  2930. border-radius: 3px;
  2931. background-clip: padding-box;
  2932. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  2933. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2934. background: #FFF; }
  2935. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2936. margin: 0; }
  2937. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2938. list-style: none;
  2939. font-size: 12px;
  2940. font-weight: 700;
  2941. padding: 0 10px;
  2942. text-align: left;
  2943. width: 200px;
  2944. height: 0;
  2945. overflow: hidden;
  2946. transition: height 0.3s ease-out; }
  2947. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview {
  2948. white-space: nowrap;
  2949. cursor: pointer; }
  2950. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2951. max-width: 150px; }
  2952. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2953. font-weight: 300;
  2954. padding: 0 5px; }
  2955. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.edit-list {
  2956. padding-right: 5px; }
  2957. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2958. visibility: hidden; }
  2959. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2960. margin-top: -100000px; }
  2961. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2962. opacity: 0;
  2963. transition: visibility 0s 0.3s; }
  2964. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2965. transition: margin-top 0s 0.3s; }
  2966. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2967. padding-bottom: 5px; }
  2968. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2969. height: 15px;
  2970. padding: 3px 10px; }
  2971. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2972. vertical-align: text-bottom;
  2973. margin: 0 2px 2px 0; }
  2974. @media only screen and (max-width: 40em) {
  2975. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2976. display: none; } }
  2977. #header #header-blocks #headerblock-right .block {
  2978. display: moz-inline-stack;
  2979. display: inline-block;
  2980. vertical-align: top;
  2981. zoom: 1;
  2982. *display: inline;
  2983. padding: 0;
  2984. vertical-align: middle; }
  2985. #header #header-blocks #headerblock-right .block:first-child {
  2986. padding: 0; }
  2987. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2988. display: none; }
  2989. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2990. vertical-align: text-bottom;
  2991. margin: 0 0 2px 0; }
  2992. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2993. font-size: 12px;
  2994. list-style: none; }
  2995. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2996. display: inline; }
  2997. @media only screen and (min-width: 40.0625em) {
  2998. #header #header-blocks #block-menu-menu-top-menu h2 {
  2999. display: none; }
  3000. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  3001. display: moz-inline-stack;
  3002. display: inline-block;
  3003. vertical-align: top;
  3004. zoom: 1;
  3005. *display: inline;
  3006. vertical-align: middle;
  3007. padding: 0;
  3008. margin: 0; }
  3009. #header #header-blocks #block-menu-menu-top-menu a {
  3010. padding: 0 0.5em 0 0; } }
  3011. @media only screen and (max-width: 40em) {
  3012. #header #header-blocks #block-menu-menu-top-menu {
  3013. position: relative; }
  3014. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  3015. display: none; }
  3016. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  3017. position: absolute;
  3018. width: 150px;
  3019. display: none;
  3020. right: 0;
  3021. padding-top: 5px; }
  3022. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  3023. background-color: #e6e6e6;
  3024. border-radius: 5px;
  3025. background-clip: padding-box;
  3026. padding: 0 5px 5px 5px;
  3027. margin: 0;
  3028. text-align: right; }
  3029. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  3030. height: 0;
  3031. overflow: hidden;
  3032. transition: height 0.3s ease-out; }
  3033. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  3034. display: block;
  3035. width: 100%;
  3036. padding: 2px 5px;
  3037. font-size: 12px; }
  3038. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  3039. z-index: 1000; }
  3040. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper {
  3041. display: block; }
  3042. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper ul.menu li, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper ul.menu li {
  3043. height: 25px; } }
  3044. #header #header-blocks #block-locale-language {
  3045. position: relative; }
  3046. #header #header-blocks #block-locale-language h2 {
  3047. font-size: 9px;
  3048. line-height: 1.6;
  3049. display: inline-block;
  3050. padding: 0.20em 0.45em 0.10em;
  3051. margin: 0;
  3052. border-radius: 3px;
  3053. background-clip: padding-box;
  3054. color: #fff;
  3055. text-transform: uppercase;
  3056. background-color: #4d4b4b; }
  3057. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  3058. margin: 0;
  3059. padding: 0;
  3060. list-style-type: none;
  3061. font-size: 12px;
  3062. line-height: 0.9; }
  3063. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  3064. display: none; }
  3065. .ie8 #header #header-blocks #block-locale-language {
  3066. padding-top: 5px; }
  3067. #header #header-blocks #block-locale-language ul {
  3068. padding-top: 2.1em;
  3069. position: absolute;
  3070. top: 0;
  3071. left: 0;
  3072. text-align: left; }
  3073. #header #header-blocks #block-locale-language li {
  3074. height: 0;
  3075. overflow: hidden;
  3076. transition: height 0.3s ease-in-out; }
  3077. #header #header-blocks #block-locale-language li a {
  3078. display: inline-block;
  3079. font-size: 0.9em;
  3080. padding: 0.33em 0.34em 0.3em;
  3081. border-radius: 3px;
  3082. background-clip: padding-box;
  3083. color: #fff;
  3084. text-transform: uppercase;
  3085. background-color: #808080;
  3086. transition: background-color 0.3s ease-out; }
  3087. #header #header-blocks #block-locale-language li a:hover {
  3088. background-color: #1A1A1A; }
  3089. #header #header-blocks #block-locale-language:hover li {
  3090. height: 1.5em; }
  3091. #header #header-blocks #block-materio-user-old-database-link a {
  3092. font-size: 12px; }
  3093. /*
  3094. __ _ ___ __ _
  3095. __ __/ /_(_) (_) /_(_)__ _____
  3096. / / / / __/ / / / __/ / _ \/ ___/
  3097. / /_/ / /_/ / / / /_/ / __(__ )
  3098. \__,_/\__/_/_/_/\__/_/\___/____/
  3099. */
  3100. #utilities {
  3101. background-color: #fff;
  3102. margin-top: 60px; }
  3103. .not-logged-in #utilities {
  3104. overflow: hidden; }
  3105. #utilities > .inner {
  3106. padding: 0.5em 0; }
  3107. #utilities.closed {
  3108. height: 0; }
  3109. #utilities.closed .tabs, #utilities.closed .node-didactique {
  3110. display: none; }
  3111. @media only screen and (max-width: 40em) {
  3112. #utilities {
  3113. margin-top: 0; } }
  3114. /*
  3115. _
  3116. ____ ___ ____ _(_)___
  3117. / __ `__ \/ __ `/ / __ / / / / / / /_/ / / / / /
  3118. /_/ /_/ /_/\__,_/_/_/ /_/
  3119. */
  3120. body.home-v2 #main {
  3121. padding-top: 60px; }
  3122. /*
  3123. __ _ __ ___ __ __ __
  3124. / /_ (_)___ _/ /_ / (_)___ _/ /_ / /____ ____/ /
  3125. / __ \/ / __ `/ __ \/ / / __ `/ __ \/ __/ _ \/ __ /
  3126. / / / / / /_/ / / / / / / /_/ / / / / /_/ __/ /_/ /
  3127. /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/
  3128. /____/ /____/
  3129. */
  3130. #highlighted {
  3131. border-radius: 5px;
  3132. background-clip: padding-box;
  3133. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  3134. padding: 0.5em;
  3135. position: relative; }
  3136. @media only screen and (min-width: 40.0625em) {
  3137. #highlighted {
  3138. margin: 20px 0 6px; }
  3139. #highlighted .block {
  3140. display: moz-inline-stack;
  3141. display: inline-block;
  3142. vertical-align: top;
  3143. zoom: 1;
  3144. *display: inline;
  3145. vertical-align: top; }
  3146. #highlighted .block-materio-didactique {
  3147. width: 65%; }
  3148. #highlighted .block-materio-didactique .side {
  3149. display: moz-inline-stack;
  3150. display: inline-block;
  3151. vertical-align: top;
  3152. zoom: 1;
  3153. *display: inline;
  3154. vertical-align: top;
  3155. position: relative; }
  3156. #highlighted .block-materio-didactique .group-sideleft {
  3157. width: 65%; }
  3158. #highlighted .block-materio-didactique .group-sideright {
  3159. width: 30%; }
  3160. #highlighted .block-materio-didactique .field-name-title-field {
  3161. font-size: 24px; }
  3162. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3163. width: 47%; }
  3164. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3165. margin-right: 2%; }
  3166. #highlighted #block-materio-user-user-register {
  3167. width: 30%;
  3168. padding: 5px;
  3169. height: 290px; } }
  3170. @media only screen {
  3171. #highlighted .block-materio-didactique .side {
  3172. display: moz-inline-stack;
  3173. display: inline-block;
  3174. vertical-align: top;
  3175. zoom: 1;
  3176. *display: inline;
  3177. vertical-align: top; } }
  3178. @media only screen and (max-width: 40em) {
  3179. #highlighted {
  3180. margin: 10px 0 6px; }
  3181. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3182. width: 100%; }
  3183. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3184. font-size: 20px;
  3185. font-weight: normal !important; }
  3186. #highlighted .block-materio-didactique .node-didactique .field-name-title-field:after {
  3187. content: "\a0\f10b";
  3188. font-family: "foundation-icons";
  3189. font-style: normal;
  3190. font-weight: normal;
  3191. font-variant: normal;
  3192. text-transform: none;
  3193. line-height: 1;
  3194. -webkit-font-smoothing: antialiased;
  3195. display: inline-block;
  3196. text-decoration: inherit;
  3197. font-size: 16px; }
  3198. html.js #highlighted .block-materio-didactique .node-didactique {
  3199. height: auto;
  3200. height: 30px;
  3201. overflow: hidden; }
  3202. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3203. height: auto; } }
  3204. .oldie #highlighted .block {
  3205. display: moz-inline-stack;
  3206. display: inline-block;
  3207. vertical-align: top;
  3208. zoom: 1;
  3209. *display: inline; }
  3210. #highlighted .block-materio-didactique .node-didactique {
  3211. font-size: 14px;
  3212. background-color: #fff;
  3213. margin: 0 auto; }
  3214. #highlighted .block-materio-didactique .node-didactique .side {
  3215. position: relative; }
  3216. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3217. font-weight: 900;
  3218. font-style: italic;
  3219. padding: 5px 0; }
  3220. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3221. text-align: center; }
  3222. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3223. display: inline; }
  3224. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3225. display: none; }
  3226. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3227. display: none; }
  3228. html.js #highlighted .block-materio-didactique {
  3229. position: relative;
  3230. overflow: hidden; }
  3231. html.js #highlighted .block-materio-didactique .slides {
  3232. height: 270px;
  3233. margin: 0;
  3234. position: relative;
  3235. width: 100%;
  3236. overflow: hidden; }
  3237. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3238. position: absolute;
  3239. width: 100%;
  3240. height: 100%;
  3241. top: 0;
  3242. left: 0; }
  3243. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3244. height: 30px; }
  3245. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3246. height: 240px; }
  3247. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3248. height: 100%; }
  3249. @media only screen and (max-width: 40em) {
  3250. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3251. width: 290px;
  3252. height: 163.125px; } }
  3253. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  3254. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3255. width: 216px;
  3256. height: 121.5px; } }
  3257. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  3258. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3259. width: 216px;
  3260. height: 121.5px; } }
  3261. @media only screen and (min-width: 90.0625em) and (max-width: 120em) {
  3262. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3263. width: 280px;
  3264. height: 157.5px; } }
  3265. @media only screen and (min-width: 120.0625em) and (max-width: 6249999.9375em) {
  3266. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3267. width: 340px;
  3268. height: 191.25px; } }
  3269. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3270. height: 100%;
  3271. width: 100%; }
  3272. html.js #highlighted .block-materio-didactique .tabs {
  3273. height: 30px;
  3274. margin: 0;
  3275. text-align: left; }
  3276. html.js #highlighted .block-materio-didactique .tabs > * {
  3277. display: moz-inline-stack;
  3278. display: inline-block;
  3279. vertical-align: top;
  3280. zoom: 1;
  3281. *display: inline;
  3282. vertical-align: top;
  3283. padding: 5px 10px;
  3284. font-size: 12px;
  3285. cursor: pointer;
  3286. color: #bfbfbf; }
  3287. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3288. color: #3f3f3f; }
  3289. /*
  3290. __ __ __ _ __
  3291. / /_ / /___ _____/ /__ ________ ____ _(_)____/ /____ _____
  3292. / __ \/ / __ \/ ___/ //_/ / ___/ _ \/ __ `/ / ___/ __/ _ \/ ___/
  3293. / /_/ / / /_/ / /__/ ,< / / / __/ /_/ / (__ ) /_/ __/ /
  3294. /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/
  3295. /____/
  3296. */
  3297. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3298. min-height: 120px;
  3299. padding: 5px;
  3300. background: transparent url("../img/register-block.png") no-repeat 100% 90%; }
  3301. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3302. max-width: 250px;
  3303. float: right;
  3304. background-image: none; }
  3305. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3306. font-weight: 900;
  3307. font-style: italic;
  3308. padding: 5px 0;
  3309. margin: 0;
  3310. line-height: 1;
  3311. background-color: #fff;
  3312. display: moz-inline-stack;
  3313. display: inline-block;
  3314. vertical-align: top;
  3315. zoom: 1;
  3316. *display: inline;
  3317. min-width: 50%; }
  3318. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3319. font-size: 24px; }
  3320. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3321. font-size: 16px; }
  3322. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3323. margin: 0;
  3324. background-color: rgba(255, 255, 255, 0.7);
  3325. padding-bottom: 5px;
  3326. display: moz-inline-stack;
  3327. display: inline-block;
  3328. vertical-align: top;
  3329. zoom: 1;
  3330. *display: inline; }
  3331. #block-materio-user-user-register .form-item, #block-materio-user-user-register .form-wrapper, #block-materio-user-user-createaccount .form-item, #block-materio-user-user-createaccount .form-wrapper {
  3332. margin: 0;
  3333. display: moz-inline-stack;
  3334. display: inline-block;
  3335. vertical-align: top;
  3336. zoom: 1;
  3337. *display: inline;
  3338. vertical-align: middle;
  3339. position: relative; }
  3340. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3341. margin-right: 5px; }
  3342. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3343. font-size: 12px;
  3344. border-radius: 5px;
  3345. background-clip: padding-box;
  3346. margin-bottom: 4px; }
  3347. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3348. margin-right: 5px; }
  3349. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3350. width: 11em; }
  3351. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3352. width: 7em; }
  3353. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3354. position: absolute;
  3355. bottom: 100%;
  3356. z-index: 9999;
  3357. background-image: none;
  3358. height: auto;
  3359. padding: 5px;
  3360. border-radius: 5px;
  3361. background-clip: padding-box;
  3362. margin-bottom: 10px;
  3363. font-size: 10px;
  3364. background-color: #fff;
  3365. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3366. transition: bottom 0.1s ease-out; }
  3367. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3368. background-color: #f3968d;
  3369. color: #fff; }
  3370. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3371. display: none; }
  3372. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3373. font-size: 16px;
  3374. padding: 0.1em 0.6em 0.2em;
  3375. border-radius: 0.3em;
  3376. background-clip: padding-box;
  3377. font-weight: bold;
  3378. margin-bottom: 4px; }
  3379. #block-materio-user-user-register .form-item-termsofservices, #block-materio-user-user-register #edit-field-newsletter, #block-materio-user-user-createaccount .form-item-termsofservices, #block-materio-user-user-createaccount #edit-field-newsletter {
  3380. margin-bottom: 0;
  3381. display: block;
  3382. line-height: 1; }
  3383. #block-materio-user-user-register .form-item-termsofservices > *, #block-materio-user-user-register #edit-field-newsletter > *, #block-materio-user-user-createaccount .form-item-termsofservices > *, #block-materio-user-user-createaccount #edit-field-newsletter > * {
  3384. display: moz-inline-stack;
  3385. display: inline-block;
  3386. vertical-align: top;
  3387. zoom: 1;
  3388. *display: inline;
  3389. vertical-align: middle;
  3390. margin: 0; }
  3391. #block-materio-user-user-register .form-item-termsofservices label, #block-materio-user-user-register #edit-field-newsletter label, #block-materio-user-user-createaccount .form-item-termsofservices label, #block-materio-user-user-createaccount #edit-field-newsletter label {
  3392. font-size: 10px;
  3393. background-color: #fff;
  3394. border-radius: 3px;
  3395. background-clip: padding-box; }
  3396. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3397. border: 2px solid #69CDCF;
  3398. background-color: #69CDCF;
  3399. color: #fff;
  3400. cursor: pointer;
  3401. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3402. transition: text-shadow 0.2s ease-out; }
  3403. #block-materio-user-user-register #user-register-form .form-submit:hover, #block-materio-user-user-register #user-register-form .form-submit:focus, #block-materio-user-user-createaccount #user-register-form .form-submit:hover, #block-materio-user-user-createaccount #user-register-form .form-submit:focus {
  3404. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3405. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3406. transition: text-shadow 0s ease-out;
  3407. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3408. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3409. background-color: #ddd;
  3410. border: 2px solid #ddd; }
  3411. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3412. border: 2px solid #E6DE1C;
  3413. background-color: #E6DE1C;
  3414. color: #fff;
  3415. cursor: pointer;
  3416. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3417. transition: text-shadow 0.2s ease-out; }
  3418. #block-materio-user-user-register #user-login .form-submit:hover, #block-materio-user-user-register #user-login .form-submit:focus, #block-materio-user-user-createaccount #user-login .form-submit:hover, #block-materio-user-user-createaccount #user-login .form-submit:focus {
  3419. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3420. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3421. transition: text-shadow 0s ease-out;
  3422. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3423. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3424. padding-top: 0.5em; }
  3425. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3426. font-size: 12px; }
  3427. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3428. display: block; }
  3429. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3430. font-size: 12px; }
  3431. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3432. display: block;
  3433. width: 5em;
  3434. font-size: 16px;
  3435. padding: 0.1em 0.3em 0.2em;
  3436. border-radius: 0.3em;
  3437. background-clip: padding-box;
  3438. font-weight: bold;
  3439. border: 2px solid #69CDCF;
  3440. background-color: #69CDCF;
  3441. color: #fff;
  3442. cursor: pointer;
  3443. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3444. transition: text-shadow 0.2s ease-out;
  3445. text-align: center;
  3446. text-decoration: none; }
  3447. #block-materio-user-user-register a.join:hover, #block-materio-user-user-register a.join:focus, #block-materio-user-user-createaccount a.join:hover, #block-materio-user-user-createaccount a.join:focus {
  3448. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3449. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3450. transition: text-shadow 0s ease-out;
  3451. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3452. @media only screen and (max-width: 40em) {
  3453. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3454. background-position: 160% 50%;
  3455. min-height: 60px;
  3456. padding: 15px 0; }
  3457. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3458. width: 7em; } }
  3459. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3460. color: #b94a48;
  3461. font-size: 12px; }
  3462. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3463. padding: 2em;
  3464. width: 400px;
  3465. background-color: #fff;
  3466. padding: 5px;
  3467. border-radius: 5px;
  3468. background-clip: padding-box;
  3469. box-shadow: 0 0 7px rgba(0, 0, 0, 0.4); }
  3470. .modal-content #block-materio-user-user-register #user-register-form div.homepage-textfield, .modal-content #block-materio-user-user-createaccount #user-register-form div.homepage-textfield {
  3471. display: none; }
  3472. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3473. font-size: 12px; }
  3474. /*
  3475. __ __ __
  3476. _________ ____ / /____ ____ / /_ / /_____ ____
  3477. / ___/ __ \/ __ \/ __/ _ \/ __ \/ __/_____/ __/ __ \/ __ / /__/ /_/ / / / / /_/ __/ / / / /_/_____/ /_/ /_/ / /_/ /
  3478. \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/
  3479. /_/
  3480. */
  3481. #content-top {
  3482. /*
  3483. ___ _ _ _ _
  3484. | _| |___ ___ ___| |_|___| |_
  3485. | _| | .'| . |___| | |_ -| _|
  3486. |_| |_|__,|_ | |_|_|___|_|
  3487. |___|
  3488. */ }
  3489. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3490. font-size: 10px;
  3491. color: #666666;
  3492. font-weight: 300; }
  3493. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3494. margin-top: 40px; }
  3495. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3496. font-size: 12px;
  3497. font-weight: 700;
  3498. line-height: 1.2;
  3499. margin: 0;
  3500. color: #000; }
  3501. #content-top #block-materio-flag-materio-flag-mybookmarks h2 a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks h2 i.fi-x, #content-top #block-materio-flag-materio-flag-mylists h2 a.open-list, #content-top #block-materio-flag-materio-flag-mylists h2 i.fi-x {
  3502. display: moz-inline-stack;
  3503. display: inline-block;
  3504. vertical-align: top;
  3505. zoom: 1;
  3506. *display: inline;
  3507. cursor: pointer;
  3508. color: #000;
  3509. margin-left: 0.5em;
  3510. opacity: 0;
  3511. transition: opacity 0.1s ease-out; }
  3512. #content-top #block-materio-flag-materio-flag-mybookmarks h2 i:before, #content-top #block-materio-flag-materio-flag-mylists h2 i:before {
  3513. font-size: 14px; }
  3514. #content-top #block-materio-flag-materio-flag-mybookmarks:hover a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks:hover i.fi-x, #content-top #block-materio-flag-materio-flag-mylists:hover a.open-list, #content-top #block-materio-flag-materio-flag-mylists:hover i.fi-x {
  3515. opacity: 1; }
  3516. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3517. cursor: pointer; }
  3518. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3519. height: 0;
  3520. overflow: hidden; }
  3521. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3522. height: auto; }
  3523. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks article.node.vm-bookmark, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks article.node.vm-bookmark {
  3524. overflow: hidden; }
  3525. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section .flaged {
  3526. height: 0;
  3527. overflow: hidden; }
  3528. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active .flaged {
  3529. height: auto; }
  3530. #tool-bar {
  3531. position: relative; }
  3532. #tool-bar .inner-content {
  3533. padding-top: 10px;
  3534. padding-bottom: 10px; }
  3535. #tool-bar .inner-content > * {
  3536. display: moz-inline-stack;
  3537. display: inline-block;
  3538. vertical-align: top;
  3539. zoom: 1;
  3540. *display: inline;
  3541. vertical-align: middle; }
  3542. .oldie #tool-bar {
  3543. background-color: #B1ADAD;
  3544. padding: 0 10px; }
  3545. #tool-bar .btn-group {
  3546. padding: 0;
  3547. border-radius: 3px;
  3548. background-clip: padding-box;
  3549. background-color: #fff;
  3550. margin: 4px;
  3551. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3552. transition: box-shadow 0.3s ease-out; }
  3553. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3554. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3555. #tool-bar .btn-group:active {
  3556. transition: box-shadow 0s ease-out;
  3557. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3558. #tool-bar #block-materio-page-title-materio-page-title {
  3559. margin: 0 10px 0 0; }
  3560. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3561. margin: 0;
  3562. font-size: 24px;
  3563. text-transform: capitalize;
  3564. font-weight: 300; }
  3565. #tool-bar #block-materio-page-title-materio-page-title i {
  3566. vertical-align: middle;
  3567. margin-right: 5px; }
  3568. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3569. visibility: hidden; }
  3570. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3571. margin-top: -100000px; }
  3572. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3573. opacity: 0;
  3574. transition: visibility 0s 0.3s; }
  3575. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3576. transition: margin-top 0s 0.3s; }
  3577. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3578. margin: 0 0 0 5px; }
  3579. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3580. visibility: visible; }
  3581. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3582. opacity: 1;
  3583. transition: opacity 0.3s ease-out; }
  3584. @media only screen and (max-width: 40em) {
  3585. #tool-bar #block-materio-page-title-materio-page-title {
  3586. display: block; } }
  3587. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3588. display: moz-inline-stack;
  3589. display: inline-block;
  3590. vertical-align: top;
  3591. zoom: 1;
  3592. *display: inline;
  3593. margin: 0 2px; }
  3594. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3595. cursor: normal; }
  3596. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3597. display: none;
  3598. font-size: 10px; }
  3599. @media only screen and (max-width: 40em) {
  3600. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3601. display: block; }
  3602. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3603. display: none; } }
  3604. @media only screen and (max-width: 40em) {
  3605. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium {
  3606. display: block; } }
  3607. @media only screen and (max-width: 40em) {
  3608. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardbig, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardbig {
  3609. display: block; } }
  3610. #tool-bar #block-materio-search-api-materio-search-api-search {
  3611. float: right; }
  3612. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3613. display: moz-inline-stack;
  3614. display: inline-block;
  3615. vertical-align: top;
  3616. zoom: 1;
  3617. *display: inline;
  3618. margin: 0 0 0 10px;
  3619. padding: 3px 10px;
  3620. background-color: #fff;
  3621. border-radius: 3px;
  3622. background-clip: padding-box;
  3623. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3624. transition: box-shadow 0.3s ease-out;
  3625. text-align: right; }
  3626. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3627. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3628. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3629. transition: box-shadow 0s ease-out;
  3630. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3631. #tool-bar #materio-search-api-search-form {
  3632. text-align: right;
  3633. display: moz-inline-stack;
  3634. display: inline-block;
  3635. vertical-align: top;
  3636. zoom: 1;
  3637. *display: inline;
  3638. margin: 0; }
  3639. #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 {
  3640. display: moz-inline-stack;
  3641. display: inline-block;
  3642. vertical-align: top;
  3643. zoom: 1;
  3644. *display: inline;
  3645. margin: 0;
  3646. vertical-align: middle;
  3647. padding: 0; }
  3648. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3649. padding: 3px;
  3650. font-size: 12px; }
  3651. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3652. margin: 0 5px; }
  3653. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3654. font-size: 10px; }
  3655. #tool-bar #materio-search-api-search-form a.back-search-home {
  3656. display: inline-block;
  3657. vertical-align: middle;
  3658. color: #000;
  3659. padding: 0 0.5em 0 0.2em; }
  3660. #tool-bar #materio-search-api-search-form a.back-search-home i:before {
  3661. font-size: 1.3em; }
  3662. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3663. border: 1px solid #ccc;
  3664. border-radius: 15px;
  3665. background-clip: padding-box;
  3666. margin: 3px 0 3px 3px;
  3667. padding: 4px 5px;
  3668. height: 20px;
  3669. font-size: 12px;
  3670. line-height: 1;
  3671. background-position: 100% 7px; }
  3672. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3673. background-position: 100% -15px; }
  3674. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3675. background-color: #1a1a1a; }
  3676. #tool-bar #materio-search-api-search-form input#edit-create {
  3677. padding: 3px; }
  3678. #tool-bar #materio-search-api-search-form.loading {
  3679. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  3680. #tool-bar #materio-search-api-search-form.loading input#edit-create {
  3681. visibility: hidden; }
  3682. @media only screen and (max-width: 40em) {
  3683. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3684. width: 16em; }
  3685. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3686. display: none; } }
  3687. #tool-bar #block-materio-search-api-mo-searchapi-advanced-search {
  3688. float: right; }
  3689. #tool-bar #block-materio-search-api-mo-searchapi-advanced-search > .inner {
  3690. display: moz-inline-stack;
  3691. display: inline-block;
  3692. vertical-align: top;
  3693. zoom: 1;
  3694. *display: inline;
  3695. margin: 0 0 0 10px;
  3696. padding: 3px 10px;
  3697. background-color: #fff;
  3698. border-radius: 3px;
  3699. background-clip: padding-box;
  3700. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3701. transition: box-shadow 0.3s ease-out; }
  3702. #tool-bar #block-materio-search-api-mo-searchapi-advanced-search > .inner:hover, #tool-bar #block-materio-search-api-mo-searchapi-advanced-search > .inner:focus {
  3703. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3704. #tool-bar #block-materio-search-api-mo-searchapi-advanced-search > .inner:active {
  3705. transition: box-shadow 0s ease-out;
  3706. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3707. #tool-bar #materio-search-api-advanced-search-form .filter-line {
  3708. margin: 0.3em 0;
  3709. padding-top: 0.3em; }
  3710. #tool-bar #materio-search-api-advanced-search-form .filter-line:not(:first-child) {
  3711. border-top: 1px dotted black; }
  3712. #tool-bar #materio-search-api-advanced-search-form .filter-line .form-item {
  3713. display: inline-block;
  3714. vertical-align: middle;
  3715. font-size: 12px;
  3716. line-height: 1;
  3717. text-transform: capitalize;
  3718. margin: 0 0em 0 0; }
  3719. #tool-bar #materio-search-api-advanced-search-form .filter-line select {
  3720. width: auto; }
  3721. #tool-bar #materio-search-api-advanced-search-form .rm-btn {
  3722. float: right;
  3723. margin: 0.4em 0 0.4em 0.4em; }
  3724. #tool-bar #materio-search-api-advanced-search-form #edit-search {
  3725. float: right; }
  3726. #center {
  3727. border-radius: 10px;
  3728. background-clip: padding-box; }
  3729. .node-type-page:not(.page-node-11187) #center {
  3730. background-color: #fff; }
  3731. .ie8 #center {
  3732. height: 100%;
  3733. margin-top: 20px; }
  3734. #content {
  3735. padding: 1em;
  3736. transition: height 0.3s ease-out; }
  3737. #content.faded {
  3738. opacity: 0.5;
  3739. transition: opacity 0.3s ease-out; }
  3740. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3741. padding: 0 0 30px 0;
  3742. margin: 0 0 20px 0; }
  3743. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3744. background-image: url("../img/ajax-loader.gif");
  3745. background-position: center bottom;
  3746. background-repeat: no-repeat; }
  3747. #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 {
  3748. font-size: 12px;
  3749. font-weight: 500;
  3750. margin: 0;
  3751. padding: 10px 0 5px 15px; }
  3752. #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 {
  3753. font-size: 0;
  3754. text-align: center; }
  3755. #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 > * {
  3756. font-size: 16px; }
  3757. #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 > * {
  3758. text-align: left; }
  3759. #content ul.pager {
  3760. padding: 1em 0;
  3761. text-align: left; }
  3762. .ie8 #content ul.pager {
  3763. position: absolute;
  3764. left: 37px;
  3765. bottom: 35px; }
  3766. #content ul.pager li {
  3767. margin: 0;
  3768. display: moz-inline-stack;
  3769. display: inline-block;
  3770. vertical-align: top;
  3771. zoom: 1;
  3772. *display: inline;
  3773. vertical-align: middle; }
  3774. #content ul.pager .pager-current, #content ul.pager a {
  3775. color: #000;
  3776. font-size: 12px; }
  3777. #content ul.pager .pager-current {
  3778. font-weight: 900;
  3779. font-size: 14px; }
  3780. .ie8 #content ul.pager .pager-current {
  3781. background: #fff;
  3782. padding: 0.3em 1em 0.3em 1em;
  3783. margin-top: 0.05em;
  3784. border: 1px solid #333333; }
  3785. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3786. font-size: 24px;
  3787. font-weight: 300; }
  3788. /** #content-bottom */
  3789. #content-bottom {
  3790. padding-top: 10px; }
  3791. /*
  3792. _________ ____ ____ _____
  3793. / ____/ | / __ \/ __ \/ ___/
  3794. / / / /| | / /_/ / / / /\__ / /___/ ___ |/ _, _/ /_/ /___/ /
  3795. \____/_/ |_/_/ |_/_____//____/
  3796. */
  3797. /*
  3798. _ _ ___
  3799. ___ ___ ___ _| | ___ ___ ___ ___ ___| |_ ___ ___ ___| _|___ ___ _____ ___ ___ ___ ___
  3800. | _| .'| _| . | |_ -| -_| .'| _| _| | | . | -_| _| _| . | _| | .'| | _| -_|
  3801. |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___|
  3802. |_|
  3803. */
  3804. article.search-performance .inner {
  3805. padding: 1em; }
  3806. article.search-performance p {
  3807. font-size: 14px; }
  3808. article.search-performance a.button {
  3809. display: block;
  3810. margin: 10px auto;
  3811. max-width: 10em;
  3812. font-size: 18px;
  3813. padding: 0.1em 0.6em 0.2em;
  3814. border-radius: 0.3em;
  3815. background-clip: padding-box;
  3816. font-weight: bold;
  3817. border: 2px solid #69CDCF;
  3818. background-color: #69CDCF;
  3819. color: #fff;
  3820. cursor: pointer;
  3821. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3822. transition: text-shadow 0.2s ease-out;
  3823. text-align: center;
  3824. text-decoration: none; }
  3825. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3826. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3827. article.search-performance a.button:active {
  3828. transition: text-shadow 0s ease-out;
  3829. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3830. article.search-performance.view-mode-cardsmall {
  3831. width: 327px;
  3832. height: 140px;
  3833. display: moz-inline-stack;
  3834. display: inline-block;
  3835. vertical-align: top;
  3836. zoom: 1;
  3837. *display: inline;
  3838. position: relative;
  3839. margin: 7px;
  3840. border-radius: 5px;
  3841. background-clip: padding-box;
  3842. background-color: #FFF;
  3843. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3844. transition: box-shadow 0.3s ease-out; }
  3845. article.search-performance.view-mode-cardmedium {
  3846. width: 210px;
  3847. height: 295px;
  3848. display: moz-inline-stack;
  3849. display: inline-block;
  3850. vertical-align: top;
  3851. zoom: 1;
  3852. *display: inline;
  3853. position: relative;
  3854. margin: 7px;
  3855. border-radius: 5px;
  3856. background-clip: padding-box;
  3857. background-color: #FFF;
  3858. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3859. transition: box-shadow 0.3s ease-out; }
  3860. article.search-performance.view-mode-cardmedium .inner {
  3861. padding: 4em 1em 0; }
  3862. article.search-performance.view-mode-cardbig {
  3863. width: 425px;
  3864. height: 115px;
  3865. display: moz-inline-stack;
  3866. display: inline-block;
  3867. vertical-align: top;
  3868. zoom: 1;
  3869. *display: inline;
  3870. position: relative;
  3871. margin: 7px;
  3872. border-radius: 5px;
  3873. background-clip: padding-box;
  3874. background-color: #FFF;
  3875. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3876. transition: box-shadow 0.3s ease-out;
  3877. display: block;
  3878. margin: 0 auto; }
  3879. article.search-performance.view-mode-cardfull {
  3880. width: 850px;
  3881. height: 115px;
  3882. display: moz-inline-stack;
  3883. display: inline-block;
  3884. vertical-align: top;
  3885. zoom: 1;
  3886. *display: inline;
  3887. position: relative;
  3888. margin: 7px;
  3889. border-radius: 5px;
  3890. background-clip: padding-box;
  3891. background-color: #FFF;
  3892. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3893. transition: box-shadow 0.3s ease-out;
  3894. display: block;
  3895. margin: 0 auto; }
  3896. article.search-performance.view-mode-cardfull .inner {
  3897. padding: 1em 212px; }
  3898. /*
  3899. ______ __ ____ __ __
  3900. / ____/___ __________/ / / __ )____ ____ / /______ ___ ____ ______/ /_______
  3901. / / / __ `/ ___/ __ / / __ / __ \/ __ \/ //_/ __ `__ \/ __ `/ ___/ //_/ ___/
  3902. / /___/ /_/ / / / /_/ / / /_/ / /_/ / /_/ / ,< / / / / / / /_/ / / / ,< (__ )
  3903. \____/\__,_/_/ \__,_/ /_____/\____/\____/_/|_/_/ /_/ /_/\__,_/_/ /_/|_/____/
  3904. */
  3905. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  3906. width: 50px;
  3907. height: 70px;
  3908. display: moz-inline-stack;
  3909. display: inline-block;
  3910. vertical-align: top;
  3911. zoom: 1;
  3912. *display: inline;
  3913. position: relative;
  3914. margin: 7px;
  3915. border-radius: 5px;
  3916. background-clip: padding-box;
  3917. background-color: #FFF;
  3918. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3919. transition: box-shadow 0.3s ease-out;
  3920. margin: 3px; }
  3921. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  3922. border-radius: 5px;
  3923. background-clip: padding-box;
  3924. overflow: hidden; }
  3925. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  3926. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  3927. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  3928. opacity: 0; }
  3929. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  3930. transition: margin 0.3s ease-out; }
  3931. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  3932. margin-left: -50px;
  3933. margin-right: 50px; }
  3934. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  3935. position: absolute;
  3936. top: 0;
  3937. left: 0;
  3938. z-index: 999; }
  3939. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  3940. transition: width 0.3s ease-out;
  3941. width: 0;
  3942. padding-left: 0;
  3943. padding-right: 0;
  3944. margin-right: 0;
  3945. margin-left: 0;
  3946. overflow: hidden; }
  3947. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  3948. position: absolute;
  3949. top: 0;
  3950. right: 0;
  3951. z-index: 11;
  3952. padding: 5px 0;
  3953. border-radius: 0 5px 0 3px;
  3954. background-clip: padding-box;
  3955. font-size: 10px;
  3956. background-color: rgba(255, 255, 255, 0.9);
  3957. color: #000; }
  3958. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  3959. color: #000; }
  3960. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3961. background-color: rgba(255, 255, 255, 0.9); }
  3962. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  3963. font-weight: 900;
  3964. font-size: 14px; }
  3965. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3966. padding: 0;
  3967. margin: 0; }
  3968. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  3969. position: relative; }
  3970. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  3971. margin: 0 5px; }
  3972. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  3973. cursor: pointer; }
  3974. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3975. position: absolute;
  3976. right: 0;
  3977. top: 0;
  3978. margin-right: 22px;
  3979. min-width: 80px;
  3980. padding: 0;
  3981. display: block;
  3982. border-radius: 3px;
  3983. background-clip: padding-box;
  3984. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  3985. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  3986. padding: 0;
  3987. margin: 0;
  3988. line-height: 1;
  3989. display: block;
  3990. height: 0;
  3991. overflow: hidden;
  3992. transition: height 0.2s ease-out; }
  3993. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  3994. display: block; }
  3995. article.node-materiau.vm-bookmark nav.nav ul.links a, article.node-breve.vm-bookmark nav.nav ul.links a {
  3996. font-size: 12px; }
  3997. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  3998. width: 160px;
  3999. font-size: 0; }
  4000. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  4001. font-size: 11px; }
  4002. 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 {
  4003. display: moz-inline-stack;
  4004. display: inline-block;
  4005. vertical-align: top;
  4006. zoom: 1;
  4007. *display: inline;
  4008. min-width: 48%;
  4009. max-width: 98%;
  4010. padding-left: 2px; }
  4011. 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 {
  4012. color: #a6a6a6;
  4013. transition: color 0.2s ease-out; }
  4014. 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 {
  4015. color: #000;
  4016. text-decoration: none; }
  4017. 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 {
  4018. display: block;
  4019. width: 100%; }
  4020. 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 > * {
  4021. margin-top: 1px;
  4022. padding-top: 1px;
  4023. border-top: 1px solid #e6e6e6; }
  4024. 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 {
  4025. color: #000; }
  4026. 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 {
  4027. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4028. 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 {
  4029. visibility: hidden; }
  4030. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  4031. background: #FFF; }
  4032. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  4033. padding: 5px 5px; }
  4034. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  4035. height: 17px; }
  4036. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4037. position: absolute;
  4038. bottom: 0;
  4039. right: 0;
  4040. z-index: 11;
  4041. padding: 5px;
  4042. border-radius: 3px 0 5px 0;
  4043. background-clip: padding-box;
  4044. font-size: 10px;
  4045. vertical-align: top;
  4046. background-color: rgba(20, 20, 20, 0.9);
  4047. color: #fff; }
  4048. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  4049. padding: 3px 0 0 4px;
  4050. display: moz-inline-stack;
  4051. display: inline-block;
  4052. vertical-align: top;
  4053. zoom: 1;
  4054. *display: inline; }
  4055. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  4056. font-size: 12px;
  4057. padding-top: 4em;
  4058. margin-top: -4.5em;
  4059. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4060. position: relative; }
  4061. 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 {
  4062. padding: 10px;
  4063. font-size: 12px; }
  4064. 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 {
  4065. display: block;
  4066. margin: 10px 0;
  4067. font-size: 18px;
  4068. padding: 0.1em 0.6em 0.2em;
  4069. border-radius: 0.3em;
  4070. background-clip: padding-box;
  4071. font-weight: bold;
  4072. border: 2px solid #69CDCF;
  4073. background-color: #69CDCF;
  4074. color: #fff;
  4075. cursor: pointer;
  4076. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4077. transition: text-shadow 0.2s ease-out;
  4078. text-align: center;
  4079. text-decoration: none; }
  4080. 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 {
  4081. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4082. 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 {
  4083. transition: text-shadow 0s ease-out;
  4084. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4085. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  4086. display: none; }
  4087. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  4088. position: relative;
  4089. z-index: 1;
  4090. background-color: #fff; }
  4091. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  4092. position: absolute;
  4093. top: 0;
  4094. left: 0; }
  4095. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  4096. position: relative;
  4097. z-index: 1; }
  4098. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4099. display: none; }
  4100. /*
  4101. ______ __ _____ ____
  4102. / ____/___ __________/ / / ___/____ ___ ____ _/ / /
  4103. / / / __ `/ ___/ __ / \__ \/ __ `__ \/ __ `/ / /
  4104. / /___/ /_/ / / / /_/ / ___/ / / / / / / /_/ / / /
  4105. \____/\__,_/_/ \__,_/ /____/_/ /_/ /_/\__,_/_/_/
  4106. */
  4107. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4108. width: 100px;
  4109. height: 140px;
  4110. display: moz-inline-stack;
  4111. display: inline-block;
  4112. vertical-align: top;
  4113. zoom: 1;
  4114. *display: inline;
  4115. position: relative;
  4116. margin: 7px;
  4117. border-radius: 5px;
  4118. background-clip: padding-box;
  4119. background-color: #FFF;
  4120. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4121. transition: box-shadow 0.3s ease-out; }
  4122. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4123. border-radius: 5px;
  4124. background-clip: padding-box;
  4125. overflow: hidden; }
  4126. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4127. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4128. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4129. opacity: 0; }
  4130. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4131. transition: margin 0.3s ease-out; }
  4132. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4133. margin-left: -100px;
  4134. margin-right: 100px; }
  4135. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4136. position: absolute;
  4137. top: 0;
  4138. left: 0;
  4139. z-index: 999; }
  4140. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4141. transition: width 0.3s ease-out;
  4142. width: 0;
  4143. padding-left: 0;
  4144. padding-right: 0;
  4145. margin-right: 0;
  4146. margin-left: 0;
  4147. overflow: hidden; }
  4148. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4149. position: absolute;
  4150. top: 0;
  4151. right: 0;
  4152. z-index: 11;
  4153. padding: 5px 0;
  4154. border-radius: 0 5px 0 3px;
  4155. background-clip: padding-box;
  4156. font-size: 10px;
  4157. background-color: rgba(255, 255, 255, 0.9);
  4158. color: #000; }
  4159. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4160. color: #000; }
  4161. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4162. background-color: rgba(255, 255, 255, 0.9); }
  4163. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4164. font-weight: 900;
  4165. font-size: 14px; }
  4166. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4167. padding: 0;
  4168. margin: 0; }
  4169. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4170. position: relative; }
  4171. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4172. margin: 0 5px; }
  4173. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4174. cursor: pointer; }
  4175. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4176. position: absolute;
  4177. right: 0;
  4178. top: 0;
  4179. margin-right: 22px;
  4180. min-width: 80px;
  4181. padding: 0;
  4182. display: block;
  4183. border-radius: 3px;
  4184. background-clip: padding-box;
  4185. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4186. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4187. padding: 0;
  4188. margin: 0;
  4189. line-height: 1;
  4190. display: block;
  4191. height: 0;
  4192. overflow: hidden;
  4193. transition: height 0.2s ease-out; }
  4194. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4195. display: block; }
  4196. article.node-materiau.vm-cardsmall nav.nav ul.links a, article.node-breve.vm-cardsmall nav.nav ul.links a {
  4197. font-size: 12px; }
  4198. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4199. width: 160px;
  4200. font-size: 0; }
  4201. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4202. font-size: 11px; }
  4203. 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 {
  4204. display: moz-inline-stack;
  4205. display: inline-block;
  4206. vertical-align: top;
  4207. zoom: 1;
  4208. *display: inline;
  4209. min-width: 48%;
  4210. max-width: 98%;
  4211. padding-left: 2px; }
  4212. 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 {
  4213. color: #a6a6a6;
  4214. transition: color 0.2s ease-out; }
  4215. 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 {
  4216. color: #000;
  4217. text-decoration: none; }
  4218. 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 {
  4219. display: block;
  4220. width: 100%; }
  4221. 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 > * {
  4222. margin-top: 1px;
  4223. padding-top: 1px;
  4224. border-top: 1px solid #e6e6e6; }
  4225. 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 {
  4226. color: #000; }
  4227. 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 {
  4228. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4229. 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 {
  4230. visibility: hidden; }
  4231. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4232. background: #FFF; }
  4233. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4234. padding: 5px 5px; }
  4235. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4236. height: 17px; }
  4237. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4238. position: absolute;
  4239. bottom: 0;
  4240. right: 0;
  4241. z-index: 11;
  4242. padding: 5px;
  4243. border-radius: 3px 0 5px 0;
  4244. background-clip: padding-box;
  4245. font-size: 10px;
  4246. vertical-align: top;
  4247. background-color: rgba(20, 20, 20, 0.9);
  4248. color: #fff; }
  4249. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4250. padding: 3px 0 0 4px;
  4251. display: moz-inline-stack;
  4252. display: inline-block;
  4253. vertical-align: top;
  4254. zoom: 1;
  4255. *display: inline; }
  4256. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4257. font-size: 12px;
  4258. padding-top: 4em;
  4259. margin-top: -4.5em;
  4260. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4261. position: relative; }
  4262. 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 {
  4263. padding: 10px;
  4264. font-size: 12px; }
  4265. 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 {
  4266. display: block;
  4267. margin: 10px 0;
  4268. font-size: 18px;
  4269. padding: 0.1em 0.6em 0.2em;
  4270. border-radius: 0.3em;
  4271. background-clip: padding-box;
  4272. font-weight: bold;
  4273. border: 2px solid #69CDCF;
  4274. background-color: #69CDCF;
  4275. color: #fff;
  4276. cursor: pointer;
  4277. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4278. transition: text-shadow 0.2s ease-out;
  4279. text-align: center;
  4280. text-decoration: none; }
  4281. 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 {
  4282. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4283. 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 {
  4284. transition: text-shadow 0s ease-out;
  4285. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4286. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4287. display: none;
  4288. position: absolute;
  4289. font-size: 14px;
  4290. font-weight: 500; }
  4291. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4292. font-weight: 700; }
  4293. 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 {
  4294. display: moz-inline-stack;
  4295. display: inline-block;
  4296. vertical-align: top;
  4297. zoom: 1;
  4298. *display: inline;
  4299. font-size: 12px; }
  4300. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4301. float: right; }
  4302. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4303. position: relative;
  4304. z-index: 1;
  4305. background-color: #fff;
  4306. border-radius: 5px;
  4307. background-clip: padding-box;
  4308. overflow: hidden; }
  4309. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4310. position: absolute;
  4311. top: 0;
  4312. left: 0; }
  4313. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4314. position: relative;
  4315. z-index: 1; }
  4316. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4317. width: 75px;
  4318. min-width: 75px; }
  4319. 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 {
  4320. width: 98%; }
  4321. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4322. background: #FFF; }
  4323. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4324. visibility: hidden; }
  4325. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4326. margin-top: -100000px; }
  4327. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4328. opacity: 0;
  4329. transition: visibility 0s 0.3s; }
  4330. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4331. transition: margin-top 0s 0.3s; }
  4332. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4333. visibility: hidden; }
  4334. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4335. margin-top: -100000px; }
  4336. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4337. opacity: 0;
  4338. transition: visibility 0s 0.3s; }
  4339. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4340. transition: margin-top 0s 0.3s; }
  4341. /*
  4342. ______ ____ _ ____ __
  4343. /_ __/___ ____ / / /_(_)___ _________ ___ ____ _/ / / _________ __________/ /
  4344. / / / __ \/ __ \/ / __/ / __ \ / ___/ __ `__ \/ __ `/ / / / ___/ __ `/ ___/ __ /
  4345. / / / /_/ / /_/ / / /_/ / /_/ / (__ ) / / / / / /_/ / / / / /__/ /_/ / / / /_/ /
  4346. /_/ \____/\____/_/\__/_/ .___/ /____/_/ /_/ /_/\__,_/_/_/ \___/\__,_/_/ \__,_/
  4347. /_/
  4348. */
  4349. #tooltip .group-header.smallcard {
  4350. font-size: 14px;
  4351. font-weight: 500; }
  4352. #tooltip .group-header.smallcard .field-name-title-field {
  4353. font-weight: 700; }
  4354. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4355. display: moz-inline-stack;
  4356. display: inline-block;
  4357. vertical-align: top;
  4358. zoom: 1;
  4359. *display: inline;
  4360. font-size: 12px; }
  4361. #tooltip .group-header.smallcard .field-name-field-localisation {
  4362. float: right; }
  4363. /*
  4364. ______ __ __ ___ ___
  4365. / ____/___ __________/ / / |/ /__ ____/ (_)_ ______ ___
  4366. / / / __ `/ ___/ __ / / /|_/ / _ \/ __ / / / / / __ `__ / /___/ /_/ / / / /_/ / / / / / __/ /_/ / / /_/ / / / / / /
  4367. \____/\__,_/_/ \__,_/ /_/ /_/\___/\__,_/_/\__,_/_/ /_/ /_/
  4368. */
  4369. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4370. width: 210px;
  4371. height: 295px;
  4372. display: moz-inline-stack;
  4373. display: inline-block;
  4374. vertical-align: top;
  4375. zoom: 1;
  4376. *display: inline;
  4377. position: relative;
  4378. margin: 7px;
  4379. border-radius: 5px;
  4380. background-clip: padding-box;
  4381. background-color: #FFF;
  4382. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4383. transition: box-shadow 0.3s ease-out; }
  4384. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4385. border-radius: 5px;
  4386. background-clip: padding-box;
  4387. overflow: hidden; }
  4388. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4389. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4390. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4391. opacity: 0; }
  4392. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4393. transition: margin 0.3s ease-out; }
  4394. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4395. margin-left: -210px;
  4396. margin-right: 210px; }
  4397. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4398. position: absolute;
  4399. top: 0;
  4400. left: 0;
  4401. z-index: 999; }
  4402. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4403. transition: width 0.3s ease-out;
  4404. width: 0;
  4405. padding-left: 0;
  4406. padding-right: 0;
  4407. margin-right: 0;
  4408. margin-left: 0;
  4409. overflow: hidden; }
  4410. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4411. position: absolute;
  4412. top: 0;
  4413. right: 0;
  4414. z-index: 11;
  4415. padding: 5px 0;
  4416. border-radius: 0 5px 0 3px;
  4417. background-clip: padding-box;
  4418. font-size: 10px;
  4419. background-color: rgba(255, 255, 255, 0.9);
  4420. color: #000; }
  4421. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4422. color: #000; }
  4423. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4424. background-color: rgba(255, 255, 255, 0.9); }
  4425. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4426. font-weight: 900;
  4427. font-size: 14px; }
  4428. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4429. padding: 0;
  4430. margin: 0; }
  4431. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4432. position: relative; }
  4433. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4434. margin: 0 5px; }
  4435. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4436. cursor: pointer; }
  4437. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4438. position: absolute;
  4439. right: 0;
  4440. top: 0;
  4441. margin-right: 22px;
  4442. min-width: 80px;
  4443. padding: 0;
  4444. display: block;
  4445. border-radius: 3px;
  4446. background-clip: padding-box;
  4447. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4448. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4449. padding: 0;
  4450. margin: 0;
  4451. line-height: 1;
  4452. display: block;
  4453. height: 0;
  4454. overflow: hidden;
  4455. transition: height 0.2s ease-out; }
  4456. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4457. display: block; }
  4458. article.node-materiau.vm-cardmedium nav.nav ul.links a, article.node-breve.vm-cardmedium nav.nav ul.links a {
  4459. font-size: 12px; }
  4460. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4461. width: 160px;
  4462. font-size: 0; }
  4463. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4464. font-size: 11px; }
  4465. 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 {
  4466. display: moz-inline-stack;
  4467. display: inline-block;
  4468. vertical-align: top;
  4469. zoom: 1;
  4470. *display: inline;
  4471. min-width: 48%;
  4472. max-width: 98%;
  4473. padding-left: 2px; }
  4474. 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 {
  4475. color: #a6a6a6;
  4476. transition: color 0.2s ease-out; }
  4477. 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 {
  4478. color: #000;
  4479. text-decoration: none; }
  4480. 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 {
  4481. display: block;
  4482. width: 100%; }
  4483. 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 > * {
  4484. margin-top: 1px;
  4485. padding-top: 1px;
  4486. border-top: 1px solid #e6e6e6; }
  4487. 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 {
  4488. color: #000; }
  4489. 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 {
  4490. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4491. 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 {
  4492. visibility: hidden; }
  4493. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4494. background: #FFF; }
  4495. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4496. padding: 5px 5px; }
  4497. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4498. height: 17px; }
  4499. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4500. position: absolute;
  4501. bottom: 0;
  4502. right: 0;
  4503. z-index: 11;
  4504. padding: 5px;
  4505. border-radius: 3px 0 5px 0;
  4506. background-clip: padding-box;
  4507. font-size: 10px;
  4508. vertical-align: top;
  4509. background-color: rgba(20, 20, 20, 0.9);
  4510. color: #fff; }
  4511. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4512. padding: 3px 0 0 4px;
  4513. display: moz-inline-stack;
  4514. display: inline-block;
  4515. vertical-align: top;
  4516. zoom: 1;
  4517. *display: inline; }
  4518. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4519. font-size: 12px;
  4520. padding-top: 4em;
  4521. margin-top: -4.5em;
  4522. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4523. position: relative; }
  4524. 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 {
  4525. padding: 10px;
  4526. font-size: 12px; }
  4527. 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 {
  4528. display: block;
  4529. margin: 10px 0;
  4530. font-size: 18px;
  4531. padding: 0.1em 0.6em 0.2em;
  4532. border-radius: 0.3em;
  4533. background-clip: padding-box;
  4534. font-weight: bold;
  4535. border: 2px solid #69CDCF;
  4536. background-color: #69CDCF;
  4537. color: #fff;
  4538. cursor: pointer;
  4539. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4540. transition: text-shadow 0.2s ease-out;
  4541. text-align: center;
  4542. text-decoration: none; }
  4543. 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 {
  4544. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4545. 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 {
  4546. transition: text-shadow 0s ease-out;
  4547. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4548. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  4549. position: absolute;
  4550. width: 100%;
  4551. height: 100%;
  4552. top: 0;
  4553. left: 0;
  4554. background-color: #fff;
  4555. cursor: pointer; }
  4556. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  4557. z-index: 1; }
  4558. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  4559. position: absolute;
  4560. bottom: 0;
  4561. z-index: 2;
  4562. width: 190px;
  4563. padding: 5px 15px 5px 5px;
  4564. min-height: 55px;
  4565. font-size: 20px;
  4566. font-weight: 300;
  4567. line-height: 1;
  4568. background-color: rgba(255, 255, 255, 0.8);
  4569. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4570. transition: background-color 0.2s ease-out;
  4571. border-radius: 0 0 4px 4px;
  4572. background-clip: padding-box;
  4573. overflow: hidden; }
  4574. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  4575. font-weight: 700; }
  4576. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  4577. font-size: 14px; }
  4578. 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 {
  4579. display: moz-inline-stack;
  4580. display: inline-block;
  4581. vertical-align: top;
  4582. zoom: 1;
  4583. *display: inline;
  4584. font-size: 12px;
  4585. vertical-align: bottom;
  4586. width: 48%; }
  4587. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  4588. text-align: right; }
  4589. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  4590. background: #fff;
  4591. font-color: #000;
  4592. line-height: 1em;
  4593. padding: 10px; }
  4594. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  4595. color: #fff;
  4596. background-color: rgba(0, 0, 0, 0.7);
  4597. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4598. transition: background-color 0.2s ease-out; }
  4599. 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 {
  4600. font-size: 12px;
  4601. font-weight: 500; }
  4602. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  4603. background: #000;
  4604. font-size: 15px;
  4605. line-height: 1.2em; }
  4606. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  4607. position: relative;
  4608. z-index: 1;
  4609. background-color: #fff; }
  4610. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  4611. position: absolute;
  4612. top: 0;
  4613. left: 0; }
  4614. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  4615. position: relative;
  4616. z-index: 1; }
  4617. 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 {
  4618. font-size: 12px;
  4619. font-weight: 300;
  4620. overflow: hidden;
  4621. z-index: -1;
  4622. padding: 5px; }
  4623. 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 {
  4624. padding: 0;
  4625. transition: margin-left 0.3s ease-out; }
  4626. 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 > * {
  4627. padding: 5px; }
  4628. 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 {
  4629. display: inline-block;
  4630. border-radius: 3px;
  4631. background-clip: padding-box;
  4632. color: #fff;
  4633. background-color: #3e3e3e;
  4634. vertical-align: middle;
  4635. font-weight: 700;
  4636. font-size: 22px;
  4637. padding: 0.05em 0.15em 0.2em 0.2em;
  4638. line-height: 0.5;
  4639. font-weight: normal; }
  4640. 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 {
  4641. cursor: w-resize; }
  4642. 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 {
  4643. cursor: e-resize; }
  4644. 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 > * {
  4645. padding-right: 25px; }
  4646. article.node-materiau.vm-cardmedium .field-name-field-location, article.node-breve.vm-cardmedium .field-name-field-location {
  4647. font-size: 12px;
  4648. padding: 5px;
  4649. font-weight: 300; }
  4650. article.node-materiau.vm-cardmedium .field-name-field-location .field-label, article.node-breve.vm-cardmedium .field-name-field-location .field-label {
  4651. font-size: 10px;
  4652. text-transform: lowercase;
  4653. margin: 0; }
  4654. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  4655. padding: 5px; }
  4656. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  4657. padding: 0;
  4658. transition: margin-left 0.3s ease-out; }
  4659. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  4660. padding: 5px; }
  4661. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  4662. display: inline-block;
  4663. border-radius: 3px;
  4664. background-clip: padding-box;
  4665. color: #fff;
  4666. background-color: #3e3e3e;
  4667. vertical-align: middle;
  4668. font-weight: 700;
  4669. font-size: 22px;
  4670. padding: 0.05em 0.15em 0.2em 0.2em;
  4671. line-height: 0.5;
  4672. font-weight: normal; }
  4673. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  4674. cursor: w-resize; }
  4675. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  4676. cursor: e-resize; }
  4677. 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 {
  4678. font-size: 12px;
  4679. padding: 5px;
  4680. font-weight: 300; }
  4681. 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 {
  4682. font-size: 10px;
  4683. text-transform: lowercase;
  4684. margin: 0; }
  4685. 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 {
  4686. font-size: 14px; }
  4687. 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 {
  4688. font-size: 12px;
  4689. padding: 5px;
  4690. font-weight: 300; }
  4691. 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 {
  4692. color: #000; }
  4693. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  4694. font-weight: 900;
  4695. margin: 1em 0 0.5em; }
  4696. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4697. visibility: hidden; }
  4698. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4699. margin-top: -100000px; }
  4700. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4701. opacity: 0;
  4702. transition: visibility 0s 0.3s; }
  4703. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4704. transition: margin-top 0s 0.3s; }
  4705. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4706. visibility: hidden; }
  4707. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4708. margin-top: -100000px; }
  4709. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4710. opacity: 0;
  4711. transition: visibility 0s 0.3s; }
  4712. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4713. transition: margin-top 0s 0.3s; }
  4714. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  4715. background: #FFF; }
  4716. /*
  4717. ______ __ ____ _
  4718. / ____/___ __________/ / / __ )(_)___ _
  4719. / / / __ `/ ___/ __ / / __ / / __ `/
  4720. / /___/ /_/ / / / /_/ / / /_/ / / /_/ /
  4721. \____/\__,_/_/ \__,_/ /_____/_/\__, /
  4722. /____/
  4723. */
  4724. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  4725. width: 425px;
  4726. height: 610px;
  4727. display: moz-inline-stack;
  4728. display: inline-block;
  4729. vertical-align: top;
  4730. zoom: 1;
  4731. *display: inline;
  4732. position: relative;
  4733. margin: 7px;
  4734. border-radius: 5px;
  4735. background-clip: padding-box;
  4736. background-color: #FFF;
  4737. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4738. transition: box-shadow 0.3s ease-out; }
  4739. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  4740. border-radius: 5px;
  4741. background-clip: padding-box;
  4742. overflow: hidden; }
  4743. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  4744. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4745. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  4746. opacity: 0; }
  4747. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  4748. transition: margin 0.3s ease-out; }
  4749. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  4750. margin-left: -425px;
  4751. margin-right: 425px; }
  4752. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  4753. position: absolute;
  4754. top: 0;
  4755. left: 0;
  4756. z-index: 999; }
  4757. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  4758. transition: width 0.3s ease-out;
  4759. width: 0;
  4760. padding-left: 0;
  4761. padding-right: 0;
  4762. margin-right: 0;
  4763. margin-left: 0;
  4764. overflow: hidden; }
  4765. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  4766. position: absolute;
  4767. top: 0;
  4768. right: 0;
  4769. z-index: 11;
  4770. padding: 5px 0;
  4771. border-radius: 0 5px 0 3px;
  4772. background-clip: padding-box;
  4773. font-size: 10px;
  4774. background-color: rgba(255, 255, 255, 0.9);
  4775. color: #000; }
  4776. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  4777. color: #000; }
  4778. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4779. background-color: rgba(255, 255, 255, 0.9); }
  4780. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  4781. font-weight: 900;
  4782. font-size: 14px; }
  4783. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4784. padding: 0;
  4785. margin: 0; }
  4786. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  4787. position: relative; }
  4788. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  4789. margin: 0 5px; }
  4790. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  4791. cursor: pointer; }
  4792. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4793. position: absolute;
  4794. right: 0;
  4795. top: 0;
  4796. margin-right: 22px;
  4797. min-width: 80px;
  4798. padding: 0;
  4799. display: block;
  4800. border-radius: 3px;
  4801. background-clip: padding-box;
  4802. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4803. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  4804. padding: 0;
  4805. margin: 0;
  4806. line-height: 1;
  4807. display: block;
  4808. height: 0;
  4809. overflow: hidden;
  4810. transition: height 0.2s ease-out; }
  4811. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  4812. display: block; }
  4813. article.node-materiau.vm-cardbig nav.nav ul.links a, article.node-breve.vm-cardbig nav.nav ul.links a {
  4814. font-size: 12px; }
  4815. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  4816. width: 160px;
  4817. font-size: 0; }
  4818. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  4819. font-size: 11px; }
  4820. 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 {
  4821. display: moz-inline-stack;
  4822. display: inline-block;
  4823. vertical-align: top;
  4824. zoom: 1;
  4825. *display: inline;
  4826. min-width: 48%;
  4827. max-width: 98%;
  4828. padding-left: 2px; }
  4829. 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 {
  4830. color: #a6a6a6;
  4831. transition: color 0.2s ease-out; }
  4832. 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 {
  4833. color: #000;
  4834. text-decoration: none; }
  4835. 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 {
  4836. display: block;
  4837. width: 100%; }
  4838. 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 > * {
  4839. margin-top: 1px;
  4840. padding-top: 1px;
  4841. border-top: 1px solid #e6e6e6; }
  4842. 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 {
  4843. color: #000; }
  4844. 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 {
  4845. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4846. 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 {
  4847. visibility: hidden; }
  4848. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  4849. background: #FFF; }
  4850. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  4851. padding: 5px 5px; }
  4852. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  4853. height: 17px; }
  4854. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  4855. position: absolute;
  4856. bottom: 0;
  4857. right: 0;
  4858. z-index: 11;
  4859. padding: 5px;
  4860. border-radius: 3px 0 5px 0;
  4861. background-clip: padding-box;
  4862. font-size: 10px;
  4863. vertical-align: top;
  4864. background-color: rgba(20, 20, 20, 0.9);
  4865. color: #fff; }
  4866. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  4867. padding: 3px 0 0 4px;
  4868. display: moz-inline-stack;
  4869. display: inline-block;
  4870. vertical-align: top;
  4871. zoom: 1;
  4872. *display: inline; }
  4873. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  4874. font-size: 12px;
  4875. padding-top: 4em;
  4876. margin-top: -4.5em;
  4877. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4878. position: relative; }
  4879. 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 {
  4880. padding: 10px;
  4881. font-size: 12px; }
  4882. 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 {
  4883. display: block;
  4884. margin: 10px 0;
  4885. font-size: 18px;
  4886. padding: 0.1em 0.6em 0.2em;
  4887. border-radius: 0.3em;
  4888. background-clip: padding-box;
  4889. font-weight: bold;
  4890. border: 2px solid #69CDCF;
  4891. background-color: #69CDCF;
  4892. color: #fff;
  4893. cursor: pointer;
  4894. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4895. transition: text-shadow 0.2s ease-out;
  4896. text-align: center;
  4897. text-decoration: none; }
  4898. 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 {
  4899. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4900. 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 {
  4901. transition: text-shadow 0s ease-out;
  4902. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4903. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  4904. position: absolute;
  4905. width: 100%;
  4906. height: 100%;
  4907. top: 0;
  4908. left: 0;
  4909. background-color: #fff;
  4910. height: 270px;
  4911. top: 340px;
  4912. cursor: pointer; }
  4913. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  4914. z-index: 1; }
  4915. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  4916. position: relative;
  4917. border-radius: 5px 5px 0 0;
  4918. background-clip: padding-box;
  4919. overflow: hidden; }
  4920. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  4921. position: absolute;
  4922. bottom: 0;
  4923. z-index: 2;
  4924. width: 405px;
  4925. padding: 10px;
  4926. font-size: 20px;
  4927. font-weight: 300;
  4928. line-height: 1.1;
  4929. background-color: rgba(255, 255, 255, 0.8);
  4930. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4931. transition: background-color 0.2s ease-out; }
  4932. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  4933. font-weight: 700; }
  4934. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  4935. font-size: 14px; }
  4936. 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 {
  4937. display: moz-inline-stack;
  4938. display: inline-block;
  4939. vertical-align: top;
  4940. zoom: 1;
  4941. *display: inline;
  4942. font-size: 12px;
  4943. vertical-align: bottom;
  4944. width: 48%; }
  4945. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  4946. text-align: right; }
  4947. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  4948. background: #fff;
  4949. font-color: #000;
  4950. line-height: 1em;
  4951. padding: 20px;
  4952. border-bottom: 1px solid #C6C6C6; }
  4953. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  4954. color: #fff;
  4955. background-color: rgba(0, 0, 0, 0.7);
  4956. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4957. transition: background-color 0.2s ease-out; }
  4958. 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 {
  4959. font-size: 12px;
  4960. font-weight: 500; }
  4961. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  4962. background: #000;
  4963. font-color: #fff;
  4964. line-height: 1em;
  4965. padding: 20px; }
  4966. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  4967. position: relative;
  4968. z-index: 1;
  4969. background-color: #fff;
  4970. height: auto; }
  4971. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  4972. position: absolute;
  4973. top: 0;
  4974. left: 0; }
  4975. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  4976. position: relative;
  4977. z-index: 1; }
  4978. 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 {
  4979. font-size: 12px;
  4980. font-weight: 300;
  4981. padding: 10px; }
  4982. 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 {
  4983. padding: 0;
  4984. transition: margin-left 0.3s ease-out; }
  4985. 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 > * {
  4986. padding: 10px; }
  4987. 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 {
  4988. display: inline-block;
  4989. border-radius: 3px;
  4990. background-clip: padding-box;
  4991. color: #fff;
  4992. background-color: #3e3e3e;
  4993. vertical-align: middle;
  4994. font-weight: 700;
  4995. font-size: 22px;
  4996. padding: 0.05em 0.15em 0.2em 0.2em;
  4997. line-height: 0.5;
  4998. font-weight: normal; }
  4999. 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 {
  5000. cursor: w-resize; }
  5001. 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 {
  5002. cursor: e-resize; }
  5003. article.node-materiau.vm-cardbig .field-name-field-location, article.node-breve.vm-cardbig .field-name-field-location {
  5004. font-size: 12px;
  5005. padding: 10px;
  5006. font-weight: 300; }
  5007. article.node-materiau.vm-cardbig .field-name-field-location .field-label, article.node-breve.vm-cardbig .field-name-field-location .field-label {
  5008. font-size: 10px;
  5009. text-transform: lowercase;
  5010. float: none; }
  5011. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  5012. padding: 10px; }
  5013. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  5014. padding: 0;
  5015. transition: margin-left 0.3s ease-out; }
  5016. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  5017. padding: 10px; }
  5018. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  5019. display: inline-block;
  5020. border-radius: 3px;
  5021. background-clip: padding-box;
  5022. color: #fff;
  5023. background-color: #3e3e3e;
  5024. vertical-align: middle;
  5025. font-weight: 700;
  5026. font-size: 22px;
  5027. padding: 0.05em 0.15em 0.2em 0.2em;
  5028. line-height: 0.5;
  5029. font-weight: normal; }
  5030. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  5031. cursor: w-resize; }
  5032. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  5033. cursor: e-resize; }
  5034. 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 {
  5035. font-size: 12px;
  5036. padding: 10px;
  5037. font-weight: 300; }
  5038. 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 {
  5039. font-size: 10px;
  5040. text-transform: lowercase;
  5041. float: none; }
  5042. 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 {
  5043. font-size: 14px; }
  5044. 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 {
  5045. font-size: 12px;
  5046. padding: 10px;
  5047. font-weight: 300; }
  5048. 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 {
  5049. color: #000; }
  5050. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  5051. font-weight: 900;
  5052. margin: 0 0 0.5em; }
  5053. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  5054. background: #FFF; }
  5055. 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 {
  5056. padding: 3em; }
  5057. 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 {
  5058. border: 2px solid #eee;
  5059. background-color: #eee;
  5060. color: #fff;
  5061. transition: border 0.3s ease-out;
  5062. transition: background-color 0.3s ease-out; }
  5063. 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 {
  5064. border: 2px solid #69CDCF;
  5065. background-color: #69CDCF; }
  5066. /*
  5067. ______ __ ______ ____
  5068. / ____/___ __________/ / / ____/_ __/ / /
  5069. / / / __ `/ ___/ __ / / /_ / / / / / /
  5070. / /___/ /_/ / / / /_/ / / __/ / /_/ / / /
  5071. \____/\__,_/_/ \__,_/ /_/ \__,_/_/_/
  5072. */
  5073. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  5074. width: 850px;
  5075. height: 610px;
  5076. display: moz-inline-stack;
  5077. display: inline-block;
  5078. vertical-align: top;
  5079. zoom: 1;
  5080. *display: inline;
  5081. position: relative;
  5082. margin: 7px;
  5083. border-radius: 5px;
  5084. background-clip: padding-box;
  5085. background-color: #FFF;
  5086. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5087. transition: box-shadow 0.3s ease-out;
  5088. font-size: 0px; }
  5089. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  5090. border-radius: 5px;
  5091. background-clip: padding-box;
  5092. overflow: hidden; }
  5093. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  5094. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5095. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  5096. opacity: 0; }
  5097. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  5098. transition: margin 0.3s ease-out; }
  5099. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  5100. margin-left: -850px;
  5101. margin-right: 850px; }
  5102. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  5103. position: absolute;
  5104. top: 0;
  5105. left: 0;
  5106. z-index: 999; }
  5107. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  5108. transition: width 0.3s ease-out;
  5109. width: 0;
  5110. padding-left: 0;
  5111. padding-right: 0;
  5112. margin-right: 0;
  5113. margin-left: 0;
  5114. overflow: hidden; }
  5115. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5116. position: absolute;
  5117. top: 0;
  5118. right: 0;
  5119. z-index: 11;
  5120. padding: 5px 0;
  5121. border-radius: 0 5px 0 3px;
  5122. background-clip: padding-box;
  5123. font-size: 10px;
  5124. background-color: rgba(255, 255, 255, 0.9);
  5125. color: #000; }
  5126. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5127. color: #000; }
  5128. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5129. background-color: rgba(255, 255, 255, 0.9); }
  5130. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5131. font-weight: 900;
  5132. font-size: 14px; }
  5133. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5134. padding: 0;
  5135. margin: 0; }
  5136. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5137. position: relative; }
  5138. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5139. margin: 0 5px; }
  5140. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5141. cursor: pointer; }
  5142. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5143. position: absolute;
  5144. right: 0;
  5145. top: 0;
  5146. margin-right: 22px;
  5147. min-width: 80px;
  5148. padding: 0;
  5149. display: block;
  5150. border-radius: 3px;
  5151. background-clip: padding-box;
  5152. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5153. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5154. padding: 0;
  5155. margin: 0;
  5156. line-height: 1;
  5157. display: block;
  5158. height: 0;
  5159. overflow: hidden;
  5160. transition: height 0.2s ease-out; }
  5161. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5162. display: block; }
  5163. article.node-materiau.vm-cardfull nav.nav ul.links a, article.node-breve.vm-cardfull nav.nav ul.links a {
  5164. font-size: 12px; }
  5165. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5166. width: 160px;
  5167. font-size: 0; }
  5168. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5169. font-size: 11px; }
  5170. 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 {
  5171. display: moz-inline-stack;
  5172. display: inline-block;
  5173. vertical-align: top;
  5174. zoom: 1;
  5175. *display: inline;
  5176. min-width: 48%;
  5177. max-width: 98%;
  5178. padding-left: 2px; }
  5179. 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 {
  5180. color: #a6a6a6;
  5181. transition: color 0.2s ease-out; }
  5182. 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 {
  5183. color: #000;
  5184. text-decoration: none; }
  5185. 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 {
  5186. display: block;
  5187. width: 100%; }
  5188. 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 > * {
  5189. margin-top: 1px;
  5190. padding-top: 1px;
  5191. border-top: 1px solid #e6e6e6; }
  5192. 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 {
  5193. color: #000; }
  5194. 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 {
  5195. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5196. 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 {
  5197. visibility: hidden; }
  5198. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5199. background: #FFF; }
  5200. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5201. padding: 5px 5px; }
  5202. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5203. height: 17px; }
  5204. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5205. position: absolute;
  5206. bottom: 0;
  5207. right: 0;
  5208. z-index: 11;
  5209. padding: 5px;
  5210. border-radius: 3px 0 5px 0;
  5211. background-clip: padding-box;
  5212. font-size: 10px;
  5213. vertical-align: top;
  5214. background-color: rgba(20, 20, 20, 0.9);
  5215. color: #fff; }
  5216. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5217. padding: 3px 0 0 4px;
  5218. display: moz-inline-stack;
  5219. display: inline-block;
  5220. vertical-align: top;
  5221. zoom: 1;
  5222. *display: inline; }
  5223. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5224. font-size: 12px;
  5225. padding-top: 4em;
  5226. margin-top: -4.5em;
  5227. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5228. position: relative; }
  5229. 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 {
  5230. padding: 10px;
  5231. font-size: 12px; }
  5232. 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 {
  5233. display: block;
  5234. margin: 10px 0;
  5235. font-size: 18px;
  5236. padding: 0.1em 0.6em 0.2em;
  5237. border-radius: 0.3em;
  5238. background-clip: padding-box;
  5239. font-weight: bold;
  5240. border: 2px solid #69CDCF;
  5241. background-color: #69CDCF;
  5242. color: #fff;
  5243. cursor: pointer;
  5244. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5245. transition: text-shadow 0.2s ease-out;
  5246. text-align: center;
  5247. text-decoration: none; }
  5248. 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 {
  5249. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5250. 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 {
  5251. transition: text-shadow 0s ease-out;
  5252. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  5253. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5254. top: 0; }
  5255. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  5256. font-size: 16px; }
  5257. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  5258. display: moz-inline-stack;
  5259. display: inline-block;
  5260. vertical-align: top;
  5261. zoom: 1;
  5262. *display: inline;
  5263. width: 50%; }
  5264. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  5265. border-radius: 5px 0 0 5px;
  5266. background-clip: padding-box; }
  5267. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  5268. border-radius: 0 5px 5px 0;
  5269. background-clip: padding-box; }
  5270. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  5271. position: relative;
  5272. z-index: 1;
  5273. background-color: #fff; }
  5274. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  5275. position: absolute;
  5276. top: 0;
  5277. left: 0; }
  5278. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  5279. position: relative;
  5280. z-index: 1; }
  5281. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  5282. font-size: 20px;
  5283. font-weight: 300;
  5284. padding: 10px 10px 0 10px; }
  5285. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  5286. font-weight: 700; }
  5287. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio {
  5288. display: moz-inline-stack;
  5289. display: inline-block;
  5290. vertical-align: top;
  5291. zoom: 1;
  5292. *display: inline;
  5293. vertical-align: baseline; }
  5294. article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio {
  5295. font-size: 12px; }
  5296. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  5297. color: #fff;
  5298. background-color: rgba(0, 0, 0, 0.7);
  5299. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5300. transition: background-color 0.2s ease-out; }
  5301. 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 {
  5302. font-weight: 500; }
  5303. article.node-materiau.vm-cardfull .field-name-field-location, article.node-breve.vm-cardfull .field-name-field-location {
  5304. font-size: 12px;
  5305. padding: 5px 10px 0 10px;
  5306. font-weight: 300; }
  5307. article.node-materiau.vm-cardfull .field-name-field-location .field-label, article.node-materiau.vm-cardfull .field-name-field-location .field-items, article.node-materiau.vm-cardfull .field-name-field-location .field-item, article.node-breve.vm-cardfull .field-name-field-location .field-label, article.node-breve.vm-cardfull .field-name-field-location .field-items, article.node-breve.vm-cardfull .field-name-field-location .field-item {
  5308. display: moz-inline-stack;
  5309. display: inline-block;
  5310. vertical-align: top;
  5311. zoom: 1;
  5312. *display: inline;
  5313. vertical-align: baseline; }
  5314. article.node-materiau.vm-cardfull .field-name-field-location .field-label, article.node-breve.vm-cardfull .field-name-field-location .field-label {
  5315. font-size: 10px;
  5316. text-transform: lowercase;
  5317. float: none; }
  5318. 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 {
  5319. font-size: 12px;
  5320. font-weight: 300;
  5321. padding: 5px 10px 0 10px; }
  5322. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  5323. padding: 10px;
  5324. font-size: 12px; }
  5325. 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 {
  5326. font-size: 12px;
  5327. padding: 10px;
  5328. font-weight: 300;
  5329. display: moz-inline-stack;
  5330. display: inline-block;
  5331. vertical-align: top;
  5332. zoom: 1;
  5333. *display: inline;
  5334. width: 40%; }
  5335. 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 {
  5336. margin-top: 1em; }
  5337. 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 {
  5338. font-size: 10px;
  5339. text-transform: lowercase;
  5340. float: none; }
  5341. 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 {
  5342. font-size: 14px; }
  5343. 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 {
  5344. font-size: 12px;
  5345. padding: 10px;
  5346. font-weight: 300; }
  5347. 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 {
  5348. color: #000; }
  5349. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  5350. font-weight: 900;
  5351. margin: 0 0 0.5em; }
  5352. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5353. margin: 5px; }
  5354. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5355. margin: 5px; }
  5356. 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 {
  5357. padding: 3em; }
  5358. 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 {
  5359. border: 2px solid #eee;
  5360. background-color: #eee;
  5361. color: #fff;
  5362. transition: border 0.3s ease-out;
  5363. transition: background-color 0.3s ease-out; }
  5364. 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 {
  5365. border: 2px solid #69CDCF;
  5366. background-color: #69CDCF; }
  5367. /*
  5368. __ ____ _ __
  5369. _________ __________/ / / __ \_____(_)___ / /_
  5370. / ___/ __ `/ ___/ __ / / /_/ / ___/ / __ \/ __/
  5371. / /__/ /_/ / / / /_/ / / ____/ / / / / / / /_
  5372. \___/\__,_/_/ \__,_/ /_/ /_/ /_/_/ /_/\__/
  5373. */
  5374. .print-node-materiau {
  5375. margin: 0 auto; }
  5376. @media screen {
  5377. .print-node-materiau {
  5378. width: 850px;
  5379. height: auto;
  5380. display: moz-inline-stack;
  5381. display: inline-block;
  5382. vertical-align: top;
  5383. zoom: 1;
  5384. *display: inline;
  5385. position: relative;
  5386. margin: 7px;
  5387. border-radius: 5px;
  5388. background-clip: padding-box;
  5389. background-color: #FFF;
  5390. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5391. transition: box-shadow 0.3s ease-out;
  5392. width: 1024px;
  5393. padding: 1em; }
  5394. .print-node-materiau > div.side {
  5395. border-radius: 5px;
  5396. background-clip: padding-box;
  5397. overflow: hidden; }
  5398. .print-node-materiau.focused {
  5399. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5400. .print-node-materiau.just-added {
  5401. opacity: 0; }
  5402. .print-node-materiau.associated {
  5403. transition: margin 0.3s ease-out; }
  5404. .print-node-materiau.associated.just-added {
  5405. margin-left: -850px;
  5406. margin-right: 850px; }
  5407. .modal-content .print-node-materiau.associated {
  5408. position: absolute;
  5409. top: 0;
  5410. left: 0;
  5411. z-index: 999; }
  5412. .print-node-materiau.removed {
  5413. transition: width 0.3s ease-out;
  5414. width: 0;
  5415. padding-left: 0;
  5416. padding-right: 0;
  5417. margin-right: 0;
  5418. margin-left: 0;
  5419. overflow: hidden; }
  5420. .print-node-materiau nav.nav {
  5421. position: absolute;
  5422. top: 0;
  5423. right: 0;
  5424. z-index: 11;
  5425. padding: 5px 0;
  5426. border-radius: 0 5px 0 3px;
  5427. background-clip: padding-box;
  5428. font-size: 10px;
  5429. background-color: rgba(255, 255, 255, 0.9);
  5430. color: #000; }
  5431. .print-node-materiau nav.nav a {
  5432. color: #000; }
  5433. .print-node-materiau nav.nav ul {
  5434. background-color: rgba(255, 255, 255, 0.9); }
  5435. .print-node-materiau nav.nav span.op {
  5436. font-weight: 900;
  5437. font-size: 14px; }
  5438. .print-node-materiau nav.nav ul {
  5439. padding: 0;
  5440. margin: 0; }
  5441. .print-node-materiau nav.nav section {
  5442. position: relative; }
  5443. .print-node-materiau nav.nav section > i {
  5444. margin: 0 5px; }
  5445. .print-node-materiau nav.nav section > i:hover {
  5446. cursor: pointer; }
  5447. .print-node-materiau nav.nav ul {
  5448. position: absolute;
  5449. right: 0;
  5450. top: 0;
  5451. margin-right: 22px;
  5452. min-width: 80px;
  5453. padding: 0;
  5454. display: block;
  5455. border-radius: 3px;
  5456. background-clip: padding-box;
  5457. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5458. .print-node-materiau nav.nav ul li {
  5459. padding: 0;
  5460. margin: 0;
  5461. line-height: 1;
  5462. display: block;
  5463. height: 0;
  5464. overflow: hidden;
  5465. transition: height 0.2s ease-out; }
  5466. .print-node-materiau nav.nav ul li a {
  5467. display: block; }
  5468. .print-node-materiau nav.nav ul.links a {
  5469. font-size: 12px; }
  5470. .print-node-materiau nav.nav ul.flag-lists-entity-links {
  5471. width: 160px;
  5472. font-size: 0; }
  5473. .print-node-materiau nav.nav ul.flag-lists-entity-links > * {
  5474. font-size: 11px; }
  5475. .print-node-materiau nav.nav ul.flag-lists-entity-links li {
  5476. display: moz-inline-stack;
  5477. display: inline-block;
  5478. vertical-align: top;
  5479. zoom: 1;
  5480. *display: inline;
  5481. min-width: 48%;
  5482. max-width: 98%;
  5483. padding-left: 2px; }
  5484. .print-node-materiau nav.nav ul.flag-lists-entity-links li a {
  5485. color: #a6a6a6;
  5486. transition: color 0.2s ease-out; }
  5487. .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 {
  5488. color: #000;
  5489. text-decoration: none; }
  5490. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5491. display: block;
  5492. width: 100%; }
  5493. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5494. margin-top: 1px;
  5495. padding-top: 1px;
  5496. border-top: 1px solid #e6e6e6; }
  5497. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5498. color: #000; }
  5499. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading {
  5500. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5501. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading a {
  5502. visibility: hidden; }
  5503. .ie8 .print-node-materiau nav.nav ul {
  5504. background: #FFF; }
  5505. .print-node-materiau nav.nav section:hover ul {
  5506. padding: 5px 5px; }
  5507. .print-node-materiau nav.nav section:hover ul li {
  5508. height: 17px; }
  5509. .print-node-materiau div.workflow {
  5510. position: absolute;
  5511. bottom: 0;
  5512. right: 0;
  5513. z-index: 11;
  5514. padding: 5px;
  5515. border-radius: 3px 0 5px 0;
  5516. background-clip: padding-box;
  5517. font-size: 10px;
  5518. vertical-align: top;
  5519. background-color: rgba(20, 20, 20, 0.9);
  5520. color: #fff; }
  5521. .print-node-materiau div.workflow span {
  5522. padding: 3px 0 0 4px;
  5523. display: moz-inline-stack;
  5524. display: inline-block;
  5525. vertical-align: top;
  5526. zoom: 1;
  5527. *display: inline; }
  5528. .print-node-materiau .field-name-field-description .upgrade {
  5529. font-size: 12px;
  5530. padding-top: 4em;
  5531. margin-top: -4.5em;
  5532. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5533. position: relative; }
  5534. .print-node-materiau .side.oops p, .print-node-materiau .side .upgrade p {
  5535. padding: 10px;
  5536. font-size: 12px; }
  5537. .print-node-materiau .side.oops p a, .print-node-materiau .side .upgrade p a {
  5538. display: block;
  5539. margin: 10px 0;
  5540. font-size: 18px;
  5541. padding: 0.1em 0.6em 0.2em;
  5542. border-radius: 0.3em;
  5543. background-clip: padding-box;
  5544. font-weight: bold;
  5545. border: 2px solid #69CDCF;
  5546. background-color: #69CDCF;
  5547. color: #fff;
  5548. cursor: pointer;
  5549. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5550. transition: text-shadow 0.2s ease-out;
  5551. text-align: center;
  5552. text-decoration: none; }
  5553. .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 {
  5554. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5555. .print-node-materiau .side.oops p a:active, .print-node-materiau .side .upgrade p a:active {
  5556. transition: text-shadow 0s ease-out;
  5557. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } }
  5558. .print-content .node-materiau.vm-print {
  5559. margin: 0;
  5560. position: relative; }
  5561. .print-content .node-materiau.vm-print .field-name-title-field {
  5562. font-weight: 500;
  5563. font-size: 1.4em; }
  5564. .print-content .node-materiau.vm-print .field-name-field-nature-titre {
  5565. font-weight: 500;
  5566. font-size: 1em;
  5567. margin-bottom: 0.5em; }
  5568. .print-content .node-materiau.vm-print .group-head-right {
  5569. position: absolute;
  5570. top: 0;
  5571. right: 0;
  5572. padding-top: 1em;
  5573. text-align: right;
  5574. font-size: 0.8em; }
  5575. .print-content .node-materiau.vm-print .group-head-right .field-name-field-reference-materio {
  5576. font-weight: 800;
  5577. font-size: 1.2em; }
  5578. .print-content .node-materiau.vm-print .side.group-side-left {
  5579. width: 45%;
  5580. position: absolute; }
  5581. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-description {
  5582. font-size: 0.8em; }
  5583. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-location {
  5584. font-size: 0.7em; }
  5585. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference {
  5586. display: inline-block;
  5587. vertical-align: top;
  5588. width: 45%;
  5589. margin: 0.5em 1em 0 0;
  5590. font-size: 0.7em; }
  5591. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .field-label {
  5592. font-size: 0.8em;
  5593. font-weight: 300; }
  5594. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-name-field-tode-company {
  5595. font-size: 1.2em; }
  5596. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-label {
  5597. display: none; }
  5598. .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 {
  5599. max-width: 100%; }
  5600. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image {
  5601. text-align: right; }
  5602. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure {
  5603. display: inline-block;
  5604. max-width: 19%;
  5605. margin: 0.5em 0 0 0.5em;
  5606. max-width: 100%;
  5607. margin-left: 50%; }
  5608. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure img {
  5609. max-width: 100%; }
  5610. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item {
  5611. display: none;
  5612. max-width: 19%;
  5613. margin: 0.5em 0 0 0.5em; }
  5614. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+7) {
  5615. display: inline-block; }
  5616. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+2) {
  5617. max-width: 100%;
  5618. margin-left: 50%; }
  5619. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item img {
  5620. max-width: 100%; }
  5621. .print-content .node-materiau.vm-print .field-name-field-tode-company {
  5622. font-size: 1.5em;
  5623. font-weight: 700; }
  5624. .print-content .node-materiau.vm-print .field-name-field-description,
  5625. .print-content .node-materiau.vm-print .field-name-field-company-fab,
  5626. .print-content .node-materiau.vm-print .field-name-field-reference-distrib {
  5627. padding-bottom: 1em; }
  5628. /*
  5629. ____ ____ _____ ________
  5630. / __ \/ __ \/ _/ | / /_ __/
  5631. / /_/ / /_/ // // |/ / / /
  5632. / ____/ _, _// // /| / / /
  5633. /_/ /_/ |_/___/_/ |_/ /_/
  5634. */
  5635. @media print {
  5636. @page {
  5637. margin: 1.5cm 7mm 8mm; } }
  5638. .print-site_name {
  5639. width: 100%;
  5640. vertical-align: bottom;
  5641. margin-bottom: 0.5em; }
  5642. .print-site_name h1 {
  5643. margin: 0 0 0 0;
  5644. font-size: 1.4em;
  5645. text-align: center; }
  5646. .print-site_name h1 a {
  5647. color: inherit; }
  5648. .print-site_name h1 a:hover {
  5649. text-decoration: none; }
  5650. .print-site_name span.slogan {
  5651. display: none;
  5652. font-size: 0.8em;
  5653. margin-top: -3px;
  5654. margin-left: -0.5em;
  5655. font-weight: 900; }
  5656. .ie8 .print-site_name span.slogan {
  5657. position: absolute;
  5658. margin-top: 22px; }
  5659. .print-content {
  5660. margin-bottom: 1em; }
  5661. .print-footer {
  5662. position: absolute;
  5663. bottom: 0;
  5664. text-align: center;
  5665. width: 100%; }
  5666. .print-footer p {
  5667. display: inline-block;
  5668. width: 45%;
  5669. text-align: center; }
  5670. /*
  5671. ___ __ ____________ __________ __ _______ __ __________________
  5672. / | / / / /_ __/ __ \/ ____/ __ \/ |/ / __ \/ / / ____/_ __/ ____/
  5673. / /| |/ / / / / / / / / / / / / / / /|_/ / /_/ / / / __/ / / / __/
  5674. / ___ / /_/ / / / / /_/ / /___/ /_/ / / / / ____/ /___/ /___ / / / /___
  5675. /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/
  5676. */
  5677. #autocomplete {
  5678. border: 0;
  5679. border-radius: 3px;
  5680. background-clip: padding-box;
  5681. background-color: rgba(0, 0, 0, 0.6);
  5682. text-align: left;
  5683. margin-left: 2px; }
  5684. .oldie #autocomplete {
  5685. background-color: #545454; }
  5686. #autocomplete li {
  5687. color: #FFF;
  5688. background-color: transparent;
  5689. font-size: 12px; }
  5690. #autocomplete li.selected {
  5691. background-color: rgba(0, 0, 0, 0.8); }
  5692. #autocomplete li div {
  5693. padding: 0.1em 5px; }
  5694. /**
  5695. * the old modal api (balck bg) for contextual forms (create new flag list)
  5696. */
  5697. #modal {
  5698. background-color: rgba(0, 0, 0, 0.7);
  5699. border-radius: 5px;
  5700. background-clip: padding-box;
  5701. border: 0;
  5702. font-size: 12px; }
  5703. #modal * {
  5704. color: #fff;
  5705. background-color: transparent; }
  5706. #modal form {
  5707. background-color: transparent;
  5708. color: #fff;
  5709. border: 0px; }
  5710. #modal form .form-actions {
  5711. background-color: transparent;
  5712. margin: 0;
  5713. padding: 0;
  5714. border: 0; }
  5715. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  5716. background-color: #fff;
  5717. color: #000;
  5718. border: 0; }
  5719. #modal form .form-actions {
  5720. text-align: right; }
  5721. #modal form input.form-submit {
  5722. -webkit-appearance: none;
  5723. -moz-appearance: none;
  5724. border-radius: 0;
  5725. border-style: solid;
  5726. border-width: 0;
  5727. cursor: pointer;
  5728. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5729. font-weight: normal;
  5730. line-height: normal;
  5731. margin: 0 0 1.25rem;
  5732. position: relative;
  5733. text-align: center;
  5734. text-decoration: none;
  5735. display: inline-block;
  5736. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5737. font-size: 0.6875rem;
  5738. background-color: #008CBA;
  5739. border-color: #007095;
  5740. color: #FFFFFF;
  5741. transition: background-color, 300ms, ease-out; }
  5742. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5743. background-color: #007095; }
  5744. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5745. color: #FFFFFF; }
  5746. #modal form input.form-submit[name="create"] {
  5747. -webkit-appearance: none;
  5748. -moz-appearance: none;
  5749. border-radius: 0;
  5750. border-style: solid;
  5751. border-width: 0;
  5752. cursor: pointer;
  5753. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5754. font-weight: normal;
  5755. line-height: normal;
  5756. margin: 0 0 1.25rem;
  5757. position: relative;
  5758. text-align: center;
  5759. text-decoration: none;
  5760. display: inline-block;
  5761. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5762. font-size: 0.6875rem;
  5763. background-color: #43AC6A;
  5764. border-color: #368a55;
  5765. color: #FFFFFF;
  5766. transition: background-color, 300ms, ease-out; }
  5767. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5768. background-color: #368a55; }
  5769. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5770. color: #FFFFFF; }
  5771. #modal form input.form-submit[name="save"] {
  5772. -webkit-appearance: none;
  5773. -moz-appearance: none;
  5774. border-radius: 0;
  5775. border-style: solid;
  5776. border-width: 0;
  5777. cursor: pointer;
  5778. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5779. font-weight: normal;
  5780. line-height: normal;
  5781. margin: 0 0 1.25rem;
  5782. position: relative;
  5783. text-align: center;
  5784. text-decoration: none;
  5785. display: inline-block;
  5786. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5787. font-size: 0.6875rem;
  5788. background-color: #43AC6A;
  5789. border-color: #368a55;
  5790. color: #FFFFFF;
  5791. transition: background-color, 300ms, ease-out; }
  5792. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5793. background-color: #368a55; }
  5794. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5795. color: #FFFFFF; }
  5796. #modal form input.form-submit[name="delete"] {
  5797. -webkit-appearance: none;
  5798. -moz-appearance: none;
  5799. border-radius: 0;
  5800. border-style: solid;
  5801. border-width: 0;
  5802. cursor: pointer;
  5803. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5804. font-weight: normal;
  5805. line-height: normal;
  5806. margin: 0 0 1.25rem;
  5807. position: relative;
  5808. text-align: center;
  5809. text-decoration: none;
  5810. display: inline-block;
  5811. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5812. font-size: 0.6875rem;
  5813. background-color: #f04124;
  5814. border-color: #cf2a0e;
  5815. color: #FFFFFF;
  5816. transition: background-color, 300ms, ease-out; }
  5817. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5818. background-color: #cf2a0e; }
  5819. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5820. color: #FFFFFF; }
  5821. #modal form input.form-submit[name="cancel"] {
  5822. -webkit-appearance: none;
  5823. -moz-appearance: none;
  5824. border-radius: 0;
  5825. border-style: solid;
  5826. border-width: 0;
  5827. cursor: pointer;
  5828. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5829. font-weight: normal;
  5830. line-height: normal;
  5831. margin: 0 0 1.25rem;
  5832. position: relative;
  5833. text-align: center;
  5834. text-decoration: none;
  5835. display: inline-block;
  5836. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5837. font-size: 0.6875rem;
  5838. background-color: #e7e7e7;
  5839. border-color: #b9b9b9;
  5840. color: #333333;
  5841. transition: background-color, 300ms, ease-out; }
  5842. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5843. background-color: #b9b9b9; }
  5844. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5845. color: #333333; }
  5846. #modal > * {
  5847. padding: 10px; }
  5848. #modal #flag-lists-form .form-item-title input {
  5849. width: 95%; }
  5850. #modal .actions {
  5851. text-align: right; }
  5852. /**
  5853. * the new modal api used for preview and register modal
  5854. */
  5855. .modal-wrapper {
  5856. bottom: 0;
  5857. left: 0;
  5858. position: fixed;
  5859. right: 0;
  5860. text-align: center;
  5861. top: 0;
  5862. white-space: nowrap;
  5863. z-index: 99998; }
  5864. .modal-wrapper:before {
  5865. content: "";
  5866. display: inline-block;
  5867. height: 100%;
  5868. margin-right: -0.25em;
  5869. vertical-align: middle; }
  5870. .modal-wrapper:after, .modal-wrapper:before {
  5871. -moz-box-sizing: border-box; }
  5872. .modal-wrapper .modal-bg {
  5873. background-color: #000;
  5874. position: absolute;
  5875. top: 0;
  5876. left: 0;
  5877. width: 100%;
  5878. height: 100%;
  5879. opacity: 0.5; }
  5880. .modal-wrapper .modal-content {
  5881. position: relative;
  5882. display: inline-block;
  5883. margin: 0 auto;
  5884. text-align: left;
  5885. vertical-align: middle;
  5886. white-space: normal;
  5887. min-height: 200px; }
  5888. /*
  5889. _______ __________ ____ __ __ ____ ___ _ __
  5890. / / ___// ____/ __ \/ __ \/ / / / / __ \/ | / | / /
  5891. __ / /\__ \/ / / /_/ / / / / / / / / /_/ / /| | / |/ /
  5892. / /_/ /___/ / /___/ _, _/ /_/ / /___/ /___/ ____/ ___ |/ /| /
  5893. \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/
  5894. */
  5895. .jspContainer .jspVerticalBar {
  5896. background-color: transparent;
  5897. width: 5px; }
  5898. .jspContainer .jspVerticalBar .jspTrack {
  5899. background-color: transparent; }
  5900. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  5901. background-color: #ccc;
  5902. border-radius: 3px;
  5903. background-clip: padding-box; }
  5904. /*
  5905. __________ ____ __ ______________
  5906. /_ __/ __ \/ __ \/ / /_ __/ _/ __ / / / / / / / / / / / / / // /_/ /
  5907. / / / /_/ / /_/ / /___/ / _/ // ____/
  5908. /_/ \____/\____/_____/_/ /___/_/
  5909. */
  5910. #tooltip {
  5911. position: absolute;
  5912. z-index: 999;
  5913. max-width: 180px;
  5914. background-color: white;
  5915. padding: 5px;
  5916. border-radius: 3px;
  5917. background-clip: padding-box;
  5918. font-size: 12px;
  5919. font-weight: 500;
  5920. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  5921. #tooltip.op-visible {
  5922. transition: opacity 0.1s ease-out; }
  5923. /*
  5924. ______________________ ____ ___ ________ __
  5925. / ____/ ____/ ____/ __ \/ __ )/ | / ____/ //_/
  5926. / /_ / __/ / __/ / / / / __ / /| |/ / / ,<
  5927. / __/ / /___/ /___/ /_/ / /_/ / ___ / /___/ /| |
  5928. /_/ /_____/_____/_____/_____/_/ |_\____/_/ |_|
  5929. */
  5930. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  5931. #block-feedback-form {
  5932. bottom: 5px;
  5933. left: 5px;
  5934. right: auto; } }
  5935. #block-feedback-form h2 {
  5936. line-height: 1.2;
  5937. font-size: 14px;
  5938. margin: 0; }
  5939. #block-feedback-form h2 .title {
  5940. display: none; }
  5941. #block-feedback-form #feedback-form-toggle {
  5942. padding: 2px 3px;
  5943. border-radius: 3px;
  5944. background-clip: padding-box;
  5945. background-color: #ff7600;
  5946. color: #fff;
  5947. line-height: 2;
  5948. font-weight: 900; }
  5949. #block-feedback-form .content {
  5950. background-color: rgba(0, 0, 0, 0.7);
  5951. border-radius: 5px;
  5952. background-clip: padding-box;
  5953. border: 0;
  5954. font-size: 12px; }
  5955. #block-feedback-form .content * {
  5956. color: #fff;
  5957. background-color: transparent; }
  5958. #block-feedback-form .content form {
  5959. background-color: transparent;
  5960. color: #fff;
  5961. border: 0px; }
  5962. #block-feedback-form .content form .form-actions {
  5963. background-color: transparent;
  5964. margin: 0;
  5965. padding: 0;
  5966. border: 0; }
  5967. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  5968. background-color: #fff;
  5969. color: #000;
  5970. border: 0; }
  5971. #block-feedback-form .content form .form-actions {
  5972. text-align: right; }
  5973. #block-feedback-form .content form input.form-submit {
  5974. -webkit-appearance: none;
  5975. -moz-appearance: none;
  5976. border-radius: 0;
  5977. border-style: solid;
  5978. border-width: 0;
  5979. cursor: pointer;
  5980. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5981. font-weight: normal;
  5982. line-height: normal;
  5983. margin: 0 0 1.25rem;
  5984. position: relative;
  5985. text-align: center;
  5986. text-decoration: none;
  5987. display: inline-block;
  5988. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  5989. font-size: 0.6875rem;
  5990. background-color: #008CBA;
  5991. border-color: #007095;
  5992. color: #FFFFFF;
  5993. transition: background-color, 300ms, ease-out; }
  5994. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  5995. background-color: #007095; }
  5996. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  5997. color: #FFFFFF; }
  5998. #block-feedback-form .content form input.form-submit[name="create"] {
  5999. -webkit-appearance: none;
  6000. -moz-appearance: none;
  6001. border-radius: 0;
  6002. border-style: solid;
  6003. border-width: 0;
  6004. cursor: pointer;
  6005. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6006. font-weight: normal;
  6007. line-height: normal;
  6008. margin: 0 0 1.25rem;
  6009. position: relative;
  6010. text-align: center;
  6011. text-decoration: none;
  6012. display: inline-block;
  6013. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6014. font-size: 0.6875rem;
  6015. background-color: #43AC6A;
  6016. border-color: #368a55;
  6017. color: #FFFFFF;
  6018. transition: background-color, 300ms, ease-out; }
  6019. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6020. background-color: #368a55; }
  6021. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6022. color: #FFFFFF; }
  6023. #block-feedback-form .content form input.form-submit[name="save"] {
  6024. -webkit-appearance: none;
  6025. -moz-appearance: none;
  6026. border-radius: 0;
  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-align: center;
  6036. text-decoration: none;
  6037. display: inline-block;
  6038. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6039. font-size: 0.6875rem;
  6040. background-color: #43AC6A;
  6041. border-color: #368a55;
  6042. color: #FFFFFF;
  6043. transition: background-color, 300ms, ease-out; }
  6044. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6045. background-color: #368a55; }
  6046. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6047. color: #FFFFFF; }
  6048. #block-feedback-form .content form input.form-submit[name="delete"] {
  6049. -webkit-appearance: none;
  6050. -moz-appearance: none;
  6051. border-radius: 0;
  6052. border-style: solid;
  6053. border-width: 0;
  6054. cursor: pointer;
  6055. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6056. font-weight: normal;
  6057. line-height: normal;
  6058. margin: 0 0 1.25rem;
  6059. position: relative;
  6060. text-align: center;
  6061. text-decoration: none;
  6062. display: inline-block;
  6063. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6064. font-size: 0.6875rem;
  6065. background-color: #f04124;
  6066. border-color: #cf2a0e;
  6067. color: #FFFFFF;
  6068. transition: background-color, 300ms, ease-out; }
  6069. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6070. background-color: #cf2a0e; }
  6071. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6072. color: #FFFFFF; }
  6073. #block-feedback-form .content form input.form-submit[name="cancel"] {
  6074. -webkit-appearance: none;
  6075. -moz-appearance: none;
  6076. border-radius: 0;
  6077. border-style: solid;
  6078. border-width: 0;
  6079. cursor: pointer;
  6080. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6081. font-weight: normal;
  6082. line-height: normal;
  6083. margin: 0 0 1.25rem;
  6084. position: relative;
  6085. text-align: center;
  6086. text-decoration: none;
  6087. display: inline-block;
  6088. padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  6089. font-size: 0.6875rem;
  6090. background-color: #e7e7e7;
  6091. border-color: #b9b9b9;
  6092. color: #333333;
  6093. transition: background-color, 300ms, ease-out; }
  6094. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6095. background-color: #b9b9b9; }
  6096. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6097. color: #333333; }
  6098. .ie8 #block-feedback-form .content {
  6099. background: #000; }
  6100. #block-feedback-form #feedback-status-message {
  6101. background-color: #fff;
  6102. padding: 5px; }
  6103. /*
  6104. _________ _____ __ __ __ _________ ____ _____
  6105. /_ __/ | / ___// //_/ _/_/ /_ __/ | / __ ) ___/
  6106. / / / /| | \__ \/ ,< _/_/ / / / /| | / __ \__ / / / ___ |___/ / /| | _/_/ / / / ___ |/ /_/ /__/ /
  6107. /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/
  6108. */
  6109. #tasks ul.tabs {
  6110. display: moz-inline-stack;
  6111. display: inline-block;
  6112. vertical-align: top;
  6113. zoom: 1;
  6114. *display: inline;
  6115. border: 0 solid #fff;
  6116. padding: 0;
  6117. margin: 0; }
  6118. #tasks ul.tabs li {
  6119. padding: 0;
  6120. margin: 2px 5px;
  6121. border: 0 solid #fff; }
  6122. #tasks ul.tabs a {
  6123. border: 0;
  6124. color: #7f7f7f; }
  6125. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6126. font-weight: 900;
  6127. color: #000; }
  6128. #tasks ul.tabs.primary a {
  6129. font-size: 12px;
  6130. padding: 5px 10px;
  6131. background-color: #e6e6e6;
  6132. border-radius: 3px;
  6133. background-clip: padding-box; }
  6134. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6135. background-color: #e6e6e6; }
  6136. #tasks ul.tabs.secondary {
  6137. font-size: 10px;
  6138. padding: 0.5em 1em; }
  6139. /*
  6140. ______________ _____________________
  6141. / ___/_ __/ |/_ __/ _/ ____/ ___/
  6142. \__ \ / / / /| | / / / // / \__ ___/ // / / ___ |/ / _/ // /___ ___/ /
  6143. /____//_/ /_/ |_/_/ /___/\____//____/
  6144. */
  6145. /*
  6146. _ _ ___ ___ ___
  6147. | | |_ -| -_| _|
  6148. |___|___|___|_|
  6149. */
  6150. .page-user #center, .page-user-edit #center, .page-user-password #center, .page-user-reset #center, .page-toboggan #center {
  6151. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right; }
  6152. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6153. width: 800px;
  6154. margin: 0 auto; }
  6155. .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 {
  6156. display: none; }
  6157. .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 {
  6158. font-size: 12px;
  6159. padding: 5px 10px;
  6160. background-color: #e6e6e6;
  6161. border-radius: 3px;
  6162. background-clip: padding-box; }
  6163. .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 {
  6164. background-color: #e6e6e6; }
  6165. .page-user #center > *, .page-user-edit #center > *, .page-user-password #center > *, .page-user-reset #center > *, .page-toboggan #center > * {
  6166. width: 800px;
  6167. margin: 0 auto;
  6168. padding-top: 1em;
  6169. font-size: 14px; }
  6170. .page-user #center > * fieldset, .page-user-edit #center > * fieldset, .page-user-password #center > * fieldset, .page-user-reset #center > * fieldset, .page-toboggan #center > * fieldset {
  6171. margin-bottom: 1em;
  6172. border: none; }
  6173. .page-user #center > * legend, .page-user-edit #center > * legend, .page-user-password #center > * legend, .page-user-reset #center > * legend, .page-toboggan #center > * legend {
  6174. font-size: 16px;
  6175. margin: 0;
  6176. padding: 10px 0 5px 0;
  6177. line-height: 1;
  6178. border: 0 solid #fff; }
  6179. .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 {
  6180. color: #000; }
  6181. .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 {
  6182. margin: 0 0 0.5em 0;
  6183. width: 100%; }
  6184. .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 {
  6185. display: moz-inline-stack;
  6186. display: inline-block;
  6187. vertical-align: top;
  6188. zoom: 1;
  6189. *display: inline;
  6190. vertical-align: middle; }
  6191. .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 {
  6192. margin-right: 1em; }
  6193. .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 {
  6194. padding: 2px 4px;
  6195. width: 20em; }
  6196. .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 {
  6197. margin: 0 0 2em 0; }
  6198. .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 {
  6199. width: 9em; }
  6200. .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 {
  6201. width: auto; }
  6202. .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 {
  6203. width: 15em;
  6204. margin-top: 0; }
  6205. .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 {
  6206. margin: 0; }
  6207. .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 {
  6208. font-size: 14px;
  6209. margin: 0; }
  6210. .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 {
  6211. display: moz-inline-stack;
  6212. display: inline-block;
  6213. vertical-align: top;
  6214. zoom: 1;
  6215. *display: inline;
  6216. width: auto;
  6217. margin-right: 1em; }
  6218. .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 {
  6219. margin: 0; }
  6220. .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 {
  6221. width: auto;
  6222. padding: 2px 4px;
  6223. height: auto; }
  6224. .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 {
  6225. font-size: 10px; }
  6226. .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 {
  6227. margin: 0;
  6228. text-align: right;
  6229. padding: 1em 0.5em; }
  6230. .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 {
  6231. min-width: 10em; }
  6232. .page-user #center > * #edit-profile-adherent-field-first-name, .page-user #center > * #edit-profile-adherent-field-name,
  6233. .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,
  6234. .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,
  6235. .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,
  6236. .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,
  6237. .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,
  6238. .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,
  6239. .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,
  6240. .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,
  6241. .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,
  6242. .page-toboggan #center > * #edit-profile-adherent-field-naf, .page-toboggan #center > * #edit-profile-adherent-field-siret {
  6243. display: moz-inline-stack;
  6244. display: inline-block;
  6245. vertical-align: top;
  6246. zoom: 1;
  6247. *display: inline;
  6248. vertical-align: middle;
  6249. width: auto;
  6250. margin: 0 1em 0.5em 0; }
  6251. .page-user #center > * #edit-profile-adherent-field-first-name div, .page-user #center > * #edit-profile-adherent-field-name div,
  6252. .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,
  6253. .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,
  6254. .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,
  6255. .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,
  6256. .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,
  6257. .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,
  6258. .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,
  6259. .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,
  6260. .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,
  6261. .page-toboggan #center > * #edit-profile-adherent-field-naf div, .page-toboggan #center > * #edit-profile-adherent-field-siret div {
  6262. width: auto;
  6263. margin: 0;
  6264. padding: 0; }
  6265. .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 {
  6266. width: auto; }
  6267. .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 {
  6268. width: 8em; }
  6269. .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 {
  6270. width: 13em; }
  6271. .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 {
  6272. margin: 2em 0 0 0; }
  6273. .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 {
  6274. width: auto; }
  6275. .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 {
  6276. width: 4em; }
  6277. .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 {
  6278. display: moz-inline-stack;
  6279. display: inline-block;
  6280. vertical-align: top;
  6281. zoom: 1;
  6282. *display: inline;
  6283. vertical-align: middle; }
  6284. .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 {
  6285. width: 10em; }
  6286. .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 {
  6287. padding: 0; }
  6288. .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 {
  6289. width: 35em; }
  6290. .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 {
  6291. width: auto;
  6292. margin-right: 1em; }
  6293. .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 {
  6294. margin: 2em 0 0 0; }
  6295. .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 > * {
  6296. display: moz-inline-stack;
  6297. display: inline-block;
  6298. vertical-align: top;
  6299. zoom: 1;
  6300. *display: inline;
  6301. vertical-align: middle; }
  6302. .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 {
  6303. width: 35em; }
  6304. .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 {
  6305. border: 0 solid transparent; }
  6306. .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 {
  6307. display: inline; }
  6308. .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 {
  6309. padding: 0; }
  6310. /*
  6311. _ __
  6312. _____(_)___ ___ ____ / /__ ____ ___ _ _______
  6313. / ___/ / __ `__ \/ __ \/ / _ \/ __ \/ _ \ | /| / / ___/
  6314. (__ ) / / / / / / /_/ / / __/ / / / __/ |/ |/ (__ )
  6315. /____/_/_/ /_/ /_/ .___/_/\___/_/ /_/\___/|__/|__/____/
  6316. /_/
  6317. */
  6318. body.node-type-simplenews #content .inner-content {
  6319. text-align: center; }
  6320. body.node-type-simplenews #content article.node.node-simplenews {
  6321. display: moz-inline-stack;
  6322. display: inline-block;
  6323. vertical-align: top;
  6324. zoom: 1;
  6325. *display: inline;
  6326. max-width: 600px;
  6327. padding: 1em 0; }
  6328. body.node-type-simplenews #content article.node.node-simplenews tbody {
  6329. border-top: 0px; }
  6330. body.node-type-simplenews #content article.node.node-simplenews img {
  6331. max-width: 9999px; }
  6332. @media only screen and (max-width: 40em) {
  6333. body.node-type-simplenews #content article.node.node-simplenews {
  6334. max-width: 100%;
  6335. overflow-x: hidden; }
  6336. body.node-type-simplenews #content article.node.node-simplenews table {
  6337. width: 100% !important; }
  6338. body.node-type-simplenews #content article.node.node-simplenews td {
  6339. vertical-align: top; }
  6340. body.node-type-simplenews #content article.node.node-simplenews img {
  6341. max-width: 100%; }
  6342. body.node-type-simplenews #content article.node.node-simplenews p {
  6343. padding: 0 0.5em; } }
  6344. /*
  6345. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6346. | _ | _ | __| __| | | | | |_ _| _ | |_ _|
  6347. | __| | | | __| | --| | | | | | | | | | --| | |
  6348. |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_|
  6349. */
  6350. .page-node-11175 #main #center {
  6351. background: #fff url("../img/bg-contact.gif") no-repeat bottom right; }
  6352. .page-node-11175 #main .field-name-body p {
  6353. display: moz-inline-stack;
  6354. display: inline-block;
  6355. vertical-align: top;
  6356. zoom: 1;
  6357. *display: inline;
  6358. margin: 15px; }
  6359. .page-node-11175 #main .field-name-body p strong {
  6360. font-size: 18px; }
  6361. /*
  6362. _____ _____ _____ _____ _____ _____ _____
  6363. | _ | __ | | | | | | __|
  6364. | __| -|- -| --|- -| | | | | |
  6365. |__| |__|__|_____|_____|_____|_|___|_____|
  6366. */
  6367. @media only screen and (min-width: 40.0625em) {
  6368. 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 {
  6369. display: moz-inline-stack;
  6370. display: inline-block;
  6371. vertical-align: top;
  6372. zoom: 1;
  6373. *display: inline;
  6374. margin: 10px;
  6375. float: none; }
  6376. body.page-node-11187 .node-11187 .field-name-body div.column {
  6377. width: 22.4%; }
  6378. 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 {
  6379. min-height: 170px; }
  6380. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  6381. width: 46%; }
  6382. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  6383. min-height: 110px; }
  6384. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  6385. width: 92%; }
  6386. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  6387. width: auto;
  6388. max-width: 98%; }
  6389. body.page-node-11187 #block-materio-user-user-register {
  6390. width: 600px;
  6391. margin: 0 auto;
  6392. padding: 2em; } }
  6393. @media only screen and (max-width: 40em) {
  6394. body.page-node-11187 #block-system-help {
  6395. text-align: center; } }
  6396. body.page-node-11187 .node-11187 .field-name-body {
  6397. text-align: center; }
  6398. body.page-node-11187 .node-11187 .field-name-body > * {
  6399. text-align: left; }
  6400. 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 {
  6401. position: relative;
  6402. background-color: #fff;
  6403. border-radius: 5px;
  6404. background-clip: padding-box;
  6405. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  6406. overflow: hidden; }
  6407. .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 {
  6408. max-width: 500px;
  6409. margin: auto;
  6410. margin-bottom: 15px;
  6411. border: 1px solid #C6C6C6; }
  6412. 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 > * {
  6413. padding: 0 10px; }
  6414. 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 {
  6415. text-align: left;
  6416. margin: 5px 0 0 15px; }
  6417. 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 {
  6418. padding: 0 0 0 15px;
  6419. font-size: 18px;
  6420. font-style: italic;
  6421. font-weight: bold;
  6422. line-height: 1; }
  6423. 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 {
  6424. margin: 0;
  6425. padding: 0 15px; }
  6426. 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 {
  6427. list-style: none;
  6428. font-size: 12px; }
  6429. 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 {
  6430. content: "+ ";
  6431. font-weight: 900; }
  6432. 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 {
  6433. font-size: 12px;
  6434. margin: 0;
  6435. padding: 0 15px; }
  6436. 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 {
  6437. margin: 0;
  6438. border-radius: 0 0 5px 5px 0 0 0;
  6439. background-clip: padding-box;
  6440. border: 1px solid #fff;
  6441. min-height: 92px; }
  6442. 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 {
  6443. display: block;
  6444. width: 100%;
  6445. padding: 15px 0;
  6446. color: #1A1A1A;
  6447. text-decoration: none; }
  6448. 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 {
  6449. background-color: #C8C8C8; }
  6450. 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 {
  6451. background-color: #69CDCF; }
  6452. 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 {
  6453. background-color: #D476AE; }
  6454. 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 {
  6455. background-color: #E6DE1C; }
  6456. 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 {
  6457. background-color: #4BA13D; }
  6458. 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 {
  6459. min-height: 62px;
  6460. padding: 15px 0; }
  6461. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  6462. padding: 10px 0 0;
  6463. font-size: 24px; }
  6464. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  6465. padding: 0;
  6466. font-size: 24px;
  6467. text-align: center;
  6468. font-style: italic;
  6469. font-weight: 900;
  6470. cursor: pointer;
  6471. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6472. transition: text-shadow 0.3s ease-out; }
  6473. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  6474. font-size: 20px; }
  6475. 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 {
  6476. text-shadow: 0 0 3px white; }
  6477. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  6478. transition: text-shadow 0s ease-out;
  6479. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6480. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  6481. padding: 10px 0 0;
  6482. font-size: 24px;
  6483. top: 0; }
  6484. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  6485. min-height: 2em; }
  6486. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  6487. font-size: 14px;
  6488. min-height: 120px; }
  6489. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  6490. font-size: 14px;
  6491. text-align: left;
  6492. padding: 0 1em;
  6493. background-color: #ddd; }
  6494. /*
  6495. _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6496. | _ | \| | | __| __| | | | | | __| | __ | |
  6497. | | | | | __|__ |- -| | | | | | | __| | | -| | | |
  6498. |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_|
  6499. */
  6500. .node-11186 nav ul.links a.language-link {
  6501. display: none; }
  6502. #webform-client-form-11186 {
  6503. background-color: #e6e6e6;
  6504. border-radius: 10px;
  6505. background-clip: padding-box; }
  6506. @media only screen and (min-width: 40.0625em) {
  6507. #webform-client-form-11186 {
  6508. padding: 10px 30px; }
  6509. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6510. margin: 10px 0; }
  6511. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6512. width: auto; }
  6513. #webform-client-form-11186 fieldset {
  6514. border-radius: 5px;
  6515. background-clip: padding-box;
  6516. border-left: 1px solid #cccccc;
  6517. border-bottom: 1px solid #cccccc;
  6518. padding: 10px;
  6519. border-top-width: 0;
  6520. border-right-width: 0;
  6521. border-bottom-width: 0; }
  6522. #webform-client-form-11186 fieldset fieldset {
  6523. border: 0 solid #ddd;
  6524. padding: 0; }
  6525. #webform-client-form-11186 legend {
  6526. margin: 0;
  6527. font-size: 18px;
  6528. font-weight: 700; }
  6529. #webform-client-form-11186 .form-item {
  6530. margin: 0 20px 0 0; }
  6531. #webform-client-form-11186 label {
  6532. font-size: 12px;
  6533. width: 10em;
  6534. display: moz-inline-stack;
  6535. display: inline-block;
  6536. vertical-align: top;
  6537. zoom: 1;
  6538. *display: inline;
  6539. vertical-align: middle;
  6540. margin-right: 1em;
  6541. border-bottom: 1px solid #cccccc; }
  6542. #webform-client-form-11186 .description {
  6543. font-size: 10px;
  6544. width: 25em;
  6545. display: moz-inline-stack;
  6546. display: inline-block;
  6547. vertical-align: top;
  6548. zoom: 1;
  6549. *display: inline;
  6550. vertical-align: bottom;
  6551. margin-left: 1em;
  6552. color: #7f7f7f; }
  6553. #webform-client-form-11186 input.form-text {
  6554. width: 13em; } }
  6555. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  6556. #webform-client-form-11186 {
  6557. padding: 10px; }
  6558. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6559. margin: 0 0 10px 0; }
  6560. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  6561. width: 100%; }
  6562. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6563. width: 75%; }
  6564. #webform-client-form-11186 legend {
  6565. margin: 0;
  6566. font-size: 16px;
  6567. font-weight: 700; }
  6568. #webform-client-form-11186 .form-item {
  6569. margin: 0;
  6570. float: none; }
  6571. #webform-client-form-11186 label {
  6572. font-size: 12px;
  6573. width: 30%;
  6574. display: moz-inline-stack;
  6575. display: inline-block;
  6576. vertical-align: top;
  6577. zoom: 1;
  6578. *display: inline;
  6579. vertical-align: middle;
  6580. margin-right: 0.5em; }
  6581. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  6582. width: 60%; }
  6583. #webform-client-form-11186 #webform-component-infos {
  6584. font-size: 14px; } }
  6585. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  6586. display: moz-inline-stack;
  6587. display: inline-block;
  6588. vertical-align: top;
  6589. zoom: 1;
  6590. *display: inline; }
  6591. #webform-client-form-11186 #webform-component-column-left {
  6592. display: moz-inline-stack;
  6593. display: inline-block;
  6594. vertical-align: top;
  6595. zoom: 1;
  6596. *display: inline;
  6597. width: 25%;
  6598. border: none; }
  6599. #webform-client-form-11186 #webform-component-column-right {
  6600. display: moz-inline-stack;
  6601. display: inline-block;
  6602. vertical-align: top;
  6603. zoom: 1;
  6604. *display: inline;
  6605. min-width: 70%; }
  6606. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  6607. border: 1px solid #ddd;
  6608. border-radius: 5px;
  6609. background-clip: padding-box;
  6610. padding: 10px 5px;
  6611. margin: 5px 0;
  6612. background-color: #fff; }
  6613. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  6614. display: moz-inline-stack;
  6615. display: inline-block;
  6616. vertical-align: top;
  6617. zoom: 1;
  6618. *display: inline;
  6619. vertical-align: middle;
  6620. margin: 0px 5px; }
  6621. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  6622. font-size: 20px;
  6623. font-weight: 700;
  6624. display: moz-inline-stack;
  6625. display: inline-block;
  6626. vertical-align: top;
  6627. zoom: 1;
  6628. *display: inline;
  6629. vertical-align: middle;
  6630. margin: 0; }
  6631. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  6632. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  6633. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  6634. background-color: #69CDCF; }
  6635. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  6636. background-color: #D476AE; }
  6637. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  6638. background-color: #E6DE1C; }
  6639. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  6640. opacity: 0.4; }
  6641. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  6642. width: 200px;
  6643. font-size: 18px;
  6644. font-weight: 700; }
  6645. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6646. border: 0; }
  6647. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  6648. display: block; }
  6649. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  6650. display: moz-inline-stack;
  6651. display: inline-block;
  6652. vertical-align: top;
  6653. zoom: 1;
  6654. *display: inline; }
  6655. #webform-client-form-11186 #addressfield-wrapper {
  6656. margin-top: 1em; }
  6657. #webform-client-form-11186 .street-block .form-item {
  6658. display: moz-inline-stack;
  6659. display: inline-block;
  6660. vertical-align: top;
  6661. zoom: 1;
  6662. *display: inline; }
  6663. #webform-client-form-11186 #webform-component-column-right--collaborators {
  6664. margin: 20px 0;
  6665. overflow: hidden; }
  6666. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  6667. display: moz-inline-stack;
  6668. display: inline-block;
  6669. vertical-align: top;
  6670. zoom: 1;
  6671. *display: inline;
  6672. width: 33%; }
  6673. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  6674. display: block; }
  6675. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  6676. width: 6em; }
  6677. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  6678. width: 11em; }
  6679. #webform-client-form-11186 #webform-component-infos {
  6680. margin: 20px 0; }
  6681. #webform-client-form-11186 .form-actions {
  6682. padding: 0;
  6683. margin: 0;
  6684. border: 0px;
  6685. background-color: transparent;
  6686. text-align: left; }
  6687. #webform-client-form-11186 .form-actions .form-submit {
  6688. border: 2px solid #69CDCF;
  6689. background-color: #69CDCF;
  6690. color: #fff;
  6691. font-size: 18px;
  6692. padding: 0.2em 1em 0.3em;
  6693. border-radius: 0.3em;
  6694. background-clip: padding-box;
  6695. font-weight: bold;
  6696. margin-bottom: 9px;
  6697. cursor: pointer;
  6698. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6699. transition: text-shadow 0.2s ease-out; }
  6700. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  6701. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6702. #webform-client-form-11186 .form-actions .form-submit:active {
  6703. transition: text-shadow 0s ease-out;
  6704. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6705. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  6706. margin: 0;
  6707. font-size: 18px;
  6708. font-weight: 700;
  6709. border: none;
  6710. line-height: 40px; }
  6711. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  6712. display: moz-inline-stack;
  6713. display: inline-block;
  6714. vertical-align: top;
  6715. zoom: 1;
  6716. *display: inline; }
  6717. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  6718. width: auto; }
  6719. #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 {
  6720. margin: 0; }
  6721. #webform-client-form-11186 #edit-submitted-terms-of-services {
  6722. margin-bottom: 0.5em; }
  6723. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6724. margin: 0 0.3em 0 0; }
  6725. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6726. width: auto; }
  6727. /*
  6728. _____ _____ _____ _____ _____ _____ _____ _____ _____ _ _ _ _____ _____ _____ _____
  6729. | | | | | | _ | __ |_ _| | | | | __| | | | | __| | __ | |
  6730. | | | --| | --| | -| | | | | |- -| __| | | | | __| | | -| | | |
  6731. |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_|
  6732. */
  6733. #uc-cart-view-form {
  6734. background-color: #e6e6e6;
  6735. padding: 10px, 30px;
  6736. display: inline-block; }
  6737. #uc-cart-view-form table {
  6738. width: auto;
  6739. display: table;
  6740. background-color: #fff; }
  6741. #uc-cart-view-form table thead th {
  6742. border-bottom: none;
  6743. padding: 1em; }
  6744. #uc-cart-view-form table tbody {
  6745. border-top: none; }
  6746. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  6747. background-color: #fff;
  6748. border-bottom: none; }
  6749. #uc-cart-view-form table tbody td {
  6750. padding: 1em; }
  6751. #uc-cart-view-form fieldset {
  6752. border: none !important; }
  6753. #uc-cart-view-form .form-type-uc-quantity input {
  6754. width: 2em; }
  6755. #uc-cart-view-form .form-actions {
  6756. padding: 0;
  6757. margin: 0;
  6758. border: 0px;
  6759. background-color: transparent;
  6760. text-align: right;
  6761. display: block;
  6762. width: 100%; }
  6763. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  6764. display: block; }
  6765. #uc-cart-view-form .form-actions .form-submit {
  6766. font-size: 16px;
  6767. font-weight: bold;
  6768. padding: 0.1em 0.3em 0.2em;
  6769. border-radius: 0.3em;
  6770. background-clip: padding-box;
  6771. border: 2px solid #ccc;
  6772. background-color: #ccc;
  6773. color: #4D4D4D;
  6774. cursor: pointer;
  6775. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6776. transition: text-shadow 0.3s ease-out;
  6777. text-align: center;
  6778. text-decoration: none;
  6779. margin-left: 1em; }
  6780. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  6781. text-shadow: 0 0 3px white; }
  6782. #uc-cart-view-form .form-actions .form-submit:active {
  6783. transition: text-shadow 0s ease-out;
  6784. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6785. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  6786. font-size: 16px;
  6787. font-weight: bold;
  6788. padding: 0.1em 0.3em 0.2em;
  6789. border-radius: 0.3em;
  6790. background-clip: padding-box;
  6791. border: 2px solid #ccc;
  6792. background-color: #ccc;
  6793. color: #4D4D4D;
  6794. cursor: pointer;
  6795. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6796. transition: text-shadow 0.3s ease-out;
  6797. text-align: center;
  6798. text-decoration: none;
  6799. cursor: pointer;
  6800. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6801. transition: text-shadow 0.2s ease-out;
  6802. border-color: #69CDCF;
  6803. background-color: #69CDCF;
  6804. color: #fff; }
  6805. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6806. text-shadow: 0 0 3px white; }
  6807. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6808. transition: text-shadow 0s ease-out;
  6809. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6810. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6811. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6812. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6813. transition: text-shadow 0s ease-out;
  6814. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6815. /*
  6816. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6817. | | | | | | | | __| | | | | | |_ _| | __| | __ | |
  6818. | | | --| | --| | __| --| -| | | | | | | | __| | | -| | | |
  6819. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_|
  6820. */
  6821. #uc-cart-checkout-form {
  6822. background-color: #e6e6e6;
  6823. padding: 10px, 30px; }
  6824. #uc-cart-checkout-form fieldset {
  6825. border: none !important; }
  6826. #uc-cart-checkout-form fieldset.form-row {
  6827. padding-bottom: 20px;
  6828. margin-bottom: 20px; }
  6829. #uc-cart-checkout-form fieldset.form-column {
  6830. display: moz-inline-stack;
  6831. display: inline-block;
  6832. vertical-align: top;
  6833. zoom: 1;
  6834. *display: inline;
  6835. max-width: 39%;
  6836. clear: both;
  6837. float: none;
  6838. margin: 15px 1em; }
  6839. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  6840. margin: 10px 0; }
  6841. #uc-cart-checkout-form fieldset.form-column-right {
  6842. border-left: 1px solid #ccc;
  6843. margin-left: 2em;
  6844. padding-left: 2em; }
  6845. #uc-cart-checkout-form legend {
  6846. margin: 0;
  6847. font-size: 18px;
  6848. font-weight: 700;
  6849. border: none;
  6850. line-height: 2; }
  6851. #uc-cart-checkout-form .fieldset-description {
  6852. font-size: 12px; }
  6853. #uc-cart-checkout-form .fieldset-wrapper {
  6854. font-size: 12px; }
  6855. #uc-cart-checkout-form .form-item {
  6856. margin: 0 20px 0 0; }
  6857. #uc-cart-checkout-form .description {
  6858. font-size: 10px;
  6859. width: 25em;
  6860. display: moz-inline-stack;
  6861. display: inline-block;
  6862. vertical-align: top;
  6863. zoom: 1;
  6864. *display: inline;
  6865. vertical-align: bottom;
  6866. margin-left: 1em;
  6867. color: #7f7f7f; }
  6868. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  6869. display: moz-inline-stack;
  6870. display: inline-block;
  6871. vertical-align: top;
  6872. zoom: 1;
  6873. *display: inline;
  6874. border-radius: 5px;
  6875. background-clip: padding-box;
  6876. padding: 10px;
  6877. background-color: #fff; }
  6878. #uc-cart-checkout-form #cart-pane table {
  6879. font-size: 14px;
  6880. min-width: 20em; }
  6881. #uc-cart-checkout-form #cart-pane table td.price {
  6882. width: 4em; }
  6883. #uc-cart-checkout-form #cart-pane tbody {
  6884. border: none; }
  6885. #uc-cart-checkout-form #cart-pane tr {
  6886. background-color: transparent;
  6887. border: none; }
  6888. #uc-cart-checkout-form #cart-pane td {
  6889. padding: 0 5px;
  6890. vertical-align: bottom; }
  6891. #uc-cart-checkout-form #cart-pane td.products {
  6892. width: auto; }
  6893. #uc-cart-checkout-form #cart-pane td.products a {
  6894. color: inherit;
  6895. font-weight: 700; }
  6896. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  6897. margin: 0;
  6898. font-size: 12px; }
  6899. #uc-cart-checkout-form #cart-pane td.products li {
  6900. list-style: none; }
  6901. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  6902. font-size: 16px;
  6903. font-weight: 700; }
  6904. #uc-cart-checkout-form #customer-pane {
  6905. width: 35em; }
  6906. #uc-cart-checkout-form #billing-pane label {
  6907. font-size: 12px;
  6908. width: 8em;
  6909. display: moz-inline-stack;
  6910. display: inline-block;
  6911. vertical-align: top;
  6912. zoom: 1;
  6913. *display: inline;
  6914. vertical-align: middle;
  6915. margin-right: 1em;
  6916. border-bottom: 1px solid #cccccc; }
  6917. #uc-cart-checkout-form #billing-pane input.form-text {
  6918. width: 13em; }
  6919. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  6920. background-color: #fff;
  6921. border-radius: 5px;
  6922. background-clip: padding-box;
  6923. padding: 10px; }
  6924. #uc-cart-checkout-form #payment-pane #line-items-div {
  6925. float: none;
  6926. border: none;
  6927. display: moz-inline-stack;
  6928. display: inline-block;
  6929. vertical-align: top;
  6930. zoom: 1;
  6931. *display: inline;
  6932. margin: 10px 0 20px; }
  6933. #uc-cart-checkout-form #payment-pane #line-items-div table {
  6934. font-size: 14px;
  6935. min-width: 20em; }
  6936. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  6937. width: 4em; }
  6938. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  6939. border: none; }
  6940. #uc-cart-checkout-form #payment-pane #line-items-div td {
  6941. padding: 0 5px; }
  6942. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  6943. font-weight: 500; }
  6944. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  6945. font-size: 16px;
  6946. font-weight: 700;
  6947. text-align: right; }
  6948. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  6949. width: auto;
  6950. border-bottom: none; }
  6951. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  6952. border: 1px solid #ddd;
  6953. border-radius: 5px;
  6954. margin: 0.5em;
  6955. padding: 0.5em; }
  6956. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  6957. font-weight: bold; }
  6958. #uc-cart-checkout-form #payment-pane #payment-details {
  6959. width: 25em;
  6960. border-top: none;
  6961. padding: 0;
  6962. margin: 0; }
  6963. #uc-cart-checkout-form #edit-actions {
  6964. width: 100%;
  6965. padding: 1em 0;
  6966. margin: 0;
  6967. border: 0px;
  6968. background-color: transparent;
  6969. text-align: center; }
  6970. #uc-cart-checkout-form #edit-actions .form-submit {
  6971. font-size: 16px;
  6972. font-weight: bold;
  6973. padding: 0.1em 0.3em 0.2em;
  6974. border-radius: 0.3em;
  6975. background-clip: padding-box;
  6976. border: 2px solid #ccc;
  6977. background-color: #ccc;
  6978. color: #4D4D4D;
  6979. cursor: pointer;
  6980. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6981. transition: text-shadow 0.3s ease-out;
  6982. text-align: center;
  6983. text-decoration: none;
  6984. margin-left: 1em; }
  6985. #uc-cart-checkout-form #edit-actions .form-submit:hover, #uc-cart-checkout-form #edit-actions .form-submit:focus {
  6986. text-shadow: 0 0 3px white; }
  6987. #uc-cart-checkout-form #edit-actions .form-submit:active {
  6988. transition: text-shadow 0s ease-out;
  6989. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6990. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue {
  6991. font-size: 16px;
  6992. font-weight: bold;
  6993. padding: 0.1em 0.3em 0.2em;
  6994. border-radius: 0.3em;
  6995. background-clip: padding-box;
  6996. border: 2px solid #ccc;
  6997. background-color: #ccc;
  6998. color: #4D4D4D;
  6999. cursor: pointer;
  7000. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7001. transition: text-shadow 0.3s ease-out;
  7002. text-align: center;
  7003. text-decoration: none;
  7004. cursor: pointer;
  7005. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7006. transition: text-shadow 0.2s ease-out;
  7007. border-color: #69CDCF;
  7008. background-color: #69CDCF;
  7009. color: #fff; }
  7010. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  7011. text-shadow: 0 0 3px white; }
  7012. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  7013. transition: text-shadow 0s ease-out;
  7014. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7015. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  7016. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7017. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  7018. transition: text-shadow 0s ease-out;
  7019. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7020. /*
  7021. _____ _____ _____ _____ _____ _____
  7022. | | | | | | _ | __ |_ _|
  7023. | | | --| | --| | -| | |
  7024. |_____|_____| |_____|__|__|__|__| |_|
  7025. &&
  7026. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ ____ _____ _____ _____ _____ _____
  7027. | | | | | | | | __| | | | | | |_ _| | | | _ | | | | \| _ |_ _| | | | |
  7028. | | | --| | --| | __| --| -| | | | | | | | | | | |__|- -| | | | | | |- -| | | | | |
  7029. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___|
  7030. */
  7031. .page-cart-checkout-review #content > .inner-content {
  7032. display: inline-block;
  7033. padding: 1em; }
  7034. .page-cart-checkout-review #edit-actions {
  7035. margin: 0;
  7036. padding: 0; }
  7037. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  7038. display: block; }
  7039. .page-cart-checkout-review #review-instructions {
  7040. width: 30em;
  7041. padding: 1em 0; }
  7042. .page-cart-checkout-review table.order-review-table {
  7043. border: none; }
  7044. .page-cart-checkout-review table.order-review-table .pane-title-row {
  7045. border: none;
  7046. background-color: transparent;
  7047. text-align: left;
  7048. font-size: 18px; }
  7049. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  7050. padding: 1em 0 0 0; }
  7051. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  7052. background-color: transparent;
  7053. border: none; }
  7054. .page-cart-checkout-review table.order-review-table td.title-col {
  7055. padding: 0;
  7056. text-align: left; }
  7057. .page-cart-checkout-review table.order-review-table td.data-col {
  7058. padding: 0;
  7059. width: 75%; }
  7060. .page-cart-checkout-review table.order-review-table .review-button-row {
  7061. border: none;
  7062. background-color: transparent; }
  7063. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  7064. padding: 3em 0 0 0; }
  7065. .page-cart-checkout-review table.order-review-table .review-button-row form {
  7066. margin: 0 0.5em 0 0;
  7067. display: moz-inline-stack;
  7068. display: inline-block;
  7069. vertical-align: top;
  7070. zoom: 1;
  7071. *display: inline; }
  7072. .page-cart-checkout-review #edit-actions {
  7073. border: 0px;
  7074. background-color: transparent;
  7075. text-align: right; }
  7076. .page-cart-checkout-review input.form-submit {
  7077. font-size: 16px;
  7078. font-weight: bold;
  7079. padding: 0.1em 0.3em 0.2em;
  7080. border-radius: 0.3em;
  7081. background-clip: padding-box;
  7082. border: 2px solid #ccc;
  7083. background-color: #ccc;
  7084. color: #4D4D4D;
  7085. cursor: pointer;
  7086. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7087. transition: text-shadow 0.3s ease-out;
  7088. text-align: center;
  7089. text-decoration: none;
  7090. margin-left: 1em; }
  7091. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  7092. text-shadow: 0 0 3px white; }
  7093. .page-cart-checkout-review input.form-submit:active {
  7094. transition: text-shadow 0s ease-out;
  7095. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7096. .page-cart-checkout-review input.form-submit#edit-submit {
  7097. font-size: 16px;
  7098. font-weight: bold;
  7099. padding: 0.1em 0.3em 0.2em;
  7100. border-radius: 0.3em;
  7101. background-clip: padding-box;
  7102. border: 2px solid #ccc;
  7103. background-color: #ccc;
  7104. color: #4D4D4D;
  7105. cursor: pointer;
  7106. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7107. transition: text-shadow 0.3s ease-out;
  7108. text-align: center;
  7109. text-decoration: none;
  7110. cursor: pointer;
  7111. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7112. transition: text-shadow 0.2s ease-out;
  7113. border-color: #69CDCF;
  7114. background-color: #69CDCF;
  7115. color: #fff; }
  7116. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7117. text-shadow: 0 0 3px white; }
  7118. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7119. transition: text-shadow 0s ease-out;
  7120. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7121. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7122. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7123. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7124. transition: text-shadow 0s ease-out;
  7125. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7126. /*
  7127. ____ _____ ____ _____ _____ _____ _____ _____ _____ _____
  7128. | \| | \| _ | |_ _| | | | | __|
  7129. | | |- -| | | | --| | | |- -| | | | | __|
  7130. |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____|
  7131. |__|
  7132. */
  7133. #didactique-page .node-didactique {
  7134. border-radius: 5px;
  7135. background-clip: padding-box;
  7136. background-color: #FFF;
  7137. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7138. max-width: 850px;
  7139. font-size: 14px;
  7140. background-color: #fff;
  7141. margin: 1em auto;
  7142. padding: 1em; }
  7143. #didactique-page .node-didactique .field-name-field-emvideo {
  7144. margin: 1em 0; }
  7145. #didactique-page .node-didactique .field-name-title-field {
  7146. font-size: 24px;
  7147. font-weight: 900;
  7148. font-style: italic;
  7149. padding: 5px 0; }
  7150. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  7151. max-width: 100%; }
  7152. @media only screen and (min-width: 40.0625em) {
  7153. #didactique-page .side {
  7154. display: moz-inline-stack;
  7155. display: inline-block;
  7156. vertical-align: top;
  7157. zoom: 1;
  7158. *display: inline;
  7159. vertical-align: top; }
  7160. #didactique-page .group-sideleft {
  7161. width: 60%; }
  7162. #didactique-page .group-sideright {
  7163. width: 39%; } }
  7164. /*
  7165. _ _ _ _____ _____ _ _ _ _____ _____ _____ _____
  7166. | | | | | | | | | | | __| | _ | __ | __|
  7167. | | | | | | | | | | | __| | | -| __|
  7168. |_____|__|__|_____| |_____|_____| |__|__|__|__|_____|
  7169. */
  7170. @media only screen and (max-width: 40em) {
  7171. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  7172. display: none; } }
  7173. /*
  7174. _ _
  7175. _____ ___|_|___| |_ ___ ___ ___ ___ ___ ___
  7176. | | .'| | | _| -_| | .'| | _| -_|
  7177. |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___|
  7178. */
  7179. .maintenance-page #container, .maintenance-page #header {
  7180. text-align: center;
  7181. padding: 0;
  7182. position: relative; }
  7183. .maintenance-page #main {
  7184. background-color: transparent; }
  7185. .maintenance-page #header h1.site-name {
  7186. font-size: 36px;
  7187. margin: 0;
  7188. padding-left: 0; }
  7189. .maintenance-page h2.site-slogan {
  7190. font-size: 16px;
  7191. font-weight: 300;
  7192. margin: 0;
  7193. line-height: 1.1; }
  7194. /*
  7195. _____ _____ _____
  7196. | __| _ | |
  7197. | __| | | |
  7198. |__| |__|__|__ _|
  7199. |__|
  7200. */
  7201. .page-faq-page #main {
  7202. background: #fff url("../img/bg-faq.png") no-repeat bottom right; }
  7203. #content .faq-content .faq-description {
  7204. font-size: 12px;
  7205. padding-bottom: 2em; }
  7206. #content .faq-content ul.faq-ul-questions-top {
  7207. margin: 0; }
  7208. #content .faq-content ul.faq-ul-questions-top li {
  7209. list-style: none; }
  7210. #content .faq-content ul.faq-ul-questions-top li a {
  7211. font-size: 18px;
  7212. font-weight: 500; }
  7213. #content .faq-content h3.faq-header {
  7214. font-size: 20px;
  7215. font-weight: 700;
  7216. line-height: 1.2;
  7217. margin: 0; }
  7218. #content .faq-content h3.faq-header a {
  7219. color: #000; }
  7220. #content .faq-content .faq-dl-hide-answer {
  7221. padding: 0; }
  7222. #content .faq-content .faq-category-group {
  7223. padding-bottom: 1em; }
  7224. #content .faq-content .faq-question-answer {
  7225. padding: 0.3em 0 0 0.8em; }
  7226. #content .faq-content .faq-question-answer .faq-question {
  7227. font-size: 16px;
  7228. padding: 0;
  7229. font-weight: 500; }
  7230. #content .faq-content .faq-question-answer .faq-question a {
  7231. color: #000; }
  7232. #content .faq-content .faq-question-answer .faq-answer {
  7233. padding: 0;
  7234. margin-bottom: 2em;
  7235. font-size: 12px; }
  7236. #content .faq-content .field-name-body img {
  7237. max-width: 50%;
  7238. height: auto; }
  7239. /*
  7240. __ __ _ _____
  7241. / / / /___ ____ ___ ___ | | / /__ / /_/ / __ \/ __ `__ \/ _ \ | | / /__/ /
  7242. / __ / /_/ / / / / / / __/ | |/ // __/
  7243. /_/ /_/\____/_/ /_/ /_/\___/ |___//____/
  7244. */
  7245. body.home-v2 #center {
  7246. background-color: transparent;
  7247. padding: 0; }
  7248. #home-v2 h2 {
  7249. font-size: 2.1em;
  7250. font-weight: 300; }
  7251. #home-v2 a {
  7252. color: #000; }
  7253. #home-v2 .field-name-field-liens {
  7254. margin-top: 1em; }
  7255. #home-v2 .field-name-field-liens .field-item {
  7256. display: moz-inline-stack;
  7257. display: inline-block;
  7258. vertical-align: top;
  7259. zoom: 1;
  7260. *display: inline;
  7261. margin: 0 0.5em 0.5em 0; }
  7262. #home-v2 .field-name-field-liens a {
  7263. font-weight: 700;
  7264. display: moz-inline-stack;
  7265. display: inline-block;
  7266. vertical-align: top;
  7267. zoom: 1;
  7268. *display: inline;
  7269. padding: 0.5em 1em 0.7em;
  7270. border-radius: 5px;
  7271. background-clip: padding-box;
  7272. background-color: rgba(255, 255, 255, 0.8); }
  7273. body.logged-in #home-v2 .field-name-field-liens a.visitor {
  7274. display: none; }
  7275. body.not-logged-in #home-v2 .field-name-field-liens a.member {
  7276. display: none; }
  7277. #home-v2 .panel-separator {
  7278. clear: both; }
  7279. #home-v2 > .panel-panel > div > .panel-pane {
  7280. overflow: hidden; }
  7281. #home-v2 > .panel-panel > div > .panel-pane.pane-node {
  7282. border-radius: 5px;
  7283. background-clip: padding-box;
  7284. overflow: hidden; }
  7285. #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node {
  7286. position: relative;
  7287. width: 100%;
  7288. height: 100%;
  7289. overflow: hidden; }
  7290. #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a {
  7291. background-color: rgba(255, 255, 255, 0.7);
  7292. border-radius: 5px;
  7293. background-clip: padding-box;
  7294. padding: 15px; }
  7295. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7296. height: auto;
  7297. background-color: #f7f4ed;
  7298. margin-top: 2em;
  7299. margin-bottom: 2em;
  7300. padding-top: 0; }
  7301. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7302. margin: 0 auto; }
  7303. @media only screen and (max-width: 40em) {
  7304. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7305. width: 320px;
  7306. height: 180px; } }
  7307. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  7308. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7309. width: 640px;
  7310. height: 360px; } }
  7311. @media only screen and (min-width: 64.0625em) and (max-width: 90em) {
  7312. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7313. width: 800px;
  7314. height: 450px; } }
  7315. @media only screen and (min-width: 90.0625em) {
  7316. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7317. width: 1024px;
  7318. height: 576px; } }
  7319. #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 {
  7320. width: 100%;
  7321. height: 100%; }
  7322. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field {
  7323. display: none; }
  7324. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body {
  7325. margin-top: 1em;
  7326. text-align: center; }
  7327. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7328. text-align: left;
  7329. display: moz-inline-stack;
  7330. display: inline-block;
  7331. vertical-align: top;
  7332. zoom: 1;
  7333. *display: inline;
  7334. width: 35%;
  7335. margin-left: 2%;
  7336. font-size: 0.756em; }
  7337. @media only screen and (max-width: 40em) {
  7338. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7339. width: 100%;
  7340. text-align: center; } }
  7341. @media only screen and (max-width: 40em) {
  7342. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7343. margin-top: 0.5em; } }
  7344. #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 {
  7345. margin: 2em 0; }
  7346. #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 {
  7347. margin: 0px;
  7348. text-align: center; }
  7349. #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 {
  7350. margin: 0 1em 0 0;
  7351. padding: 0px;
  7352. list-style: none;
  7353. height: 2.5em;
  7354. display: moz-inline-stack;
  7355. display: inline-block;
  7356. vertical-align: top;
  7357. zoom: 1;
  7358. *display: inline; }
  7359. #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 {
  7360. background-color: #4d4d4d;
  7361. border-radius: 5px;
  7362. background-clip: padding-box;
  7363. padding: 5px 12px 7px;
  7364. color: #f7f4ed;
  7365. font-size: 18px;
  7366. font-weight: 500;
  7367. transition: opacity,background-color 0.2s ease-out; }
  7368. #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"] {
  7369. background-color: #e6de1c;
  7370. cursor: pointer;
  7371. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7372. transition: text-shadow 0.2s ease-out; }
  7373. #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 {
  7374. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7375. #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 {
  7376. transition: text-shadow 0s ease-out;
  7377. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7378. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7379. padding: 2em 0;
  7380. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  7381. text-align: center; }
  7382. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content {
  7383. display: moz-inline-stack;
  7384. display: inline-block;
  7385. vertical-align: top;
  7386. zoom: 1;
  7387. *display: inline;
  7388. text-align: left; }
  7389. #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 {
  7390. font-weight: 900;
  7391. font-style: italic;
  7392. padding: 5px 0;
  7393. margin: 0;
  7394. line-height: 1;
  7395. display: moz-inline-stack;
  7396. display: inline-block;
  7397. vertical-align: top;
  7398. zoom: 1;
  7399. *display: inline;
  7400. vertical-align: middle; }
  7401. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 {
  7402. font-size: 24px; }
  7403. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 {
  7404. font-size: 16px; }
  7405. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form {
  7406. margin: 0 1em;
  7407. padding: 0px;
  7408. display: moz-inline-stack;
  7409. display: inline-block;
  7410. vertical-align: top;
  7411. zoom: 1;
  7412. *display: inline;
  7413. vertical-align: middle; }
  7414. #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 {
  7415. margin: 0;
  7416. position: relative;
  7417. display: moz-inline-stack;
  7418. display: inline-block;
  7419. vertical-align: top;
  7420. zoom: 1;
  7421. *display: inline;
  7422. vertical-align: middle; }
  7423. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-account {
  7424. margin-right: 5px; }
  7425. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7426. font-size: 12px;
  7427. border-radius: 5px;
  7428. background-clip: padding-box;
  7429. margin-bottom: 4px; }
  7430. .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7431. margin-right: 5px; }
  7432. #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 {
  7433. width: 11em; }
  7434. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text {
  7435. width: 7em; }
  7436. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check {
  7437. position: absolute;
  7438. bottom: 100%;
  7439. z-index: 9999;
  7440. background-image: none;
  7441. height: auto;
  7442. padding: 5px;
  7443. border-radius: 5px;
  7444. background-clip: padding-box;
  7445. margin-bottom: 10px;
  7446. font-size: 10px;
  7447. background-color: #fff;
  7448. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  7449. transition: bottom 0.1s ease-out; }
  7450. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error {
  7451. background-color: #f3968d;
  7452. color: #fff; }
  7453. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok {
  7454. display: none; }
  7455. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit {
  7456. font-size: 16px;
  7457. padding: 0.1em 0.6em 0.2em;
  7458. border-radius: 0.3em;
  7459. background-clip: padding-box;
  7460. font-weight: bold;
  7461. margin-bottom: 4px; }
  7462. #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 {
  7463. margin-bottom: 0;
  7464. display: block;
  7465. line-height: 1; }
  7466. #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 > * {
  7467. display: moz-inline-stack;
  7468. display: inline-block;
  7469. vertical-align: top;
  7470. zoom: 1;
  7471. *display: inline;
  7472. vertical-align: middle;
  7473. margin: 0; }
  7474. #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 {
  7475. font-size: 10px;
  7476. background-color: #fff;
  7477. border-radius: 3px;
  7478. background-clip: padding-box; }
  7479. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit {
  7480. border: 2px solid #69CDCF;
  7481. background-color: #69CDCF;
  7482. color: #fff;
  7483. cursor: pointer;
  7484. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7485. transition: text-shadow 0.2s ease-out; }
  7486. #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 {
  7487. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7488. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:active {
  7489. transition: text-shadow 0s ease-out;
  7490. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7491. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] {
  7492. background-color: #ddd;
  7493. border: 2px solid #ddd; }
  7494. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit {
  7495. border: 2px solid #E6DE1C;
  7496. background-color: #E6DE1C;
  7497. color: #fff;
  7498. cursor: pointer;
  7499. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7500. transition: text-shadow 0.2s ease-out; }
  7501. #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 {
  7502. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7503. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:active {
  7504. transition: text-shadow 0s ease-out;
  7505. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7506. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews {
  7507. display: none; }
  7508. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join {
  7509. display: moz-inline-stack;
  7510. display: inline-block;
  7511. vertical-align: top;
  7512. zoom: 1;
  7513. *display: inline;
  7514. vertical-align: middle;
  7515. margin: 0 1em;
  7516. font-size: 16px;
  7517. padding: 0.1em 0.3em 0.2em;
  7518. border-radius: 0.3em;
  7519. background-clip: padding-box;
  7520. font-weight: bold;
  7521. border: 2px solid #69CDCF;
  7522. background-color: #69CDCF;
  7523. color: #fff;
  7524. cursor: pointer;
  7525. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7526. transition: text-shadow 0.2s ease-out;
  7527. text-align: center;
  7528. text-decoration: none; }
  7529. #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 {
  7530. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7531. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:active {
  7532. transition: text-shadow 0s ease-out;
  7533. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7534. @media only screen and (max-width: 40em) {
  7535. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7536. background-position: 160% 50%;
  7537. min-height: 60px;
  7538. padding: 15px 0; }
  7539. #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 {
  7540. width: 7em; } }
  7541. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error {
  7542. color: #b94a48;
  7543. font-size: 12px; }
  7544. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7545. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7546. transition: box-shadow 0.3s ease-out;
  7547. height: 450px;
  7548. margin-top: 15px;
  7549. background-color: #fff;
  7550. position: relative; }
  7551. #home-v2 > .panel-panel > div > .panel-pane.showroom:hover {
  7552. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7553. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content {
  7554. width: 100%;
  7555. height: 100%;
  7556. position: relative; }
  7557. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node {
  7558. position: absolute;
  7559. height: 100%;
  7560. width: 100%; }
  7561. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7562. position: absolute;
  7563. width: 100%;
  7564. height: 100%;
  7565. overflow: hidden; }
  7566. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img {
  7567. width: 100%;
  7568. margin-top: -10%; }
  7569. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7570. position: relative;
  7571. z-index: 2;
  7572. width: 30%;
  7573. margin: 3em 2em; }
  7574. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content {
  7575. background-color: rgba(255, 255, 255, 0.8);
  7576. padding: 1em;
  7577. border-radius: 5px;
  7578. background-clip: padding-box; }
  7579. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field {
  7580. font-size: 2.1em;
  7581. font-weight: 300; }
  7582. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body {
  7583. margin-top: 0.5em; }
  7584. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7585. content: url("../img/bulle.png");
  7586. transform: scale(0.8);
  7587. position: absolute;
  7588. bottom: -120px;
  7589. right: -20px;
  7590. z-index: 10; }
  7591. @media only screen and (max-width: 40em) {
  7592. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7593. margin-top: 10px; }
  7594. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7595. position: absolute;
  7596. width: 400%;
  7597. height: 100%;
  7598. overflow: hidden; }
  7599. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7600. width: auto;
  7601. padding: 2%;
  7602. margin: 2%; }
  7603. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body {
  7604. font-size: 0.756em;
  7605. margin-top: 0.5em; }
  7606. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7607. opacity: 0.4; } }
  7608. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7609. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7610. transition: box-shadow 0.3s ease-out;
  7611. height: 450px;
  7612. margin-top: 30px;
  7613. background-color: #FFF;
  7614. position: relative; }
  7615. #home-v2 > .panel-panel > div > .panel-pane.bdd:hover {
  7616. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7617. #home-v2 > .panel-panel > div > .panel-pane.bdd .links a {
  7618. background-color: #e6e6e6; }
  7619. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7620. display: moz-inline-stack;
  7621. display: inline-block;
  7622. vertical-align: top;
  7623. zoom: 1;
  7624. *display: inline;
  7625. width: 60%;
  7626. height: 100%;
  7627. overflow: hidden; }
  7628. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img {
  7629. max-width: 2000px; }
  7630. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7631. display: moz-inline-stack;
  7632. display: inline-block;
  7633. vertical-align: top;
  7634. zoom: 1;
  7635. *display: inline;
  7636. width: 35%;
  7637. padding: 1em;
  7638. border-radius: 5px;
  7639. background-clip: padding-box; }
  7640. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field {
  7641. font-size: 2.1em;
  7642. font-weight: 300; }
  7643. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body {
  7644. margin-top: 1em; }
  7645. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a {
  7646. background-color: rgba(230, 230, 230, 0.8); }
  7647. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7648. content: url("../img/boule.png");
  7649. transform: scale(0.8);
  7650. position: absolute;
  7651. bottom: -50px;
  7652. left: -50px; }
  7653. @media only screen and (max-width: 40em) {
  7654. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7655. height: auto; }
  7656. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7657. width: 100%;
  7658. display: block;
  7659. height: 310px;
  7660. overflow: hidden; }
  7661. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7662. display: block;
  7663. width: 100%;
  7664. z-index: 1;
  7665. padding: 0; }
  7666. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper > * {
  7667. padding: 1em; }
  7668. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7669. opacity: 0.6;
  7670. z-index: 0; } }
  7671. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7672. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7673. transition: box-shadow 0.3s ease-out;
  7674. position: relative;
  7675. height: 300px;
  7676. margin-top: 30px;
  7677. background-color: #000;
  7678. color: #FFF; }
  7679. #home-v2 > .panel-panel > div > .panel-pane.formations:hover {
  7680. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7681. #home-v2 > .panel-panel > div > .panel-pane.formations a {
  7682. color: #FFF; }
  7683. #home-v2 > .panel-panel > div > .panel-pane.formations .node {
  7684. padding: 0 0 0 30%;
  7685. width: 70%; }
  7686. #home-v2 > .panel-panel > div > .panel-pane.formations .node:before {
  7687. content: " ";
  7688. background: transparent url("../img/formations.png") no-repeat center center;
  7689. background-clip: padding-box;
  7690. background-size: contain;
  7691. position: absolute;
  7692. left: 0;
  7693. z-index: 2;
  7694. width: 30%;
  7695. height: 100%; }
  7696. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper {
  7697. padding: 1em;
  7698. position: relative; }
  7699. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field {
  7700. font-size: 2.1em;
  7701. font-weight: 300; }
  7702. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body {
  7703. margin-top: 1em; }
  7704. @media only screen and (max-width: 40em) {
  7705. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7706. height: auto; } }
  7707. #home-v2 > .panel-panel > div > .panel-pane.services {
  7708. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7709. transition: box-shadow 0.3s ease-out;
  7710. background-color: #FFF;
  7711. height: 300px;
  7712. margin-top: 30px; }
  7713. #home-v2 > .panel-panel > div > .panel-pane.services:hover {
  7714. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7715. #home-v2 > .panel-panel > div > .panel-pane.services .node {
  7716. padding: 0 30% 0 0;
  7717. width: 70%; }
  7718. #home-v2 > .panel-panel > div > .panel-pane.services .node:before {
  7719. content: " ";
  7720. background: transparent url("../img/services.png") no-repeat center center;
  7721. background-clip: padding-box;
  7722. background-size: contain;
  7723. position: absolute;
  7724. right: 0;
  7725. z-index: 2;
  7726. width: 30%;
  7727. height: 100%; }
  7728. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper {
  7729. padding: 1em;
  7730. position: relative; }
  7731. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field {
  7732. font-size: 2.1em;
  7733. font-weight: 300; }
  7734. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body {
  7735. margin-top: 1em; }
  7736. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-field-liens a {
  7737. background-color: rgba(230, 230, 230, 0.8); }
  7738. @media only screen and (max-width: 40em) {
  7739. #home-v2 > .panel-panel > div > .panel-pane.services {
  7740. height: auto; } }
  7741. #home-v2 > .panel-panel > div > .panel-pane.publication {
  7742. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7743. transition: box-shadow 0.3s ease-out;
  7744. position: relative;
  7745. margin-top: 30px;
  7746. padding: 1em;
  7747. background-color: #000;
  7748. border-radius: 10px;
  7749. background-clip: padding-box; }
  7750. #home-v2 > .panel-panel > div > .panel-pane.publication:hover {
  7751. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7752. #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 {
  7753. color: #fff; }
  7754. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7755. display: moz-inline-stack;
  7756. display: inline-block;
  7757. vertical-align: top;
  7758. zoom: 1;
  7759. *display: inline;
  7760. width: 30%; }
  7761. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 {
  7762. display: none; }
  7763. @media only screen and (max-width: 40em) {
  7764. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7765. display: block;
  7766. width: 90%;
  7767. margin-bottom: 1em; } }
  7768. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7769. background-color: #e6e6e6;
  7770. border-radius: 10px;
  7771. background-clip: padding-box;
  7772. margin-top: 30px;
  7773. padding-top: 1em;
  7774. padding-bottom: 1em;
  7775. position: relative; }
  7776. #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 {
  7777. font-size: 30px; }
  7778. @media only screen and (min-width: 40.0625em) {
  7779. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper {
  7780. margin: 0 auto;
  7781. max-width: 80rem;
  7782. width: 100%; }
  7783. #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 {
  7784. content: " ";
  7785. display: table; }
  7786. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after {
  7787. clear: both; }
  7788. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7789. overflow: hidden;
  7790. padding-left: 0.9375rem;
  7791. padding-right: 0.9375rem;
  7792. width: 33.33333%;
  7793. float: left;
  7794. padding: 0em;
  7795. margin-left: 1em; }
  7796. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first {
  7797. width: auto; }
  7798. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) {
  7799. width: 31%; }
  7800. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7801. margin: 0; }
  7802. #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 {
  7803. margin: 0;
  7804. height: 610px; } }
  7805. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom {
  7806. margin: 0 auto;
  7807. max-width: 80rem;
  7808. width: 100%;
  7809. margin-top: 1.5em;
  7810. margin-bottom: 1.5em; }
  7811. #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 {
  7812. content: " ";
  7813. display: table; }
  7814. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after {
  7815. clear: both; }
  7816. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside {
  7817. padding-left: 0.9375rem;
  7818. padding-right: 0.9375rem;
  7819. width: 100%;
  7820. float: left; }
  7821. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p {
  7822. display: none; }
  7823. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes {
  7824. margin: 0 0 0.5em 0; }
  7825. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item {
  7826. display: moz-inline-stack;
  7827. display: inline-block;
  7828. vertical-align: top;
  7829. zoom: 1;
  7830. *display: inline;
  7831. margin-right: 1em; }
  7832. #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 {
  7833. vertical-align: middle; }
  7834. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail {
  7835. display: moz-inline-stack;
  7836. display: inline-block;
  7837. vertical-align: top;
  7838. zoom: 1;
  7839. *display: inline;
  7840. margin: 0; }
  7841. #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 {
  7842. display: moz-inline-stack;
  7843. display: inline-block;
  7844. vertical-align: top;
  7845. zoom: 1;
  7846. *display: inline;
  7847. margin-right: 1em; }
  7848. #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 {
  7849. display: moz-inline-stack;
  7850. display: inline-block;
  7851. vertical-align: top;
  7852. zoom: 1;
  7853. *display: inline; }
  7854. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews {
  7855. border-radius: 5px;
  7856. background-clip: padding-box;
  7857. background-color: #FFF;
  7858. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7859. transition: box-shadow 0.3s ease-out;
  7860. overflow: hidden;
  7861. position: relative;
  7862. margin: 7px; }
  7863. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a {
  7864. position: absolute;
  7865. bottom: 0;
  7866. width: 100%;
  7867. background-color: #FFF;
  7868. text-align: center; }
  7869. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 {
  7870. padding: 10px;
  7871. margin: 0;
  7872. font-size: 1em; }
  7873. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7874. content: url("../img/point.png");
  7875. position: absolute;
  7876. bottom: 20px;
  7877. right: 10px; }
  7878. @media only screen and (max-width: 40em) {
  7879. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7880. background-color: transparent; }
  7881. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7882. width: 100%; }
  7883. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7884. margin: 0; }
  7885. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node {
  7886. max-width: 100%;
  7887. margin: 0; }
  7888. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body {
  7889. width: 100%;
  7890. padding: 0; }
  7891. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body p {
  7892. max-width: 100%;
  7893. padding: 1em; }
  7894. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a {
  7895. padding: 0;
  7896. display: block;
  7897. height: 100%; }
  7898. #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 {
  7899. max-width: 100%; }
  7900. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7901. z-index: -1;
  7902. opacity: 0.4; } }
  7903. #home-v2 #contact-pane {
  7904. margin: 2em 0;
  7905. padding: 1em;
  7906. background-color: #e6e6e6; }
  7907. #home-v2 #contact-pane .field-name-body {
  7908. text-align: center; }
  7909. #home-v2 #contact-pane .field-name-body p {
  7910. display: moz-inline-stack;
  7911. display: inline-block;
  7912. vertical-align: top;
  7913. zoom: 1;
  7914. *display: inline;
  7915. min-width: 20%; }
  7916. /*
  7917. _ _ _ _ _
  7918. | | | (_) | | (_)
  7919. _ __ _ _| |__ | |_ ___ __ _| |_ _ ___ _ __ ___
  7920. | '_ \| | | | '_ \| | |/ __/ _` | __| |/ _ \| '_ \/ __|
  7921. | |_) | |_| | |_) | | | (_| (_| | |_| | (_) | | | \__ | .__/ \__,_|_.__/|_|_|\___\__,_|\__|_|\___/|_| |_|___/
  7922. | |
  7923. |_|
  7924. */
  7925. body.node-type-publication article.node-publication .field figure, body.node-type-publication article.node-publication .field img {
  7926. max-width: 100%; }
  7927. @media only screen and (min-width: 64.0625em) {
  7928. body.node-type-publication article.node-publication .field {
  7929. display: moz-inline-stack;
  7930. display: inline-block;
  7931. vertical-align: top;
  7932. zoom: 1;
  7933. *display: inline; }
  7934. body.node-type-publication article.node-publication .field-name-field-couverture {
  7935. width: 25%; }
  7936. body.node-type-publication article.node-publication .field-name-body {
  7937. margin-left: 1em;
  7938. width: 70%; } }
  7939. /*
  7940. __ ___
  7941. / |/ /__ ______________ _____ ____ _____
  7942. / /|_/ / _ \/ ___/ ___/ __ `/ __ `/ _ \/ ___/
  7943. / / / / __(__ |__ ) /_/ / /_/ / __(__ )
  7944. /_/ /_/\___/____/____/\__,_/\__, /\___/____/
  7945. /____/
  7946. */
  7947. div.messages {
  7948. padding: 9px;
  7949. margin: 0.5em 0 0;
  7950. color: #3a87ad;
  7951. background: #d9edf7;
  7952. border: 1px solid #bce8f1;
  7953. border-radius: 5px;
  7954. font-size: 12px; }
  7955. div.messages.warning {
  7956. color: #c09853;
  7957. background-color: #fcf8e3;
  7958. border-color: #fbeed5; }
  7959. div.messages.error {
  7960. color: #b94a48;
  7961. background-color: #f2dede;
  7962. border-color: #eed3d7; }
  7963. div.messages.status {
  7964. color: #468847;
  7965. background-color: #dff0d8;
  7966. border-color: #d6e9c6;
  7967. font-size: 14px; }
  7968. .messages-label {
  7969. display: none; }
  7970. #better-messages-wrapper {
  7971. background-color: rgba(255, 255, 255, 0.7);
  7972. padding: 10px;
  7973. border-radius: 5px;
  7974. background-clip: padding-box;
  7975. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }
  7976. #better-messages-wrapper #better-messages-default div.messages {
  7977. padding: 9px;
  7978. margin: 0.5em 0 0;
  7979. color: #3a87ad;
  7980. background: #d9edf7;
  7981. border: 1px solid #bce8f1;
  7982. border-radius: 5px;
  7983. font-size: 12px;
  7984. margin: 0 0 10px 0; }
  7985. #better-messages-wrapper #better-messages-default div.messages.warning {
  7986. color: #c09853;
  7987. background-color: #fcf8e3;
  7988. border-color: #fbeed5; }
  7989. #better-messages-wrapper #better-messages-default div.messages.error {
  7990. color: #b94a48;
  7991. background-color: #f2dede;
  7992. border-color: #eed3d7; }
  7993. #better-messages-wrapper #better-messages-default div.messages.status {
  7994. color: #468847;
  7995. background-color: #dff0d8;
  7996. border-color: #d6e9c6;
  7997. font-size: 14px; }
  7998. #better-messages-wrapper #better-messages-default .footer {
  7999. border: none;
  8000. padding: 0;
  8001. margin: 0; }
  8002. #better-messages-wrapper #better-messages-default .footer a.message-close {
  8003. background: #fff url("../img/close.png") no-repeat center center;
  8004. width: 15px;
  8005. height: 15px;
  8006. border-radius: 3px;
  8007. background-clip: padding-box;
  8008. display: block; }
  8009. /** Tab navigation */
  8010. /**
  8011. * icons
  8012. */
  8013. /**
  8014. * figures
  8015. */
  8016. figure figcaption {
  8017. display: none; }
  8018. figure .blank {
  8019. position: absolute;
  8020. top: 0;
  8021. left: 0;
  8022. width: 100%;
  8023. height: 100%; }
  8024. /* ==|== print styles =======================================================
  8025. Print styles.
  8026. Inlined to avoid required HTTP connection: h5bp.com/r
  8027. ========================================================================== */
  8028. a:focus {
  8029. outline: 0; }
  8030. /*
  8031. * Improves readability when focused and also mouse hovered in all browsers.
  8032. */
  8033. a:active,
  8034. a:hover {
  8035. outline: 0; }
  8036. i {
  8037. transition: color 0.3s; }
  8038. i:hover {
  8039. color: #606060;
  8040. text-shadow: 1px 4px 6px #FFF,0 0 0 #000,1px 4px 6px #FFF; }
  8041. /** COLORBOX */
  8042. #colorbox {
  8043. border-radius: 2px;
  8044. background-clip: padding-box;
  8045. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  8046. #colorbox #cboxLoadedContent {
  8047. background-color: #fff; }
  8048. /** embed player */
  8049. @media only screen and (min-width: 40.0625em) and (max-width: 64em) {
  8050. .embedded-video .player iframe {
  8051. max-width: 100%;
  8052. height: auto; } }
  8053. /** devel */
  8054. .not-logged-in #tasks ul.tabs.primary {
  8055. display: none; }
  8056. /*
  8057. __ _
  8058. ____ _____/ /___ ___ (_)___ ____ ___ ___ ____ __ __
  8059. / __ `/ __ / __ `__ \/ / __ \ / __ `__ \/ _ \/ __ \/ / / /
  8060. / /_/ / /_/ / / / / / / / / / / / / / / / / __/ / / / /_/ /
  8061. \__,_/\__,_/_/ /_/ /_/_/_/ /_/ /_/ /_/ /_/\___/_/ /_/\__,_/
  8062. */
  8063. #admin-menu {
  8064. top: 0; }