styles.css 340 KB

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