styles.css 343 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
  6. /**
  7. * 1. Set default font family to sans-serif.
  8. * 2. Prevent iOS text size adjust after orientation change, without disabling
  9. * user zoom.
  10. */
  11. @import url(../fonts/icon/foundation-icons.css);
  12. html {
  13. font-family: sans-serif;
  14. /* 1 */
  15. -ms-text-size-adjust: 100%;
  16. /* 2 */
  17. -webkit-text-size-adjust: 100%;
  18. /* 2 */ }
  19. /**
  20. * Remove default margin.
  21. */
  22. body {
  23. margin: 0; }
  24. /* HTML5 display definitions
  25. ========================================================================== */
  26. /**
  27. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  28. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  29. * and Firefox.
  30. * Correct `block` display not defined for `main` in IE 11.
  31. */
  32. article,
  33. aside,
  34. details,
  35. figcaption,
  36. figure,
  37. footer,
  38. header,
  39. hgroup,
  40. main,
  41. menu,
  42. nav,
  43. section,
  44. summary {
  45. display: block; }
  46. /**
  47. * 1. Correct `inline-block` display not defined in IE 8/9.
  48. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  49. */
  50. audio,
  51. canvas,
  52. progress,
  53. video {
  54. display: inline-block;
  55. /* 1 */
  56. vertical-align: baseline;
  57. /* 2 */ }
  58. /**
  59. * Prevent modern browsers from displaying `audio` without controls.
  60. * Remove excess height in iOS 5 devices.
  61. */
  62. audio:not([controls]) {
  63. display: none;
  64. height: 0; }
  65. /**
  66. * Address `[hidden]` styling not present in IE 8/9/10.
  67. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
  68. */
  69. [hidden],
  70. template {
  71. display: none; }
  72. /* Links
  73. ========================================================================== */
  74. /**
  75. * Remove the gray background color from active links in IE 10.
  76. */
  77. a {
  78. background-color: transparent; }
  79. /**
  80. * Improve readability when focused and also mouse hovered in all browsers.
  81. */
  82. a:active,
  83. a:hover {
  84. outline: 0; }
  85. /* Text-level semantics
  86. ========================================================================== */
  87. /**
  88. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  89. */
  90. abbr[title] {
  91. border-bottom: 1px dotted; }
  92. /**
  93. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  94. */
  95. b,
  96. strong {
  97. font-weight: bold; }
  98. /**
  99. * Address styling not present in Safari and Chrome.
  100. */
  101. dfn {
  102. font-style: italic; }
  103. /**
  104. * Address variable `h1` font-size and margin within `section` and `article`
  105. * contexts in Firefox 4+, Safari, and Chrome.
  106. */
  107. h1 {
  108. font-size: 2em;
  109. margin: 0.67em 0; }
  110. /**
  111. * Address styling not present in IE 8/9.
  112. */
  113. mark {
  114. background: #ff0;
  115. color: #000; }
  116. /**
  117. * Address inconsistent and variable font size in all browsers.
  118. */
  119. small {
  120. font-size: 80%; }
  121. /**
  122. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  123. */
  124. sub,
  125. sup {
  126. font-size: 75%;
  127. line-height: 0;
  128. position: relative;
  129. vertical-align: baseline; }
  130. sup {
  131. top: -0.5em; }
  132. sub {
  133. bottom: -0.25em; }
  134. /* Embedded content
  135. ========================================================================== */
  136. /**
  137. * Remove border when inside `a` element in IE 8/9/10.
  138. */
  139. img {
  140. border: 0; }
  141. /**
  142. * Correct overflow not hidden in IE 9/10/11.
  143. */
  144. svg:not(:root) {
  145. overflow: hidden; }
  146. /* Grouping content
  147. ========================================================================== */
  148. /**
  149. * Address margin not present in IE 8/9 and Safari.
  150. */
  151. figure {
  152. margin: 1em 40px; }
  153. /**
  154. * Address differences between Firefox and other browsers.
  155. */
  156. hr {
  157. box-sizing: content-box;
  158. height: 0; }
  159. /**
  160. * Contain overflow in all browsers.
  161. */
  162. pre {
  163. overflow: auto; }
  164. /**
  165. * Address odd `em`-unit font size rendering in all browsers.
  166. */
  167. code,
  168. kbd,
  169. pre,
  170. samp {
  171. font-family: monospace, monospace;
  172. font-size: 1em; }
  173. /* Forms
  174. ========================================================================== */
  175. /**
  176. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  177. * styling of `select`, unless a `border` property is set.
  178. */
  179. /**
  180. * 1. Correct color not being inherited.
  181. * Known issue: affects color of disabled elements.
  182. * 2. Correct font properties not being inherited.
  183. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  184. */
  185. button,
  186. input,
  187. optgroup,
  188. select,
  189. textarea {
  190. color: inherit;
  191. /* 1 */
  192. font: inherit;
  193. /* 2 */
  194. margin: 0;
  195. /* 3 */ }
  196. /**
  197. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  198. */
  199. button {
  200. overflow: visible; }
  201. /**
  202. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  203. * All other form control elements do not inherit `text-transform` values.
  204. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  205. * Correct `select` style inheritance in Firefox.
  206. */
  207. button,
  208. select {
  209. text-transform: none; }
  210. /**
  211. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  212. * and `video` controls.
  213. * 2. Correct inability to style clickable `input` types in iOS.
  214. * 3. Improve usability and consistency of cursor style between image-type
  215. * `input` and others.
  216. */
  217. button,
  218. html input[type="button"],
  219. input[type="reset"],
  220. input[type="submit"] {
  221. -webkit-appearance: button;
  222. /* 2 */
  223. cursor: pointer;
  224. /* 3 */ }
  225. /**
  226. * Re-set default cursor for disabled elements.
  227. */
  228. button[disabled],
  229. html input[disabled] {
  230. cursor: default; }
  231. /**
  232. * Remove inner padding and border in Firefox 4+.
  233. */
  234. button::-moz-focus-inner,
  235. input::-moz-focus-inner {
  236. border: 0;
  237. padding: 0; }
  238. /**
  239. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  240. * the UA stylesheet.
  241. */
  242. input {
  243. line-height: normal; }
  244. /**
  245. * It's recommended that you don't attempt to style these elements.
  246. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  247. *
  248. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  249. * 2. Remove excess padding in IE 8/9/10.
  250. */
  251. input[type="checkbox"],
  252. input[type="radio"] {
  253. box-sizing: border-box;
  254. /* 1 */
  255. padding: 0;
  256. /* 2 */ }
  257. /**
  258. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  259. * `font-size` values of the `input`, it causes the cursor style of the
  260. * decrement button to change from `default` to `text`.
  261. */
  262. input[type="number"]::-webkit-inner-spin-button,
  263. input[type="number"]::-webkit-outer-spin-button {
  264. height: auto; }
  265. /**
  266. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  267. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
  268. * (include `-moz` to future-proof).
  269. */
  270. input[type="search"] {
  271. -webkit-appearance: textfield;
  272. /* 1 */
  273. /* 2 */
  274. box-sizing: content-box; }
  275. /**
  276. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  277. * Safari (but not Chrome) clips the cancel button when the search input has
  278. * padding (and `textfield` appearance).
  279. */
  280. input[type="search"]::-webkit-search-cancel-button,
  281. input[type="search"]::-webkit-search-decoration {
  282. -webkit-appearance: none; }
  283. /**
  284. * Define consistent border, margin, and padding.
  285. */
  286. fieldset {
  287. border: 1px solid #c0c0c0;
  288. margin: 0 2px;
  289. padding: 0.35em 0.625em 0.75em; }
  290. /**
  291. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  292. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  293. */
  294. legend {
  295. border: 0;
  296. /* 1 */
  297. padding: 0;
  298. /* 2 */ }
  299. /**
  300. * Remove default vertical scrollbar in IE 8/9/10/11.
  301. */
  302. textarea {
  303. overflow: auto; }
  304. /**
  305. * Don't inherit the `font-weight` (applied by a rule above).
  306. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  307. */
  308. optgroup {
  309. font-weight: bold; }
  310. /* Tables
  311. ========================================================================== */
  312. /**
  313. * Remove most spacing between table cells.
  314. */
  315. table {
  316. border-collapse: collapse;
  317. border-spacing: 0; }
  318. td,
  319. th {
  320. padding: 0; }
  321. meta.foundation-version {
  322. font-family: "/5.5.1/"; }
  323. meta.foundation-mq-small {
  324. font-family: "/only screen/";
  325. width: 0; }
  326. meta.foundation-mq-small-only {
  327. font-family: "/only screen and (max-width: 40em)/";
  328. width: 0; }
  329. meta.foundation-mq-medium {
  330. font-family: "/only screen and (min-width:40.063em)/";
  331. width: 40.063em; }
  332. meta.foundation-mq-medium-only {
  333. font-family: "/only screen and (min-width:40.063em) and (max-width:64em)/";
  334. width: 40.063em; }
  335. meta.foundation-mq-large {
  336. font-family: "/only screen and (min-width:64.063em)/";
  337. width: 64.063em; }
  338. meta.foundation-mq-large-only {
  339. font-family: "/only screen and (min-width:64.063em) and (max-width:90em)/";
  340. width: 64.063em; }
  341. meta.foundation-mq-xlarge {
  342. font-family: "/only screen and (min-width:90.063em)/";
  343. width: 90.063em; }
  344. meta.foundation-mq-xlarge-only {
  345. font-family: "/only screen and (min-width:90.063em) and (max-width:120em)/";
  346. width: 90.063em; }
  347. meta.foundation-mq-xxlarge {
  348. font-family: "/only screen and (min-width:120.063em)/";
  349. width: 120.063em; }
  350. meta.foundation-data-attribute-namespace {
  351. font-family: false; }
  352. html, body {
  353. height: 100%; }
  354. *,
  355. *:before,
  356. *:after {
  357. box-sizing: border-box; }
  358. html,
  359. body {
  360. font-size: 100%; }
  361. body {
  362. background: #fff;
  363. color: #222;
  364. padding: 0;
  365. margin: 0;
  366. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  367. font-weight: normal;
  368. font-style: normal;
  369. line-height: 1.5;
  370. position: relative;
  371. cursor: auto; }
  372. a:hover {
  373. cursor: pointer; }
  374. img {
  375. max-width: 100%;
  376. height: auto; }
  377. img {
  378. -ms-interpolation-mode: bicubic; }
  379. #map_canvas img,
  380. #map_canvas embed,
  381. #map_canvas object,
  382. .map_canvas img,
  383. .map_canvas embed,
  384. .map_canvas object {
  385. max-width: none !important; }
  386. .left {
  387. float: left !important; }
  388. .right {
  389. float: right !important; }
  390. .clearfix:before, .clearfix:after {
  391. content: " ";
  392. display: table; }
  393. .clearfix:after {
  394. clear: both; }
  395. .hide {
  396. display: none; }
  397. .invisible {
  398. visibility: hidden; }
  399. .antialiased {
  400. -webkit-font-smoothing: antialiased;
  401. -moz-osx-font-smoothing: grayscale; }
  402. img {
  403. display: inline-block;
  404. vertical-align: middle; }
  405. textarea {
  406. height: auto;
  407. min-height: 50px; }
  408. select {
  409. width: 100%; }
  410. .text-left {
  411. text-align: left !important; }
  412. .text-right {
  413. text-align: right !important; }
  414. .text-center {
  415. text-align: center !important; }
  416. .text-justify {
  417. text-align: justify !important; }
  418. @media only screen and (max-width: 40em) {
  419. .small-only-text-left {
  420. text-align: left !important; }
  421. .small-only-text-right {
  422. text-align: right !important; }
  423. .small-only-text-center {
  424. text-align: center !important; }
  425. .small-only-text-justify {
  426. text-align: justify !important; } }
  427. @media only screen {
  428. .small-text-left {
  429. text-align: left !important; }
  430. .small-text-right {
  431. text-align: right !important; }
  432. .small-text-center {
  433. text-align: center !important; }
  434. .small-text-justify {
  435. text-align: justify !important; } }
  436. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  437. .medium-only-text-left {
  438. text-align: left !important; }
  439. .medium-only-text-right {
  440. text-align: right !important; }
  441. .medium-only-text-center {
  442. text-align: center !important; }
  443. .medium-only-text-justify {
  444. text-align: justify !important; } }
  445. @media only screen and (min-width: 40.063em) {
  446. .medium-text-left {
  447. text-align: left !important; }
  448. .medium-text-right {
  449. text-align: right !important; }
  450. .medium-text-center {
  451. text-align: center !important; }
  452. .medium-text-justify {
  453. text-align: justify !important; } }
  454. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  455. .large-only-text-left {
  456. text-align: left !important; }
  457. .large-only-text-right {
  458. text-align: right !important; }
  459. .large-only-text-center {
  460. text-align: center !important; }
  461. .large-only-text-justify {
  462. text-align: justify !important; } }
  463. @media only screen and (min-width: 64.063em) {
  464. .large-text-left {
  465. text-align: left !important; }
  466. .large-text-right {
  467. text-align: right !important; }
  468. .large-text-center {
  469. text-align: center !important; }
  470. .large-text-justify {
  471. text-align: justify !important; } }
  472. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  473. .xlarge-only-text-left {
  474. text-align: left !important; }
  475. .xlarge-only-text-right {
  476. text-align: right !important; }
  477. .xlarge-only-text-center {
  478. text-align: center !important; }
  479. .xlarge-only-text-justify {
  480. text-align: justify !important; } }
  481. @media only screen and (min-width: 90.063em) {
  482. .xlarge-text-left {
  483. text-align: left !important; }
  484. .xlarge-text-right {
  485. text-align: right !important; }
  486. .xlarge-text-center {
  487. text-align: center !important; }
  488. .xlarge-text-justify {
  489. text-align: justify !important; } }
  490. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  491. .xxlarge-only-text-left {
  492. text-align: left !important; }
  493. .xxlarge-only-text-right {
  494. text-align: right !important; }
  495. .xxlarge-only-text-center {
  496. text-align: center !important; }
  497. .xxlarge-only-text-justify {
  498. text-align: justify !important; } }
  499. @media only screen and (min-width: 120.063em) {
  500. .xxlarge-text-left {
  501. text-align: left !important; }
  502. .xxlarge-text-right {
  503. text-align: right !important; }
  504. .xxlarge-text-center {
  505. text-align: center !important; }
  506. .xxlarge-text-justify {
  507. text-align: justify !important; } }
  508. /* Typography resets */
  509. div,
  510. dl,
  511. dt,
  512. dd,
  513. ul,
  514. ol,
  515. li,
  516. h1,
  517. h2,
  518. h3,
  519. h4,
  520. h5,
  521. h6,
  522. pre,
  523. form,
  524. p,
  525. blockquote,
  526. th,
  527. td {
  528. margin: 0;
  529. padding: 0; }
  530. /* Default Link Styles */
  531. a {
  532. color: #008CBA;
  533. text-decoration: none;
  534. line-height: inherit; }
  535. a:hover, a:focus {
  536. color: #0078a0; }
  537. a img {
  538. border: none; }
  539. /* Default paragraph styles */
  540. p {
  541. font-family: inherit;
  542. font-weight: normal;
  543. font-size: 1rem;
  544. line-height: 1.6;
  545. margin-bottom: 1.25rem;
  546. text-rendering: optimizeLegibility; }
  547. p.lead {
  548. font-size: 1.21875rem;
  549. line-height: 1.6; }
  550. p aside {
  551. font-size: 0.875rem;
  552. line-height: 1.35;
  553. font-style: italic; }
  554. /* Default header styles */
  555. h1, h2, h3, h4, h5, h6 {
  556. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  557. font-weight: normal;
  558. font-style: normal;
  559. color: #222222;
  560. text-rendering: optimizeLegibility;
  561. margin-top: 0.2rem;
  562. margin-bottom: 0.5rem;
  563. line-height: 1.4; }
  564. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  565. font-size: 60%;
  566. color: #6f6f6f;
  567. line-height: 0; }
  568. h1 {
  569. font-size: 2.125rem; }
  570. h2 {
  571. font-size: 1.6875rem; }
  572. h3 {
  573. font-size: 1.375rem; }
  574. h4 {
  575. font-size: 1.125rem; }
  576. h5 {
  577. font-size: 1.125rem; }
  578. h6 {
  579. font-size: 1rem; }
  580. .subheader {
  581. line-height: 1.4;
  582. color: #6f6f6f;
  583. font-weight: normal;
  584. margin-top: 0.2rem;
  585. margin-bottom: 0.5rem; }
  586. hr {
  587. border: solid #DDDDDD;
  588. border-width: 1px 0 0;
  589. clear: both;
  590. margin: 1.25rem 0 1.1875rem;
  591. height: 0; }
  592. /* Helpful Typography Defaults */
  593. em,
  594. i {
  595. font-style: italic;
  596. line-height: inherit; }
  597. strong,
  598. b {
  599. font-weight: bold;
  600. line-height: inherit; }
  601. small {
  602. font-size: 60%;
  603. line-height: inherit; }
  604. code {
  605. font-family: Consolas, "Liberation Mono", Courier, monospace;
  606. font-weight: normal;
  607. color: #333333;
  608. background-color: #f8f8f8;
  609. border-width: 1px;
  610. border-style: solid;
  611. border-color: #dfdfdf;
  612. padding: 0.125rem 0.3125rem 0.0625rem; }
  613. /* Lists */
  614. ul,
  615. ol,
  616. dl {
  617. font-size: 1rem;
  618. line-height: 1.6;
  619. margin-bottom: 1.25rem;
  620. list-style-position: outside;
  621. font-family: inherit; }
  622. ul {
  623. margin-left: 1.1rem; }
  624. ul.no-bullet {
  625. margin-left: 0; }
  626. ul.no-bullet li ul,
  627. ul.no-bullet li ol {
  628. margin-left: 1.25rem;
  629. margin-bottom: 0;
  630. list-style: none; }
  631. /* Unordered Lists */
  632. ul li ul,
  633. ul li ol {
  634. margin-left: 1.25rem;
  635. margin-bottom: 0; }
  636. ul.square li ul, ul.circle li ul, ul.disc li ul {
  637. list-style: inherit; }
  638. ul.square {
  639. list-style-type: square;
  640. margin-left: 1.1rem; }
  641. ul.circle {
  642. list-style-type: circle;
  643. margin-left: 1.1rem; }
  644. ul.disc {
  645. list-style-type: disc;
  646. margin-left: 1.1rem; }
  647. ul.no-bullet {
  648. list-style: none; }
  649. /* Ordered Lists */
  650. ol {
  651. margin-left: 1.4rem; }
  652. ol li ul,
  653. ol li ol {
  654. margin-left: 1.25rem;
  655. margin-bottom: 0; }
  656. /* Definition Lists */
  657. dl dt {
  658. margin-bottom: 0.3rem;
  659. font-weight: bold; }
  660. dl dd {
  661. margin-bottom: 0.75rem; }
  662. /* Abbreviations */
  663. abbr,
  664. acronym {
  665. text-transform: uppercase;
  666. font-size: 90%;
  667. color: #222;
  668. cursor: help; }
  669. abbr {
  670. text-transform: none; }
  671. abbr[title] {
  672. border-bottom: 1px dotted #DDDDDD; }
  673. /* Blockquotes */
  674. blockquote {
  675. margin: 0 0 1.25rem;
  676. padding: 0.5625rem 1.25rem 0 1.1875rem;
  677. border-left: 1px solid #DDDDDD; }
  678. blockquote cite {
  679. display: block;
  680. font-size: 0.8125rem;
  681. color: #555555; }
  682. blockquote cite:before {
  683. content: "\2014 \0020"; }
  684. blockquote cite a,
  685. blockquote cite a:visited {
  686. color: #555555; }
  687. blockquote,
  688. blockquote p {
  689. line-height: 1.6;
  690. color: #6f6f6f; }
  691. /* Microformats */
  692. .vcard {
  693. display: inline-block;
  694. margin: 0 0 1.25rem 0;
  695. border: 1px solid #DDDDDD;
  696. padding: 0.625rem 0.75rem; }
  697. .vcard li {
  698. margin: 0;
  699. display: block; }
  700. .vcard .fn {
  701. font-weight: bold;
  702. font-size: 0.9375rem; }
  703. .vevent .summary {
  704. font-weight: bold; }
  705. .vevent abbr {
  706. cursor: default;
  707. text-decoration: none;
  708. font-weight: bold;
  709. border: none;
  710. padding: 0 0.0625rem; }
  711. @media only screen and (min-width: 40.063em) {
  712. h1, h2, h3, h4, h5, h6 {
  713. line-height: 1.4; }
  714. h1 {
  715. font-size: 2.75rem; }
  716. h2 {
  717. font-size: 2.3125rem; }
  718. h3 {
  719. font-size: 1.6875rem; }
  720. h4 {
  721. font-size: 1.4375rem; }
  722. h5 {
  723. font-size: 1.125rem; }
  724. h6 {
  725. font-size: 1rem; } }
  726. /* Clearing Styles */
  727. .clearing-thumbs, [data-clearing] {
  728. margin-bottom: 0;
  729. margin-left: 0;
  730. list-style: none; }
  731. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  732. content: " ";
  733. display: table; }
  734. .clearing-thumbs:after, [data-clearing]:after {
  735. clear: both; }
  736. .clearing-thumbs li, [data-clearing] li {
  737. float: left;
  738. margin-right: 10px; }
  739. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  740. margin-right: 0; }
  741. .clearing-blackout {
  742. background: #333333;
  743. position: fixed;
  744. width: 100%;
  745. height: 100%;
  746. top: 0;
  747. left: 0;
  748. z-index: 998; }
  749. .clearing-blackout .clearing-close {
  750. display: block; }
  751. .clearing-container {
  752. position: relative;
  753. z-index: 998;
  754. height: 100%;
  755. overflow: hidden;
  756. margin: 0; }
  757. .clearing-touch-label {
  758. position: absolute;
  759. top: 50%;
  760. left: 50%;
  761. color: #AAAAAA;
  762. font-size: 0.6em; }
  763. .visible-img {
  764. height: 95%;
  765. position: relative; }
  766. .visible-img img {
  767. position: absolute;
  768. left: 50%;
  769. top: 50%;
  770. transform: translateY(-50%) translateX(-50%);
  771. -webkit-transform: translateY(-50%) translateX(-50%);
  772. -ms-transform: translateY(-50%) translateX(-50%);
  773. max-height: 100%;
  774. max-width: 100%; }
  775. .clearing-caption {
  776. color: #CCCCCC;
  777. font-size: 0.875em;
  778. line-height: 1.3;
  779. margin-bottom: 0;
  780. text-align: center;
  781. bottom: 0;
  782. background: #333333;
  783. width: 100%;
  784. padding: 10px 30px 20px;
  785. position: absolute;
  786. left: 0; }
  787. .clearing-close {
  788. z-index: 999;
  789. padding-left: 20px;
  790. padding-top: 10px;
  791. font-size: 30px;
  792. line-height: 1;
  793. color: #CCCCCC;
  794. display: none; }
  795. .clearing-close:hover, .clearing-close:focus {
  796. color: #CCCCCC; }
  797. .clearing-assembled .clearing-container {
  798. height: 100%; }
  799. .clearing-assembled .clearing-container .carousel > ul {
  800. display: none; }
  801. .clearing-feature li {
  802. display: none; }
  803. .clearing-feature li.clearing-featured-img {
  804. display: block; }
  805. @media only screen and (min-width: 40.063em) {
  806. .clearing-main-prev,
  807. .clearing-main-next {
  808. position: absolute;
  809. height: 100%;
  810. width: 40px;
  811. top: 0; }
  812. .clearing-main-prev > span,
  813. .clearing-main-next > span {
  814. position: absolute;
  815. top: 50%;
  816. display: block;
  817. width: 0;
  818. height: 0;
  819. border: solid 12px; }
  820. .clearing-main-prev > span:hover,
  821. .clearing-main-next > span:hover {
  822. opacity: 0.8; }
  823. .clearing-main-prev {
  824. left: 0; }
  825. .clearing-main-prev > span {
  826. left: 5px;
  827. border-color: transparent;
  828. border-right-color: #CCCCCC; }
  829. .clearing-main-next {
  830. right: 0; }
  831. .clearing-main-next > span {
  832. border-color: transparent;
  833. border-left-color: #CCCCCC; }
  834. .clearing-main-prev.disabled,
  835. .clearing-main-next.disabled {
  836. opacity: 0.3; }
  837. .clearing-assembled .clearing-container .carousel {
  838. background: rgba(51, 51, 51, 0.8);
  839. height: 120px;
  840. margin-top: 10px;
  841. text-align: center; }
  842. .clearing-assembled .clearing-container .carousel > ul {
  843. display: inline-block;
  844. z-index: 999;
  845. height: 100%;
  846. position: relative;
  847. float: none; }
  848. .clearing-assembled .clearing-container .carousel > ul li {
  849. display: block;
  850. width: 120px;
  851. min-height: inherit;
  852. float: left;
  853. overflow: hidden;
  854. margin-right: 0;
  855. padding: 0;
  856. position: relative;
  857. cursor: pointer;
  858. opacity: 0.4;
  859. clear: none; }
  860. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  861. height: 100%;
  862. max-width: none; }
  863. .clearing-assembled .clearing-container .carousel > ul li a.th {
  864. border: none;
  865. box-shadow: none;
  866. display: block; }
  867. .clearing-assembled .clearing-container .carousel > ul li img {
  868. cursor: pointer !important;
  869. width: 100% !important; }
  870. .clearing-assembled .clearing-container .carousel > ul li.visible {
  871. opacity: 1; }
  872. .clearing-assembled .clearing-container .carousel > ul li:hover {
  873. opacity: 0.8; }
  874. .clearing-assembled .clearing-container .visible-img {
  875. background: #333333;
  876. overflow: hidden;
  877. height: 85%; }
  878. .clearing-close {
  879. position: absolute;
  880. top: 10px;
  881. right: 20px;
  882. padding-left: 0;
  883. padding-top: 0; } }
  884. .inline-list {
  885. margin: 0 auto 1.0625rem auto;
  886. margin-left: -1.375rem;
  887. margin-right: 0;
  888. padding: 0;
  889. list-style: none;
  890. overflow: hidden; }
  891. .inline-list > li {
  892. list-style: none;
  893. float: left;
  894. margin-left: 1.375rem;
  895. display: block; }
  896. .inline-list > li > * {
  897. display: block; }
  898. button, .button {
  899. border-style: solid;
  900. border-width: 0;
  901. cursor: pointer;
  902. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  903. font-weight: normal;
  904. line-height: normal;
  905. margin: 0 0 1.25rem;
  906. position: relative;
  907. text-decoration: none;
  908. text-align: center;
  909. -webkit-appearance: none;
  910. -moz-appearance: none;
  911. border-radius: 0;
  912. display: inline-block;
  913. padding-top: 1rem;
  914. padding-right: 2rem;
  915. padding-bottom: 1.0625rem;
  916. padding-left: 2rem;
  917. font-size: 1rem;
  918. background-color: #008CBA;
  919. border-color: #007095;
  920. color: #FFFFFF;
  921. transition: background-color 300ms ease-out; }
  922. button:hover, button:focus, .button:hover, .button:focus {
  923. background-color: #007095; }
  924. button:hover, button:focus, .button:hover, .button:focus {
  925. color: #FFFFFF; }
  926. button.secondary, .button.secondary {
  927. background-color: #e7e7e7;
  928. border-color: #b9b9b9;
  929. color: #333333; }
  930. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  931. background-color: #b9b9b9; }
  932. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  933. color: #333333; }
  934. button.success, .button.success {
  935. background-color: #43AC6A;
  936. border-color: #368a55;
  937. color: #FFFFFF; }
  938. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  939. background-color: #368a55; }
  940. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  941. color: #FFFFFF; }
  942. button.alert, .button.alert {
  943. background-color: #f04124;
  944. border-color: #cf2a0e;
  945. color: #FFFFFF; }
  946. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  947. background-color: #cf2a0e; }
  948. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  949. color: #FFFFFF; }
  950. button.warning, .button.warning {
  951. background-color: #f08a24;
  952. border-color: #cf6e0e;
  953. color: #FFFFFF; }
  954. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  955. background-color: #cf6e0e; }
  956. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  957. color: #FFFFFF; }
  958. button.info, .button.info {
  959. background-color: #a0d3e8;
  960. border-color: #61b6d9;
  961. color: #333333; }
  962. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  963. background-color: #61b6d9; }
  964. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  965. color: #FFFFFF; }
  966. button.large, .button.large {
  967. padding-top: 1.125rem;
  968. padding-right: 2.25rem;
  969. padding-bottom: 1.1875rem;
  970. padding-left: 2.25rem;
  971. font-size: 1.25rem; }
  972. button.small, .button.small {
  973. padding-top: 0.875rem;
  974. padding-right: 1.75rem;
  975. padding-bottom: 0.9375rem;
  976. padding-left: 1.75rem;
  977. font-size: 0.8125rem; }
  978. button.tiny, .button.tiny {
  979. padding-top: 0.625rem;
  980. padding-right: 1.25rem;
  981. padding-bottom: 0.6875rem;
  982. padding-left: 1.25rem;
  983. font-size: 0.6875rem; }
  984. button.expand, .button.expand {
  985. padding-right: 0;
  986. padding-left: 0;
  987. width: 100%; }
  988. button.left-align, .button.left-align {
  989. text-align: left;
  990. text-indent: 0.75rem; }
  991. button.right-align, .button.right-align {
  992. text-align: right;
  993. padding-right: 0.75rem; }
  994. button.radius, .button.radius {
  995. border-radius: 3px; }
  996. button.round, .button.round {
  997. border-radius: 1000px; }
  998. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  999. background-color: #008CBA;
  1000. border-color: #007095;
  1001. color: #FFFFFF;
  1002. cursor: default;
  1003. opacity: 0.7;
  1004. box-shadow: none; }
  1005. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1006. background-color: #007095; }
  1007. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1008. color: #FFFFFF; }
  1009. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1010. background-color: #008CBA; }
  1011. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  1012. background-color: #e7e7e7;
  1013. border-color: #b9b9b9;
  1014. color: #333333;
  1015. cursor: default;
  1016. opacity: 0.7;
  1017. box-shadow: none; }
  1018. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1019. background-color: #b9b9b9; }
  1020. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1021. color: #333333; }
  1022. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1023. background-color: #e7e7e7; }
  1024. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  1025. background-color: #43AC6A;
  1026. border-color: #368a55;
  1027. color: #FFFFFF;
  1028. cursor: default;
  1029. opacity: 0.7;
  1030. box-shadow: none; }
  1031. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1032. background-color: #368a55; }
  1033. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1034. color: #FFFFFF; }
  1035. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1036. background-color: #43AC6A; }
  1037. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  1038. background-color: #f04124;
  1039. border-color: #cf2a0e;
  1040. color: #FFFFFF;
  1041. cursor: default;
  1042. opacity: 0.7;
  1043. box-shadow: none; }
  1044. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1045. background-color: #cf2a0e; }
  1046. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1047. color: #FFFFFF; }
  1048. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1049. background-color: #f04124; }
  1050. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  1051. background-color: #f08a24;
  1052. border-color: #cf6e0e;
  1053. color: #FFFFFF;
  1054. cursor: default;
  1055. opacity: 0.7;
  1056. box-shadow: none; }
  1057. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1058. background-color: #cf6e0e; }
  1059. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1060. color: #FFFFFF; }
  1061. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1062. background-color: #f08a24; }
  1063. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  1064. background-color: #a0d3e8;
  1065. border-color: #61b6d9;
  1066. color: #333333;
  1067. cursor: default;
  1068. opacity: 0.7;
  1069. box-shadow: none; }
  1070. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1071. background-color: #61b6d9; }
  1072. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1073. color: #FFFFFF; }
  1074. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1075. background-color: #a0d3e8; }
  1076. button::-moz-focus-inner {
  1077. border: 0;
  1078. padding: 0; }
  1079. @media only screen and (min-width: 40.063em) {
  1080. button, .button {
  1081. display: inline-block; } }
  1082. .button-group {
  1083. list-style: none;
  1084. margin: 0;
  1085. left: 0; }
  1086. .button-group:before, .button-group:after {
  1087. content: " ";
  1088. display: table; }
  1089. .button-group:after {
  1090. clear: both; }
  1091. .button-group.even-2 li {
  1092. margin: 0 -2px;
  1093. display: inline-block;
  1094. width: 50%; }
  1095. .button-group.even-2 li > button, .button-group.even-2 li .button {
  1096. border-left: 1px solid;
  1097. border-color: rgba(255, 255, 255, 0.5); }
  1098. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  1099. border-left: 0; }
  1100. .button-group.even-2 li button, .button-group.even-2 li .button {
  1101. width: 100%; }
  1102. .button-group.even-3 li {
  1103. margin: 0 -2px;
  1104. display: inline-block;
  1105. width: 33.33333%; }
  1106. .button-group.even-3 li > button, .button-group.even-3 li .button {
  1107. border-left: 1px solid;
  1108. border-color: rgba(255, 255, 255, 0.5); }
  1109. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  1110. border-left: 0; }
  1111. .button-group.even-3 li button, .button-group.even-3 li .button {
  1112. width: 100%; }
  1113. .button-group.even-4 li {
  1114. margin: 0 -2px;
  1115. display: inline-block;
  1116. width: 25%; }
  1117. .button-group.even-4 li > button, .button-group.even-4 li .button {
  1118. border-left: 1px solid;
  1119. border-color: rgba(255, 255, 255, 0.5); }
  1120. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  1121. border-left: 0; }
  1122. .button-group.even-4 li button, .button-group.even-4 li .button {
  1123. width: 100%; }
  1124. .button-group.even-5 li {
  1125. margin: 0 -2px;
  1126. display: inline-block;
  1127. width: 20%; }
  1128. .button-group.even-5 li > button, .button-group.even-5 li .button {
  1129. border-left: 1px solid;
  1130. border-color: rgba(255, 255, 255, 0.5); }
  1131. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  1132. border-left: 0; }
  1133. .button-group.even-5 li button, .button-group.even-5 li .button {
  1134. width: 100%; }
  1135. .button-group.even-6 li {
  1136. margin: 0 -2px;
  1137. display: inline-block;
  1138. width: 16.66667%; }
  1139. .button-group.even-6 li > button, .button-group.even-6 li .button {
  1140. border-left: 1px solid;
  1141. border-color: rgba(255, 255, 255, 0.5); }
  1142. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  1143. border-left: 0; }
  1144. .button-group.even-6 li button, .button-group.even-6 li .button {
  1145. width: 100%; }
  1146. .button-group.even-7 li {
  1147. margin: 0 -2px;
  1148. display: inline-block;
  1149. width: 14.28571%; }
  1150. .button-group.even-7 li > button, .button-group.even-7 li .button {
  1151. border-left: 1px solid;
  1152. border-color: rgba(255, 255, 255, 0.5); }
  1153. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  1154. border-left: 0; }
  1155. .button-group.even-7 li button, .button-group.even-7 li .button {
  1156. width: 100%; }
  1157. .button-group.even-8 li {
  1158. margin: 0 -2px;
  1159. display: inline-block;
  1160. width: 12.5%; }
  1161. .button-group.even-8 li > button, .button-group.even-8 li .button {
  1162. border-left: 1px solid;
  1163. border-color: rgba(255, 255, 255, 0.5); }
  1164. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  1165. border-left: 0; }
  1166. .button-group.even-8 li button, .button-group.even-8 li .button {
  1167. width: 100%; }
  1168. .button-group > li {
  1169. margin: 0 -2px;
  1170. display: inline-block; }
  1171. .button-group > li > button, .button-group > li .button {
  1172. border-left: 1px solid;
  1173. border-color: rgba(255, 255, 255, 0.5); }
  1174. .button-group > li:first-child button, .button-group > li:first-child .button {
  1175. border-left: 0; }
  1176. .button-group.stack > li {
  1177. margin: 0 -2px;
  1178. display: inline-block;
  1179. display: block;
  1180. margin: 0;
  1181. float: none; }
  1182. .button-group.stack > li > button, .button-group.stack > li .button {
  1183. border-left: 1px solid;
  1184. border-color: rgba(255, 255, 255, 0.5); }
  1185. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1186. border-left: 0; }
  1187. .button-group.stack > li > button, .button-group.stack > li .button {
  1188. border-top: 1px solid;
  1189. border-color: rgba(255, 255, 255, 0.5);
  1190. border-left-width: 0;
  1191. margin: 0;
  1192. display: block; }
  1193. .button-group.stack > li > button {
  1194. width: 100%; }
  1195. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1196. border-top: 0; }
  1197. .button-group.stack-for-small > li {
  1198. margin: 0 -2px;
  1199. display: inline-block; }
  1200. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1201. border-left: 1px solid;
  1202. border-color: rgba(255, 255, 255, 0.5); }
  1203. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1204. border-left: 0; }
  1205. @media only screen and (max-width: 40em) {
  1206. .button-group.stack-for-small > li {
  1207. margin: 0 -2px;
  1208. display: inline-block;
  1209. display: block;
  1210. margin: 0; }
  1211. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1212. border-left: 1px solid;
  1213. border-color: rgba(255, 255, 255, 0.5); }
  1214. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1215. border-left: 0; }
  1216. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1217. border-top: 1px solid;
  1218. border-color: rgba(255, 255, 255, 0.5);
  1219. border-left-width: 0;
  1220. margin: 0;
  1221. display: block; }
  1222. .button-group.stack-for-small > li > button {
  1223. width: 100%; }
  1224. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1225. border-top: 0; } }
  1226. .button-group.radius > * {
  1227. margin: 0 -2px;
  1228. display: inline-block; }
  1229. .button-group.radius > * > button, .button-group.radius > * .button {
  1230. border-left: 1px solid;
  1231. border-color: rgba(255, 255, 255, 0.5); }
  1232. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  1233. border-left: 0; }
  1234. .button-group.radius > *,
  1235. .button-group.radius > * > a,
  1236. .button-group.radius > * > button,
  1237. .button-group.radius > * > .button {
  1238. border-radius: 0; }
  1239. .button-group.radius > *:first-child,
  1240. .button-group.radius > *:first-child > a,
  1241. .button-group.radius > *:first-child > button,
  1242. .button-group.radius > *:first-child > .button {
  1243. -webkit-border-bottom-left-radius: 3px;
  1244. -webkit-border-top-left-radius: 3px;
  1245. border-bottom-left-radius: 3px;
  1246. border-top-left-radius: 3px; }
  1247. .button-group.radius > *:last-child,
  1248. .button-group.radius > *:last-child > a,
  1249. .button-group.radius > *:last-child > button,
  1250. .button-group.radius > *:last-child > .button {
  1251. -webkit-border-bottom-right-radius: 3px;
  1252. -webkit-border-top-right-radius: 3px;
  1253. border-bottom-right-radius: 3px;
  1254. border-top-right-radius: 3px; }
  1255. .button-group.radius.stack > * {
  1256. margin: 0 -2px;
  1257. display: inline-block;
  1258. display: block;
  1259. margin: 0; }
  1260. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1261. border-left: 1px solid;
  1262. border-color: rgba(255, 255, 255, 0.5); }
  1263. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1264. border-left: 0; }
  1265. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1266. border-top: 1px solid;
  1267. border-color: rgba(255, 255, 255, 0.5);
  1268. border-left-width: 0;
  1269. margin: 0;
  1270. display: block; }
  1271. .button-group.radius.stack > * > button {
  1272. width: 100%; }
  1273. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1274. border-top: 0; }
  1275. .button-group.radius.stack > *,
  1276. .button-group.radius.stack > * > a,
  1277. .button-group.radius.stack > * > button,
  1278. .button-group.radius.stack > * > .button {
  1279. border-radius: 0; }
  1280. .button-group.radius.stack > *:first-child,
  1281. .button-group.radius.stack > *:first-child > a,
  1282. .button-group.radius.stack > *:first-child > button,
  1283. .button-group.radius.stack > *:first-child > .button {
  1284. -webkit-top-left-radius: 3px;
  1285. -webkit-top-right-radius: 3px;
  1286. border-top-left-radius: 3px;
  1287. border-top-right-radius: 3px; }
  1288. .button-group.radius.stack > *:last-child,
  1289. .button-group.radius.stack > *:last-child > a,
  1290. .button-group.radius.stack > *:last-child > button,
  1291. .button-group.radius.stack > *:last-child > .button {
  1292. -webkit-bottom-left-radius: 3px;
  1293. -webkit-bottom-right-radius: 3px;
  1294. border-bottom-left-radius: 3px;
  1295. border-bottom-right-radius: 3px; }
  1296. @media only screen and (min-width: 40.063em) {
  1297. .button-group.radius.stack-for-small > * {
  1298. margin: 0 -2px;
  1299. display: inline-block; }
  1300. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1301. border-left: 1px solid;
  1302. border-color: rgba(255, 255, 255, 0.5); }
  1303. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1304. border-left: 0; }
  1305. .button-group.radius.stack-for-small > *,
  1306. .button-group.radius.stack-for-small > * > a,
  1307. .button-group.radius.stack-for-small > * > button,
  1308. .button-group.radius.stack-for-small > * > .button {
  1309. border-radius: 0; }
  1310. .button-group.radius.stack-for-small > *:first-child,
  1311. .button-group.radius.stack-for-small > *:first-child > a,
  1312. .button-group.radius.stack-for-small > *:first-child > button,
  1313. .button-group.radius.stack-for-small > *:first-child > .button {
  1314. -webkit-border-bottom-left-radius: 3px;
  1315. -webkit-border-top-left-radius: 3px;
  1316. border-bottom-left-radius: 3px;
  1317. border-top-left-radius: 3px; }
  1318. .button-group.radius.stack-for-small > *:last-child,
  1319. .button-group.radius.stack-for-small > *:last-child > a,
  1320. .button-group.radius.stack-for-small > *:last-child > button,
  1321. .button-group.radius.stack-for-small > *:last-child > .button {
  1322. -webkit-border-bottom-right-radius: 3px;
  1323. -webkit-border-top-right-radius: 3px;
  1324. border-bottom-right-radius: 3px;
  1325. border-top-right-radius: 3px; } }
  1326. @media only screen and (max-width: 40em) {
  1327. .button-group.radius.stack-for-small > * {
  1328. margin: 0 -2px;
  1329. display: inline-block;
  1330. display: block;
  1331. margin: 0; }
  1332. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1333. border-left: 1px solid;
  1334. border-color: rgba(255, 255, 255, 0.5); }
  1335. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1336. border-left: 0; }
  1337. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1338. border-top: 1px solid;
  1339. border-color: rgba(255, 255, 255, 0.5);
  1340. border-left-width: 0;
  1341. margin: 0;
  1342. display: block; }
  1343. .button-group.radius.stack-for-small > * > button {
  1344. width: 100%; }
  1345. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1346. border-top: 0; }
  1347. .button-group.radius.stack-for-small > *,
  1348. .button-group.radius.stack-for-small > * > a,
  1349. .button-group.radius.stack-for-small > * > button,
  1350. .button-group.radius.stack-for-small > * > .button {
  1351. border-radius: 0; }
  1352. .button-group.radius.stack-for-small > *:first-child,
  1353. .button-group.radius.stack-for-small > *:first-child > a,
  1354. .button-group.radius.stack-for-small > *:first-child > button,
  1355. .button-group.radius.stack-for-small > *:first-child > .button {
  1356. -webkit-top-left-radius: 3px;
  1357. -webkit-top-right-radius: 3px;
  1358. border-top-left-radius: 3px;
  1359. border-top-right-radius: 3px; }
  1360. .button-group.radius.stack-for-small > *:last-child,
  1361. .button-group.radius.stack-for-small > *:last-child > a,
  1362. .button-group.radius.stack-for-small > *:last-child > button,
  1363. .button-group.radius.stack-for-small > *:last-child > .button {
  1364. -webkit-bottom-left-radius: 3px;
  1365. -webkit-bottom-right-radius: 3px;
  1366. border-bottom-left-radius: 3px;
  1367. border-bottom-right-radius: 3px; } }
  1368. .button-group.round > * {
  1369. margin: 0 -2px;
  1370. display: inline-block; }
  1371. .button-group.round > * > button, .button-group.round > * .button {
  1372. border-left: 1px solid;
  1373. border-color: rgba(255, 255, 255, 0.5); }
  1374. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  1375. border-left: 0; }
  1376. .button-group.round > *,
  1377. .button-group.round > * > a,
  1378. .button-group.round > * > button,
  1379. .button-group.round > * > .button {
  1380. border-radius: 0; }
  1381. .button-group.round > *:first-child,
  1382. .button-group.round > *:first-child > a,
  1383. .button-group.round > *:first-child > button,
  1384. .button-group.round > *:first-child > .button {
  1385. -webkit-border-bottom-left-radius: 1000px;
  1386. -webkit-border-top-left-radius: 1000px;
  1387. border-bottom-left-radius: 1000px;
  1388. border-top-left-radius: 1000px; }
  1389. .button-group.round > *:last-child,
  1390. .button-group.round > *:last-child > a,
  1391. .button-group.round > *:last-child > button,
  1392. .button-group.round > *:last-child > .button {
  1393. -webkit-border-bottom-right-radius: 1000px;
  1394. -webkit-border-top-right-radius: 1000px;
  1395. border-bottom-right-radius: 1000px;
  1396. border-top-right-radius: 1000px; }
  1397. .button-group.round.stack > * {
  1398. margin: 0 -2px;
  1399. display: inline-block;
  1400. display: block;
  1401. margin: 0; }
  1402. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1403. border-left: 1px solid;
  1404. border-color: rgba(255, 255, 255, 0.5); }
  1405. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1406. border-left: 0; }
  1407. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  1408. border-top: 1px solid;
  1409. border-color: rgba(255, 255, 255, 0.5);
  1410. border-left-width: 0;
  1411. margin: 0;
  1412. display: block; }
  1413. .button-group.round.stack > * > button {
  1414. width: 100%; }
  1415. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  1416. border-top: 0; }
  1417. .button-group.round.stack > *,
  1418. .button-group.round.stack > * > a,
  1419. .button-group.round.stack > * > button,
  1420. .button-group.round.stack > * > .button {
  1421. border-radius: 0; }
  1422. .button-group.round.stack > *:first-child,
  1423. .button-group.round.stack > *:first-child > a,
  1424. .button-group.round.stack > *:first-child > button,
  1425. .button-group.round.stack > *:first-child > .button {
  1426. -webkit-top-left-radius: 1rem;
  1427. -webkit-top-right-radius: 1rem;
  1428. border-top-left-radius: 1rem;
  1429. border-top-right-radius: 1rem; }
  1430. .button-group.round.stack > *:last-child,
  1431. .button-group.round.stack > *:last-child > a,
  1432. .button-group.round.stack > *:last-child > button,
  1433. .button-group.round.stack > *:last-child > .button {
  1434. -webkit-bottom-left-radius: 1rem;
  1435. -webkit-bottom-right-radius: 1rem;
  1436. border-bottom-left-radius: 1rem;
  1437. border-bottom-right-radius: 1rem; }
  1438. @media only screen and (min-width: 40.063em) {
  1439. .button-group.round.stack-for-small > * {
  1440. margin: 0 -2px;
  1441. display: inline-block; }
  1442. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1443. border-left: 1px solid;
  1444. border-color: rgba(255, 255, 255, 0.5); }
  1445. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1446. border-left: 0; }
  1447. .button-group.round.stack-for-small > *,
  1448. .button-group.round.stack-for-small > * > a,
  1449. .button-group.round.stack-for-small > * > button,
  1450. .button-group.round.stack-for-small > * > .button {
  1451. border-radius: 0; }
  1452. .button-group.round.stack-for-small > *:first-child,
  1453. .button-group.round.stack-for-small > *:first-child > a,
  1454. .button-group.round.stack-for-small > *:first-child > button,
  1455. .button-group.round.stack-for-small > *:first-child > .button {
  1456. -webkit-border-bottom-left-radius: 1000px;
  1457. -webkit-border-top-left-radius: 1000px;
  1458. border-bottom-left-radius: 1000px;
  1459. border-top-left-radius: 1000px; }
  1460. .button-group.round.stack-for-small > *:last-child,
  1461. .button-group.round.stack-for-small > *:last-child > a,
  1462. .button-group.round.stack-for-small > *:last-child > button,
  1463. .button-group.round.stack-for-small > *:last-child > .button {
  1464. -webkit-border-bottom-right-radius: 1000px;
  1465. -webkit-border-top-right-radius: 1000px;
  1466. border-bottom-right-radius: 1000px;
  1467. border-top-right-radius: 1000px; } }
  1468. @media only screen and (max-width: 40em) {
  1469. .button-group.round.stack-for-small > * {
  1470. margin: 0 -2px;
  1471. display: inline-block;
  1472. display: block;
  1473. margin: 0; }
  1474. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1475. border-left: 1px solid;
  1476. border-color: rgba(255, 255, 255, 0.5); }
  1477. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1478. border-left: 0; }
  1479. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  1480. border-top: 1px solid;
  1481. border-color: rgba(255, 255, 255, 0.5);
  1482. border-left-width: 0;
  1483. margin: 0;
  1484. display: block; }
  1485. .button-group.round.stack-for-small > * > button {
  1486. width: 100%; }
  1487. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  1488. border-top: 0; }
  1489. .button-group.round.stack-for-small > *,
  1490. .button-group.round.stack-for-small > * > a,
  1491. .button-group.round.stack-for-small > * > button,
  1492. .button-group.round.stack-for-small > * > .button {
  1493. border-radius: 0; }
  1494. .button-group.round.stack-for-small > *:first-child,
  1495. .button-group.round.stack-for-small > *:first-child > a,
  1496. .button-group.round.stack-for-small > *:first-child > button,
  1497. .button-group.round.stack-for-small > *:first-child > .button {
  1498. -webkit-top-left-radius: 1rem;
  1499. -webkit-top-right-radius: 1rem;
  1500. border-top-left-radius: 1rem;
  1501. border-top-right-radius: 1rem; }
  1502. .button-group.round.stack-for-small > *:last-child,
  1503. .button-group.round.stack-for-small > *:last-child > a,
  1504. .button-group.round.stack-for-small > *:last-child > button,
  1505. .button-group.round.stack-for-small > *:last-child > .button {
  1506. -webkit-bottom-left-radius: 1rem;
  1507. -webkit-bottom-right-radius: 1rem;
  1508. border-bottom-left-radius: 1rem;
  1509. border-bottom-right-radius: 1rem; } }
  1510. .button-bar:before, .button-bar:after {
  1511. content: " ";
  1512. display: table; }
  1513. .button-bar:after {
  1514. clear: both; }
  1515. .button-bar .button-group {
  1516. float: left;
  1517. margin-right: 0.625rem; }
  1518. .button-bar .button-group div {
  1519. overflow: hidden; }
  1520. .row {
  1521. width: 100%;
  1522. margin-left: auto;
  1523. margin-right: auto;
  1524. margin-top: 0;
  1525. margin-bottom: 0;
  1526. max-width: 62.5rem; }
  1527. .row:before, .row:after {
  1528. content: " ";
  1529. display: table; }
  1530. .row:after {
  1531. clear: both; }
  1532. .row.collapse > .column,
  1533. .row.collapse > .columns {
  1534. padding-left: 0;
  1535. padding-right: 0; }
  1536. .row.collapse .row {
  1537. margin-left: 0;
  1538. margin-right: 0; }
  1539. .row .row {
  1540. width: auto;
  1541. margin-left: -0.9375rem;
  1542. margin-right: -0.9375rem;
  1543. margin-top: 0;
  1544. margin-bottom: 0;
  1545. max-width: none; }
  1546. .row .row:before, .row .row:after {
  1547. content: " ";
  1548. display: table; }
  1549. .row .row:after {
  1550. clear: both; }
  1551. .row .row.collapse {
  1552. width: auto;
  1553. margin: 0;
  1554. max-width: none; }
  1555. .row .row.collapse:before, .row .row.collapse:after {
  1556. content: " ";
  1557. display: table; }
  1558. .row .row.collapse:after {
  1559. clear: both; }
  1560. .column,
  1561. .columns {
  1562. padding-left: 0.9375rem;
  1563. padding-right: 0.9375rem;
  1564. width: 100%;
  1565. float: left; }
  1566. [class*="column"] + [class*="column"]:last-child {
  1567. float: right; }
  1568. [class*="column"] + [class*="column"].end {
  1569. float: left; }
  1570. @media only screen {
  1571. .small-push-0 {
  1572. position: relative;
  1573. left: 0%;
  1574. right: auto; }
  1575. .small-pull-0 {
  1576. position: relative;
  1577. right: 0%;
  1578. left: auto; }
  1579. .small-push-1 {
  1580. position: relative;
  1581. left: 8.33333%;
  1582. right: auto; }
  1583. .small-pull-1 {
  1584. position: relative;
  1585. right: 8.33333%;
  1586. left: auto; }
  1587. .small-push-2 {
  1588. position: relative;
  1589. left: 16.66667%;
  1590. right: auto; }
  1591. .small-pull-2 {
  1592. position: relative;
  1593. right: 16.66667%;
  1594. left: auto; }
  1595. .small-push-3 {
  1596. position: relative;
  1597. left: 25%;
  1598. right: auto; }
  1599. .small-pull-3 {
  1600. position: relative;
  1601. right: 25%;
  1602. left: auto; }
  1603. .small-push-4 {
  1604. position: relative;
  1605. left: 33.33333%;
  1606. right: auto; }
  1607. .small-pull-4 {
  1608. position: relative;
  1609. right: 33.33333%;
  1610. left: auto; }
  1611. .small-push-5 {
  1612. position: relative;
  1613. left: 41.66667%;
  1614. right: auto; }
  1615. .small-pull-5 {
  1616. position: relative;
  1617. right: 41.66667%;
  1618. left: auto; }
  1619. .small-push-6 {
  1620. position: relative;
  1621. left: 50%;
  1622. right: auto; }
  1623. .small-pull-6 {
  1624. position: relative;
  1625. right: 50%;
  1626. left: auto; }
  1627. .small-push-7 {
  1628. position: relative;
  1629. left: 58.33333%;
  1630. right: auto; }
  1631. .small-pull-7 {
  1632. position: relative;
  1633. right: 58.33333%;
  1634. left: auto; }
  1635. .small-push-8 {
  1636. position: relative;
  1637. left: 66.66667%;
  1638. right: auto; }
  1639. .small-pull-8 {
  1640. position: relative;
  1641. right: 66.66667%;
  1642. left: auto; }
  1643. .small-push-9 {
  1644. position: relative;
  1645. left: 75%;
  1646. right: auto; }
  1647. .small-pull-9 {
  1648. position: relative;
  1649. right: 75%;
  1650. left: auto; }
  1651. .small-push-10 {
  1652. position: relative;
  1653. left: 83.33333%;
  1654. right: auto; }
  1655. .small-pull-10 {
  1656. position: relative;
  1657. right: 83.33333%;
  1658. left: auto; }
  1659. .small-push-11 {
  1660. position: relative;
  1661. left: 91.66667%;
  1662. right: auto; }
  1663. .small-pull-11 {
  1664. position: relative;
  1665. right: 91.66667%;
  1666. left: auto; }
  1667. .column,
  1668. .columns {
  1669. position: relative;
  1670. padding-left: 0.9375rem;
  1671. padding-right: 0.9375rem;
  1672. float: left; }
  1673. .small-1 {
  1674. width: 8.33333%; }
  1675. .small-2 {
  1676. width: 16.66667%; }
  1677. .small-3 {
  1678. width: 25%; }
  1679. .small-4 {
  1680. width: 33.33333%; }
  1681. .small-5 {
  1682. width: 41.66667%; }
  1683. .small-6 {
  1684. width: 50%; }
  1685. .small-7 {
  1686. width: 58.33333%; }
  1687. .small-8 {
  1688. width: 66.66667%; }
  1689. .small-9 {
  1690. width: 75%; }
  1691. .small-10 {
  1692. width: 83.33333%; }
  1693. .small-11 {
  1694. width: 91.66667%; }
  1695. .small-12 {
  1696. width: 100%; }
  1697. .small-offset-0 {
  1698. margin-left: 0% !important; }
  1699. .small-offset-1 {
  1700. margin-left: 8.33333% !important; }
  1701. .small-offset-2 {
  1702. margin-left: 16.66667% !important; }
  1703. .small-offset-3 {
  1704. margin-left: 25% !important; }
  1705. .small-offset-4 {
  1706. margin-left: 33.33333% !important; }
  1707. .small-offset-5 {
  1708. margin-left: 41.66667% !important; }
  1709. .small-offset-6 {
  1710. margin-left: 50% !important; }
  1711. .small-offset-7 {
  1712. margin-left: 58.33333% !important; }
  1713. .small-offset-8 {
  1714. margin-left: 66.66667% !important; }
  1715. .small-offset-9 {
  1716. margin-left: 75% !important; }
  1717. .small-offset-10 {
  1718. margin-left: 83.33333% !important; }
  1719. .small-offset-11 {
  1720. margin-left: 91.66667% !important; }
  1721. .small-reset-order {
  1722. margin-left: 0;
  1723. margin-right: 0;
  1724. left: auto;
  1725. right: auto;
  1726. float: left; }
  1727. .column.small-centered,
  1728. .columns.small-centered {
  1729. margin-left: auto;
  1730. margin-right: auto;
  1731. float: none; }
  1732. .column.small-uncentered,
  1733. .columns.small-uncentered {
  1734. margin-left: 0;
  1735. margin-right: 0;
  1736. float: left; }
  1737. .column.small-centered:last-child,
  1738. .columns.small-centered:last-child {
  1739. float: none; }
  1740. .column.small-uncentered:last-child,
  1741. .columns.small-uncentered:last-child {
  1742. float: left; }
  1743. .column.small-uncentered.opposite,
  1744. .columns.small-uncentered.opposite {
  1745. float: right; }
  1746. .row.small-collapse > .column,
  1747. .row.small-collapse > .columns {
  1748. padding-left: 0;
  1749. padding-right: 0; }
  1750. .row.small-collapse .row {
  1751. margin-left: 0;
  1752. margin-right: 0; }
  1753. .row.small-uncollapse > .column,
  1754. .row.small-uncollapse > .columns {
  1755. padding-left: 0.9375rem;
  1756. padding-right: 0.9375rem;
  1757. float: left; } }
  1758. @media only screen and (min-width: 40.063em) {
  1759. .medium-push-0 {
  1760. position: relative;
  1761. left: 0%;
  1762. right: auto; }
  1763. .medium-pull-0 {
  1764. position: relative;
  1765. right: 0%;
  1766. left: auto; }
  1767. .medium-push-1 {
  1768. position: relative;
  1769. left: 8.33333%;
  1770. right: auto; }
  1771. .medium-pull-1 {
  1772. position: relative;
  1773. right: 8.33333%;
  1774. left: auto; }
  1775. .medium-push-2 {
  1776. position: relative;
  1777. left: 16.66667%;
  1778. right: auto; }
  1779. .medium-pull-2 {
  1780. position: relative;
  1781. right: 16.66667%;
  1782. left: auto; }
  1783. .medium-push-3 {
  1784. position: relative;
  1785. left: 25%;
  1786. right: auto; }
  1787. .medium-pull-3 {
  1788. position: relative;
  1789. right: 25%;
  1790. left: auto; }
  1791. .medium-push-4 {
  1792. position: relative;
  1793. left: 33.33333%;
  1794. right: auto; }
  1795. .medium-pull-4 {
  1796. position: relative;
  1797. right: 33.33333%;
  1798. left: auto; }
  1799. .medium-push-5 {
  1800. position: relative;
  1801. left: 41.66667%;
  1802. right: auto; }
  1803. .medium-pull-5 {
  1804. position: relative;
  1805. right: 41.66667%;
  1806. left: auto; }
  1807. .medium-push-6 {
  1808. position: relative;
  1809. left: 50%;
  1810. right: auto; }
  1811. .medium-pull-6 {
  1812. position: relative;
  1813. right: 50%;
  1814. left: auto; }
  1815. .medium-push-7 {
  1816. position: relative;
  1817. left: 58.33333%;
  1818. right: auto; }
  1819. .medium-pull-7 {
  1820. position: relative;
  1821. right: 58.33333%;
  1822. left: auto; }
  1823. .medium-push-8 {
  1824. position: relative;
  1825. left: 66.66667%;
  1826. right: auto; }
  1827. .medium-pull-8 {
  1828. position: relative;
  1829. right: 66.66667%;
  1830. left: auto; }
  1831. .medium-push-9 {
  1832. position: relative;
  1833. left: 75%;
  1834. right: auto; }
  1835. .medium-pull-9 {
  1836. position: relative;
  1837. right: 75%;
  1838. left: auto; }
  1839. .medium-push-10 {
  1840. position: relative;
  1841. left: 83.33333%;
  1842. right: auto; }
  1843. .medium-pull-10 {
  1844. position: relative;
  1845. right: 83.33333%;
  1846. left: auto; }
  1847. .medium-push-11 {
  1848. position: relative;
  1849. left: 91.66667%;
  1850. right: auto; }
  1851. .medium-pull-11 {
  1852. position: relative;
  1853. right: 91.66667%;
  1854. left: auto; }
  1855. .column,
  1856. .columns {
  1857. position: relative;
  1858. padding-left: 0.9375rem;
  1859. padding-right: 0.9375rem;
  1860. float: left; }
  1861. .medium-1 {
  1862. width: 8.33333%; }
  1863. .medium-2 {
  1864. width: 16.66667%; }
  1865. .medium-3 {
  1866. width: 25%; }
  1867. .medium-4 {
  1868. width: 33.33333%; }
  1869. .medium-5 {
  1870. width: 41.66667%; }
  1871. .medium-6 {
  1872. width: 50%; }
  1873. .medium-7 {
  1874. width: 58.33333%; }
  1875. .medium-8 {
  1876. width: 66.66667%; }
  1877. .medium-9 {
  1878. width: 75%; }
  1879. .medium-10 {
  1880. width: 83.33333%; }
  1881. .medium-11 {
  1882. width: 91.66667%; }
  1883. .medium-12 {
  1884. width: 100%; }
  1885. .medium-offset-0 {
  1886. margin-left: 0% !important; }
  1887. .medium-offset-1 {
  1888. margin-left: 8.33333% !important; }
  1889. .medium-offset-2 {
  1890. margin-left: 16.66667% !important; }
  1891. .medium-offset-3 {
  1892. margin-left: 25% !important; }
  1893. .medium-offset-4 {
  1894. margin-left: 33.33333% !important; }
  1895. .medium-offset-5 {
  1896. margin-left: 41.66667% !important; }
  1897. .medium-offset-6 {
  1898. margin-left: 50% !important; }
  1899. .medium-offset-7 {
  1900. margin-left: 58.33333% !important; }
  1901. .medium-offset-8 {
  1902. margin-left: 66.66667% !important; }
  1903. .medium-offset-9 {
  1904. margin-left: 75% !important; }
  1905. .medium-offset-10 {
  1906. margin-left: 83.33333% !important; }
  1907. .medium-offset-11 {
  1908. margin-left: 91.66667% !important; }
  1909. .medium-reset-order {
  1910. margin-left: 0;
  1911. margin-right: 0;
  1912. left: auto;
  1913. right: auto;
  1914. float: left; }
  1915. .column.medium-centered,
  1916. .columns.medium-centered {
  1917. margin-left: auto;
  1918. margin-right: auto;
  1919. float: none; }
  1920. .column.medium-uncentered,
  1921. .columns.medium-uncentered {
  1922. margin-left: 0;
  1923. margin-right: 0;
  1924. float: left; }
  1925. .column.medium-centered:last-child,
  1926. .columns.medium-centered:last-child {
  1927. float: none; }
  1928. .column.medium-uncentered:last-child,
  1929. .columns.medium-uncentered:last-child {
  1930. float: left; }
  1931. .column.medium-uncentered.opposite,
  1932. .columns.medium-uncentered.opposite {
  1933. float: right; }
  1934. .row.medium-collapse > .column,
  1935. .row.medium-collapse > .columns {
  1936. padding-left: 0;
  1937. padding-right: 0; }
  1938. .row.medium-collapse .row {
  1939. margin-left: 0;
  1940. margin-right: 0; }
  1941. .row.medium-uncollapse > .column,
  1942. .row.medium-uncollapse > .columns {
  1943. padding-left: 0.9375rem;
  1944. padding-right: 0.9375rem;
  1945. float: left; }
  1946. .push-0 {
  1947. position: relative;
  1948. left: 0%;
  1949. right: auto; }
  1950. .pull-0 {
  1951. position: relative;
  1952. right: 0%;
  1953. left: auto; }
  1954. .push-1 {
  1955. position: relative;
  1956. left: 8.33333%;
  1957. right: auto; }
  1958. .pull-1 {
  1959. position: relative;
  1960. right: 8.33333%;
  1961. left: auto; }
  1962. .push-2 {
  1963. position: relative;
  1964. left: 16.66667%;
  1965. right: auto; }
  1966. .pull-2 {
  1967. position: relative;
  1968. right: 16.66667%;
  1969. left: auto; }
  1970. .push-3 {
  1971. position: relative;
  1972. left: 25%;
  1973. right: auto; }
  1974. .pull-3 {
  1975. position: relative;
  1976. right: 25%;
  1977. left: auto; }
  1978. .push-4 {
  1979. position: relative;
  1980. left: 33.33333%;
  1981. right: auto; }
  1982. .pull-4 {
  1983. position: relative;
  1984. right: 33.33333%;
  1985. left: auto; }
  1986. .push-5 {
  1987. position: relative;
  1988. left: 41.66667%;
  1989. right: auto; }
  1990. .pull-5 {
  1991. position: relative;
  1992. right: 41.66667%;
  1993. left: auto; }
  1994. .push-6 {
  1995. position: relative;
  1996. left: 50%;
  1997. right: auto; }
  1998. .pull-6 {
  1999. position: relative;
  2000. right: 50%;
  2001. left: auto; }
  2002. .push-7 {
  2003. position: relative;
  2004. left: 58.33333%;
  2005. right: auto; }
  2006. .pull-7 {
  2007. position: relative;
  2008. right: 58.33333%;
  2009. left: auto; }
  2010. .push-8 {
  2011. position: relative;
  2012. left: 66.66667%;
  2013. right: auto; }
  2014. .pull-8 {
  2015. position: relative;
  2016. right: 66.66667%;
  2017. left: auto; }
  2018. .push-9 {
  2019. position: relative;
  2020. left: 75%;
  2021. right: auto; }
  2022. .pull-9 {
  2023. position: relative;
  2024. right: 75%;
  2025. left: auto; }
  2026. .push-10 {
  2027. position: relative;
  2028. left: 83.33333%;
  2029. right: auto; }
  2030. .pull-10 {
  2031. position: relative;
  2032. right: 83.33333%;
  2033. left: auto; }
  2034. .push-11 {
  2035. position: relative;
  2036. left: 91.66667%;
  2037. right: auto; }
  2038. .pull-11 {
  2039. position: relative;
  2040. right: 91.66667%;
  2041. left: auto; } }
  2042. @media only screen and (min-width: 64.063em) {
  2043. .large-push-0 {
  2044. position: relative;
  2045. left: 0%;
  2046. right: auto; }
  2047. .large-pull-0 {
  2048. position: relative;
  2049. right: 0%;
  2050. left: auto; }
  2051. .large-push-1 {
  2052. position: relative;
  2053. left: 8.33333%;
  2054. right: auto; }
  2055. .large-pull-1 {
  2056. position: relative;
  2057. right: 8.33333%;
  2058. left: auto; }
  2059. .large-push-2 {
  2060. position: relative;
  2061. left: 16.66667%;
  2062. right: auto; }
  2063. .large-pull-2 {
  2064. position: relative;
  2065. right: 16.66667%;
  2066. left: auto; }
  2067. .large-push-3 {
  2068. position: relative;
  2069. left: 25%;
  2070. right: auto; }
  2071. .large-pull-3 {
  2072. position: relative;
  2073. right: 25%;
  2074. left: auto; }
  2075. .large-push-4 {
  2076. position: relative;
  2077. left: 33.33333%;
  2078. right: auto; }
  2079. .large-pull-4 {
  2080. position: relative;
  2081. right: 33.33333%;
  2082. left: auto; }
  2083. .large-push-5 {
  2084. position: relative;
  2085. left: 41.66667%;
  2086. right: auto; }
  2087. .large-pull-5 {
  2088. position: relative;
  2089. right: 41.66667%;
  2090. left: auto; }
  2091. .large-push-6 {
  2092. position: relative;
  2093. left: 50%;
  2094. right: auto; }
  2095. .large-pull-6 {
  2096. position: relative;
  2097. right: 50%;
  2098. left: auto; }
  2099. .large-push-7 {
  2100. position: relative;
  2101. left: 58.33333%;
  2102. right: auto; }
  2103. .large-pull-7 {
  2104. position: relative;
  2105. right: 58.33333%;
  2106. left: auto; }
  2107. .large-push-8 {
  2108. position: relative;
  2109. left: 66.66667%;
  2110. right: auto; }
  2111. .large-pull-8 {
  2112. position: relative;
  2113. right: 66.66667%;
  2114. left: auto; }
  2115. .large-push-9 {
  2116. position: relative;
  2117. left: 75%;
  2118. right: auto; }
  2119. .large-pull-9 {
  2120. position: relative;
  2121. right: 75%;
  2122. left: auto; }
  2123. .large-push-10 {
  2124. position: relative;
  2125. left: 83.33333%;
  2126. right: auto; }
  2127. .large-pull-10 {
  2128. position: relative;
  2129. right: 83.33333%;
  2130. left: auto; }
  2131. .large-push-11 {
  2132. position: relative;
  2133. left: 91.66667%;
  2134. right: auto; }
  2135. .large-pull-11 {
  2136. position: relative;
  2137. right: 91.66667%;
  2138. left: auto; }
  2139. .column,
  2140. .columns {
  2141. position: relative;
  2142. padding-left: 0.9375rem;
  2143. padding-right: 0.9375rem;
  2144. float: left; }
  2145. .large-1 {
  2146. width: 8.33333%; }
  2147. .large-2 {
  2148. width: 16.66667%; }
  2149. .large-3 {
  2150. width: 25%; }
  2151. .large-4 {
  2152. width: 33.33333%; }
  2153. .large-5 {
  2154. width: 41.66667%; }
  2155. .large-6 {
  2156. width: 50%; }
  2157. .large-7 {
  2158. width: 58.33333%; }
  2159. .large-8 {
  2160. width: 66.66667%; }
  2161. .large-9 {
  2162. width: 75%; }
  2163. .large-10 {
  2164. width: 83.33333%; }
  2165. .large-11 {
  2166. width: 91.66667%; }
  2167. .large-12 {
  2168. width: 100%; }
  2169. .large-offset-0 {
  2170. margin-left: 0% !important; }
  2171. .large-offset-1 {
  2172. margin-left: 8.33333% !important; }
  2173. .large-offset-2 {
  2174. margin-left: 16.66667% !important; }
  2175. .large-offset-3 {
  2176. margin-left: 25% !important; }
  2177. .large-offset-4 {
  2178. margin-left: 33.33333% !important; }
  2179. .large-offset-5 {
  2180. margin-left: 41.66667% !important; }
  2181. .large-offset-6 {
  2182. margin-left: 50% !important; }
  2183. .large-offset-7 {
  2184. margin-left: 58.33333% !important; }
  2185. .large-offset-8 {
  2186. margin-left: 66.66667% !important; }
  2187. .large-offset-9 {
  2188. margin-left: 75% !important; }
  2189. .large-offset-10 {
  2190. margin-left: 83.33333% !important; }
  2191. .large-offset-11 {
  2192. margin-left: 91.66667% !important; }
  2193. .large-reset-order {
  2194. margin-left: 0;
  2195. margin-right: 0;
  2196. left: auto;
  2197. right: auto;
  2198. float: left; }
  2199. .column.large-centered,
  2200. .columns.large-centered {
  2201. margin-left: auto;
  2202. margin-right: auto;
  2203. float: none; }
  2204. .column.large-uncentered,
  2205. .columns.large-uncentered {
  2206. margin-left: 0;
  2207. margin-right: 0;
  2208. float: left; }
  2209. .column.large-centered:last-child,
  2210. .columns.large-centered:last-child {
  2211. float: none; }
  2212. .column.large-uncentered:last-child,
  2213. .columns.large-uncentered:last-child {
  2214. float: left; }
  2215. .column.large-uncentered.opposite,
  2216. .columns.large-uncentered.opposite {
  2217. float: right; }
  2218. .row.large-collapse > .column,
  2219. .row.large-collapse > .columns {
  2220. padding-left: 0;
  2221. padding-right: 0; }
  2222. .row.large-collapse .row {
  2223. margin-left: 0;
  2224. margin-right: 0; }
  2225. .row.large-uncollapse > .column,
  2226. .row.large-uncollapse > .columns {
  2227. padding-left: 0.9375rem;
  2228. padding-right: 0.9375rem;
  2229. float: left; }
  2230. .push-0 {
  2231. position: relative;
  2232. left: 0%;
  2233. right: auto; }
  2234. .pull-0 {
  2235. position: relative;
  2236. right: 0%;
  2237. left: auto; }
  2238. .push-1 {
  2239. position: relative;
  2240. left: 8.33333%;
  2241. right: auto; }
  2242. .pull-1 {
  2243. position: relative;
  2244. right: 8.33333%;
  2245. left: auto; }
  2246. .push-2 {
  2247. position: relative;
  2248. left: 16.66667%;
  2249. right: auto; }
  2250. .pull-2 {
  2251. position: relative;
  2252. right: 16.66667%;
  2253. left: auto; }
  2254. .push-3 {
  2255. position: relative;
  2256. left: 25%;
  2257. right: auto; }
  2258. .pull-3 {
  2259. position: relative;
  2260. right: 25%;
  2261. left: auto; }
  2262. .push-4 {
  2263. position: relative;
  2264. left: 33.33333%;
  2265. right: auto; }
  2266. .pull-4 {
  2267. position: relative;
  2268. right: 33.33333%;
  2269. left: auto; }
  2270. .push-5 {
  2271. position: relative;
  2272. left: 41.66667%;
  2273. right: auto; }
  2274. .pull-5 {
  2275. position: relative;
  2276. right: 41.66667%;
  2277. left: auto; }
  2278. .push-6 {
  2279. position: relative;
  2280. left: 50%;
  2281. right: auto; }
  2282. .pull-6 {
  2283. position: relative;
  2284. right: 50%;
  2285. left: auto; }
  2286. .push-7 {
  2287. position: relative;
  2288. left: 58.33333%;
  2289. right: auto; }
  2290. .pull-7 {
  2291. position: relative;
  2292. right: 58.33333%;
  2293. left: auto; }
  2294. .push-8 {
  2295. position: relative;
  2296. left: 66.66667%;
  2297. right: auto; }
  2298. .pull-8 {
  2299. position: relative;
  2300. right: 66.66667%;
  2301. left: auto; }
  2302. .push-9 {
  2303. position: relative;
  2304. left: 75%;
  2305. right: auto; }
  2306. .pull-9 {
  2307. position: relative;
  2308. right: 75%;
  2309. left: auto; }
  2310. .push-10 {
  2311. position: relative;
  2312. left: 83.33333%;
  2313. right: auto; }
  2314. .pull-10 {
  2315. position: relative;
  2316. right: 83.33333%;
  2317. left: auto; }
  2318. .push-11 {
  2319. position: relative;
  2320. left: 91.66667%;
  2321. right: auto; }
  2322. .pull-11 {
  2323. position: relative;
  2324. right: 91.66667%;
  2325. left: auto; } }
  2326. /*
  2327. * www.g-u-i.net
  2328. */
  2329. /*
  2330. __
  2331. _________ / /___ __________
  2332. / ___/ __ \/ / __ \/ ___/ ___/
  2333. / /__/ /_/ / / /_/ / / (__ )
  2334. \___/\____/_/\____/_/ /____/
  2335. */
  2336. body {
  2337. font-size: 16px;
  2338. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2339. font-weight: 500;
  2340. font-style: normal;
  2341. line-height: 1.3; }
  2342. a {
  2343. color: #007BC2;
  2344. text-decoration: none; }
  2345. h1 {
  2346. font-size: 1.6em; }
  2347. h2 {
  2348. font-size: 1.5em; }
  2349. h3 {
  2350. font-size: 1.4em; }
  2351. h4 {
  2352. font-size: 1.3em; }
  2353. h5 {
  2354. font-size: 1.2em; }
  2355. h6 {
  2356. font-size: 1.1em; }
  2357. input, button, select, textarea {
  2358. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2359. font-weight: 500;
  2360. font-style: normal; }
  2361. #footer #footer-bottom {
  2362. text-align: center; }
  2363. #footer #footer-bottom .block {
  2364. font-size: 8px; }
  2365. /** RESPONSIVE break points */
  2366. /*
  2367. $small-breakpoint: em-calc(480) !default;
  2368. $medium-breakpoint: em-calc(768) !default;
  2369. $large-breakpoint: em-calc(980) !default;
  2370. $xlarge-breakpoint: em-calc(1200) !default;
  2371. $small-range: (0, $small-breakpoint) !default; // 0, 480px
  2372. $medium-range: ($small-breakpoint + em-calc(1), $medium-breakpoint) !default; 481px, 768px //
  2373. $large-range: ($medium-breakpoint + em-calc(1), $large-breakpoint) !default; // 769px, 980px
  2374. $xlarge-range: ($large-breakpoint + em-calc(1), $xlarge-breakpoint) !default; // 981px, 1200px
  2375. $xxlarge-range: ($xlarge-breakpoint + em-calc(1), em-calc(99999999)) !default; // 1201px, ...
  2376. // Media Queries
  2377. $screen: "only screen" !default;
  2378. $landscape: "only screen and (orientation: landscape)" !default;
  2379. $portrait: "only screen and (orientation: portrait)" !default;
  2380. $small-up: $screen !default;
  2381. $small-only: "only screen and (max-width: 40em)" !default;
  2382. $medium-up: "only screen and (min-width:40.063em)" !default;
  2383. $medium-only: "only screen and (min-width:40.063em) and (max-width:64em)" !default;
  2384. $large-up: "only screen and (min-width:64.063em)" !default;
  2385. $large-only: "only screen and (min-width:64.063em) and (max-width:90em)" !default;
  2386. $xlarge-up: "only screen and (min-width:90.063em)" !default;
  2387. $xlarge-only: "only screen and (min-width:90.063em) and (max-width:120em)" !default;
  2388. $xxlarge-up: "only screen and (min-width:120.063em)" !default;
  2389. $xxlarge-only: "only screen and (min-width:120.063em) and (max-width:99999999em)" !default;
  2390. $retina: (
  2391. "only screen and (-webkit-min-device-pixel-ratio: 2)",
  2392. "only screen and (min--moz-device-pixel-ratio: 2)",
  2393. "only screen and (-o-min-device-pixel-ratio: 2/1)",
  2394. "only screen and (min-device-pixel-ratio: 2)",
  2395. "only screen and (min-resolution: 192dpi)",
  2396. "only screen and (min-resolution: 2dppx)"
  2397. );
  2398. */
  2399. * {
  2400. box-sizing: content-box; }
  2401. *:before, *:after {
  2402. box-sizing: content-box; }
  2403. body {
  2404. overflow-y: scroll;
  2405. top: 0;
  2406. background-color: #f7f4ed; }
  2407. h1, h2, h3, h4, h5, h6 {
  2408. font-family: inherit; }
  2409. h1 {
  2410. font-weight: bold; }
  2411. figure {
  2412. margin: 0; }
  2413. input[type="checkbox"] + label {
  2414. margin: 0; }
  2415. p {
  2416. font-family: inherit;
  2417. font-weight: inherit;
  2418. font-size: inherit;
  2419. line-height: inherit;
  2420. margin-bottom: inherit; }
  2421. a {
  2422. font-size: inherit; }
  2423. .column, .columns {
  2424. padding: inherit;
  2425. float: inherit; }
  2426. /** NIVEAU 0 */
  2427. #root {
  2428. min-width: 320px; }
  2429. .ie8 #root {
  2430. min-width: 1024px; }
  2431. /** NIVEAU 1 */
  2432. #container {
  2433. margin: 0 auto;
  2434. position: relative;
  2435. transition: padding-top 0.5s ease-out, 1s, ease-out; }
  2436. /** NIVEAU 2 */
  2437. #header {
  2438. background-color: #fff;
  2439. z-index: 1000;
  2440. width: 96%;
  2441. padding-left: 2%;
  2442. padding-right: 2%; }
  2443. html.no-touch #header {
  2444. position: fixed;
  2445. top: 0;
  2446. margin: 0 auto;
  2447. min-width: 310.4px; }
  2448. .admin-menu #header {
  2449. margin-top: 35px; }
  2450. #utilities {
  2451. z-index: 999;
  2452. width: 96%;
  2453. padding-left: 2%;
  2454. padding-right: 2%; }
  2455. html.no-touch #utilities {
  2456. position: fixed;
  2457. top: 0;
  2458. margin: 0 auto;
  2459. min-width: 310.4px;
  2460. margin-top: 60px; }
  2461. html.no-touch .admin-menu #utilities {
  2462. margin-top: 85px; }
  2463. @media only screen and (max-width: 40em) {
  2464. #utilities > .region {
  2465. padding-top: 5px;
  2466. padding-bottom: 5px; } }
  2467. #main {
  2468. width: 96%;
  2469. padding-left: 2%;
  2470. padding-right: 2%;
  2471. overflow-x: hidden; }
  2472. #footer {
  2473. width: 96%;
  2474. padding-left: 2%;
  2475. padding-right: 2%;
  2476. padding-top: 2em; }
  2477. /** NIVEAU 3 */
  2478. /** NIVEAU 4 */
  2479. /** Z-INDEX */
  2480. #block-feedback-form {
  2481. z-index: 1001; }
  2482. #admin-menu {
  2483. z-index: 1002; }
  2484. #admin-toolbar {
  2485. z-index: 1003; }
  2486. /*
  2487. __ __ ___
  2488. / / / /___ ____ ___ ___ _ _|__ / /_/ / __ \/ __ `__ \/ _ \ | | / /_/ /
  2489. / __ / /_/ / / / / / / __/ | |/ / __/
  2490. /_/ /_/\____/_/ /_/ /_/\___/ |___/____/
  2491. */
  2492. body.front:not(.page-actuality) #header > .inner, body.front:not(.page-actuality) #utilities > .inner, body.front:not(.page-actuality) #center, body.front:not(.page-actuality) #footer,
  2493. body.page-whoweare #header > .inner,
  2494. body.page-whoweare #utilities > .inner,
  2495. body.page-whoweare #center,
  2496. body.page-whoweare #footer,
  2497. body.page-node-11187 #header > .inner,
  2498. body.page-node-11187 #utilities > .inner,
  2499. body.page-node-11187 #center,
  2500. body.page-node-11187 #footer,
  2501. body.page-node-11175 #header > .inner,
  2502. body.page-node-11175 #utilities > .inner,
  2503. body.page-node-11175 #center,
  2504. body.page-node-11175 #footer,
  2505. body.page-node-12324 #header > .inner,
  2506. body.page-node-12324 #utilities > .inner,
  2507. body.page-node-12324 #center,
  2508. body.page-node-12324 #footer,
  2509. body.page-user #header > .inner,
  2510. body.page-user #utilities > .inner,
  2511. body.page-user #center,
  2512. body.page-user #footer,
  2513. body.page-node-11186 #header > .inner,
  2514. body.page-node-11186 #utilities > .inner,
  2515. body.page-node-11186 #center,
  2516. body.page-node-11186 #footer,
  2517. body.page-cart #header > .inner,
  2518. body.page-cart #utilities > .inner,
  2519. body.page-cart #center,
  2520. body.page-cart #footer,
  2521. body.node-type-simplenews #header > .inner,
  2522. body.node-type-simplenews #utilities > .inner,
  2523. body.node-type-simplenews #center,
  2524. body.node-type-simplenews #footer,
  2525. body.node-type-publication #header > .inner,
  2526. body.node-type-publication #utilities > .inner,
  2527. body.node-type-publication #center,
  2528. body.node-type-publication #footer {
  2529. width: 100%;
  2530. margin-left: auto;
  2531. margin-right: auto;
  2532. margin-top: 0;
  2533. margin-bottom: 0;
  2534. max-width: 80rem; }
  2535. body.front:not(.page-actuality) #header > .inner:before, body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:before, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:before, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:before, body.front:not(.page-actuality) #footer:after,
  2536. body.page-whoweare #header > .inner:before,
  2537. body.page-whoweare #header > .inner:after,
  2538. body.page-whoweare #utilities > .inner:before,
  2539. body.page-whoweare #utilities > .inner:after,
  2540. body.page-whoweare #center:before,
  2541. body.page-whoweare #center:after,
  2542. body.page-whoweare #footer:before,
  2543. body.page-whoweare #footer:after,
  2544. body.page-node-11187 #header > .inner:before,
  2545. body.page-node-11187 #header > .inner:after,
  2546. body.page-node-11187 #utilities > .inner:before,
  2547. body.page-node-11187 #utilities > .inner:after,
  2548. body.page-node-11187 #center:before,
  2549. body.page-node-11187 #center:after,
  2550. body.page-node-11187 #footer:before,
  2551. body.page-node-11187 #footer:after,
  2552. body.page-node-11175 #header > .inner:before,
  2553. body.page-node-11175 #header > .inner:after,
  2554. body.page-node-11175 #utilities > .inner:before,
  2555. body.page-node-11175 #utilities > .inner:after,
  2556. body.page-node-11175 #center:before,
  2557. body.page-node-11175 #center:after,
  2558. body.page-node-11175 #footer:before,
  2559. body.page-node-11175 #footer:after,
  2560. body.page-node-12324 #header > .inner:before,
  2561. body.page-node-12324 #header > .inner:after,
  2562. body.page-node-12324 #utilities > .inner:before,
  2563. body.page-node-12324 #utilities > .inner:after,
  2564. body.page-node-12324 #center:before,
  2565. body.page-node-12324 #center:after,
  2566. body.page-node-12324 #footer:before,
  2567. body.page-node-12324 #footer:after,
  2568. body.page-user #header > .inner:before,
  2569. body.page-user #header > .inner:after,
  2570. body.page-user #utilities > .inner:before,
  2571. body.page-user #utilities > .inner:after,
  2572. body.page-user #center:before,
  2573. body.page-user #center:after,
  2574. body.page-user #footer:before,
  2575. body.page-user #footer:after,
  2576. body.page-node-11186 #header > .inner:before,
  2577. body.page-node-11186 #header > .inner:after,
  2578. body.page-node-11186 #utilities > .inner:before,
  2579. body.page-node-11186 #utilities > .inner:after,
  2580. body.page-node-11186 #center:before,
  2581. body.page-node-11186 #center:after,
  2582. body.page-node-11186 #footer:before,
  2583. body.page-node-11186 #footer:after,
  2584. body.page-cart #header > .inner:before,
  2585. body.page-cart #header > .inner:after,
  2586. body.page-cart #utilities > .inner:before,
  2587. body.page-cart #utilities > .inner:after,
  2588. body.page-cart #center:before,
  2589. body.page-cart #center:after,
  2590. body.page-cart #footer:before,
  2591. body.page-cart #footer:after,
  2592. body.node-type-simplenews #header > .inner:before,
  2593. body.node-type-simplenews #header > .inner:after,
  2594. body.node-type-simplenews #utilities > .inner:before,
  2595. body.node-type-simplenews #utilities > .inner:after,
  2596. body.node-type-simplenews #center:before,
  2597. body.node-type-simplenews #center:after,
  2598. body.node-type-simplenews #footer:before,
  2599. body.node-type-simplenews #footer:after,
  2600. body.node-type-publication #header > .inner:before,
  2601. body.node-type-publication #header > .inner:after,
  2602. body.node-type-publication #utilities > .inner:before,
  2603. body.node-type-publication #utilities > .inner:after,
  2604. body.node-type-publication #center:before,
  2605. body.node-type-publication #center:after,
  2606. body.node-type-publication #footer:before,
  2607. body.node-type-publication #footer:after {
  2608. content: " ";
  2609. display: table; }
  2610. body.front:not(.page-actuality) #header > .inner:after, body.front:not(.page-actuality) #utilities > .inner:after, body.front:not(.page-actuality) #center:after, body.front:not(.page-actuality) #footer:after,
  2611. body.page-whoweare #header > .inner:after,
  2612. body.page-whoweare #utilities > .inner:after,
  2613. body.page-whoweare #center:after,
  2614. body.page-whoweare #footer:after,
  2615. body.page-node-11187 #header > .inner:after,
  2616. body.page-node-11187 #utilities > .inner:after,
  2617. body.page-node-11187 #center:after,
  2618. body.page-node-11187 #footer:after,
  2619. body.page-node-11175 #header > .inner:after,
  2620. body.page-node-11175 #utilities > .inner:after,
  2621. body.page-node-11175 #center:after,
  2622. body.page-node-11175 #footer:after,
  2623. body.page-node-12324 #header > .inner:after,
  2624. body.page-node-12324 #utilities > .inner:after,
  2625. body.page-node-12324 #center:after,
  2626. body.page-node-12324 #footer:after,
  2627. body.page-user #header > .inner:after,
  2628. body.page-user #utilities > .inner:after,
  2629. body.page-user #center:after,
  2630. body.page-user #footer:after,
  2631. body.page-node-11186 #header > .inner:after,
  2632. body.page-node-11186 #utilities > .inner:after,
  2633. body.page-node-11186 #center:after,
  2634. body.page-node-11186 #footer:after,
  2635. body.page-cart #header > .inner:after,
  2636. body.page-cart #utilities > .inner:after,
  2637. body.page-cart #center:after,
  2638. body.page-cart #footer:after,
  2639. body.node-type-simplenews #header > .inner:after,
  2640. body.node-type-simplenews #utilities > .inner:after,
  2641. body.node-type-simplenews #center:after,
  2642. body.node-type-simplenews #footer:after,
  2643. body.node-type-publication #header > .inner:after,
  2644. body.node-type-publication #utilities > .inner:after,
  2645. body.node-type-publication #center:after,
  2646. body.node-type-publication #footer:after {
  2647. clear: both; }
  2648. .op-visible {
  2649. visibility: visible; }
  2650. .csstransitions .op-visible {
  2651. opacity: 1;
  2652. transition: opacity 0.3s ease-out; }
  2653. .op-hidden {
  2654. visibility: hidden; }
  2655. .op-hidden > * {
  2656. margin-top: -100000px; }
  2657. .csstransition .op-hidden {
  2658. opacity: 0;
  2659. transition: visibility 0s 0.3s; }
  2660. .csstransition .op-hidden > * {
  2661. transition: margin-top 0s 0.3s; }
  2662. /** colomnized() */
  2663. /*
  2664. __ ___________ ____ __________
  2665. / / / / ____/ | / __ \/ ____/ __ / /_/ / __/ / /| | / / / / __/ / /_/ /
  2666. / __ / /___/ ___ |/ /_/ / /___/ _, _/
  2667. /_/ /_/_____/_/ |_/_____/_____/_/ |_|
  2668. */
  2669. #header {
  2670. padding-top: 5px;
  2671. padding-bottom: 10px;
  2672. height: 45px; }
  2673. #header a, #header a:active, #header a:visited {
  2674. color: #000; }
  2675. #header .logo {
  2676. display: moz-inline-stack;
  2677. display: inline-block;
  2678. vertical-align: top;
  2679. zoom: 1;
  2680. *display: inline; }
  2681. #header .logo h1 {
  2682. margin: 0;
  2683. font-size: 36px;
  2684. display: moz-inline-stack;
  2685. display: inline-block;
  2686. vertical-align: top;
  2687. zoom: 1;
  2688. *display: inline;
  2689. vertical-align: baseline;
  2690. position: relative;
  2691. line-height: 1.25; }
  2692. #header .logo h1 a:hover {
  2693. text-decoration: none; }
  2694. #header .logo span.slogan {
  2695. font-size: 14px;
  2696. margin-top: -3px;
  2697. margin-left: -0.5em;
  2698. font-weight: 900; }
  2699. @media only screen and (max-width: 40em) {
  2700. #header .logo span.slogan {
  2701. display: none; } }
  2702. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2703. #header .logo span.slogan {
  2704. display: block;
  2705. margin-left: 0.1em; } }
  2706. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  2707. #header .logo span.slogan {
  2708. display: block;
  2709. margin-left: 0.1em; } }
  2710. .ie8 #header .logo span.slogan {
  2711. position: absolute;
  2712. margin-top: 22px; }
  2713. #header #header-blocks {
  2714. padding-top: 17px;
  2715. float: right;
  2716. text-align: right;
  2717. text-transform: capitalize; }
  2718. #header #header-blocks > .region {
  2719. display: moz-inline-stack;
  2720. display: inline-block;
  2721. vertical-align: top;
  2722. zoom: 1;
  2723. *display: inline;
  2724. vertical-align: middle;
  2725. padding-right: 1em;
  2726. margin-right: 1em;
  2727. border-right: 1px solid #707070; }
  2728. @media only screen and (max-width: 40em) {
  2729. #header #header-blocks > .region {
  2730. padding-right: 0.3em;
  2731. margin-right: 0.3em; } }
  2732. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2733. #header #header-blocks > .region {
  2734. padding-right: 0.3em;
  2735. margin-right: 0.3em; } }
  2736. #header #header-blocks > .region:last-child {
  2737. border: none;
  2738. padding: 0;
  2739. margin: 0; }
  2740. #header #header-blocks .block {
  2741. display: moz-inline-stack;
  2742. display: inline-block;
  2743. vertical-align: top;
  2744. zoom: 1;
  2745. *display: inline;
  2746. vertical-align: middle; }
  2747. #header #header-blocks .block h2 {
  2748. font-size: 12px;
  2749. margin: 0;
  2750. line-height: 1.2;
  2751. font-weight: normal; }
  2752. #header #header-blocks .block:not(:last-child) {
  2753. padding-right: 0.8em; }
  2754. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  2755. #header #header-blocks .block:not(:last-child) {
  2756. padding-right: 0.3em; } }
  2757. @media only screen and (max-width: 40em) {
  2758. #header #header-blocks #headerblock-left {
  2759. display: none; } }
  2760. #header #header-blocks #block-social-media-links-social-media-links ul.social-media-links {
  2761. margin: 0;
  2762. line-height: 0; }
  2763. #header #header-blocks #block-social-media-links-social-media-links li {
  2764. line-height: 1; }
  2765. #header #header-blocks #block-social-media-links-social-media-links li.facebook a {
  2766. background-image: url("../img/socialicons/svg/Facebook-color.svg"); }
  2767. #header #header-blocks #block-social-media-links-social-media-links li.twitter a {
  2768. background-image: url("../img/socialicons/svg/Twitter-color.svg"); }
  2769. #header #header-blocks #block-social-media-links-social-media-links li.linkedin a {
  2770. background-image: url("../img/socialicons/svg/LinkedIn-color.svg"); }
  2771. #header #header-blocks #block-social-media-links-social-media-links li.pinterest a {
  2772. background-image: url("../img/socialicons/svg/Pinterest-color.svg"); }
  2773. #header #header-blocks #block-social-media-links-social-media-links li.vimeo a {
  2774. background-image: url("../img/socialicons/svg/Vimeo-color.svg"); }
  2775. #header #header-blocks #block-social-media-links-social-media-links li.rss a {
  2776. background-image: url("../img/socialicons/svg/RSS-color.svg"); }
  2777. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2778. #header #header-blocks #block-social-media-links-social-media-links li.linkedin, #header #header-blocks #block-social-media-links-social-media-links li.pinterest, #header #header-blocks #block-social-media-links-social-media-links li.vimeo {
  2779. display: none; } }
  2780. #header #header-blocks #block-social-media-links-social-media-links a {
  2781. display: block;
  2782. width: 16px;
  2783. height: 16px;
  2784. background-position: center;
  2785. background-repeat: no-repeat;
  2786. background-size: contain; }
  2787. #header #header-blocks #block-social-media-links-social-media-links img {
  2788. display: none; }
  2789. #header #header-blocks #block-materio-user-front-link a {
  2790. font-size: 12px; }
  2791. #header #header-blocks #block-materio-user-front-link span.text {
  2792. display: none; }
  2793. #header #header-blocks #block-user-login {
  2794. font-size: 12px;
  2795. text-align: left;
  2796. position: relative; }
  2797. #header #header-blocks #block-user-login h2 {
  2798. padding-right: 5px; }
  2799. #header #header-blocks #block-user-login h2 i {
  2800. vertical-align: text-bottom;
  2801. margin: 0 2px 2px 0; }
  2802. #header #header-blocks #block-user-login form#user-login-form {
  2803. position: absolute;
  2804. overflow: hidden;
  2805. right: 0;
  2806. margin: 0;
  2807. height: 0;
  2808. transition: height 0.3s ease-out; }
  2809. #header #header-blocks #block-user-login form#user-login-form > div {
  2810. padding: 5px;
  2811. margin: 5px;
  2812. background-color: #e6e6e6;
  2813. border-radius: 5px;
  2814. background-clip: padding-box;
  2815. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  2816. #header #header-blocks #block-user-login form#user-login-form .form-item {
  2817. margin: 0;
  2818. padding-bottom: 5px; }
  2819. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  2820. margin: 0;
  2821. font-size: 10px; }
  2822. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  2823. width: 150px;
  2824. height: 2em; }
  2825. #header #header-blocks #block-user-login form#user-login-form .form-actions {
  2826. margin: 5px 0;
  2827. padding: 0;
  2828. background-color: transparent;
  2829. text-align: right; }
  2830. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit {
  2831. font-size: 16px;
  2832. padding: 0.1em 0.6em 0.2em;
  2833. border-radius: 0.3em;
  2834. background-clip: padding-box;
  2835. font-weight: bold;
  2836. margin-bottom: 4px;
  2837. border: 2px solid #E6DE1C;
  2838. background-color: #E6DE1C;
  2839. color: #fff;
  2840. cursor: pointer;
  2841. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  2842. transition: text-shadow 0.2s ease-out; }
  2843. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:hover, #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:focus {
  2844. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  2845. #header #header-blocks #block-user-login form#user-login-form .form-actions input.form-submit:active {
  2846. transition: text-shadow 0s ease-out;
  2847. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  2848. #header #header-blocks #block-user-login form#user-login-form div.newpass {
  2849. text-align: right; }
  2850. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  2851. font-size: 10px;
  2852. color: #686868;
  2853. text-transform: lowercase; }
  2854. html.no-touch #header #header-blocks #block-user-login:hover form#user-login-form, #header #header-blocks #block-user-login.hovered form#user-login-form {
  2855. height: 300px;
  2856. z-index: 1000; }
  2857. @media only screen and (max-width: 40em) {
  2858. #header #header-blocks #block-user-login span.login {
  2859. display: none; } }
  2860. #header #header-blocks #block-ajax-register-ajax-register-block {
  2861. font-size: 12px;
  2862. text-transform: lowercase; }
  2863. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2864. font-size: 12px;
  2865. line-height: 1.5; }
  2866. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2867. vertical-align: text-bottom;
  2868. margin: 0 5px 1px 0;
  2869. line-height: 1; }
  2870. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2871. text-transform: lowercase; }
  2872. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2873. display: none;
  2874. margin-left: 5px; }
  2875. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2876. margin: 0 0.5em 0 0.5em; }
  2877. @media only screen and (max-width: 40em) {
  2878. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2879. display: none; } }
  2880. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2881. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2882. display: none; } }
  2883. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  2884. position: relative; }
  2885. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  2886. margin: 0;
  2887. font-size: 12px;
  2888. line-height: 1.5; }
  2889. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2890. line-height: 1; }
  2891. @media only screen and (max-width: 40em) {
  2892. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2893. display: none; } }
  2894. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2895. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2896. display: none; } }
  2897. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2898. position: absolute;
  2899. z-index: 20;
  2900. background-color: rgba(255, 255, 255, 0.9);
  2901. min-width: 100%;
  2902. margin: 0 0 0 -5px;
  2903. border-radius: 3px;
  2904. background-clip: padding-box;
  2905. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  2906. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2907. background: #FFF; }
  2908. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2909. margin: 0; }
  2910. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2911. list-style: none;
  2912. font-size: 12px;
  2913. font-weight: 700;
  2914. padding: 0 10px;
  2915. text-align: left;
  2916. width: 200px;
  2917. height: 0;
  2918. overflow: hidden;
  2919. transition: height 0.3s ease-out; }
  2920. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview {
  2921. white-space: nowrap;
  2922. cursor: pointer; }
  2923. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2924. max-width: 150px; }
  2925. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2926. font-weight: 300;
  2927. padding: 0 5px; }
  2928. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.edit-list {
  2929. padding-right: 5px; }
  2930. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2931. visibility: hidden; }
  2932. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2933. margin-top: -100000px; }
  2934. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2935. opacity: 0;
  2936. transition: visibility 0s 0.3s; }
  2937. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2938. transition: margin-top 0s 0.3s; }
  2939. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2940. padding-bottom: 5px; }
  2941. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2942. height: 15px;
  2943. padding: 3px 10px; }
  2944. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2945. vertical-align: text-bottom;
  2946. margin: 0 2px 2px 0; }
  2947. @media only screen and (max-width: 40em) {
  2948. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2949. display: none; } }
  2950. #header #header-blocks #headerblock-right .block {
  2951. display: moz-inline-stack;
  2952. display: inline-block;
  2953. vertical-align: top;
  2954. zoom: 1;
  2955. *display: inline;
  2956. padding: 0;
  2957. vertical-align: middle; }
  2958. #header #header-blocks #headerblock-right .block:first-child {
  2959. padding: 0; }
  2960. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2961. display: none; }
  2962. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2963. vertical-align: text-bottom;
  2964. margin: 0 0 2px 0; }
  2965. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2966. font-size: 12px;
  2967. list-style: none; }
  2968. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2969. display: inline; }
  2970. @media only screen and (min-width: 40.063em) {
  2971. #header #header-blocks #block-menu-menu-top-menu h2 {
  2972. display: none; }
  2973. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2974. display: moz-inline-stack;
  2975. display: inline-block;
  2976. vertical-align: top;
  2977. zoom: 1;
  2978. *display: inline;
  2979. vertical-align: middle;
  2980. padding: 0;
  2981. margin: 0; }
  2982. #header #header-blocks #block-menu-menu-top-menu a {
  2983. padding: 0 0.5em 0 0; } }
  2984. @media only screen and (max-width: 40em) {
  2985. #header #header-blocks #block-menu-menu-top-menu {
  2986. position: relative; }
  2987. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  2988. display: none; }
  2989. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  2990. position: absolute;
  2991. width: 150px;
  2992. display: none;
  2993. right: 0;
  2994. padding-top: 5px; }
  2995. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  2996. background-color: #e6e6e6;
  2997. border-radius: 5px;
  2998. background-clip: padding-box;
  2999. padding: 0 5px 5px 5px;
  3000. margin: 0;
  3001. text-align: right; }
  3002. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  3003. height: 0;
  3004. overflow: hidden;
  3005. transition: height 0.3s ease-out; }
  3006. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  3007. display: block;
  3008. width: 100%;
  3009. padding: 2px 5px;
  3010. font-size: 12px; }
  3011. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  3012. z-index: 1000; }
  3013. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper {
  3014. display: block; }
  3015. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper ul.menu li, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper ul.menu li {
  3016. height: 25px; } }
  3017. #header #header-blocks #block-locale-language {
  3018. position: relative; }
  3019. #header #header-blocks #block-locale-language h2 {
  3020. font-size: 9px;
  3021. line-height: 1.6;
  3022. display: inline-block;
  3023. padding: 0.20em 0.45em 0.10em;
  3024. margin: 0;
  3025. border-radius: 3px;
  3026. background-clip: padding-box;
  3027. color: #fff;
  3028. text-transform: uppercase;
  3029. background-color: #4d4b4b; }
  3030. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  3031. margin: 0;
  3032. padding: 0;
  3033. list-style-type: none;
  3034. font-size: 12px;
  3035. line-height: 0.9; }
  3036. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  3037. display: none; }
  3038. .ie8 #header #header-blocks #block-locale-language {
  3039. padding-top: 5px; }
  3040. #header #header-blocks #block-locale-language ul {
  3041. padding-top: 2.1em;
  3042. position: absolute;
  3043. top: 0;
  3044. left: 0;
  3045. text-align: left; }
  3046. #header #header-blocks #block-locale-language li {
  3047. height: 0;
  3048. overflow: hidden;
  3049. transition: height 0.3s ease-in-out; }
  3050. #header #header-blocks #block-locale-language li a {
  3051. display: inline-block;
  3052. font-size: 0.9em;
  3053. padding: 0.33em 0.34em 0.3em;
  3054. border-radius: 3px;
  3055. background-clip: padding-box;
  3056. color: #fff;
  3057. text-transform: uppercase;
  3058. background-color: #808080;
  3059. transition: background-color 0.3s ease-out; }
  3060. #header #header-blocks #block-locale-language li a:hover {
  3061. background-color: #1A1A1A; }
  3062. #header #header-blocks #block-locale-language:hover li {
  3063. height: 1.5em; }
  3064. #header #header-blocks #block-materio-user-old-database-link a {
  3065. font-size: 12px; }
  3066. /*
  3067. __ _ ___ __ _
  3068. __ __/ /_(_) (_) /_(_)__ _____
  3069. / / / / __/ / / / __/ / _ \/ ___/
  3070. / /_/ / /_/ / / / /_/ / __(__ )
  3071. \__,_/\__/_/_/_/\__/_/\___/____/
  3072. */
  3073. #utilities {
  3074. background-color: #fff;
  3075. margin-top: 60px; }
  3076. .not-logged-in #utilities {
  3077. overflow: hidden; }
  3078. #utilities > .inner {
  3079. padding: 0.5em 0; }
  3080. #utilities.closed {
  3081. height: 0; }
  3082. #utilities.closed .tabs, #utilities.closed .node-didactique {
  3083. display: none; }
  3084. @media only screen and (max-width: 40em) {
  3085. #utilities {
  3086. margin-top: 0; } }
  3087. /*
  3088. _
  3089. ____ ___ ____ _(_)___
  3090. / __ `__ \/ __ `/ / __ / / / / / / /_/ / / / / /
  3091. /_/ /_/ /_/\__,_/_/_/ /_/
  3092. */
  3093. body.home-v2 #main {
  3094. padding-top: 60px; }
  3095. /*
  3096. __ _ __ ___ __ __ __
  3097. / /_ (_)___ _/ /_ / (_)___ _/ /_ / /____ ____/ /
  3098. / __ \/ / __ `/ __ \/ / / __ `/ __ \/ __/ _ \/ __ /
  3099. / / / / / /_/ / / / / / / /_/ / / / / /_/ __/ /_/ /
  3100. /_/ /_/_/\__, /_/ /_/_/_/\__, /_/ /_/\__/\___/\__,_/
  3101. /____/ /____/
  3102. */
  3103. #highlighted {
  3104. border-radius: 5px;
  3105. background-clip: padding-box;
  3106. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  3107. padding: 0.5em;
  3108. position: relative; }
  3109. @media only screen and (min-width: 40.063em) {
  3110. #highlighted {
  3111. margin: 20px 0 6px; }
  3112. #highlighted .block {
  3113. display: moz-inline-stack;
  3114. display: inline-block;
  3115. vertical-align: top;
  3116. zoom: 1;
  3117. *display: inline;
  3118. vertical-align: top; }
  3119. #highlighted .block-materio-didactique {
  3120. width: 65%; }
  3121. #highlighted .block-materio-didactique .side {
  3122. display: moz-inline-stack;
  3123. display: inline-block;
  3124. vertical-align: top;
  3125. zoom: 1;
  3126. *display: inline;
  3127. vertical-align: top;
  3128. position: relative; }
  3129. #highlighted .block-materio-didactique .group-sideleft {
  3130. width: 65%; }
  3131. #highlighted .block-materio-didactique .group-sideright {
  3132. width: 30%; }
  3133. #highlighted .block-materio-didactique .field-name-title-field {
  3134. font-size: 24px; }
  3135. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3136. width: 47%; }
  3137. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3138. margin-right: 2%; }
  3139. #highlighted #block-materio-user-user-register {
  3140. width: 30%;
  3141. padding: 5px;
  3142. height: 290px; } }
  3143. @media only screen {
  3144. #highlighted .block-materio-didactique .side {
  3145. display: moz-inline-stack;
  3146. display: inline-block;
  3147. vertical-align: top;
  3148. zoom: 1;
  3149. *display: inline;
  3150. vertical-align: top; } }
  3151. @media only screen and (max-width: 40em) {
  3152. #highlighted {
  3153. margin: 10px 0 6px; }
  3154. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3155. width: 100%; }
  3156. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3157. font-size: 20px;
  3158. font-weight: normal !important; }
  3159. #highlighted .block-materio-didactique .node-didactique .field-name-title-field:after {
  3160. content: "\a0\f10b";
  3161. font-family: "foundation-icons";
  3162. font-style: normal;
  3163. font-weight: normal;
  3164. font-variant: normal;
  3165. text-transform: none;
  3166. line-height: 1;
  3167. -webkit-font-smoothing: antialiased;
  3168. display: inline-block;
  3169. text-decoration: inherit;
  3170. font-size: 16px; }
  3171. html.js #highlighted .block-materio-didactique .node-didactique {
  3172. height: auto;
  3173. height: 30px;
  3174. overflow: hidden; }
  3175. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3176. height: auto; } }
  3177. .oldie #highlighted .block {
  3178. display: moz-inline-stack;
  3179. display: inline-block;
  3180. vertical-align: top;
  3181. zoom: 1;
  3182. *display: inline; }
  3183. #highlighted .block-materio-didactique .node-didactique {
  3184. font-size: 14px;
  3185. background-color: #fff;
  3186. margin: 0 auto; }
  3187. #highlighted .block-materio-didactique .node-didactique .side {
  3188. position: relative; }
  3189. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3190. font-weight: 900;
  3191. font-style: italic;
  3192. padding: 5px 0; }
  3193. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3194. text-align: center; }
  3195. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3196. display: inline; }
  3197. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3198. display: none; }
  3199. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3200. display: none; }
  3201. html.js #highlighted .block-materio-didactique {
  3202. position: relative;
  3203. overflow: hidden; }
  3204. html.js #highlighted .block-materio-didactique .slides {
  3205. height: 270px;
  3206. margin: 0;
  3207. position: relative;
  3208. width: 100%;
  3209. overflow: hidden; }
  3210. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3211. position: absolute;
  3212. width: 100%;
  3213. height: 100%;
  3214. top: 0;
  3215. left: 0; }
  3216. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3217. height: 30px; }
  3218. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3219. height: 240px; }
  3220. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3221. height: 100%; }
  3222. @media only screen and (max-width: 40em) {
  3223. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3224. width: 290px;
  3225. height: 163.125px; } }
  3226. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  3227. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3228. width: 216px;
  3229. height: 121.5px; } }
  3230. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  3231. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3232. width: 216px;
  3233. height: 121.5px; } }
  3234. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  3235. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3236. width: 280px;
  3237. height: 157.5px; } }
  3238. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  3239. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3240. width: 340px;
  3241. height: 191.25px; } }
  3242. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3243. height: 100%;
  3244. width: 100%; }
  3245. html.js #highlighted .block-materio-didactique .tabs {
  3246. height: 30px;
  3247. margin: 0;
  3248. text-align: left; }
  3249. html.js #highlighted .block-materio-didactique .tabs > * {
  3250. display: moz-inline-stack;
  3251. display: inline-block;
  3252. vertical-align: top;
  3253. zoom: 1;
  3254. *display: inline;
  3255. vertical-align: top;
  3256. padding: 5px 10px;
  3257. font-size: 12px;
  3258. cursor: pointer;
  3259. color: #bfbfbf; }
  3260. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3261. color: #3f3f3f; }
  3262. /*
  3263. __ __ __ _ __
  3264. / /_ / /___ _____/ /__ ________ ____ _(_)____/ /____ _____
  3265. / __ \/ / __ \/ ___/ //_/ / ___/ _ \/ __ `/ / ___/ __/ _ \/ ___/
  3266. / /_/ / / /_/ / /__/ ,< / / / __/ /_/ / (__ ) /_/ __/ /
  3267. /_.___/_/\____/\___/_/|_| /_/ \___/\__, /_/____/\__/\___/_/
  3268. /____/
  3269. */
  3270. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3271. min-height: 120px;
  3272. padding: 5px;
  3273. background: transparent url("../img/register-block.png") no-repeat 100% 90%; }
  3274. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3275. max-width: 250px;
  3276. float: right;
  3277. background-image: none; }
  3278. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3279. font-weight: 900;
  3280. font-style: italic;
  3281. padding: 5px 0;
  3282. margin: 0;
  3283. line-height: 1;
  3284. background-color: #fff;
  3285. display: moz-inline-stack;
  3286. display: inline-block;
  3287. vertical-align: top;
  3288. zoom: 1;
  3289. *display: inline;
  3290. min-width: 50%; }
  3291. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3292. font-size: 24px; }
  3293. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3294. font-size: 16px; }
  3295. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3296. margin: 0;
  3297. background-color: rgba(255, 255, 255, 0.7);
  3298. padding-bottom: 5px;
  3299. display: moz-inline-stack;
  3300. display: inline-block;
  3301. vertical-align: top;
  3302. zoom: 1;
  3303. *display: inline; }
  3304. #block-materio-user-user-register .form-item, #block-materio-user-user-register .form-wrapper, #block-materio-user-user-createaccount .form-item, #block-materio-user-user-createaccount .form-wrapper {
  3305. margin: 0;
  3306. display: moz-inline-stack;
  3307. display: inline-block;
  3308. vertical-align: top;
  3309. zoom: 1;
  3310. *display: inline;
  3311. vertical-align: middle;
  3312. position: relative; }
  3313. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3314. margin-right: 5px; }
  3315. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3316. font-size: 12px;
  3317. border-radius: 5px;
  3318. background-clip: padding-box;
  3319. margin-bottom: 4px; }
  3320. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3321. margin-right: 5px; }
  3322. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3323. width: 11em; }
  3324. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3325. width: 7em; }
  3326. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3327. position: absolute;
  3328. bottom: 100%;
  3329. z-index: 9999;
  3330. background-image: none;
  3331. height: auto;
  3332. padding: 5px;
  3333. border-radius: 5px;
  3334. background-clip: padding-box;
  3335. margin-bottom: 10px;
  3336. font-size: 10px;
  3337. background-color: #fff;
  3338. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3339. transition: bottom 0.1s ease-out; }
  3340. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3341. background-color: #f3968d;
  3342. color: #fff; }
  3343. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3344. display: none; }
  3345. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3346. font-size: 16px;
  3347. padding: 0.1em 0.6em 0.2em;
  3348. border-radius: 0.3em;
  3349. background-clip: padding-box;
  3350. font-weight: bold;
  3351. margin-bottom: 4px; }
  3352. #block-materio-user-user-register .form-item-termsofservices, #block-materio-user-user-register #edit-field-newsletter, #block-materio-user-user-createaccount .form-item-termsofservices, #block-materio-user-user-createaccount #edit-field-newsletter {
  3353. margin-bottom: 0;
  3354. display: block;
  3355. line-height: 1; }
  3356. #block-materio-user-user-register .form-item-termsofservices > *, #block-materio-user-user-register #edit-field-newsletter > *, #block-materio-user-user-createaccount .form-item-termsofservices > *, #block-materio-user-user-createaccount #edit-field-newsletter > * {
  3357. display: moz-inline-stack;
  3358. display: inline-block;
  3359. vertical-align: top;
  3360. zoom: 1;
  3361. *display: inline;
  3362. vertical-align: middle;
  3363. margin: 0; }
  3364. #block-materio-user-user-register .form-item-termsofservices label, #block-materio-user-user-register #edit-field-newsletter label, #block-materio-user-user-createaccount .form-item-termsofservices label, #block-materio-user-user-createaccount #edit-field-newsletter label {
  3365. font-size: 10px;
  3366. background-color: #fff;
  3367. border-radius: 3px;
  3368. background-clip: padding-box; }
  3369. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3370. border: 2px solid #69CDCF;
  3371. background-color: #69CDCF;
  3372. color: #fff;
  3373. cursor: pointer;
  3374. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3375. transition: text-shadow 0.2s ease-out; }
  3376. #block-materio-user-user-register #user-register-form .form-submit:hover, #block-materio-user-user-register #user-register-form .form-submit:focus, #block-materio-user-user-createaccount #user-register-form .form-submit:hover, #block-materio-user-user-createaccount #user-register-form .form-submit:focus {
  3377. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3378. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3379. transition: text-shadow 0s ease-out;
  3380. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3381. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3382. background-color: #ddd;
  3383. border: 2px solid #ddd; }
  3384. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3385. border: 2px solid #E6DE1C;
  3386. background-color: #E6DE1C;
  3387. color: #fff;
  3388. cursor: pointer;
  3389. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3390. transition: text-shadow 0.2s ease-out; }
  3391. #block-materio-user-user-register #user-login .form-submit:hover, #block-materio-user-user-register #user-login .form-submit:focus, #block-materio-user-user-createaccount #user-login .form-submit:hover, #block-materio-user-user-createaccount #user-login .form-submit:focus {
  3392. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3393. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3394. transition: text-shadow 0s ease-out;
  3395. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3396. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3397. padding-top: 0.5em; }
  3398. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3399. font-size: 12px; }
  3400. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3401. display: block; }
  3402. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3403. font-size: 12px; }
  3404. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3405. display: block;
  3406. width: 5em;
  3407. font-size: 16px;
  3408. padding: 0.1em 0.3em 0.2em;
  3409. border-radius: 0.3em;
  3410. background-clip: padding-box;
  3411. font-weight: bold;
  3412. border: 2px solid #69CDCF;
  3413. background-color: #69CDCF;
  3414. color: #fff;
  3415. cursor: pointer;
  3416. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3417. transition: text-shadow 0.2s ease-out;
  3418. text-align: center;
  3419. text-decoration: none; }
  3420. #block-materio-user-user-register a.join:hover, #block-materio-user-user-register a.join:focus, #block-materio-user-user-createaccount a.join:hover, #block-materio-user-user-createaccount a.join:focus {
  3421. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3422. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3423. transition: text-shadow 0s ease-out;
  3424. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3425. @media only screen and (max-width: 40em) {
  3426. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3427. background-position: 160% 50%;
  3428. min-height: 60px;
  3429. padding: 15px 0; }
  3430. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3431. width: 7em; } }
  3432. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3433. color: #b94a48;
  3434. font-size: 12px; }
  3435. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3436. padding: 2em;
  3437. width: 400px;
  3438. background-color: #fff;
  3439. padding: 5px;
  3440. border-radius: 5px;
  3441. background-clip: padding-box;
  3442. box-shadow: 0 0 7px rgba(0, 0, 0, 0.4); }
  3443. .modal-content #block-materio-user-user-register #user-register-form div.homepage-textfield, .modal-content #block-materio-user-user-createaccount #user-register-form div.homepage-textfield {
  3444. display: none; }
  3445. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3446. font-size: 12px; }
  3447. /*
  3448. __ __ __
  3449. _________ ____ / /____ ____ / /_ / /_____ ____
  3450. / ___/ __ \/ __ \/ __/ _ \/ __ \/ __/_____/ __/ __ \/ __ / /__/ /_/ / / / / /_/ __/ / / / /_/_____/ /_/ /_/ / /_/ /
  3451. \___/\____/_/ /_/\__/\___/_/ /_/\__/ \__/\____/ .___/
  3452. /_/
  3453. */
  3454. #content-top {
  3455. /*
  3456. ___ _ _ _ _
  3457. | _| |___ ___ ___| |_|___| |_
  3458. | _| | .'| . |___| | |_ -| _|
  3459. |_| |_|__,|_ | |_|_|___|_|
  3460. |___|
  3461. */ }
  3462. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3463. font-size: 10px;
  3464. color: #666666;
  3465. font-weight: 300; }
  3466. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3467. margin-top: 40px; }
  3468. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3469. font-size: 12px;
  3470. font-weight: 700;
  3471. line-height: 1.2;
  3472. margin: 0;
  3473. color: #000; }
  3474. #content-top #block-materio-flag-materio-flag-mybookmarks h2 a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks h2 i.fi-x, #content-top #block-materio-flag-materio-flag-mylists h2 a.open-list, #content-top #block-materio-flag-materio-flag-mylists h2 i.fi-x {
  3475. display: moz-inline-stack;
  3476. display: inline-block;
  3477. vertical-align: top;
  3478. zoom: 1;
  3479. *display: inline;
  3480. cursor: pointer;
  3481. color: #000;
  3482. margin-left: 0.5em;
  3483. opacity: 0;
  3484. transition: opacity 0.1s ease-out; }
  3485. #content-top #block-materio-flag-materio-flag-mybookmarks h2 i:before, #content-top #block-materio-flag-materio-flag-mylists h2 i:before {
  3486. font-size: 14px; }
  3487. #content-top #block-materio-flag-materio-flag-mybookmarks:hover a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks:hover i.fi-x, #content-top #block-materio-flag-materio-flag-mylists:hover a.open-list, #content-top #block-materio-flag-materio-flag-mylists:hover i.fi-x {
  3488. opacity: 1; }
  3489. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3490. cursor: pointer; }
  3491. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3492. height: 0;
  3493. overflow: hidden; }
  3494. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3495. height: auto; }
  3496. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks article.node.vm-bookmark, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks article.node.vm-bookmark {
  3497. overflow: hidden; }
  3498. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section .flaged {
  3499. height: 0;
  3500. overflow: hidden; }
  3501. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active .flaged {
  3502. height: auto; }
  3503. #tool-bar {
  3504. position: relative; }
  3505. #tool-bar .inner-content {
  3506. padding-top: 10px;
  3507. padding-bottom: 10px; }
  3508. #tool-bar .inner-content > * {
  3509. display: moz-inline-stack;
  3510. display: inline-block;
  3511. vertical-align: top;
  3512. zoom: 1;
  3513. *display: inline;
  3514. vertical-align: middle; }
  3515. .oldie #tool-bar {
  3516. background-color: #B1ADAD;
  3517. padding: 0 10px; }
  3518. #tool-bar .btn-group {
  3519. padding: 0;
  3520. border-radius: 3px;
  3521. background-clip: padding-box;
  3522. background-color: #fff;
  3523. margin: 4px;
  3524. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3525. transition: box-shadow 0.3s ease-out; }
  3526. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3527. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3528. #tool-bar .btn-group:active {
  3529. transition: box-shadow 0s ease-out;
  3530. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3531. #tool-bar #block-materio-page-title-materio-page-title {
  3532. margin: 0 10px 0 0; }
  3533. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3534. margin: 0;
  3535. font-size: 24px;
  3536. text-transform: capitalize;
  3537. font-weight: 300; }
  3538. #tool-bar #block-materio-page-title-materio-page-title i {
  3539. vertical-align: middle;
  3540. margin-right: 5px; }
  3541. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3542. visibility: hidden; }
  3543. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3544. margin-top: -100000px; }
  3545. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3546. opacity: 0;
  3547. transition: visibility 0s 0.3s; }
  3548. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3549. transition: margin-top 0s 0.3s; }
  3550. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3551. margin: 0 0 0 5px; }
  3552. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3553. visibility: visible; }
  3554. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3555. opacity: 1;
  3556. transition: opacity 0.3s ease-out; }
  3557. @media only screen and (max-width: 40em) {
  3558. #tool-bar #block-materio-page-title-materio-page-title {
  3559. display: block; } }
  3560. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3561. display: moz-inline-stack;
  3562. display: inline-block;
  3563. vertical-align: top;
  3564. zoom: 1;
  3565. *display: inline;
  3566. margin: 0 2px; }
  3567. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3568. cursor: normal; }
  3569. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3570. display: none;
  3571. font-size: 10px; }
  3572. @media only screen and (max-width: 40em) {
  3573. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3574. display: block; }
  3575. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3576. display: none; } }
  3577. @media only screen and (max-width: 40em) {
  3578. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium {
  3579. display: block; } }
  3580. @media only screen and (max-width: 40em) {
  3581. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardbig, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardbig {
  3582. display: block; } }
  3583. #tool-bar #block-materio-search-api-materio-search-api-search {
  3584. float: right; }
  3585. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3586. display: moz-inline-stack;
  3587. display: inline-block;
  3588. vertical-align: top;
  3589. zoom: 1;
  3590. *display: inline;
  3591. margin: 0 0 0 10px;
  3592. padding: 3px 10px;
  3593. background-color: #fff;
  3594. border-radius: 3px;
  3595. background-clip: padding-box;
  3596. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3597. transition: box-shadow 0.3s ease-out;
  3598. text-align: right; }
  3599. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3600. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7); }
  3601. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3602. transition: box-shadow 0s ease-out;
  3603. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  3604. #tool-bar #materio-search-api-search-form {
  3605. text-align: right;
  3606. display: moz-inline-stack;
  3607. display: inline-block;
  3608. vertical-align: top;
  3609. zoom: 1;
  3610. *display: inline;
  3611. margin: 0; }
  3612. #tool-bar #materio-search-api-search-form .form-item, #tool-bar #materio-search-api-search-form input, #tool-bar #materio-search-api-search-form .form-checkboxes {
  3613. display: moz-inline-stack;
  3614. display: inline-block;
  3615. vertical-align: top;
  3616. zoom: 1;
  3617. *display: inline;
  3618. margin: 0;
  3619. vertical-align: middle;
  3620. padding: 0; }
  3621. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3622. padding: 3px;
  3623. font-size: 12px; }
  3624. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3625. margin: 0 5px; }
  3626. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3627. font-size: 10px; }
  3628. #tool-bar #materio-search-api-search-form a.back-search-home {
  3629. display: inline-block;
  3630. vertical-align: middle;
  3631. color: #000;
  3632. padding: 0 0.5em 0 0.2em; }
  3633. #tool-bar #materio-search-api-search-form a.back-search-home i:before {
  3634. font-size: 1.3em; }
  3635. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3636. border: 1px solid #ccc;
  3637. border-radius: 15px;
  3638. background-clip: padding-box;
  3639. margin: 3px 0 3px 3px;
  3640. padding: 4px 5px;
  3641. height: 20px;
  3642. font-size: 12px;
  3643. line-height: 1;
  3644. background-position: 100% 7px; }
  3645. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3646. background-position: 100% -15px; }
  3647. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3648. background-color: #1a1a1a; }
  3649. #tool-bar #materio-search-api-search-form input#edit-create {
  3650. padding: 3px; }
  3651. #tool-bar #materio-search-api-search-form.loading {
  3652. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  3653. #tool-bar #materio-search-api-search-form.loading input#edit-create {
  3654. visibility: hidden; }
  3655. @media only screen and (max-width: 40em) {
  3656. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3657. width: 16em; }
  3658. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3659. display: none; } }
  3660. #center {
  3661. border-radius: 10px;
  3662. background-clip: padding-box; }
  3663. .node-type-page:not(.page-node-11187) #center {
  3664. background-color: #fff; }
  3665. .ie8 #center {
  3666. height: 100%;
  3667. margin-top: 20px; }
  3668. #content {
  3669. padding: 1em;
  3670. transition: height 0.3s ease-out; }
  3671. #content.faded {
  3672. opacity: 0.5;
  3673. transition: opacity 0.3s ease-out; }
  3674. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3675. padding: 0 0 30px 0;
  3676. margin: 0 0 20px 0; }
  3677. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3678. background-image: url("../img/ajax-loader.gif");
  3679. background-position: center bottom;
  3680. background-repeat: no-repeat; }
  3681. #content .materiobase-results p.search-performance, #content .materiobase-results p.flaglist-infos, #content .materiobase-results p.actualities-infos, #content .materiobase-actuality p.search-performance, #content .materiobase-actuality p.flaglist-infos, #content .materiobase-actuality p.actualities-infos, #content .materio-flags-list p.search-performance, #content .materio-flags-list p.flaglist-infos, #content .materio-flags-list p.actualities-infos {
  3682. font-size: 12px;
  3683. font-weight: 500;
  3684. margin: 0;
  3685. padding: 10px 0 5px 15px; }
  3686. #content .materiobase-results .search-results, #content .materiobase-results .actuality-items, #content .materiobase-results .flaglist-items, #content .materiobase-actuality .search-results, #content .materiobase-actuality .actuality-items, #content .materiobase-actuality .flaglist-items, #content .materio-flags-list .search-results, #content .materio-flags-list .actuality-items, #content .materio-flags-list .flaglist-items {
  3687. font-size: 0;
  3688. text-align: center; }
  3689. #content .materiobase-results .search-results > *, #content .materiobase-results .actuality-items > *, #content .materiobase-results .flaglist-items > *, #content .materiobase-actuality .search-results > *, #content .materiobase-actuality .actuality-items > *, #content .materiobase-actuality .flaglist-items > *, #content .materio-flags-list .search-results > *, #content .materio-flags-list .actuality-items > *, #content .materio-flags-list .flaglist-items > * {
  3690. font-size: 16px; }
  3691. #content .materiobase-results .search-results > *, #content .materiobase-results .actuality-items > *, #content .materiobase-results .flaglist-items > *, #content .materiobase-actuality .search-results > *, #content .materiobase-actuality .actuality-items > *, #content .materiobase-actuality .flaglist-items > *, #content .materio-flags-list .search-results > *, #content .materio-flags-list .actuality-items > *, #content .materio-flags-list .flaglist-items > * {
  3692. text-align: left; }
  3693. #content ul.pager {
  3694. padding: 1em 0;
  3695. text-align: left; }
  3696. .ie8 #content ul.pager {
  3697. position: absolute;
  3698. left: 37px;
  3699. bottom: 35px; }
  3700. #content ul.pager li {
  3701. margin: 0;
  3702. display: moz-inline-stack;
  3703. display: inline-block;
  3704. vertical-align: top;
  3705. zoom: 1;
  3706. *display: inline;
  3707. vertical-align: middle; }
  3708. #content ul.pager .pager-current, #content ul.pager a {
  3709. color: #000;
  3710. font-size: 12px; }
  3711. #content ul.pager .pager-current {
  3712. font-weight: 900;
  3713. font-size: 14px; }
  3714. .ie8 #content ul.pager .pager-current {
  3715. background: #fff;
  3716. padding: 0.3em 1em 0.3em 1em;
  3717. margin-top: 0.05em;
  3718. border: 1px solid #333333; }
  3719. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3720. font-size: 24px;
  3721. font-weight: 300; }
  3722. /** #content-bottom */
  3723. #content-bottom {
  3724. padding-top: 10px; }
  3725. /*
  3726. _________ ____ ____ _____
  3727. / ____/ | / __ \/ __ \/ ___/
  3728. / / / /| | / /_/ / / / /\__ / /___/ ___ |/ _, _/ /_/ /___/ /
  3729. \____/_/ |_/_/ |_/_____//____/
  3730. */
  3731. /*
  3732. _ _ ___
  3733. ___ ___ ___ _| | ___ ___ ___ ___ ___| |_ ___ ___ ___| _|___ ___ _____ ___ ___ ___ ___
  3734. | _| .'| _| . | |_ -| -_| .'| _| _| | | . | -_| _| _| . | _| | .'| | _| -_|
  3735. |___|__,|_| |___| |___|___|__,|_| |___|_|_| | _|___|_| |_| |___|_| |_|_|_|__,|_|_|___|___|
  3736. |_|
  3737. */
  3738. article.search-performance .inner {
  3739. padding: 1em; }
  3740. article.search-performance p {
  3741. font-size: 14px; }
  3742. article.search-performance a.button {
  3743. display: block;
  3744. margin: 10px auto;
  3745. max-width: 10em;
  3746. font-size: 18px;
  3747. padding: 0.1em 0.6em 0.2em;
  3748. border-radius: 0.3em;
  3749. background-clip: padding-box;
  3750. font-weight: bold;
  3751. border: 2px solid #69CDCF;
  3752. background-color: #69CDCF;
  3753. color: #fff;
  3754. cursor: pointer;
  3755. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3756. transition: text-shadow 0.2s ease-out;
  3757. text-align: center;
  3758. text-decoration: none; }
  3759. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3760. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  3761. article.search-performance a.button:active {
  3762. transition: text-shadow 0s ease-out;
  3763. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  3764. article.search-performance.view-mode-cardsmall {
  3765. width: 327px;
  3766. height: 140px;
  3767. display: moz-inline-stack;
  3768. display: inline-block;
  3769. vertical-align: top;
  3770. zoom: 1;
  3771. *display: inline;
  3772. position: relative;
  3773. margin: 7px;
  3774. border-radius: 5px;
  3775. background-clip: padding-box;
  3776. background-color: #FFF;
  3777. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3778. transition: box-shadow 0.3s ease-out; }
  3779. article.search-performance.view-mode-cardmedium {
  3780. width: 210px;
  3781. height: 295px;
  3782. display: moz-inline-stack;
  3783. display: inline-block;
  3784. vertical-align: top;
  3785. zoom: 1;
  3786. *display: inline;
  3787. position: relative;
  3788. margin: 7px;
  3789. border-radius: 5px;
  3790. background-clip: padding-box;
  3791. background-color: #FFF;
  3792. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3793. transition: box-shadow 0.3s ease-out; }
  3794. article.search-performance.view-mode-cardmedium .inner {
  3795. padding: 4em 1em 0; }
  3796. article.search-performance.view-mode-cardbig {
  3797. width: 425px;
  3798. height: 115px;
  3799. display: moz-inline-stack;
  3800. display: inline-block;
  3801. vertical-align: top;
  3802. zoom: 1;
  3803. *display: inline;
  3804. position: relative;
  3805. margin: 7px;
  3806. border-radius: 5px;
  3807. background-clip: padding-box;
  3808. background-color: #FFF;
  3809. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3810. transition: box-shadow 0.3s ease-out;
  3811. display: block;
  3812. margin: 0 auto; }
  3813. article.search-performance.view-mode-cardfull {
  3814. width: 850px;
  3815. height: 115px;
  3816. display: moz-inline-stack;
  3817. display: inline-block;
  3818. vertical-align: top;
  3819. zoom: 1;
  3820. *display: inline;
  3821. position: relative;
  3822. margin: 7px;
  3823. border-radius: 5px;
  3824. background-clip: padding-box;
  3825. background-color: #FFF;
  3826. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3827. transition: box-shadow 0.3s ease-out;
  3828. display: block;
  3829. margin: 0 auto; }
  3830. article.search-performance.view-mode-cardfull .inner {
  3831. padding: 1em 212px; }
  3832. /*
  3833. _____ _____ _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  3834. | | _ | __ | \ | __ | | | | | | _ | __ | | | __|
  3835. | --| | -| | | | __ -| | | | | -| | | | | -| -|__ |
  3836. |_____|__|__|__|__|____/ |_____|_____|_____|__|__|_|_|_|__|__|__|__|__|__|_____|
  3837. */
  3838. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  3839. width: 50px;
  3840. height: 70px;
  3841. display: moz-inline-stack;
  3842. display: inline-block;
  3843. vertical-align: top;
  3844. zoom: 1;
  3845. *display: inline;
  3846. position: relative;
  3847. margin: 7px;
  3848. border-radius: 5px;
  3849. background-clip: padding-box;
  3850. background-color: #FFF;
  3851. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3852. transition: box-shadow 0.3s ease-out;
  3853. margin: 3px; }
  3854. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  3855. border-radius: 5px;
  3856. background-clip: padding-box;
  3857. overflow: hidden; }
  3858. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  3859. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  3860. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  3861. opacity: 0; }
  3862. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  3863. transition: margin 0.3s ease-out; }
  3864. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  3865. margin-left: -50px;
  3866. margin-right: 50px; }
  3867. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  3868. position: absolute;
  3869. top: 0;
  3870. left: 0;
  3871. z-index: 999; }
  3872. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  3873. transition: width 0.3s ease-out;
  3874. width: 0;
  3875. padding-left: 0;
  3876. padding-right: 0;
  3877. margin-right: 0;
  3878. margin-left: 0;
  3879. overflow: hidden; }
  3880. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  3881. position: absolute;
  3882. top: 0;
  3883. right: 0;
  3884. z-index: 11;
  3885. padding: 5px 0;
  3886. border-radius: 0 5px 0 3px;
  3887. background-clip: padding-box;
  3888. font-size: 10px;
  3889. background-color: rgba(255, 255, 255, 0.9);
  3890. color: #000; }
  3891. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  3892. color: #000; }
  3893. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3894. background-color: rgba(255, 255, 255, 0.9); }
  3895. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  3896. font-weight: 900;
  3897. font-size: 14px; }
  3898. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3899. padding: 0;
  3900. margin: 0; }
  3901. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  3902. position: relative; }
  3903. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  3904. margin: 0 5px; }
  3905. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  3906. cursor: pointer; }
  3907. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  3908. position: absolute;
  3909. right: 0;
  3910. top: 0;
  3911. margin-right: 22px;
  3912. min-width: 80px;
  3913. padding: 0;
  3914. display: block;
  3915. border-radius: 3px;
  3916. background-clip: padding-box;
  3917. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  3918. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  3919. padding: 0;
  3920. margin: 0;
  3921. line-height: 1;
  3922. display: block;
  3923. height: 0;
  3924. overflow: hidden;
  3925. transition: height 0.2s ease-out; }
  3926. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  3927. display: block; }
  3928. article.node-materiau.vm-bookmark nav.nav ul.links a, article.node-breve.vm-bookmark nav.nav ul.links a {
  3929. font-size: 12px; }
  3930. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  3931. width: 160px;
  3932. font-size: 0; }
  3933. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  3934. font-size: 11px; }
  3935. 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 {
  3936. display: moz-inline-stack;
  3937. display: inline-block;
  3938. vertical-align: top;
  3939. zoom: 1;
  3940. *display: inline;
  3941. min-width: 48%;
  3942. max-width: 98%;
  3943. padding-left: 2px; }
  3944. 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 {
  3945. color: #a6a6a6;
  3946. transition: color 0.2s ease-out; }
  3947. 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 {
  3948. color: #000;
  3949. text-decoration: none; }
  3950. 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 {
  3951. display: block;
  3952. width: 100%; }
  3953. 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 > * {
  3954. margin-top: 1px;
  3955. padding-top: 1px;
  3956. border-top: 1px solid #e6e6e6; }
  3957. 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 {
  3958. color: #000; }
  3959. 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 {
  3960. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  3961. 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 {
  3962. visibility: hidden; }
  3963. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  3964. background: #FFF; }
  3965. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  3966. padding: 5px 5px; }
  3967. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  3968. height: 17px; }
  3969. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  3970. position: absolute;
  3971. top: 0;
  3972. left: 0;
  3973. z-index: 11;
  3974. padding: 5px;
  3975. border-radius: 5px 0 3px 0;
  3976. background-clip: padding-box;
  3977. font-size: 10px;
  3978. vertical-align: top;
  3979. background-color: rgba(255, 255, 255, 0.9);
  3980. color: #000; }
  3981. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  3982. padding: 3px 0 0 4px;
  3983. display: moz-inline-stack;
  3984. display: inline-block;
  3985. vertical-align: top;
  3986. zoom: 1;
  3987. *display: inline; }
  3988. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  3989. font-size: 12px;
  3990. padding-top: 4em;
  3991. margin-top: -4.5em;
  3992. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  3993. position: relative; }
  3994. 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 {
  3995. padding: 10px;
  3996. font-size: 12px; }
  3997. 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 {
  3998. display: block;
  3999. margin: 10px 0;
  4000. font-size: 18px;
  4001. padding: 0.1em 0.6em 0.2em;
  4002. border-radius: 0.3em;
  4003. background-clip: padding-box;
  4004. font-weight: bold;
  4005. border: 2px solid #69CDCF;
  4006. background-color: #69CDCF;
  4007. color: #fff;
  4008. cursor: pointer;
  4009. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4010. transition: text-shadow 0.2s ease-out;
  4011. text-align: center;
  4012. text-decoration: none; }
  4013. 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 {
  4014. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4015. 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 {
  4016. transition: text-shadow 0s ease-out;
  4017. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4018. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  4019. display: none; }
  4020. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  4021. position: relative;
  4022. z-index: 1;
  4023. background-color: #fff; }
  4024. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  4025. position: absolute;
  4026. top: 0;
  4027. left: 0; }
  4028. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  4029. position: relative;
  4030. z-index: 1; }
  4031. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4032. display: none; }
  4033. /*
  4034. _____ _____ _____ ____ _____ _____ _____ __ __
  4035. | | _ | __ | \ | __| | _ | | | |
  4036. | --| | -| | | |__ | | | | | |__| |__
  4037. |_____|__|__|__|__|____/ |_____|_|_|_|__|__|_____|_____|
  4038. */
  4039. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4040. width: 100px;
  4041. height: 140px;
  4042. display: moz-inline-stack;
  4043. display: inline-block;
  4044. vertical-align: top;
  4045. zoom: 1;
  4046. *display: inline;
  4047. position: relative;
  4048. margin: 7px;
  4049. border-radius: 5px;
  4050. background-clip: padding-box;
  4051. background-color: #FFF;
  4052. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4053. transition: box-shadow 0.3s ease-out; }
  4054. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4055. border-radius: 5px;
  4056. background-clip: padding-box;
  4057. overflow: hidden; }
  4058. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4059. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4060. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4061. opacity: 0; }
  4062. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4063. transition: margin 0.3s ease-out; }
  4064. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4065. margin-left: -100px;
  4066. margin-right: 100px; }
  4067. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4068. position: absolute;
  4069. top: 0;
  4070. left: 0;
  4071. z-index: 999; }
  4072. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4073. transition: width 0.3s ease-out;
  4074. width: 0;
  4075. padding-left: 0;
  4076. padding-right: 0;
  4077. margin-right: 0;
  4078. margin-left: 0;
  4079. overflow: hidden; }
  4080. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4081. position: absolute;
  4082. top: 0;
  4083. right: 0;
  4084. z-index: 11;
  4085. padding: 5px 0;
  4086. border-radius: 0 5px 0 3px;
  4087. background-clip: padding-box;
  4088. font-size: 10px;
  4089. background-color: rgba(255, 255, 255, 0.9);
  4090. color: #000; }
  4091. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4092. color: #000; }
  4093. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4094. background-color: rgba(255, 255, 255, 0.9); }
  4095. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4096. font-weight: 900;
  4097. font-size: 14px; }
  4098. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4099. padding: 0;
  4100. margin: 0; }
  4101. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4102. position: relative; }
  4103. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4104. margin: 0 5px; }
  4105. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4106. cursor: pointer; }
  4107. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4108. position: absolute;
  4109. right: 0;
  4110. top: 0;
  4111. margin-right: 22px;
  4112. min-width: 80px;
  4113. padding: 0;
  4114. display: block;
  4115. border-radius: 3px;
  4116. background-clip: padding-box;
  4117. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4118. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4119. padding: 0;
  4120. margin: 0;
  4121. line-height: 1;
  4122. display: block;
  4123. height: 0;
  4124. overflow: hidden;
  4125. transition: height 0.2s ease-out; }
  4126. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4127. display: block; }
  4128. article.node-materiau.vm-cardsmall nav.nav ul.links a, article.node-breve.vm-cardsmall nav.nav ul.links a {
  4129. font-size: 12px; }
  4130. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4131. width: 160px;
  4132. font-size: 0; }
  4133. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4134. font-size: 11px; }
  4135. 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 {
  4136. display: moz-inline-stack;
  4137. display: inline-block;
  4138. vertical-align: top;
  4139. zoom: 1;
  4140. *display: inline;
  4141. min-width: 48%;
  4142. max-width: 98%;
  4143. padding-left: 2px; }
  4144. 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 {
  4145. color: #a6a6a6;
  4146. transition: color 0.2s ease-out; }
  4147. 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 {
  4148. color: #000;
  4149. text-decoration: none; }
  4150. 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 {
  4151. display: block;
  4152. width: 100%; }
  4153. 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 > * {
  4154. margin-top: 1px;
  4155. padding-top: 1px;
  4156. border-top: 1px solid #e6e6e6; }
  4157. 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 {
  4158. color: #000; }
  4159. 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 {
  4160. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4161. 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 {
  4162. visibility: hidden; }
  4163. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4164. background: #FFF; }
  4165. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4166. padding: 5px 5px; }
  4167. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4168. height: 17px; }
  4169. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4170. position: absolute;
  4171. top: 0;
  4172. left: 0;
  4173. z-index: 11;
  4174. padding: 5px;
  4175. border-radius: 5px 0 3px 0;
  4176. background-clip: padding-box;
  4177. font-size: 10px;
  4178. vertical-align: top;
  4179. background-color: rgba(255, 255, 255, 0.9);
  4180. color: #000; }
  4181. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4182. padding: 3px 0 0 4px;
  4183. display: moz-inline-stack;
  4184. display: inline-block;
  4185. vertical-align: top;
  4186. zoom: 1;
  4187. *display: inline; }
  4188. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4189. font-size: 12px;
  4190. padding-top: 4em;
  4191. margin-top: -4.5em;
  4192. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4193. position: relative; }
  4194. 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 {
  4195. padding: 10px;
  4196. font-size: 12px; }
  4197. 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 {
  4198. display: block;
  4199. margin: 10px 0;
  4200. font-size: 18px;
  4201. padding: 0.1em 0.6em 0.2em;
  4202. border-radius: 0.3em;
  4203. background-clip: padding-box;
  4204. font-weight: bold;
  4205. border: 2px solid #69CDCF;
  4206. background-color: #69CDCF;
  4207. color: #fff;
  4208. cursor: pointer;
  4209. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4210. transition: text-shadow 0.2s ease-out;
  4211. text-align: center;
  4212. text-decoration: none; }
  4213. 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 {
  4214. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4215. 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 {
  4216. transition: text-shadow 0s ease-out;
  4217. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4218. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4219. display: none;
  4220. position: absolute;
  4221. font-size: 14px;
  4222. font-weight: 500; }
  4223. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4224. font-weight: 700; }
  4225. 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 {
  4226. display: moz-inline-stack;
  4227. display: inline-block;
  4228. vertical-align: top;
  4229. zoom: 1;
  4230. *display: inline;
  4231. font-size: 12px; }
  4232. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4233. float: right; }
  4234. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4235. position: relative;
  4236. z-index: 1;
  4237. background-color: #fff;
  4238. border-radius: 5px;
  4239. background-clip: padding-box;
  4240. overflow: hidden; }
  4241. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4242. position: absolute;
  4243. top: 0;
  4244. left: 0; }
  4245. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4246. position: relative;
  4247. z-index: 1; }
  4248. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4249. width: 75px;
  4250. min-width: 75px; }
  4251. 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 {
  4252. width: 98%; }
  4253. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4254. background: #FFF; }
  4255. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4256. visibility: hidden; }
  4257. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4258. margin-top: -100000px; }
  4259. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4260. opacity: 0;
  4261. transition: visibility 0s 0.3s; }
  4262. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4263. transition: margin-top 0s 0.3s; }
  4264. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4265. visibility: hidden; }
  4266. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4267. margin-top: -100000px; }
  4268. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4269. opacity: 0;
  4270. transition: visibility 0s 0.3s; }
  4271. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4272. transition: margin-top 0s 0.3s; }
  4273. /*
  4274. _____ _____ _____ __ _____ _____ _____ _____ _____ _____ __ __ _____ _____ _____ ____
  4275. |_ _| | | ||_ _| | _ | | __| | _ | | | | | | _ | __ | | | | | | | | |__| | |- -| __| |__ | | | | | |__| |__ | --| | -| | |
  4276. |_| |_____|_____|_____|_| |_____|__| |_____|_|_|_|__|__|_____|_____| |_____|__|__|__|__|____/
  4277. */
  4278. #tooltip .group-header.smallcard {
  4279. font-size: 14px;
  4280. font-weight: 500; }
  4281. #tooltip .group-header.smallcard .field-name-title-field {
  4282. font-weight: 700; }
  4283. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4284. display: moz-inline-stack;
  4285. display: inline-block;
  4286. vertical-align: top;
  4287. zoom: 1;
  4288. *display: inline;
  4289. font-size: 12px; }
  4290. #tooltip .group-header.smallcard .field-name-field-localisation {
  4291. float: right; }
  4292. /*
  4293. _____ _____ _____ ____ _____ _____ ____ _____ _____ _____
  4294. | | _ | __ | \ | | __| \| | | | |
  4295. | --| | -| | | | | | | __| | |- -| | | | | |
  4296. |_____|__|__|__|__|____/ |_|_|_|_____|____/|_____|_____|_|_|_|
  4297. */
  4298. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4299. width: 210px;
  4300. height: 295px;
  4301. display: moz-inline-stack;
  4302. display: inline-block;
  4303. vertical-align: top;
  4304. zoom: 1;
  4305. *display: inline;
  4306. position: relative;
  4307. margin: 7px;
  4308. border-radius: 5px;
  4309. background-clip: padding-box;
  4310. background-color: #FFF;
  4311. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4312. transition: box-shadow 0.3s ease-out; }
  4313. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4314. border-radius: 5px;
  4315. background-clip: padding-box;
  4316. overflow: hidden; }
  4317. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4318. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4319. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4320. opacity: 0; }
  4321. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4322. transition: margin 0.3s ease-out; }
  4323. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4324. margin-left: -210px;
  4325. margin-right: 210px; }
  4326. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4327. position: absolute;
  4328. top: 0;
  4329. left: 0;
  4330. z-index: 999; }
  4331. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4332. transition: width 0.3s ease-out;
  4333. width: 0;
  4334. padding-left: 0;
  4335. padding-right: 0;
  4336. margin-right: 0;
  4337. margin-left: 0;
  4338. overflow: hidden; }
  4339. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4340. position: absolute;
  4341. top: 0;
  4342. right: 0;
  4343. z-index: 11;
  4344. padding: 5px 0;
  4345. border-radius: 0 5px 0 3px;
  4346. background-clip: padding-box;
  4347. font-size: 10px;
  4348. background-color: rgba(255, 255, 255, 0.9);
  4349. color: #000; }
  4350. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4351. color: #000; }
  4352. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4353. background-color: rgba(255, 255, 255, 0.9); }
  4354. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4355. font-weight: 900;
  4356. font-size: 14px; }
  4357. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4358. padding: 0;
  4359. margin: 0; }
  4360. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4361. position: relative; }
  4362. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4363. margin: 0 5px; }
  4364. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4365. cursor: pointer; }
  4366. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4367. position: absolute;
  4368. right: 0;
  4369. top: 0;
  4370. margin-right: 22px;
  4371. min-width: 80px;
  4372. padding: 0;
  4373. display: block;
  4374. border-radius: 3px;
  4375. background-clip: padding-box;
  4376. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4377. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4378. padding: 0;
  4379. margin: 0;
  4380. line-height: 1;
  4381. display: block;
  4382. height: 0;
  4383. overflow: hidden;
  4384. transition: height 0.2s ease-out; }
  4385. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4386. display: block; }
  4387. article.node-materiau.vm-cardmedium nav.nav ul.links a, article.node-breve.vm-cardmedium nav.nav ul.links a {
  4388. font-size: 12px; }
  4389. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4390. width: 160px;
  4391. font-size: 0; }
  4392. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4393. font-size: 11px; }
  4394. 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 {
  4395. display: moz-inline-stack;
  4396. display: inline-block;
  4397. vertical-align: top;
  4398. zoom: 1;
  4399. *display: inline;
  4400. min-width: 48%;
  4401. max-width: 98%;
  4402. padding-left: 2px; }
  4403. 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 {
  4404. color: #a6a6a6;
  4405. transition: color 0.2s ease-out; }
  4406. 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 {
  4407. color: #000;
  4408. text-decoration: none; }
  4409. 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 {
  4410. display: block;
  4411. width: 100%; }
  4412. 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 > * {
  4413. margin-top: 1px;
  4414. padding-top: 1px;
  4415. border-top: 1px solid #e6e6e6; }
  4416. 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 {
  4417. color: #000; }
  4418. 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 {
  4419. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4420. 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 {
  4421. visibility: hidden; }
  4422. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4423. background: #FFF; }
  4424. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4425. padding: 5px 5px; }
  4426. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4427. height: 17px; }
  4428. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4429. position: absolute;
  4430. top: 0;
  4431. left: 0;
  4432. z-index: 11;
  4433. padding: 5px;
  4434. border-radius: 5px 0 3px 0;
  4435. background-clip: padding-box;
  4436. font-size: 10px;
  4437. vertical-align: top;
  4438. background-color: rgba(255, 255, 255, 0.9);
  4439. color: #000; }
  4440. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4441. padding: 3px 0 0 4px;
  4442. display: moz-inline-stack;
  4443. display: inline-block;
  4444. vertical-align: top;
  4445. zoom: 1;
  4446. *display: inline; }
  4447. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4448. font-size: 12px;
  4449. padding-top: 4em;
  4450. margin-top: -4.5em;
  4451. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4452. position: relative; }
  4453. 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 {
  4454. padding: 10px;
  4455. font-size: 12px; }
  4456. 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 {
  4457. display: block;
  4458. margin: 10px 0;
  4459. font-size: 18px;
  4460. padding: 0.1em 0.6em 0.2em;
  4461. border-radius: 0.3em;
  4462. background-clip: padding-box;
  4463. font-weight: bold;
  4464. border: 2px solid #69CDCF;
  4465. background-color: #69CDCF;
  4466. color: #fff;
  4467. cursor: pointer;
  4468. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4469. transition: text-shadow 0.2s ease-out;
  4470. text-align: center;
  4471. text-decoration: none; }
  4472. 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 {
  4473. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4474. 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 {
  4475. transition: text-shadow 0s ease-out;
  4476. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4477. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  4478. position: absolute;
  4479. width: 100%;
  4480. height: 100%;
  4481. top: 0;
  4482. left: 0;
  4483. background-color: #fff;
  4484. cursor: pointer; }
  4485. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  4486. z-index: 1; }
  4487. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  4488. position: absolute;
  4489. bottom: 0;
  4490. z-index: 2;
  4491. width: 190px;
  4492. padding: 5px 15px 5px 5px;
  4493. min-height: 55px;
  4494. font-size: 20px;
  4495. font-weight: 300;
  4496. line-height: 1;
  4497. background-color: rgba(255, 255, 255, 0.8);
  4498. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4499. transition: background-color 0.2s ease-out;
  4500. border-radius: 0 0 4px 4px;
  4501. background-clip: padding-box;
  4502. overflow: hidden; }
  4503. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  4504. font-weight: 700; }
  4505. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  4506. font-size: 14px; }
  4507. 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 {
  4508. display: moz-inline-stack;
  4509. display: inline-block;
  4510. vertical-align: top;
  4511. zoom: 1;
  4512. *display: inline;
  4513. font-size: 12px;
  4514. vertical-align: bottom;
  4515. width: 48%; }
  4516. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  4517. text-align: right; }
  4518. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  4519. background: #fff;
  4520. font-color: #000;
  4521. line-height: 1em;
  4522. padding: 10px; }
  4523. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  4524. color: #fff;
  4525. background-color: rgba(0, 0, 0, 0.7);
  4526. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4527. transition: background-color 0.2s ease-out; }
  4528. 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 {
  4529. font-size: 12px;
  4530. font-weight: 500; }
  4531. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  4532. background: #000;
  4533. font-size: 15px;
  4534. line-height: 1.2em; }
  4535. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  4536. position: relative;
  4537. z-index: 1;
  4538. background-color: #fff; }
  4539. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  4540. position: absolute;
  4541. top: 0;
  4542. left: 0; }
  4543. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  4544. position: relative;
  4545. z-index: 1; }
  4546. 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 {
  4547. font-size: 12px;
  4548. font-weight: 300;
  4549. overflow: hidden;
  4550. z-index: -1;
  4551. padding: 5px; }
  4552. 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 {
  4553. padding: 0;
  4554. transition: margin-left 0.3s ease-out; }
  4555. 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 > * {
  4556. padding: 5px; }
  4557. 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 {
  4558. display: inline-block;
  4559. border-radius: 3px;
  4560. background-clip: padding-box;
  4561. color: #fff;
  4562. background-color: #3e3e3e;
  4563. vertical-align: middle;
  4564. font-weight: 700;
  4565. font-size: 22px;
  4566. padding: 0.05em 0.15em 0.2em 0.2em;
  4567. line-height: 0.5;
  4568. font-weight: normal; }
  4569. 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 {
  4570. cursor: w-resize; }
  4571. 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 {
  4572. cursor: e-resize; }
  4573. 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 > * {
  4574. padding-right: 25px; }
  4575. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  4576. padding: 5px; }
  4577. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  4578. padding: 0;
  4579. transition: margin-left 0.3s ease-out; }
  4580. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  4581. padding: 5px; }
  4582. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  4583. display: inline-block;
  4584. border-radius: 3px;
  4585. background-clip: padding-box;
  4586. color: #fff;
  4587. background-color: #3e3e3e;
  4588. vertical-align: middle;
  4589. font-weight: 700;
  4590. font-size: 22px;
  4591. padding: 0.05em 0.15em 0.2em 0.2em;
  4592. line-height: 0.5;
  4593. font-weight: normal; }
  4594. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  4595. cursor: w-resize; }
  4596. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  4597. cursor: e-resize; }
  4598. 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 {
  4599. font-size: 12px;
  4600. padding: 5px;
  4601. font-weight: 300; }
  4602. 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 {
  4603. font-size: 10px;
  4604. text-transform: lowercase;
  4605. margin: 0; }
  4606. 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 {
  4607. font-size: 14px; }
  4608. 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 {
  4609. font-size: 12px;
  4610. padding: 5px;
  4611. font-weight: 300; }
  4612. 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 {
  4613. color: #000; }
  4614. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  4615. font-weight: 900;
  4616. margin: 1em 0 0.5em; }
  4617. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4618. visibility: hidden; }
  4619. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4620. margin-top: -100000px; }
  4621. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  4622. opacity: 0;
  4623. transition: visibility 0s 0.3s; }
  4624. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  4625. transition: margin-top 0s 0.3s; }
  4626. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4627. visibility: hidden; }
  4628. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4629. margin-top: -100000px; }
  4630. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  4631. opacity: 0;
  4632. transition: visibility 0s 0.3s; }
  4633. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  4634. transition: margin-top 0s 0.3s; }
  4635. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  4636. background: #FFF; }
  4637. /*
  4638. _____ _____ _____ ____ _____ _____ _____
  4639. | | _ | __ | \ | __ | | __|
  4640. | --| | -| | | | __ -|- -| | |
  4641. |_____|__|__|__|__|____/ |_____|_____|_____|
  4642. */
  4643. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  4644. width: 425px;
  4645. height: 610px;
  4646. display: moz-inline-stack;
  4647. display: inline-block;
  4648. vertical-align: top;
  4649. zoom: 1;
  4650. *display: inline;
  4651. position: relative;
  4652. margin: 7px;
  4653. border-radius: 5px;
  4654. background-clip: padding-box;
  4655. background-color: #FFF;
  4656. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4657. transition: box-shadow 0.3s ease-out; }
  4658. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  4659. border-radius: 5px;
  4660. background-clip: padding-box;
  4661. overflow: hidden; }
  4662. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  4663. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  4664. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  4665. opacity: 0; }
  4666. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  4667. transition: margin 0.3s ease-out; }
  4668. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  4669. margin-left: -425px;
  4670. margin-right: 425px; }
  4671. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  4672. position: absolute;
  4673. top: 0;
  4674. left: 0;
  4675. z-index: 999; }
  4676. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  4677. transition: width 0.3s ease-out;
  4678. width: 0;
  4679. padding-left: 0;
  4680. padding-right: 0;
  4681. margin-right: 0;
  4682. margin-left: 0;
  4683. overflow: hidden; }
  4684. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  4685. position: absolute;
  4686. top: 0;
  4687. right: 0;
  4688. z-index: 11;
  4689. padding: 5px 0;
  4690. border-radius: 0 5px 0 3px;
  4691. background-clip: padding-box;
  4692. font-size: 10px;
  4693. background-color: rgba(255, 255, 255, 0.9);
  4694. color: #000; }
  4695. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  4696. color: #000; }
  4697. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4698. background-color: rgba(255, 255, 255, 0.9); }
  4699. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  4700. font-weight: 900;
  4701. font-size: 14px; }
  4702. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4703. padding: 0;
  4704. margin: 0; }
  4705. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  4706. position: relative; }
  4707. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  4708. margin: 0 5px; }
  4709. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  4710. cursor: pointer; }
  4711. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  4712. position: absolute;
  4713. right: 0;
  4714. top: 0;
  4715. margin-right: 22px;
  4716. min-width: 80px;
  4717. padding: 0;
  4718. display: block;
  4719. border-radius: 3px;
  4720. background-clip: padding-box;
  4721. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  4722. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  4723. padding: 0;
  4724. margin: 0;
  4725. line-height: 1;
  4726. display: block;
  4727. height: 0;
  4728. overflow: hidden;
  4729. transition: height 0.2s ease-out; }
  4730. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  4731. display: block; }
  4732. article.node-materiau.vm-cardbig nav.nav ul.links a, article.node-breve.vm-cardbig nav.nav ul.links a {
  4733. font-size: 12px; }
  4734. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  4735. width: 160px;
  4736. font-size: 0; }
  4737. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  4738. font-size: 11px; }
  4739. 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 {
  4740. display: moz-inline-stack;
  4741. display: inline-block;
  4742. vertical-align: top;
  4743. zoom: 1;
  4744. *display: inline;
  4745. min-width: 48%;
  4746. max-width: 98%;
  4747. padding-left: 2px; }
  4748. 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 {
  4749. color: #a6a6a6;
  4750. transition: color 0.2s ease-out; }
  4751. 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 {
  4752. color: #000;
  4753. text-decoration: none; }
  4754. 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 {
  4755. display: block;
  4756. width: 100%; }
  4757. 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 > * {
  4758. margin-top: 1px;
  4759. padding-top: 1px;
  4760. border-top: 1px solid #e6e6e6; }
  4761. 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 {
  4762. color: #000; }
  4763. 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 {
  4764. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  4765. 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 {
  4766. visibility: hidden; }
  4767. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  4768. background: #FFF; }
  4769. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  4770. padding: 5px 5px; }
  4771. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  4772. height: 17px; }
  4773. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  4774. position: absolute;
  4775. top: 0;
  4776. left: 0;
  4777. z-index: 11;
  4778. padding: 5px;
  4779. border-radius: 5px 0 3px 0;
  4780. background-clip: padding-box;
  4781. font-size: 10px;
  4782. vertical-align: top;
  4783. background-color: rgba(255, 255, 255, 0.9);
  4784. color: #000; }
  4785. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  4786. padding: 3px 0 0 4px;
  4787. display: moz-inline-stack;
  4788. display: inline-block;
  4789. vertical-align: top;
  4790. zoom: 1;
  4791. *display: inline; }
  4792. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  4793. font-size: 12px;
  4794. padding-top: 4em;
  4795. margin-top: -4.5em;
  4796. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4797. position: relative; }
  4798. 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 {
  4799. padding: 10px;
  4800. font-size: 12px; }
  4801. 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 {
  4802. display: block;
  4803. margin: 10px 0;
  4804. font-size: 18px;
  4805. padding: 0.1em 0.6em 0.2em;
  4806. border-radius: 0.3em;
  4807. background-clip: padding-box;
  4808. font-weight: bold;
  4809. border: 2px solid #69CDCF;
  4810. background-color: #69CDCF;
  4811. color: #fff;
  4812. cursor: pointer;
  4813. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4814. transition: text-shadow 0.2s ease-out;
  4815. text-align: center;
  4816. text-decoration: none; }
  4817. 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 {
  4818. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  4819. 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 {
  4820. transition: text-shadow 0s ease-out;
  4821. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  4822. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  4823. position: absolute;
  4824. width: 100%;
  4825. height: 100%;
  4826. top: 0;
  4827. left: 0;
  4828. background-color: #fff;
  4829. height: 270px;
  4830. top: 340px;
  4831. cursor: pointer; }
  4832. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  4833. z-index: 1; }
  4834. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  4835. position: relative;
  4836. border-radius: 5px 5px 0 0;
  4837. background-clip: padding-box;
  4838. overflow: hidden; }
  4839. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  4840. position: absolute;
  4841. bottom: 0;
  4842. z-index: 2;
  4843. width: 405px;
  4844. padding: 10px;
  4845. font-size: 20px;
  4846. font-weight: 300;
  4847. line-height: 1.1;
  4848. background-color: rgba(255, 255, 255, 0.8);
  4849. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  4850. transition: background-color 0.2s ease-out; }
  4851. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  4852. font-weight: 700; }
  4853. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  4854. font-size: 14px; }
  4855. 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 {
  4856. display: moz-inline-stack;
  4857. display: inline-block;
  4858. vertical-align: top;
  4859. zoom: 1;
  4860. *display: inline;
  4861. font-size: 12px;
  4862. vertical-align: bottom;
  4863. width: 48%; }
  4864. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  4865. text-align: right; }
  4866. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  4867. background: #fff;
  4868. font-color: #000;
  4869. line-height: 1em;
  4870. padding: 20px;
  4871. border-bottom: 1px solid #C6C6C6; }
  4872. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  4873. color: #fff;
  4874. background-color: rgba(0, 0, 0, 0.7);
  4875. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  4876. transition: background-color 0.2s ease-out; }
  4877. 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 {
  4878. font-size: 12px;
  4879. font-weight: 500; }
  4880. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  4881. background: #000;
  4882. font-color: #fff;
  4883. line-height: 1em;
  4884. padding: 20px; }
  4885. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  4886. position: relative;
  4887. z-index: 1;
  4888. background-color: #fff;
  4889. height: auto; }
  4890. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  4891. position: absolute;
  4892. top: 0;
  4893. left: 0; }
  4894. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  4895. position: relative;
  4896. z-index: 1; }
  4897. 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 {
  4898. font-size: 12px;
  4899. font-weight: 300;
  4900. padding: 10px; }
  4901. 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 {
  4902. padding: 0;
  4903. transition: margin-left 0.3s ease-out; }
  4904. 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 > * {
  4905. padding: 10px; }
  4906. 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 {
  4907. display: inline-block;
  4908. border-radius: 3px;
  4909. background-clip: padding-box;
  4910. color: #fff;
  4911. background-color: #3e3e3e;
  4912. vertical-align: middle;
  4913. font-weight: 700;
  4914. font-size: 22px;
  4915. padding: 0.05em 0.15em 0.2em 0.2em;
  4916. line-height: 0.5;
  4917. font-weight: normal; }
  4918. 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 {
  4919. cursor: w-resize; }
  4920. 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 {
  4921. cursor: e-resize; }
  4922. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  4923. padding: 10px; }
  4924. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  4925. padding: 0;
  4926. transition: margin-left 0.3s ease-out; }
  4927. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  4928. padding: 10px; }
  4929. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  4930. display: inline-block;
  4931. border-radius: 3px;
  4932. background-clip: padding-box;
  4933. color: #fff;
  4934. background-color: #3e3e3e;
  4935. vertical-align: middle;
  4936. font-weight: 700;
  4937. font-size: 22px;
  4938. padding: 0.05em 0.15em 0.2em 0.2em;
  4939. line-height: 0.5;
  4940. font-weight: normal; }
  4941. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  4942. cursor: w-resize; }
  4943. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  4944. cursor: e-resize; }
  4945. 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 {
  4946. font-size: 12px;
  4947. padding: 10px;
  4948. font-weight: 300; }
  4949. 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 {
  4950. font-size: 10px;
  4951. text-transform: lowercase;
  4952. float: none; }
  4953. 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 {
  4954. font-size: 14px; }
  4955. 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 {
  4956. font-size: 12px;
  4957. padding: 10px;
  4958. font-weight: 300; }
  4959. 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 {
  4960. color: #000; }
  4961. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  4962. font-weight: 900;
  4963. margin: 0 0 0.5em; }
  4964. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  4965. background: #FFF; }
  4966. 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 {
  4967. padding: 3em; }
  4968. 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 {
  4969. border: 2px solid #eee;
  4970. background-color: #eee;
  4971. color: #fff;
  4972. transition: border 0.3s ease-out;
  4973. transition: background-color 0.3s ease-out; }
  4974. 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 {
  4975. border: 2px solid #69CDCF;
  4976. background-color: #69CDCF; }
  4977. /*
  4978. _____ _____ _____ ____ _____ _____ __ __
  4979. | | _ | __ | \ | __| | | | | |
  4980. | --| | -| | | | __| | | |__| |__
  4981. |_____|__|__|__|__|____/ |__| |_____|_____|_____|
  4982. */
  4983. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  4984. width: 850px;
  4985. height: 610px;
  4986. display: moz-inline-stack;
  4987. display: inline-block;
  4988. vertical-align: top;
  4989. zoom: 1;
  4990. *display: inline;
  4991. position: relative;
  4992. margin: 7px;
  4993. border-radius: 5px;
  4994. background-clip: padding-box;
  4995. background-color: #FFF;
  4996. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4997. transition: box-shadow 0.3s ease-out;
  4998. font-size: 0px; }
  4999. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  5000. border-radius: 5px;
  5001. background-clip: padding-box;
  5002. overflow: hidden; }
  5003. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  5004. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5005. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  5006. opacity: 0; }
  5007. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  5008. transition: margin 0.3s ease-out; }
  5009. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  5010. margin-left: -850px;
  5011. margin-right: 850px; }
  5012. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  5013. position: absolute;
  5014. top: 0;
  5015. left: 0;
  5016. z-index: 999; }
  5017. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  5018. transition: width 0.3s ease-out;
  5019. width: 0;
  5020. padding-left: 0;
  5021. padding-right: 0;
  5022. margin-right: 0;
  5023. margin-left: 0;
  5024. overflow: hidden; }
  5025. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5026. position: absolute;
  5027. top: 0;
  5028. right: 0;
  5029. z-index: 11;
  5030. padding: 5px 0;
  5031. border-radius: 0 5px 0 3px;
  5032. background-clip: padding-box;
  5033. font-size: 10px;
  5034. background-color: rgba(255, 255, 255, 0.9);
  5035. color: #000; }
  5036. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5037. color: #000; }
  5038. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5039. background-color: rgba(255, 255, 255, 0.9); }
  5040. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5041. font-weight: 900;
  5042. font-size: 14px; }
  5043. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5044. padding: 0;
  5045. margin: 0; }
  5046. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5047. position: relative; }
  5048. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5049. margin: 0 5px; }
  5050. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5051. cursor: pointer; }
  5052. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5053. position: absolute;
  5054. right: 0;
  5055. top: 0;
  5056. margin-right: 22px;
  5057. min-width: 80px;
  5058. padding: 0;
  5059. display: block;
  5060. border-radius: 3px;
  5061. background-clip: padding-box;
  5062. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5063. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5064. padding: 0;
  5065. margin: 0;
  5066. line-height: 1;
  5067. display: block;
  5068. height: 0;
  5069. overflow: hidden;
  5070. transition: height 0.2s ease-out; }
  5071. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5072. display: block; }
  5073. article.node-materiau.vm-cardfull nav.nav ul.links a, article.node-breve.vm-cardfull nav.nav ul.links a {
  5074. font-size: 12px; }
  5075. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5076. width: 160px;
  5077. font-size: 0; }
  5078. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5079. font-size: 11px; }
  5080. 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 {
  5081. display: moz-inline-stack;
  5082. display: inline-block;
  5083. vertical-align: top;
  5084. zoom: 1;
  5085. *display: inline;
  5086. min-width: 48%;
  5087. max-width: 98%;
  5088. padding-left: 2px; }
  5089. 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 {
  5090. color: #a6a6a6;
  5091. transition: color 0.2s ease-out; }
  5092. 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 {
  5093. color: #000;
  5094. text-decoration: none; }
  5095. 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 {
  5096. display: block;
  5097. width: 100%; }
  5098. 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 > * {
  5099. margin-top: 1px;
  5100. padding-top: 1px;
  5101. border-top: 1px solid #e6e6e6; }
  5102. 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 {
  5103. color: #000; }
  5104. 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 {
  5105. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5106. 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 {
  5107. visibility: hidden; }
  5108. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5109. background: #FFF; }
  5110. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5111. padding: 5px 5px; }
  5112. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5113. height: 17px; }
  5114. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5115. position: absolute;
  5116. top: 0;
  5117. left: 0;
  5118. z-index: 11;
  5119. padding: 5px;
  5120. border-radius: 5px 0 3px 0;
  5121. background-clip: padding-box;
  5122. font-size: 10px;
  5123. vertical-align: top;
  5124. background-color: rgba(255, 255, 255, 0.9);
  5125. color: #000; }
  5126. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5127. padding: 3px 0 0 4px;
  5128. display: moz-inline-stack;
  5129. display: inline-block;
  5130. vertical-align: top;
  5131. zoom: 1;
  5132. *display: inline; }
  5133. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5134. font-size: 12px;
  5135. padding-top: 4em;
  5136. margin-top: -4.5em;
  5137. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5138. position: relative; }
  5139. 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 {
  5140. padding: 10px;
  5141. font-size: 12px; }
  5142. 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 {
  5143. display: block;
  5144. margin: 10px 0;
  5145. font-size: 18px;
  5146. padding: 0.1em 0.6em 0.2em;
  5147. border-radius: 0.3em;
  5148. background-clip: padding-box;
  5149. font-weight: bold;
  5150. border: 2px solid #69CDCF;
  5151. background-color: #69CDCF;
  5152. color: #fff;
  5153. cursor: pointer;
  5154. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5155. transition: text-shadow 0.2s ease-out;
  5156. text-align: center;
  5157. text-decoration: none; }
  5158. 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 {
  5159. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5160. 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 {
  5161. transition: text-shadow 0s ease-out;
  5162. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  5163. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5164. top: 0; }
  5165. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  5166. font-size: 16px; }
  5167. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  5168. display: moz-inline-stack;
  5169. display: inline-block;
  5170. vertical-align: top;
  5171. zoom: 1;
  5172. *display: inline;
  5173. width: 50%; }
  5174. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  5175. border-radius: 5px 0 0 5px;
  5176. background-clip: padding-box; }
  5177. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  5178. border-radius: 0 5px 5px 0;
  5179. background-clip: padding-box; }
  5180. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  5181. position: relative;
  5182. z-index: 1;
  5183. background-color: #fff; }
  5184. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  5185. position: absolute;
  5186. top: 0;
  5187. left: 0; }
  5188. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  5189. position: relative;
  5190. z-index: 1; }
  5191. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  5192. font-size: 20px;
  5193. font-weight: 300;
  5194. padding: 10px; }
  5195. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  5196. font-weight: 700; }
  5197. 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 {
  5198. display: moz-inline-stack;
  5199. display: inline-block;
  5200. vertical-align: top;
  5201. zoom: 1;
  5202. *display: inline;
  5203. font-size: 12px;
  5204. padding-right: 15px; }
  5205. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  5206. color: #fff;
  5207. background-color: rgba(0, 0, 0, 0.7);
  5208. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5209. transition: background-color 0.2s ease-out; }
  5210. 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 {
  5211. font-weight: 500; }
  5212. 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 {
  5213. font-size: 12px;
  5214. font-weight: 300;
  5215. padding: 10px; }
  5216. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  5217. padding: 10px;
  5218. font-size: 12px; }
  5219. 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 {
  5220. font-size: 12px;
  5221. padding: 10px;
  5222. font-weight: 300;
  5223. display: moz-inline-stack;
  5224. display: inline-block;
  5225. vertical-align: top;
  5226. zoom: 1;
  5227. *display: inline;
  5228. width: 40%; }
  5229. 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 {
  5230. margin-top: 1em; }
  5231. 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 {
  5232. font-size: 10px;
  5233. text-transform: lowercase;
  5234. float: none; }
  5235. 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 {
  5236. font-size: 14px; }
  5237. 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 {
  5238. font-size: 12px;
  5239. padding: 10px;
  5240. font-weight: 300; }
  5241. 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 {
  5242. color: #000; }
  5243. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  5244. font-weight: 900;
  5245. margin: 0 0 0.5em; }
  5246. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5247. margin: 5px; }
  5248. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5249. margin: 5px; }
  5250. 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 {
  5251. padding: 3em; }
  5252. 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 {
  5253. border: 2px solid #eee;
  5254. background-color: #eee;
  5255. color: #fff;
  5256. transition: border 0.3s ease-out;
  5257. transition: background-color 0.3s ease-out; }
  5258. 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 {
  5259. border: 2px solid #69CDCF;
  5260. background-color: #69CDCF; }
  5261. /*
  5262. _ _ _
  5263. ___ ___ ___ _| | ___ ___|_|___| |_
  5264. | _| .'| _| . | | . | _| | | _|
  5265. |___|__,|_| |___| | _|_| |_|_|_|_|
  5266. |_|
  5267. */
  5268. .print-node-materiau {
  5269. margin: 0 auto; }
  5270. @media screen {
  5271. .print-node-materiau {
  5272. width: 850px;
  5273. height: auto;
  5274. display: moz-inline-stack;
  5275. display: inline-block;
  5276. vertical-align: top;
  5277. zoom: 1;
  5278. *display: inline;
  5279. position: relative;
  5280. margin: 7px;
  5281. border-radius: 5px;
  5282. background-clip: padding-box;
  5283. background-color: #FFF;
  5284. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5285. transition: box-shadow 0.3s ease-out;
  5286. width: 1024px;
  5287. padding: 1em; }
  5288. .print-node-materiau > div.side {
  5289. border-radius: 5px;
  5290. background-clip: padding-box;
  5291. overflow: hidden; }
  5292. .print-node-materiau.focused {
  5293. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9); }
  5294. .print-node-materiau.just-added {
  5295. opacity: 0; }
  5296. .print-node-materiau.associated {
  5297. transition: margin 0.3s ease-out; }
  5298. .print-node-materiau.associated.just-added {
  5299. margin-left: -850px;
  5300. margin-right: 850px; }
  5301. .modal-content .print-node-materiau.associated {
  5302. position: absolute;
  5303. top: 0;
  5304. left: 0;
  5305. z-index: 999; }
  5306. .print-node-materiau.removed {
  5307. transition: width 0.3s ease-out;
  5308. width: 0;
  5309. padding-left: 0;
  5310. padding-right: 0;
  5311. margin-right: 0;
  5312. margin-left: 0;
  5313. overflow: hidden; }
  5314. .print-node-materiau nav.nav {
  5315. position: absolute;
  5316. top: 0;
  5317. right: 0;
  5318. z-index: 11;
  5319. padding: 5px 0;
  5320. border-radius: 0 5px 0 3px;
  5321. background-clip: padding-box;
  5322. font-size: 10px;
  5323. background-color: rgba(255, 255, 255, 0.9);
  5324. color: #000; }
  5325. .print-node-materiau nav.nav a {
  5326. color: #000; }
  5327. .print-node-materiau nav.nav ul {
  5328. background-color: rgba(255, 255, 255, 0.9); }
  5329. .print-node-materiau nav.nav span.op {
  5330. font-weight: 900;
  5331. font-size: 14px; }
  5332. .print-node-materiau nav.nav ul {
  5333. padding: 0;
  5334. margin: 0; }
  5335. .print-node-materiau nav.nav section {
  5336. position: relative; }
  5337. .print-node-materiau nav.nav section > i {
  5338. margin: 0 5px; }
  5339. .print-node-materiau nav.nav section > i:hover {
  5340. cursor: pointer; }
  5341. .print-node-materiau nav.nav ul {
  5342. position: absolute;
  5343. right: 0;
  5344. top: 0;
  5345. margin-right: 22px;
  5346. min-width: 80px;
  5347. padding: 0;
  5348. display: block;
  5349. border-radius: 3px;
  5350. background-clip: padding-box;
  5351. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2); }
  5352. .print-node-materiau nav.nav ul li {
  5353. padding: 0;
  5354. margin: 0;
  5355. line-height: 1;
  5356. display: block;
  5357. height: 0;
  5358. overflow: hidden;
  5359. transition: height 0.2s ease-out; }
  5360. .print-node-materiau nav.nav ul li a {
  5361. display: block; }
  5362. .print-node-materiau nav.nav ul.links a {
  5363. font-size: 12px; }
  5364. .print-node-materiau nav.nav ul.flag-lists-entity-links {
  5365. width: 160px;
  5366. font-size: 0; }
  5367. .print-node-materiau nav.nav ul.flag-lists-entity-links > * {
  5368. font-size: 11px; }
  5369. .print-node-materiau nav.nav ul.flag-lists-entity-links li {
  5370. display: moz-inline-stack;
  5371. display: inline-block;
  5372. vertical-align: top;
  5373. zoom: 1;
  5374. *display: inline;
  5375. min-width: 48%;
  5376. max-width: 98%;
  5377. padding-left: 2px; }
  5378. .print-node-materiau nav.nav ul.flag-lists-entity-links li a {
  5379. color: #a6a6a6;
  5380. transition: color 0.2s ease-out; }
  5381. .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 {
  5382. color: #000;
  5383. text-decoration: none; }
  5384. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5385. display: block;
  5386. width: 100%; }
  5387. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5388. margin-top: 1px;
  5389. padding-top: 1px;
  5390. border-top: 1px solid #e6e6e6; }
  5391. .print-node-materiau nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5392. color: #000; }
  5393. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading {
  5394. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center; }
  5395. .print-node-materiau nav.nav ul.flag-lists-entity-links li.loading a {
  5396. visibility: hidden; }
  5397. .ie8 .print-node-materiau nav.nav ul {
  5398. background: #FFF; }
  5399. .print-node-materiau nav.nav section:hover ul {
  5400. padding: 5px 5px; }
  5401. .print-node-materiau nav.nav section:hover ul li {
  5402. height: 17px; }
  5403. .print-node-materiau div.workflow {
  5404. position: absolute;
  5405. top: 0;
  5406. left: 0;
  5407. z-index: 11;
  5408. padding: 5px;
  5409. border-radius: 5px 0 3px 0;
  5410. background-clip: padding-box;
  5411. font-size: 10px;
  5412. vertical-align: top;
  5413. background-color: rgba(255, 255, 255, 0.9);
  5414. color: #000; }
  5415. .print-node-materiau div.workflow span {
  5416. padding: 3px 0 0 4px;
  5417. display: moz-inline-stack;
  5418. display: inline-block;
  5419. vertical-align: top;
  5420. zoom: 1;
  5421. *display: inline; }
  5422. .print-node-materiau .field-name-field-description .upgrade {
  5423. font-size: 12px;
  5424. padding-top: 4em;
  5425. margin-top: -4.5em;
  5426. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5427. position: relative; }
  5428. .print-node-materiau .side.oops p, .print-node-materiau .side .upgrade p {
  5429. padding: 10px;
  5430. font-size: 12px; }
  5431. .print-node-materiau .side.oops p a, .print-node-materiau .side .upgrade p a {
  5432. display: block;
  5433. margin: 10px 0;
  5434. font-size: 18px;
  5435. padding: 0.1em 0.6em 0.2em;
  5436. border-radius: 0.3em;
  5437. background-clip: padding-box;
  5438. font-weight: bold;
  5439. border: 2px solid #69CDCF;
  5440. background-color: #69CDCF;
  5441. color: #fff;
  5442. cursor: pointer;
  5443. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5444. transition: text-shadow 0.2s ease-out;
  5445. text-align: center;
  5446. text-decoration: none; }
  5447. .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 {
  5448. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  5449. .print-node-materiau .side.oops p a:active, .print-node-materiau .side .upgrade p a:active {
  5450. transition: text-shadow 0s ease-out;
  5451. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); } }
  5452. .print-content .node-materiau.vm-print {
  5453. margin: 0;
  5454. position: relative; }
  5455. .print-content .node-materiau.vm-print .field-name-title-field {
  5456. font-weight: 500;
  5457. font-size: 1.4em; }
  5458. .print-content .node-materiau.vm-print .field-name-field-nature-titre {
  5459. font-weight: 500;
  5460. font-size: 1em;
  5461. margin-bottom: 0.5em; }
  5462. .print-content .node-materiau.vm-print .group-head-right {
  5463. position: absolute;
  5464. top: 0;
  5465. right: 0;
  5466. padding-top: 1em;
  5467. text-align: right;
  5468. font-size: 0.8em; }
  5469. .print-content .node-materiau.vm-print .group-head-right .field-name-field-reference-materio {
  5470. font-weight: 800;
  5471. font-size: 1.2em; }
  5472. .print-content .node-materiau.vm-print .side.group-side-left {
  5473. width: 45%;
  5474. position: absolute; }
  5475. .print-content .node-materiau.vm-print .side.group-side-left .field-name-field-description {
  5476. font-size: 0.8em; }
  5477. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference {
  5478. display: inline-block;
  5479. vertical-align: top;
  5480. width: 45%;
  5481. margin: 0.5em 1em 0 0;
  5482. font-size: 0.7em; }
  5483. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .field-label {
  5484. font-size: 0.8em;
  5485. font-weight: 300; }
  5486. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-name-field-tode-company {
  5487. font-size: 1.2em; }
  5488. .print-content .node-materiau.vm-print .side.group-side-left > .field-type-taxonomy-term-reference > .node-company .field-label {
  5489. display: none; }
  5490. .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 {
  5491. max-width: 100%; }
  5492. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image {
  5493. text-align: right; }
  5494. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure {
  5495. display: inline-block;
  5496. max-width: 19%;
  5497. margin: 0.5em 0 0 0.5em;
  5498. max-width: 100%;
  5499. margin-left: 50%; }
  5500. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image > figure img {
  5501. max-width: 100%; }
  5502. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item {
  5503. display: none;
  5504. max-width: 19%;
  5505. margin: 0.5em 0 0 0.5em; }
  5506. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+7) {
  5507. display: inline-block; }
  5508. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item:nth-child(-n+2) {
  5509. max-width: 100%;
  5510. margin-left: 50%; }
  5511. .print-content .node-materiau.vm-print .side.group-side-right .field-name-field-materiau-image .field-item img {
  5512. max-width: 100%; }
  5513. .print-content .node-materiau.vm-print .field-name-field-tode-company {
  5514. font-size: 1.5em;
  5515. font-weight: 700; }
  5516. .print-content .node-materiau.vm-print .field-name-field-description,
  5517. .print-content .node-materiau.vm-print .field-name-field-company-fab,
  5518. .print-content .node-materiau.vm-print .field-name-field-reference-distrib {
  5519. padding-bottom: 1em; }
  5520. /*
  5521. ____ ____ _____ ________
  5522. / __ \/ __ \/ _/ | / /_ __/
  5523. / /_/ / /_/ // // |/ / / /
  5524. / ____/ _, _// // /| / / /
  5525. /_/ /_/ |_/___/_/ |_/ /_/
  5526. */
  5527. @media print {
  5528. @page {
  5529. margin: 1.5cm 7mm 8mm; } }
  5530. .print-site_name {
  5531. width: 100%;
  5532. vertical-align: bottom;
  5533. margin-bottom: 0.5em; }
  5534. .print-site_name h1 {
  5535. margin: 0 0 0 0;
  5536. font-size: 1.4em;
  5537. text-align: center; }
  5538. .print-site_name h1 a {
  5539. color: inherit; }
  5540. .print-site_name h1 a:hover {
  5541. text-decoration: none; }
  5542. .print-site_name span.slogan {
  5543. display: none;
  5544. font-size: 0.8em;
  5545. margin-top: -3px;
  5546. margin-left: -0.5em;
  5547. font-weight: 900; }
  5548. .ie8 .print-site_name span.slogan {
  5549. position: absolute;
  5550. margin-top: 22px; }
  5551. .print-content {
  5552. margin-bottom: 1em; }
  5553. .print-footer {
  5554. position: absolute;
  5555. bottom: 0;
  5556. text-align: center;
  5557. width: 100%; }
  5558. .print-footer p {
  5559. display: inline-block;
  5560. width: 45%;
  5561. text-align: center; }
  5562. /*
  5563. ___ __ ____________ __________ __ _______ __ __________________
  5564. / | / / / /_ __/ __ \/ ____/ __ \/ |/ / __ \/ / / ____/_ __/ ____/
  5565. / /| |/ / / / / / / / / / / / / / / /|_/ / /_/ / / / __/ / / / __/
  5566. / ___ / /_/ / / / / /_/ / /___/ /_/ / / / / ____/ /___/ /___ / / / /___
  5567. /_/ |_\____/ /_/ \____/\____/\____/_/ /_/_/ /_____/_____/ /_/ /_____/
  5568. */
  5569. #autocomplete {
  5570. border: 0;
  5571. border-radius: 3px;
  5572. background-clip: padding-box;
  5573. background-color: rgba(0, 0, 0, 0.6);
  5574. text-align: left;
  5575. margin-left: 2px; }
  5576. .oldie #autocomplete {
  5577. background-color: #545454; }
  5578. #autocomplete li {
  5579. color: #FFF;
  5580. background-color: transparent;
  5581. font-size: 12px; }
  5582. #autocomplete li.selected {
  5583. background-color: rgba(0, 0, 0, 0.8); }
  5584. #autocomplete li div {
  5585. padding: 0.1em 5px; }
  5586. /**
  5587. * the old modal api (balck bg) for contextual forms (create new flag list)
  5588. */
  5589. #modal {
  5590. background-color: rgba(0, 0, 0, 0.7);
  5591. border-radius: 5px;
  5592. background-clip: padding-box;
  5593. border: 0;
  5594. font-size: 12px; }
  5595. #modal * {
  5596. color: #fff;
  5597. background-color: transparent; }
  5598. #modal form {
  5599. background-color: transparent;
  5600. color: #fff;
  5601. border: 0px; }
  5602. #modal form .form-actions {
  5603. background-color: transparent;
  5604. margin: 0;
  5605. padding: 0;
  5606. border: 0; }
  5607. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  5608. background-color: #fff;
  5609. color: #000;
  5610. border: 0; }
  5611. #modal form .form-actions {
  5612. text-align: right; }
  5613. #modal form input.form-submit {
  5614. border-style: solid;
  5615. border-width: 0;
  5616. cursor: pointer;
  5617. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5618. font-weight: normal;
  5619. line-height: normal;
  5620. margin: 0 0 1.25rem;
  5621. position: relative;
  5622. text-decoration: none;
  5623. text-align: center;
  5624. -webkit-appearance: none;
  5625. -moz-appearance: none;
  5626. border-radius: 0;
  5627. display: inline-block;
  5628. padding-top: 0.625rem;
  5629. padding-right: 1.25rem;
  5630. padding-bottom: 0.6875rem;
  5631. padding-left: 1.25rem;
  5632. font-size: 0.6875rem;
  5633. background-color: #008CBA;
  5634. border-color: #007095;
  5635. color: #FFFFFF;
  5636. transition: background-color 300ms ease-out; }
  5637. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5638. background-color: #007095; }
  5639. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  5640. color: #FFFFFF; }
  5641. #modal form input.form-submit[name="create"] {
  5642. border-style: solid;
  5643. border-width: 0;
  5644. cursor: pointer;
  5645. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5646. font-weight: normal;
  5647. line-height: normal;
  5648. margin: 0 0 1.25rem;
  5649. position: relative;
  5650. text-decoration: none;
  5651. text-align: center;
  5652. -webkit-appearance: none;
  5653. -moz-appearance: none;
  5654. border-radius: 0;
  5655. display: inline-block;
  5656. padding-top: 0.625rem;
  5657. padding-right: 1.25rem;
  5658. padding-bottom: 0.6875rem;
  5659. padding-left: 1.25rem;
  5660. font-size: 0.6875rem;
  5661. background-color: #43AC6A;
  5662. border-color: #368a55;
  5663. color: #FFFFFF;
  5664. transition: background-color 300ms ease-out; }
  5665. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5666. background-color: #368a55; }
  5667. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  5668. color: #FFFFFF; }
  5669. #modal form input.form-submit[name="save"] {
  5670. border-style: solid;
  5671. border-width: 0;
  5672. cursor: pointer;
  5673. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5674. font-weight: normal;
  5675. line-height: normal;
  5676. margin: 0 0 1.25rem;
  5677. position: relative;
  5678. text-decoration: none;
  5679. text-align: center;
  5680. -webkit-appearance: none;
  5681. -moz-appearance: none;
  5682. border-radius: 0;
  5683. display: inline-block;
  5684. padding-top: 0.625rem;
  5685. padding-right: 1.25rem;
  5686. padding-bottom: 0.6875rem;
  5687. padding-left: 1.25rem;
  5688. font-size: 0.6875rem;
  5689. background-color: #43AC6A;
  5690. border-color: #368a55;
  5691. color: #FFFFFF;
  5692. transition: background-color 300ms ease-out; }
  5693. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5694. background-color: #368a55; }
  5695. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  5696. color: #FFFFFF; }
  5697. #modal form input.form-submit[name="delete"] {
  5698. border-style: solid;
  5699. border-width: 0;
  5700. cursor: pointer;
  5701. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5702. font-weight: normal;
  5703. line-height: normal;
  5704. margin: 0 0 1.25rem;
  5705. position: relative;
  5706. text-decoration: none;
  5707. text-align: center;
  5708. -webkit-appearance: none;
  5709. -moz-appearance: none;
  5710. border-radius: 0;
  5711. display: inline-block;
  5712. padding-top: 0.625rem;
  5713. padding-right: 1.25rem;
  5714. padding-bottom: 0.6875rem;
  5715. padding-left: 1.25rem;
  5716. font-size: 0.6875rem;
  5717. background-color: #f04124;
  5718. border-color: #cf2a0e;
  5719. color: #FFFFFF;
  5720. transition: background-color 300ms ease-out; }
  5721. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5722. background-color: #cf2a0e; }
  5723. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  5724. color: #FFFFFF; }
  5725. #modal form input.form-submit[name="cancel"] {
  5726. border-style: solid;
  5727. border-width: 0;
  5728. cursor: pointer;
  5729. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5730. font-weight: normal;
  5731. line-height: normal;
  5732. margin: 0 0 1.25rem;
  5733. position: relative;
  5734. text-decoration: none;
  5735. text-align: center;
  5736. -webkit-appearance: none;
  5737. -moz-appearance: none;
  5738. border-radius: 0;
  5739. display: inline-block;
  5740. padding-top: 0.625rem;
  5741. padding-right: 1.25rem;
  5742. padding-bottom: 0.6875rem;
  5743. padding-left: 1.25rem;
  5744. font-size: 0.6875rem;
  5745. background-color: #e7e7e7;
  5746. border-color: #b9b9b9;
  5747. color: #333333;
  5748. transition: background-color 300ms ease-out; }
  5749. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5750. background-color: #b9b9b9; }
  5751. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  5752. color: #333333; }
  5753. #modal > * {
  5754. padding: 10px; }
  5755. #modal #flag-lists-form .form-item-title input {
  5756. width: 95%; }
  5757. #modal .actions {
  5758. text-align: right; }
  5759. /**
  5760. * the new modal api used for preview and register modal
  5761. */
  5762. .modal-wrapper {
  5763. bottom: 0;
  5764. left: 0;
  5765. position: fixed;
  5766. right: 0;
  5767. text-align: center;
  5768. top: 0;
  5769. white-space: nowrap;
  5770. z-index: 99998; }
  5771. .modal-wrapper:before {
  5772. content: "";
  5773. display: inline-block;
  5774. height: 100%;
  5775. margin-right: -0.25em;
  5776. vertical-align: middle; }
  5777. .modal-wrapper:after, .modal-wrapper:before {
  5778. -moz-box-sizing: border-box; }
  5779. .modal-wrapper .modal-bg {
  5780. background-color: #000;
  5781. position: absolute;
  5782. top: 0;
  5783. left: 0;
  5784. width: 100%;
  5785. height: 100%;
  5786. opacity: 0.5; }
  5787. .modal-wrapper .modal-content {
  5788. position: relative;
  5789. display: inline-block;
  5790. margin: 0 auto;
  5791. text-align: left;
  5792. vertical-align: middle;
  5793. white-space: normal;
  5794. min-height: 200px; }
  5795. /*
  5796. _______ __________ ____ __ __ ____ ___ _ __
  5797. / / ___// ____/ __ \/ __ \/ / / / / __ \/ | / | / /
  5798. __ / /\__ \/ / / /_/ / / / / / / / / /_/ / /| | / |/ /
  5799. / /_/ /___/ / /___/ _, _/ /_/ / /___/ /___/ ____/ ___ |/ /| /
  5800. \____//____/\____/_/ |_|\____/_____/_____/_/ /_/ |_/_/ |_/
  5801. */
  5802. .jspContainer .jspVerticalBar {
  5803. background-color: transparent;
  5804. width: 5px; }
  5805. .jspContainer .jspVerticalBar .jspTrack {
  5806. background-color: transparent; }
  5807. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  5808. background-color: #ccc;
  5809. border-radius: 3px;
  5810. background-clip: padding-box; }
  5811. /*
  5812. __________ ____ __ ______________
  5813. /_ __/ __ \/ __ \/ / /_ __/ _/ __ / / / / / / / / / / / / / // /_/ /
  5814. / / / /_/ / /_/ / /___/ / _/ // ____/
  5815. /_/ \____/\____/_____/_/ /___/_/
  5816. */
  5817. #tooltip {
  5818. position: absolute;
  5819. z-index: 999;
  5820. max-width: 180px;
  5821. background-color: white;
  5822. padding: 5px;
  5823. border-radius: 3px;
  5824. background-clip: padding-box;
  5825. font-size: 12px;
  5826. font-weight: 500;
  5827. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  5828. #tooltip.op-visible {
  5829. transition: opacity 0.1s ease-out; }
  5830. /*
  5831. ______________________ ____ ___ ________ __
  5832. / ____/ ____/ ____/ __ \/ __ )/ | / ____/ //_/
  5833. / /_ / __/ / __/ / / / / __ / /| |/ / / ,<
  5834. / __/ / /___/ /___/ /_/ / /_/ / ___ / /___/ /| |
  5835. /_/ /_____/_____/_____/_____/_/ |_\____/_/ |_|
  5836. */
  5837. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  5838. #block-feedback-form {
  5839. bottom: 5px;
  5840. left: 5px;
  5841. right: auto; } }
  5842. #block-feedback-form h2 {
  5843. line-height: 1.2;
  5844. font-size: 14px;
  5845. margin: 0; }
  5846. #block-feedback-form h2 .title {
  5847. display: none; }
  5848. #block-feedback-form #feedback-form-toggle {
  5849. padding: 2px 3px;
  5850. border-radius: 3px;
  5851. background-clip: padding-box;
  5852. background-color: #ff7600;
  5853. color: #fff;
  5854. line-height: 2;
  5855. font-weight: 900; }
  5856. #block-feedback-form .content {
  5857. background-color: rgba(0, 0, 0, 0.7);
  5858. border-radius: 5px;
  5859. background-clip: padding-box;
  5860. border: 0;
  5861. font-size: 12px; }
  5862. #block-feedback-form .content * {
  5863. color: #fff;
  5864. background-color: transparent; }
  5865. #block-feedback-form .content form {
  5866. background-color: transparent;
  5867. color: #fff;
  5868. border: 0px; }
  5869. #block-feedback-form .content form .form-actions {
  5870. background-color: transparent;
  5871. margin: 0;
  5872. padding: 0;
  5873. border: 0; }
  5874. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  5875. background-color: #fff;
  5876. color: #000;
  5877. border: 0; }
  5878. #block-feedback-form .content form .form-actions {
  5879. text-align: right; }
  5880. #block-feedback-form .content form input.form-submit {
  5881. border-style: solid;
  5882. border-width: 0;
  5883. cursor: pointer;
  5884. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5885. font-weight: normal;
  5886. line-height: normal;
  5887. margin: 0 0 1.25rem;
  5888. position: relative;
  5889. text-decoration: none;
  5890. text-align: center;
  5891. -webkit-appearance: none;
  5892. -moz-appearance: none;
  5893. border-radius: 0;
  5894. display: inline-block;
  5895. padding-top: 0.625rem;
  5896. padding-right: 1.25rem;
  5897. padding-bottom: 0.6875rem;
  5898. padding-left: 1.25rem;
  5899. font-size: 0.6875rem;
  5900. background-color: #008CBA;
  5901. border-color: #007095;
  5902. color: #FFFFFF;
  5903. transition: background-color 300ms ease-out; }
  5904. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  5905. background-color: #007095; }
  5906. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  5907. color: #FFFFFF; }
  5908. #block-feedback-form .content form input.form-submit[name="create"] {
  5909. border-style: solid;
  5910. border-width: 0;
  5911. cursor: pointer;
  5912. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5913. font-weight: normal;
  5914. line-height: normal;
  5915. margin: 0 0 1.25rem;
  5916. position: relative;
  5917. text-decoration: none;
  5918. text-align: center;
  5919. -webkit-appearance: none;
  5920. -moz-appearance: none;
  5921. border-radius: 0;
  5922. display: inline-block;
  5923. padding-top: 0.625rem;
  5924. padding-right: 1.25rem;
  5925. padding-bottom: 0.6875rem;
  5926. padding-left: 1.25rem;
  5927. font-size: 0.6875rem;
  5928. background-color: #43AC6A;
  5929. border-color: #368a55;
  5930. color: #FFFFFF;
  5931. transition: background-color 300ms ease-out; }
  5932. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  5933. background-color: #368a55; }
  5934. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  5935. color: #FFFFFF; }
  5936. #block-feedback-form .content form input.form-submit[name="save"] {
  5937. border-style: solid;
  5938. border-width: 0;
  5939. cursor: pointer;
  5940. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5941. font-weight: normal;
  5942. line-height: normal;
  5943. margin: 0 0 1.25rem;
  5944. position: relative;
  5945. text-decoration: none;
  5946. text-align: center;
  5947. -webkit-appearance: none;
  5948. -moz-appearance: none;
  5949. border-radius: 0;
  5950. display: inline-block;
  5951. padding-top: 0.625rem;
  5952. padding-right: 1.25rem;
  5953. padding-bottom: 0.6875rem;
  5954. padding-left: 1.25rem;
  5955. font-size: 0.6875rem;
  5956. background-color: #43AC6A;
  5957. border-color: #368a55;
  5958. color: #FFFFFF;
  5959. transition: background-color 300ms ease-out; }
  5960. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  5961. background-color: #368a55; }
  5962. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  5963. color: #FFFFFF; }
  5964. #block-feedback-form .content form input.form-submit[name="delete"] {
  5965. border-style: solid;
  5966. border-width: 0;
  5967. cursor: pointer;
  5968. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5969. font-weight: normal;
  5970. line-height: normal;
  5971. margin: 0 0 1.25rem;
  5972. position: relative;
  5973. text-decoration: none;
  5974. text-align: center;
  5975. -webkit-appearance: none;
  5976. -moz-appearance: none;
  5977. border-radius: 0;
  5978. display: inline-block;
  5979. padding-top: 0.625rem;
  5980. padding-right: 1.25rem;
  5981. padding-bottom: 0.6875rem;
  5982. padding-left: 1.25rem;
  5983. font-size: 0.6875rem;
  5984. background-color: #f04124;
  5985. border-color: #cf2a0e;
  5986. color: #FFFFFF;
  5987. transition: background-color 300ms ease-out; }
  5988. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  5989. background-color: #cf2a0e; }
  5990. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  5991. color: #FFFFFF; }
  5992. #block-feedback-form .content form input.form-submit[name="cancel"] {
  5993. border-style: solid;
  5994. border-width: 0;
  5995. cursor: pointer;
  5996. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  5997. font-weight: normal;
  5998. line-height: normal;
  5999. margin: 0 0 1.25rem;
  6000. position: relative;
  6001. text-decoration: none;
  6002. text-align: center;
  6003. -webkit-appearance: none;
  6004. -moz-appearance: none;
  6005. border-radius: 0;
  6006. display: inline-block;
  6007. padding-top: 0.625rem;
  6008. padding-right: 1.25rem;
  6009. padding-bottom: 0.6875rem;
  6010. padding-left: 1.25rem;
  6011. font-size: 0.6875rem;
  6012. background-color: #e7e7e7;
  6013. border-color: #b9b9b9;
  6014. color: #333333;
  6015. transition: background-color 300ms ease-out; }
  6016. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6017. background-color: #b9b9b9; }
  6018. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6019. color: #333333; }
  6020. .ie8 #block-feedback-form .content {
  6021. background: #000; }
  6022. #block-feedback-form #feedback-status-message {
  6023. background-color: #fff;
  6024. padding: 5px; }
  6025. /*
  6026. _________ _____ __ __ __ _________ ____ _____
  6027. /_ __/ | / ___// //_/ _/_/ /_ __/ | / __ ) ___/
  6028. / / / /| | \__ \/ ,< _/_/ / / / /| | / __ \__ / / / ___ |___/ / /| | _/_/ / / / ___ |/ /_/ /__/ /
  6029. /_/ /_/ |_/____/_/ |_| /_/ /_/ /_/ |_/_____/____/
  6030. */
  6031. #tasks ul.tabs {
  6032. display: moz-inline-stack;
  6033. display: inline-block;
  6034. vertical-align: top;
  6035. zoom: 1;
  6036. *display: inline;
  6037. border: 0 solid #fff;
  6038. padding: 0;
  6039. margin: 0; }
  6040. #tasks ul.tabs li {
  6041. padding: 0;
  6042. margin: 2px 5px;
  6043. border: 0 solid #fff; }
  6044. #tasks ul.tabs a {
  6045. border: 0;
  6046. color: #7f7f7f; }
  6047. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6048. font-weight: 900;
  6049. color: #000; }
  6050. #tasks ul.tabs.primary a {
  6051. font-size: 12px;
  6052. padding: 5px 10px;
  6053. background-color: #e6e6e6;
  6054. border-radius: 3px;
  6055. background-clip: padding-box; }
  6056. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6057. background-color: #e6e6e6; }
  6058. #tasks ul.tabs.secondary {
  6059. font-size: 10px;
  6060. padding: 0.5em 1em; }
  6061. /*
  6062. ______________ _____________________
  6063. / ___/_ __/ |/_ __/ _/ ____/ ___/
  6064. \__ \ / / / /| | / / / // / \__ ___/ // / / ___ |/ / _/ // /___ ___/ /
  6065. /____//_/ /_/ |_/_/ /___/\____//____/
  6066. */
  6067. /*
  6068. _ _ ___ ___ ___
  6069. | | |_ -| -_| _|
  6070. |___|___|___|_|
  6071. */
  6072. .page-user #center, .page-user-edit #center, .page-user-password #center, .page-user-reset #center, .page-toboggan #center {
  6073. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right; }
  6074. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6075. width: 800px;
  6076. margin: 0 auto; }
  6077. .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 {
  6078. display: none; }
  6079. .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 {
  6080. font-size: 12px;
  6081. padding: 5px 10px;
  6082. background-color: #e6e6e6;
  6083. border-radius: 3px;
  6084. background-clip: padding-box; }
  6085. .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 {
  6086. background-color: #e6e6e6; }
  6087. .page-user #center > *, .page-user-edit #center > *, .page-user-password #center > *, .page-user-reset #center > *, .page-toboggan #center > * {
  6088. width: 800px;
  6089. margin: 0 auto;
  6090. padding-top: 1em;
  6091. font-size: 14px; }
  6092. .page-user #center > * fieldset, .page-user-edit #center > * fieldset, .page-user-password #center > * fieldset, .page-user-reset #center > * fieldset, .page-toboggan #center > * fieldset {
  6093. margin-bottom: 1em;
  6094. border: none; }
  6095. .page-user #center > * legend, .page-user-edit #center > * legend, .page-user-password #center > * legend, .page-user-reset #center > * legend, .page-toboggan #center > * legend {
  6096. font-size: 16px;
  6097. margin: 0;
  6098. padding: 10px 0 5px 0;
  6099. line-height: 1;
  6100. border: 0 solid #fff; }
  6101. .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 {
  6102. color: #000; }
  6103. .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 {
  6104. margin: 0 0 0.5em 0;
  6105. width: 100%; }
  6106. .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 {
  6107. display: moz-inline-stack;
  6108. display: inline-block;
  6109. vertical-align: top;
  6110. zoom: 1;
  6111. *display: inline;
  6112. vertical-align: middle; }
  6113. .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 {
  6114. margin-right: 1em; }
  6115. .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 {
  6116. padding: 2px 4px;
  6117. width: 20em; }
  6118. .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 {
  6119. margin: 0 0 2em 0; }
  6120. .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 {
  6121. width: 9em; }
  6122. .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 {
  6123. width: auto; }
  6124. .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 {
  6125. width: 15em;
  6126. margin-top: 0; }
  6127. .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 {
  6128. margin: 0; }
  6129. .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 {
  6130. font-size: 14px;
  6131. margin: 0; }
  6132. .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 {
  6133. display: moz-inline-stack;
  6134. display: inline-block;
  6135. vertical-align: top;
  6136. zoom: 1;
  6137. *display: inline;
  6138. width: auto;
  6139. margin-right: 1em; }
  6140. .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 {
  6141. margin: 0; }
  6142. .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 {
  6143. width: auto;
  6144. padding: 2px 4px;
  6145. height: auto; }
  6146. .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 {
  6147. font-size: 10px; }
  6148. .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 {
  6149. margin: 0;
  6150. text-align: right;
  6151. padding: 1em 0.5em; }
  6152. .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 {
  6153. min-width: 10em; }
  6154. .page-user #center > * #edit-profile-adherent-field-first-name, .page-user #center > * #edit-profile-adherent-field-name,
  6155. .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,
  6156. .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,
  6157. .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,
  6158. .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,
  6159. .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,
  6160. .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,
  6161. .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,
  6162. .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,
  6163. .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,
  6164. .page-toboggan #center > * #edit-profile-adherent-field-naf, .page-toboggan #center > * #edit-profile-adherent-field-siret {
  6165. display: moz-inline-stack;
  6166. display: inline-block;
  6167. vertical-align: top;
  6168. zoom: 1;
  6169. *display: inline;
  6170. vertical-align: middle;
  6171. width: auto;
  6172. margin: 0 1em 0.5em 0; }
  6173. .page-user #center > * #edit-profile-adherent-field-first-name div, .page-user #center > * #edit-profile-adherent-field-name div,
  6174. .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,
  6175. .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,
  6176. .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,
  6177. .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,
  6178. .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,
  6179. .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,
  6180. .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,
  6181. .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,
  6182. .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,
  6183. .page-toboggan #center > * #edit-profile-adherent-field-naf div, .page-toboggan #center > * #edit-profile-adherent-field-siret div {
  6184. width: auto;
  6185. margin: 0;
  6186. padding: 0; }
  6187. .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 {
  6188. width: auto; }
  6189. .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 {
  6190. width: 8em; }
  6191. .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 {
  6192. width: 13em; }
  6193. .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 {
  6194. margin: 2em 0 0 0; }
  6195. .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 {
  6196. width: auto; }
  6197. .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 {
  6198. width: 4em; }
  6199. .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 {
  6200. display: moz-inline-stack;
  6201. display: inline-block;
  6202. vertical-align: top;
  6203. zoom: 1;
  6204. *display: inline;
  6205. vertical-align: middle; }
  6206. .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 {
  6207. width: 10em; }
  6208. .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 {
  6209. padding: 0; }
  6210. .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 {
  6211. width: 35em; }
  6212. .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 {
  6213. width: auto;
  6214. margin-right: 1em; }
  6215. .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 {
  6216. margin: 2em 0 0 0; }
  6217. .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 > * {
  6218. display: moz-inline-stack;
  6219. display: inline-block;
  6220. vertical-align: top;
  6221. zoom: 1;
  6222. *display: inline;
  6223. vertical-align: middle; }
  6224. .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 {
  6225. width: 35em; }
  6226. .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 {
  6227. border: 0 solid transparent; }
  6228. .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 {
  6229. display: inline; }
  6230. .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 {
  6231. padding: 0; }
  6232. /*
  6233. _ __
  6234. _____(_)___ ___ ____ / /__ ____ ___ _ _______
  6235. / ___/ / __ `__ \/ __ \/ / _ \/ __ \/ _ \ | /| / / ___/
  6236. (__ ) / / / / / / /_/ / / __/ / / / __/ |/ |/ (__ )
  6237. /____/_/_/ /_/ /_/ .___/_/\___/_/ /_/\___/|__/|__/____/
  6238. /_/
  6239. */
  6240. body.node-type-simplenews #content .inner-content {
  6241. text-align: center; }
  6242. body.node-type-simplenews #content article.node.node-simplenews {
  6243. display: moz-inline-stack;
  6244. display: inline-block;
  6245. vertical-align: top;
  6246. zoom: 1;
  6247. *display: inline;
  6248. max-width: 600px;
  6249. padding: 1em 0; }
  6250. body.node-type-simplenews #content article.node.node-simplenews tbody {
  6251. border-top: 0px; }
  6252. body.node-type-simplenews #content article.node.node-simplenews img {
  6253. max-width: 9999px; }
  6254. @media only screen and (max-width: 40em) {
  6255. body.node-type-simplenews #content article.node.node-simplenews {
  6256. max-width: 100%;
  6257. overflow-x: hidden; }
  6258. body.node-type-simplenews #content article.node.node-simplenews table {
  6259. width: 100% !important; }
  6260. body.node-type-simplenews #content article.node.node-simplenews td {
  6261. vertical-align: top; }
  6262. body.node-type-simplenews #content article.node.node-simplenews img {
  6263. max-width: 100%; }
  6264. body.node-type-simplenews #content article.node.node-simplenews p {
  6265. padding: 0 0.5em; } }
  6266. /*
  6267. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6268. | _ | _ | __| __| | | | | |_ _| _ | |_ _|
  6269. | __| | | | __| | --| | | | | | | | | | --| | |
  6270. |__| |__|__|_____|_____| |_____|_____|_|___| |_| |__|__|_____| |_|
  6271. */
  6272. .page-node-11175 #main #center {
  6273. background: #fff url("../img/bg-contact.gif") no-repeat bottom right; }
  6274. .page-node-11175 #main .field-name-body p {
  6275. display: moz-inline-stack;
  6276. display: inline-block;
  6277. vertical-align: top;
  6278. zoom: 1;
  6279. *display: inline;
  6280. margin: 15px; }
  6281. .page-node-11175 #main .field-name-body p strong {
  6282. font-size: 18px; }
  6283. /*
  6284. _____ _____ _____ _____ _____ _____ _____
  6285. | _ | __ | | | | | | __|
  6286. | __| -|- -| --|- -| | | | | |
  6287. |__| |__|__|_____|_____|_____|_|___|_____|
  6288. */
  6289. @media only screen and (min-width: 40.063em) {
  6290. 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 {
  6291. display: moz-inline-stack;
  6292. display: inline-block;
  6293. vertical-align: top;
  6294. zoom: 1;
  6295. *display: inline;
  6296. margin: 10px;
  6297. float: none; }
  6298. body.page-node-11187 .node-11187 .field-name-body div.column {
  6299. width: 22.4%; }
  6300. 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 {
  6301. min-height: 170px; }
  6302. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  6303. width: 46%; }
  6304. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  6305. min-height: 110px; }
  6306. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  6307. width: 92%; }
  6308. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  6309. width: auto;
  6310. max-width: 98%; }
  6311. body.page-node-11187 #block-materio-user-user-register {
  6312. width: 600px;
  6313. margin: 0 auto;
  6314. padding: 2em; } }
  6315. @media only screen and (max-width: 40em) {
  6316. body.page-node-11187 #block-system-help {
  6317. text-align: center; } }
  6318. body.page-node-11187 .node-11187 .field-name-body {
  6319. text-align: center; }
  6320. body.page-node-11187 .node-11187 .field-name-body > * {
  6321. text-align: left; }
  6322. 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 {
  6323. position: relative;
  6324. background-color: #fff;
  6325. border-radius: 5px;
  6326. background-clip: padding-box;
  6327. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  6328. overflow: hidden; }
  6329. .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 {
  6330. max-width: 500px;
  6331. margin: auto;
  6332. margin-bottom: 15px;
  6333. border: 1px solid #C6C6C6; }
  6334. 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 > * {
  6335. padding: 0 10px; }
  6336. 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 {
  6337. text-align: left;
  6338. margin: 5px 0 0 15px; }
  6339. 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 {
  6340. padding: 0 0 0 15px;
  6341. font-size: 18px;
  6342. font-style: italic;
  6343. font-weight: bold;
  6344. line-height: 1; }
  6345. 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 {
  6346. margin: 0;
  6347. padding: 0 15px; }
  6348. 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 {
  6349. list-style: none;
  6350. font-size: 12px; }
  6351. 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 {
  6352. content: "+ ";
  6353. font-weight: 900; }
  6354. 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 {
  6355. font-size: 12px;
  6356. margin: 0;
  6357. padding: 0 15px; }
  6358. 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 {
  6359. margin: 0;
  6360. border-radius: 0 0 5px 5px 0 0 0;
  6361. background-clip: padding-box;
  6362. border: 1px solid #fff;
  6363. min-height: 92px; }
  6364. 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 {
  6365. display: block;
  6366. width: 100%;
  6367. padding: 15px 0;
  6368. color: #1A1A1A;
  6369. text-decoration: none; }
  6370. 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 {
  6371. background-color: #C8C8C8; }
  6372. 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 {
  6373. background-color: #69CDCF; }
  6374. 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 {
  6375. background-color: #D476AE; }
  6376. 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 {
  6377. background-color: #E6DE1C; }
  6378. 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 {
  6379. background-color: #4BA13D; }
  6380. 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 {
  6381. min-height: 62px;
  6382. padding: 15px 0; }
  6383. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  6384. padding: 10px 0 0;
  6385. font-size: 24px; }
  6386. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  6387. padding: 0;
  6388. font-size: 24px;
  6389. text-align: center;
  6390. font-style: italic;
  6391. font-weight: 900;
  6392. cursor: pointer;
  6393. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6394. transition: text-shadow 0.3s ease-out; }
  6395. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  6396. font-size: 20px; }
  6397. 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 {
  6398. text-shadow: 0 0 3px white; }
  6399. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  6400. transition: text-shadow 0s ease-out;
  6401. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6402. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  6403. padding: 10px 0 0;
  6404. font-size: 24px;
  6405. top: 0; }
  6406. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  6407. min-height: 2em; }
  6408. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  6409. font-size: 14px;
  6410. min-height: 120px; }
  6411. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  6412. font-size: 14px;
  6413. text-align: left;
  6414. padding: 0 1em;
  6415. background-color: #ddd; }
  6416. /*
  6417. _____ ____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6418. | _ | \| | | __| __| | | | | | __| | __ | |
  6419. | | | | | __|__ |- -| | | | | | | __| | | -| | | |
  6420. |__|__|____/|__|__|_____|_____|_____|_____|_|___| |__| |_____|__|__|_|_|_|
  6421. */
  6422. .node-11186 nav ul.links a.language-link {
  6423. display: none; }
  6424. #webform-client-form-11186 {
  6425. background-color: #e6e6e6;
  6426. border-radius: 10px;
  6427. background-clip: padding-box; }
  6428. @media only screen and (min-width: 40.063em) {
  6429. #webform-client-form-11186 {
  6430. padding: 10px 30px; }
  6431. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6432. margin: 10px 0; }
  6433. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6434. width: auto; }
  6435. #webform-client-form-11186 fieldset {
  6436. border-radius: 5px;
  6437. background-clip: padding-box;
  6438. border-left: 1px solid #cccccc;
  6439. border-bottom: 1px solid #cccccc;
  6440. padding: 10px;
  6441. border-top-width: 0;
  6442. border-right-width: 0;
  6443. border-bottom-width: 0; }
  6444. #webform-client-form-11186 fieldset fieldset {
  6445. border: 0 solid #ddd;
  6446. padding: 0; }
  6447. #webform-client-form-11186 legend {
  6448. margin: 0;
  6449. font-size: 18px;
  6450. font-weight: 700; }
  6451. #webform-client-form-11186 .form-item {
  6452. margin: 0 20px 0 0; }
  6453. #webform-client-form-11186 label {
  6454. font-size: 12px;
  6455. width: 10em;
  6456. display: moz-inline-stack;
  6457. display: inline-block;
  6458. vertical-align: top;
  6459. zoom: 1;
  6460. *display: inline;
  6461. vertical-align: middle;
  6462. margin-right: 1em;
  6463. border-bottom: 1px solid #cccccc; }
  6464. #webform-client-form-11186 .description {
  6465. font-size: 10px;
  6466. width: 25em;
  6467. display: moz-inline-stack;
  6468. display: inline-block;
  6469. vertical-align: top;
  6470. zoom: 1;
  6471. *display: inline;
  6472. vertical-align: bottom;
  6473. margin-left: 1em;
  6474. color: #7f7f7f; }
  6475. #webform-client-form-11186 input.form-text {
  6476. width: 13em; } }
  6477. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  6478. #webform-client-form-11186 {
  6479. padding: 10px; }
  6480. #webform-client-form-11186 #webform-component-column-left--membership-options {
  6481. margin: 0 0 10px 0; }
  6482. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  6483. width: 100%; }
  6484. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6485. width: 75%; }
  6486. #webform-client-form-11186 legend {
  6487. margin: 0;
  6488. font-size: 16px;
  6489. font-weight: 700; }
  6490. #webform-client-form-11186 .form-item {
  6491. margin: 0;
  6492. float: none; }
  6493. #webform-client-form-11186 label {
  6494. font-size: 12px;
  6495. width: 30%;
  6496. display: moz-inline-stack;
  6497. display: inline-block;
  6498. vertical-align: top;
  6499. zoom: 1;
  6500. *display: inline;
  6501. vertical-align: middle;
  6502. margin-right: 0.5em; }
  6503. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  6504. width: 60%; }
  6505. #webform-client-form-11186 #webform-component-infos {
  6506. font-size: 14px; } }
  6507. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  6508. display: moz-inline-stack;
  6509. display: inline-block;
  6510. vertical-align: top;
  6511. zoom: 1;
  6512. *display: inline; }
  6513. #webform-client-form-11186 #webform-component-column-left {
  6514. display: moz-inline-stack;
  6515. display: inline-block;
  6516. vertical-align: top;
  6517. zoom: 1;
  6518. *display: inline;
  6519. width: 25%;
  6520. border: none; }
  6521. #webform-client-form-11186 #webform-component-column-right {
  6522. display: moz-inline-stack;
  6523. display: inline-block;
  6524. vertical-align: top;
  6525. zoom: 1;
  6526. *display: inline;
  6527. min-width: 70%; }
  6528. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  6529. border: 1px solid #ddd;
  6530. border-radius: 5px;
  6531. background-clip: padding-box;
  6532. padding: 10px 5px;
  6533. margin: 5px 0;
  6534. background-color: #fff; }
  6535. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  6536. display: moz-inline-stack;
  6537. display: inline-block;
  6538. vertical-align: top;
  6539. zoom: 1;
  6540. *display: inline;
  6541. vertical-align: middle;
  6542. margin: 0px 5px; }
  6543. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  6544. font-size: 20px;
  6545. font-weight: 700;
  6546. display: moz-inline-stack;
  6547. display: inline-block;
  6548. vertical-align: top;
  6549. zoom: 1;
  6550. *display: inline;
  6551. vertical-align: middle;
  6552. margin: 0; }
  6553. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  6554. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  6555. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  6556. background-color: #69CDCF; }
  6557. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  6558. background-color: #D476AE; }
  6559. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  6560. background-color: #E6DE1C; }
  6561. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  6562. opacity: 0.4; }
  6563. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  6564. width: 200px;
  6565. font-size: 18px;
  6566. font-weight: 700; }
  6567. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  6568. border: 0; }
  6569. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  6570. display: block; }
  6571. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  6572. display: moz-inline-stack;
  6573. display: inline-block;
  6574. vertical-align: top;
  6575. zoom: 1;
  6576. *display: inline; }
  6577. #webform-client-form-11186 #addressfield-wrapper {
  6578. margin-top: 1em; }
  6579. #webform-client-form-11186 .street-block .form-item {
  6580. display: moz-inline-stack;
  6581. display: inline-block;
  6582. vertical-align: top;
  6583. zoom: 1;
  6584. *display: inline; }
  6585. #webform-client-form-11186 #webform-component-column-right--collaborators {
  6586. margin: 20px 0;
  6587. overflow: hidden; }
  6588. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  6589. display: moz-inline-stack;
  6590. display: inline-block;
  6591. vertical-align: top;
  6592. zoom: 1;
  6593. *display: inline;
  6594. width: 33%; }
  6595. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  6596. display: block; }
  6597. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  6598. width: 6em; }
  6599. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  6600. width: 11em; }
  6601. #webform-client-form-11186 #webform-component-infos {
  6602. margin: 20px 0; }
  6603. #webform-client-form-11186 .form-actions {
  6604. padding: 0;
  6605. margin: 0;
  6606. border: 0px;
  6607. background-color: transparent;
  6608. text-align: left; }
  6609. #webform-client-form-11186 .form-actions .form-submit {
  6610. border: 2px solid #69CDCF;
  6611. background-color: #69CDCF;
  6612. color: #fff;
  6613. font-size: 18px;
  6614. padding: 0.2em 1em 0.3em;
  6615. border-radius: 0.3em;
  6616. background-clip: padding-box;
  6617. font-weight: bold;
  6618. margin-bottom: 9px;
  6619. cursor: pointer;
  6620. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6621. transition: text-shadow 0.2s ease-out; }
  6622. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  6623. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6624. #webform-client-form-11186 .form-actions .form-submit:active {
  6625. transition: text-shadow 0s ease-out;
  6626. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6627. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  6628. margin: 0;
  6629. font-size: 18px;
  6630. font-weight: 700;
  6631. border: none;
  6632. line-height: 40px; }
  6633. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  6634. display: moz-inline-stack;
  6635. display: inline-block;
  6636. vertical-align: top;
  6637. zoom: 1;
  6638. *display: inline; }
  6639. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  6640. width: auto; }
  6641. #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 {
  6642. margin: 0; }
  6643. #webform-client-form-11186 #edit-submitted-terms-of-services {
  6644. margin-bottom: 0.5em; }
  6645. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6646. margin: 0 0.3em 0 0; }
  6647. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  6648. width: auto; }
  6649. /*
  6650. _____ _____ _____ _____ _____ _____ _____ _____ _____ _ _ _ _____ _____ _____ _____
  6651. | | | | | | _ | __ |_ _| | | | | __| | | | | __| | __ | |
  6652. | | | --| | --| | -| | | | | |- -| __| | | | | __| | | -| | | |
  6653. |_____|_____| |_____|__|__|__|__| |_| \___/|_____|_____|_____| |__| |_____|__|__|_|_|_|
  6654. */
  6655. #uc-cart-view-form {
  6656. background-color: #e6e6e6;
  6657. padding: 10px, 30px;
  6658. display: inline-block; }
  6659. #uc-cart-view-form table {
  6660. width: auto;
  6661. display: table;
  6662. background-color: #fff; }
  6663. #uc-cart-view-form table thead th {
  6664. border-bottom: none;
  6665. padding: 1em; }
  6666. #uc-cart-view-form table tbody {
  6667. border-top: none; }
  6668. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  6669. background-color: #fff;
  6670. border-bottom: none; }
  6671. #uc-cart-view-form table tbody td {
  6672. padding: 1em; }
  6673. #uc-cart-view-form fieldset {
  6674. border: none !important; }
  6675. #uc-cart-view-form .form-type-uc-quantity input {
  6676. width: 2em; }
  6677. #uc-cart-view-form .form-actions {
  6678. padding: 0;
  6679. margin: 0;
  6680. border: 0px;
  6681. background-color: transparent;
  6682. text-align: right;
  6683. display: block;
  6684. width: 100%; }
  6685. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  6686. display: block; }
  6687. #uc-cart-view-form .form-actions .form-submit {
  6688. font-size: 16px;
  6689. font-weight: bold;
  6690. padding: 0.1em 0.3em 0.2em;
  6691. border-radius: 0.3em;
  6692. background-clip: padding-box;
  6693. border: 2px solid #ccc;
  6694. background-color: #ccc;
  6695. color: #4D4D4D;
  6696. cursor: pointer;
  6697. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6698. transition: text-shadow 0.3s ease-out;
  6699. text-align: center;
  6700. text-decoration: none;
  6701. margin-left: 1em; }
  6702. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  6703. text-shadow: 0 0 3px white; }
  6704. #uc-cart-view-form .form-actions .form-submit:active {
  6705. transition: text-shadow 0s ease-out;
  6706. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6707. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  6708. font-size: 16px;
  6709. font-weight: bold;
  6710. padding: 0.1em 0.3em 0.2em;
  6711. border-radius: 0.3em;
  6712. background-clip: padding-box;
  6713. border: 2px solid #ccc;
  6714. background-color: #ccc;
  6715. color: #4D4D4D;
  6716. cursor: pointer;
  6717. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6718. transition: text-shadow 0.3s ease-out;
  6719. text-align: center;
  6720. text-decoration: none;
  6721. cursor: pointer;
  6722. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6723. transition: text-shadow 0.2s ease-out;
  6724. border-color: #69CDCF;
  6725. background-color: #69CDCF;
  6726. color: #fff; }
  6727. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6728. text-shadow: 0 0 3px white; }
  6729. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6730. transition: text-shadow 0s ease-out;
  6731. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6732. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  6733. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6734. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  6735. transition: text-shadow 0s ease-out;
  6736. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6737. /*
  6738. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____
  6739. | | | | | | | | __| | | | | | |_ _| | __| | __ | |
  6740. | | | --| | --| | __| --| -| | | | | | | | __| | | -| | | |
  6741. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| |__| |_____|__|__|_|_|_|
  6742. */
  6743. #uc-cart-checkout-form {
  6744. background-color: #e6e6e6;
  6745. padding: 10px, 30px; }
  6746. #uc-cart-checkout-form fieldset {
  6747. border: none !important; }
  6748. #uc-cart-checkout-form fieldset.form-row {
  6749. padding-bottom: 20px;
  6750. margin-bottom: 20px; }
  6751. #uc-cart-checkout-form fieldset.form-column {
  6752. display: moz-inline-stack;
  6753. display: inline-block;
  6754. vertical-align: top;
  6755. zoom: 1;
  6756. *display: inline;
  6757. max-width: 39%;
  6758. clear: both;
  6759. float: none;
  6760. margin: 15px 1em; }
  6761. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  6762. margin: 10px 0; }
  6763. #uc-cart-checkout-form fieldset.form-column-right {
  6764. border-left: 1px solid #ccc;
  6765. margin-left: 2em;
  6766. padding-left: 2em; }
  6767. #uc-cart-checkout-form legend {
  6768. margin: 0;
  6769. font-size: 18px;
  6770. font-weight: 700;
  6771. border: none;
  6772. line-height: 2; }
  6773. #uc-cart-checkout-form .fieldset-description {
  6774. font-size: 12px; }
  6775. #uc-cart-checkout-form .fieldset-wrapper {
  6776. font-size: 12px; }
  6777. #uc-cart-checkout-form .form-item {
  6778. margin: 0 20px 0 0; }
  6779. #uc-cart-checkout-form .description {
  6780. font-size: 10px;
  6781. width: 25em;
  6782. display: moz-inline-stack;
  6783. display: inline-block;
  6784. vertical-align: top;
  6785. zoom: 1;
  6786. *display: inline;
  6787. vertical-align: bottom;
  6788. margin-left: 1em;
  6789. color: #7f7f7f; }
  6790. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  6791. display: moz-inline-stack;
  6792. display: inline-block;
  6793. vertical-align: top;
  6794. zoom: 1;
  6795. *display: inline;
  6796. border-radius: 5px;
  6797. background-clip: padding-box;
  6798. padding: 10px;
  6799. background-color: #fff; }
  6800. #uc-cart-checkout-form #cart-pane table {
  6801. font-size: 14px;
  6802. min-width: 20em; }
  6803. #uc-cart-checkout-form #cart-pane table td.price {
  6804. width: 4em; }
  6805. #uc-cart-checkout-form #cart-pane tbody {
  6806. border: none; }
  6807. #uc-cart-checkout-form #cart-pane tr {
  6808. background-color: transparent;
  6809. border: none; }
  6810. #uc-cart-checkout-form #cart-pane td {
  6811. padding: 0 5px;
  6812. vertical-align: bottom; }
  6813. #uc-cart-checkout-form #cart-pane td.products {
  6814. width: auto; }
  6815. #uc-cart-checkout-form #cart-pane td.products a {
  6816. color: inherit;
  6817. font-weight: 700; }
  6818. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  6819. margin: 0;
  6820. font-size: 12px; }
  6821. #uc-cart-checkout-form #cart-pane td.products li {
  6822. list-style: none; }
  6823. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  6824. font-size: 16px;
  6825. font-weight: 700; }
  6826. #uc-cart-checkout-form #customer-pane {
  6827. width: 35em; }
  6828. #uc-cart-checkout-form #billing-pane label {
  6829. font-size: 12px;
  6830. width: 8em;
  6831. display: moz-inline-stack;
  6832. display: inline-block;
  6833. vertical-align: top;
  6834. zoom: 1;
  6835. *display: inline;
  6836. vertical-align: middle;
  6837. margin-right: 1em;
  6838. border-bottom: 1px solid #cccccc; }
  6839. #uc-cart-checkout-form #billing-pane input.form-text {
  6840. width: 13em; }
  6841. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  6842. background-color: #fff;
  6843. border-radius: 5px;
  6844. background-clip: padding-box;
  6845. padding: 10px; }
  6846. #uc-cart-checkout-form #payment-pane #line-items-div {
  6847. float: none;
  6848. border: none;
  6849. display: moz-inline-stack;
  6850. display: inline-block;
  6851. vertical-align: top;
  6852. zoom: 1;
  6853. *display: inline;
  6854. margin: 10px 0 20px; }
  6855. #uc-cart-checkout-form #payment-pane #line-items-div table {
  6856. font-size: 14px;
  6857. min-width: 20em; }
  6858. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  6859. width: 4em; }
  6860. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  6861. border: none; }
  6862. #uc-cart-checkout-form #payment-pane #line-items-div td {
  6863. padding: 0 5px; }
  6864. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  6865. font-weight: 500; }
  6866. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  6867. font-size: 16px;
  6868. font-weight: 700;
  6869. text-align: right; }
  6870. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  6871. width: auto;
  6872. border-bottom: none; }
  6873. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  6874. border: 1px solid #ddd;
  6875. border-radius: 5px;
  6876. margin: 0.5em;
  6877. padding: 0.5em; }
  6878. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  6879. font-weight: bold; }
  6880. #uc-cart-checkout-form #payment-pane #payment-details {
  6881. width: 25em;
  6882. border-top: none;
  6883. padding: 0;
  6884. margin: 0; }
  6885. #uc-cart-checkout-form #edit-actions {
  6886. width: 100%;
  6887. padding: 1em 0;
  6888. margin: 0;
  6889. border: 0px;
  6890. background-color: transparent;
  6891. text-align: center; }
  6892. #uc-cart-checkout-form #edit-actions .form-submit {
  6893. font-size: 16px;
  6894. font-weight: bold;
  6895. padding: 0.1em 0.3em 0.2em;
  6896. border-radius: 0.3em;
  6897. background-clip: padding-box;
  6898. border: 2px solid #ccc;
  6899. background-color: #ccc;
  6900. color: #4D4D4D;
  6901. cursor: pointer;
  6902. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6903. transition: text-shadow 0.3s ease-out;
  6904. text-align: center;
  6905. text-decoration: none;
  6906. margin-left: 1em; }
  6907. #uc-cart-checkout-form #edit-actions .form-submit:hover, #uc-cart-checkout-form #edit-actions .form-submit:focus {
  6908. text-shadow: 0 0 3px white; }
  6909. #uc-cart-checkout-form #edit-actions .form-submit:active {
  6910. transition: text-shadow 0s ease-out;
  6911. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6912. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue {
  6913. font-size: 16px;
  6914. font-weight: bold;
  6915. padding: 0.1em 0.3em 0.2em;
  6916. border-radius: 0.3em;
  6917. background-clip: padding-box;
  6918. border: 2px solid #ccc;
  6919. background-color: #ccc;
  6920. color: #4D4D4D;
  6921. cursor: pointer;
  6922. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  6923. transition: text-shadow 0.3s ease-out;
  6924. text-align: center;
  6925. text-decoration: none;
  6926. cursor: pointer;
  6927. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6928. transition: text-shadow 0.2s ease-out;
  6929. border-color: #69CDCF;
  6930. background-color: #69CDCF;
  6931. color: #fff; }
  6932. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  6933. text-shadow: 0 0 3px white; }
  6934. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  6935. transition: text-shadow 0s ease-out;
  6936. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  6937. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:focus {
  6938. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  6939. #uc-cart-checkout-form #edit-actions .form-submit#edit-continue:active {
  6940. transition: text-shadow 0s ease-out;
  6941. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  6942. /*
  6943. _____ _____ _____ _____ _____ _____
  6944. | | | | | | _ | __ |_ _|
  6945. | | | --| | --| | -| | |
  6946. |_____|_____| |_____|__|__|__|__| |_|
  6947. &&
  6948. _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ _____ __ _____ ____ _____ _____ _____ _____ _____
  6949. | | | | | | | | __| | | | | | |_ _| | | | _ | | | | \| _ |_ _| | | | |
  6950. | | | --| | --| | __| --| -| | | | | | | | | | | |__|- -| | | | | | |- -| | | | | |
  6951. |_____|_____| |_____|__|__|_____|_____|__|__|_____|_____| |_| \___/|__|__|_____|_____|____/|__|__| |_| |_____|_____|_|___|
  6952. */
  6953. .page-cart-checkout-review #content > .inner-content {
  6954. display: inline-block;
  6955. padding: 1em; }
  6956. .page-cart-checkout-review #edit-actions {
  6957. margin: 0;
  6958. padding: 0; }
  6959. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  6960. display: block; }
  6961. .page-cart-checkout-review #review-instructions {
  6962. width: 30em;
  6963. padding: 1em 0; }
  6964. .page-cart-checkout-review table.order-review-table {
  6965. border: none; }
  6966. .page-cart-checkout-review table.order-review-table .pane-title-row {
  6967. border: none;
  6968. background-color: transparent;
  6969. text-align: left;
  6970. font-size: 18px; }
  6971. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  6972. padding: 1em 0 0 0; }
  6973. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  6974. background-color: transparent;
  6975. border: none; }
  6976. .page-cart-checkout-review table.order-review-table td.title-col {
  6977. padding: 0;
  6978. text-align: left; }
  6979. .page-cart-checkout-review table.order-review-table td.data-col {
  6980. padding: 0;
  6981. width: 75%; }
  6982. .page-cart-checkout-review table.order-review-table .review-button-row {
  6983. border: none;
  6984. background-color: transparent; }
  6985. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  6986. padding: 3em 0 0 0; }
  6987. .page-cart-checkout-review table.order-review-table .review-button-row form {
  6988. margin: 0 0.5em 0 0;
  6989. display: moz-inline-stack;
  6990. display: inline-block;
  6991. vertical-align: top;
  6992. zoom: 1;
  6993. *display: inline; }
  6994. .page-cart-checkout-review #edit-actions {
  6995. border: 0px;
  6996. background-color: transparent;
  6997. text-align: right; }
  6998. .page-cart-checkout-review input.form-submit {
  6999. font-size: 16px;
  7000. font-weight: bold;
  7001. padding: 0.1em 0.3em 0.2em;
  7002. border-radius: 0.3em;
  7003. background-clip: padding-box;
  7004. border: 2px solid #ccc;
  7005. background-color: #ccc;
  7006. color: #4D4D4D;
  7007. cursor: pointer;
  7008. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7009. transition: text-shadow 0.3s ease-out;
  7010. text-align: center;
  7011. text-decoration: none;
  7012. margin-left: 1em; }
  7013. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  7014. text-shadow: 0 0 3px white; }
  7015. .page-cart-checkout-review input.form-submit:active {
  7016. transition: text-shadow 0s ease-out;
  7017. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7018. .page-cart-checkout-review input.form-submit#edit-submit {
  7019. font-size: 16px;
  7020. font-weight: bold;
  7021. padding: 0.1em 0.3em 0.2em;
  7022. border-radius: 0.3em;
  7023. background-clip: padding-box;
  7024. border: 2px solid #ccc;
  7025. background-color: #ccc;
  7026. color: #4D4D4D;
  7027. cursor: pointer;
  7028. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7029. transition: text-shadow 0.3s ease-out;
  7030. text-align: center;
  7031. text-decoration: none;
  7032. cursor: pointer;
  7033. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7034. transition: text-shadow 0.2s ease-out;
  7035. border-color: #69CDCF;
  7036. background-color: #69CDCF;
  7037. color: #fff; }
  7038. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7039. text-shadow: 0 0 3px white; }
  7040. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7041. transition: text-shadow 0s ease-out;
  7042. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2); }
  7043. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  7044. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7045. .page-cart-checkout-review input.form-submit#edit-submit:active {
  7046. transition: text-shadow 0s ease-out;
  7047. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7048. /*
  7049. ____ _____ ____ _____ _____ _____ _____ _____ _____ _____
  7050. | \| | \| _ | |_ _| | | | | __|
  7051. | | |- -| | | | --| | | |- -| | | | | __|
  7052. |____/|_____|____/|__|__|_____| |_| |_____|__ _|_____|_____|
  7053. |__|
  7054. */
  7055. #didactique-page .node-didactique {
  7056. border-radius: 5px;
  7057. background-clip: padding-box;
  7058. background-color: #FFF;
  7059. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7060. max-width: 850px;
  7061. font-size: 14px;
  7062. background-color: #fff;
  7063. margin: 1em auto;
  7064. padding: 1em; }
  7065. #didactique-page .node-didactique .field-name-field-emvideo {
  7066. margin: 1em 0; }
  7067. #didactique-page .node-didactique .field-name-title-field {
  7068. font-size: 24px;
  7069. font-weight: 900;
  7070. font-style: italic;
  7071. padding: 5px 0; }
  7072. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  7073. max-width: 100%; }
  7074. @media only screen and (min-width: 40.063em) {
  7075. #didactique-page .side {
  7076. display: moz-inline-stack;
  7077. display: inline-block;
  7078. vertical-align: top;
  7079. zoom: 1;
  7080. *display: inline;
  7081. vertical-align: top; }
  7082. #didactique-page .group-sideleft {
  7083. width: 60%; }
  7084. #didactique-page .group-sideright {
  7085. width: 39%; } }
  7086. /*
  7087. _ _ _ _____ _____ _ _ _ _____ _____ _____ _____
  7088. | | | | | | | | | | | __| | _ | __ | __|
  7089. | | | | | | | | | | | __| | | -| __|
  7090. |_____|__|__|_____| |_____|_____| |__|__|__|__|_____|
  7091. */
  7092. @media only screen and (max-width: 40em) {
  7093. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  7094. display: none; } }
  7095. /*
  7096. _ _
  7097. _____ ___|_|___| |_ ___ ___ ___ ___ ___ ___
  7098. | | .'| | | _| -_| | .'| | _| -_|
  7099. |_|_|_|__,|_|_|_|_| |___|_|_|__,|_|_|___|___|
  7100. */
  7101. .maintenance-page #container, .maintenance-page #header {
  7102. text-align: center;
  7103. padding: 0;
  7104. position: relative; }
  7105. .maintenance-page #main {
  7106. background-color: transparent; }
  7107. .maintenance-page #header h1.site-name {
  7108. font-size: 36px;
  7109. margin: 0;
  7110. padding-left: 0; }
  7111. .maintenance-page h2.site-slogan {
  7112. font-size: 16px;
  7113. font-weight: 300;
  7114. margin: 0;
  7115. line-height: 1.1; }
  7116. /*
  7117. _____ _____ _____
  7118. | __| _ | |
  7119. | __| | | |
  7120. |__| |__|__|__ _|
  7121. |__|
  7122. */
  7123. .page-faq-page #main {
  7124. background: #fff url("../img/bg-faq.png") no-repeat bottom right; }
  7125. #content .faq-content .faq-description {
  7126. font-size: 12px;
  7127. padding-bottom: 2em; }
  7128. #content .faq-content ul.faq-ul-questions-top {
  7129. margin: 0; }
  7130. #content .faq-content ul.faq-ul-questions-top li {
  7131. list-style: none; }
  7132. #content .faq-content ul.faq-ul-questions-top li a {
  7133. font-size: 18px;
  7134. font-weight: 500; }
  7135. #content .faq-content h3.faq-header {
  7136. font-size: 20px;
  7137. font-weight: 700;
  7138. line-height: 1.2;
  7139. margin: 0; }
  7140. #content .faq-content h3.faq-header a {
  7141. color: #000; }
  7142. #content .faq-content .faq-dl-hide-answer {
  7143. padding: 0; }
  7144. #content .faq-content .faq-category-group {
  7145. padding-bottom: 1em; }
  7146. #content .faq-content .faq-question-answer {
  7147. padding: 0.3em 0 0 0.8em; }
  7148. #content .faq-content .faq-question-answer .faq-question {
  7149. font-size: 16px;
  7150. padding: 0;
  7151. font-weight: 500; }
  7152. #content .faq-content .faq-question-answer .faq-question a {
  7153. color: #000; }
  7154. #content .faq-content .faq-question-answer .faq-answer {
  7155. padding: 0;
  7156. margin-bottom: 2em;
  7157. font-size: 12px; }
  7158. #content .faq-content .field-name-body img {
  7159. max-width: 50%;
  7160. height: auto; }
  7161. /*
  7162. __ __ _ _____
  7163. / / / /___ ____ ___ ___ | | / /__ / /_/ / __ \/ __ `__ \/ _ \ | | / /__/ /
  7164. / __ / /_/ / / / / / / __/ | |/ // __/
  7165. /_/ /_/\____/_/ /_/ /_/\___/ |___//____/
  7166. */
  7167. body.home-v2 #center {
  7168. background-color: transparent;
  7169. padding: 0; }
  7170. #home-v2 h2 {
  7171. font-size: 2.1em;
  7172. font-weight: 300; }
  7173. #home-v2 a {
  7174. color: #000; }
  7175. #home-v2 .field-name-field-liens {
  7176. margin-top: 1em; }
  7177. #home-v2 .field-name-field-liens .field-item {
  7178. display: moz-inline-stack;
  7179. display: inline-block;
  7180. vertical-align: top;
  7181. zoom: 1;
  7182. *display: inline;
  7183. margin: 0 0.5em 0.5em 0; }
  7184. #home-v2 .field-name-field-liens a {
  7185. font-weight: 700;
  7186. display: moz-inline-stack;
  7187. display: inline-block;
  7188. vertical-align: top;
  7189. zoom: 1;
  7190. *display: inline;
  7191. padding: 0.5em 1em 0.7em;
  7192. border-radius: 5px;
  7193. background-clip: padding-box;
  7194. background-color: rgba(255, 255, 255, 0.8); }
  7195. body.logged-in #home-v2 .field-name-field-liens a.visitor {
  7196. display: none; }
  7197. body.not-logged-in #home-v2 .field-name-field-liens a.member {
  7198. display: none; }
  7199. #home-v2 .panel-separator {
  7200. clear: both; }
  7201. #home-v2 > .panel-panel > div > .panel-pane {
  7202. overflow: hidden; }
  7203. #home-v2 > .panel-panel > div > .panel-pane.pane-node {
  7204. border-radius: 5px;
  7205. background-clip: padding-box;
  7206. overflow: hidden; }
  7207. #home-v2 > .panel-panel > div > .panel-pane.pane-node .pane-content, #home-v2 > .panel-panel > div > .panel-pane.pane-node .node {
  7208. position: relative;
  7209. width: 100%;
  7210. height: 100%;
  7211. overflow: hidden; }
  7212. #home-v2 > .panel-panel > div > .panel-pane.pane-node .links a {
  7213. background-color: rgba(255, 255, 255, 0.7);
  7214. border-radius: 5px;
  7215. background-clip: padding-box;
  7216. padding: 15px; }
  7217. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7218. height: auto;
  7219. background-color: #f7f4ed;
  7220. margin-top: 2em;
  7221. margin-bottom: 2em;
  7222. padding-top: 0; }
  7223. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7224. margin: 0 auto; }
  7225. @media only screen and (max-width: 40em) {
  7226. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7227. width: 320px;
  7228. height: 180px; } }
  7229. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7230. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7231. width: 640px;
  7232. height: 360px; } }
  7233. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  7234. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7235. width: 800px;
  7236. height: 450px; } }
  7237. @media only screen and (min-width: 90.063em) {
  7238. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-field-emvideo .embedded-video {
  7239. width: 1024px;
  7240. height: 576px; } }
  7241. #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 {
  7242. width: 100%;
  7243. height: 100%; }
  7244. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-title-field {
  7245. display: none; }
  7246. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body {
  7247. margin-top: 1em;
  7248. text-align: center; }
  7249. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7250. text-align: left;
  7251. display: moz-inline-stack;
  7252. display: inline-block;
  7253. vertical-align: top;
  7254. zoom: 1;
  7255. *display: inline;
  7256. width: 35%;
  7257. margin-left: 2%;
  7258. font-size: 0.756em; }
  7259. @media only screen and (max-width: 40em) {
  7260. #home-v2 > .panel-panel > div > .panel-pane.intro-video .field-name-body p {
  7261. width: 100%;
  7262. text-align: center; } }
  7263. @media only screen and (max-width: 40em) {
  7264. #home-v2 > .panel-panel > div > .panel-pane.intro-video {
  7265. margin-top: 0.5em; } }
  7266. #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 {
  7267. margin: 2em 0; }
  7268. #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 {
  7269. margin: 0px;
  7270. text-align: center; }
  7271. #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 {
  7272. margin: 0 1em 0 0;
  7273. padding: 0px;
  7274. list-style: none;
  7275. height: 2.5em;
  7276. display: moz-inline-stack;
  7277. display: inline-block;
  7278. vertical-align: top;
  7279. zoom: 1;
  7280. *display: inline; }
  7281. #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 {
  7282. background-color: #4d4d4d;
  7283. border-radius: 5px;
  7284. background-clip: padding-box;
  7285. padding: 5px 12px 7px;
  7286. color: #f7f4ed;
  7287. font-size: 18px;
  7288. font-weight: 500;
  7289. transition: opacity,background-color 0.2s ease-out; }
  7290. #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"] {
  7291. background-color: #e6de1c;
  7292. cursor: pointer;
  7293. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7294. transition: text-shadow 0.2s ease-out; }
  7295. #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 {
  7296. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7297. #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 {
  7298. transition: text-shadow 0s ease-out;
  7299. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7300. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7301. padding: 2em 0;
  7302. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  7303. text-align: center; }
  7304. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .pane-content {
  7305. display: moz-inline-stack;
  7306. display: inline-block;
  7307. vertical-align: top;
  7308. zoom: 1;
  7309. *display: inline;
  7310. text-align: left; }
  7311. #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 {
  7312. font-weight: 900;
  7313. font-style: italic;
  7314. padding: 5px 0;
  7315. margin: 0;
  7316. line-height: 1;
  7317. display: moz-inline-stack;
  7318. display: inline-block;
  7319. vertical-align: top;
  7320. zoom: 1;
  7321. *display: inline;
  7322. vertical-align: middle; }
  7323. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h2 {
  7324. font-size: 24px; }
  7325. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register h3 {
  7326. font-size: 16px; }
  7327. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register form {
  7328. margin: 0 1em;
  7329. padding: 0px;
  7330. display: moz-inline-stack;
  7331. display: inline-block;
  7332. vertical-align: top;
  7333. zoom: 1;
  7334. *display: inline;
  7335. vertical-align: middle; }
  7336. #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 {
  7337. margin: 0;
  7338. position: relative;
  7339. display: moz-inline-stack;
  7340. display: inline-block;
  7341. vertical-align: top;
  7342. zoom: 1;
  7343. *display: inline;
  7344. vertical-align: middle; }
  7345. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-account {
  7346. margin-right: 5px; }
  7347. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7348. font-size: 12px;
  7349. border-radius: 5px;
  7350. background-clip: padding-box;
  7351. margin-bottom: 4px; }
  7352. .ie8 #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register input.form-text {
  7353. margin-right: 5px; }
  7354. #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 {
  7355. width: 11em; }
  7356. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-item-pass input.form-text {
  7357. width: 7em; }
  7358. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check {
  7359. position: absolute;
  7360. bottom: 100%;
  7361. z-index: 9999;
  7362. background-image: none;
  7363. height: auto;
  7364. padding: 5px;
  7365. border-radius: 5px;
  7366. background-clip: padding-box;
  7367. margin-bottom: 10px;
  7368. font-size: 10px;
  7369. background-color: #fff;
  7370. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  7371. transition: bottom 0.1s ease-out; }
  7372. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.error {
  7373. background-color: #f3968d;
  7374. color: #fff; }
  7375. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-mail-check.ok {
  7376. display: none; }
  7377. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .form-submit {
  7378. font-size: 16px;
  7379. padding: 0.1em 0.6em 0.2em;
  7380. border-radius: 0.3em;
  7381. background-clip: padding-box;
  7382. font-weight: bold;
  7383. margin-bottom: 4px; }
  7384. #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 {
  7385. margin-bottom: 0;
  7386. display: block;
  7387. line-height: 1; }
  7388. #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 > * {
  7389. display: moz-inline-stack;
  7390. display: inline-block;
  7391. vertical-align: top;
  7392. zoom: 1;
  7393. *display: inline;
  7394. vertical-align: middle;
  7395. margin: 0; }
  7396. #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 {
  7397. font-size: 10px;
  7398. background-color: #fff;
  7399. border-radius: 3px;
  7400. background-clip: padding-box; }
  7401. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit {
  7402. border: 2px solid #69CDCF;
  7403. background-color: #69CDCF;
  7404. color: #fff;
  7405. cursor: pointer;
  7406. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7407. transition: text-shadow 0.2s ease-out; }
  7408. #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 {
  7409. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7410. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit:active {
  7411. transition: text-shadow 0s ease-out;
  7412. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7413. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-register-form .form-submit[disabled] {
  7414. background-color: #ddd;
  7415. border: 2px solid #ddd; }
  7416. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit {
  7417. border: 2px solid #E6DE1C;
  7418. background-color: #E6DE1C;
  7419. color: #fff;
  7420. cursor: pointer;
  7421. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7422. transition: text-shadow 0.2s ease-out; }
  7423. #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 {
  7424. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7425. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #user-login .form-submit:active {
  7426. transition: text-shadow 0s ease-out;
  7427. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7428. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register #edit-simplenews {
  7429. display: none; }
  7430. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join {
  7431. display: moz-inline-stack;
  7432. display: inline-block;
  7433. vertical-align: top;
  7434. zoom: 1;
  7435. *display: inline;
  7436. vertical-align: middle;
  7437. margin: 0 1em;
  7438. font-size: 16px;
  7439. padding: 0.1em 0.3em 0.2em;
  7440. border-radius: 0.3em;
  7441. background-clip: padding-box;
  7442. font-weight: bold;
  7443. border: 2px solid #69CDCF;
  7444. background-color: #69CDCF;
  7445. color: #fff;
  7446. cursor: pointer;
  7447. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7448. transition: text-shadow 0.2s ease-out;
  7449. text-align: center;
  7450. text-decoration: none; }
  7451. #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 {
  7452. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8); }
  7453. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register a.join:active {
  7454. transition: text-shadow 0s ease-out;
  7455. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }
  7456. @media only screen and (max-width: 40em) {
  7457. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register {
  7458. background-position: 160% 50%;
  7459. min-height: 60px;
  7460. padding: 15px 0; }
  7461. #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 {
  7462. width: 7em; } }
  7463. #home-v2 > .panel-panel > div > .panel-pane.pane-materio-user-user-register .message-error {
  7464. color: #b94a48;
  7465. font-size: 12px; }
  7466. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7467. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7468. transition: box-shadow 0.3s ease-out;
  7469. height: 450px;
  7470. margin-top: 15px;
  7471. background-color: #fff;
  7472. position: relative; }
  7473. #home-v2 > .panel-panel > div > .panel-pane.showroom:hover {
  7474. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7475. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content {
  7476. width: 100%;
  7477. height: 100%;
  7478. position: relative; }
  7479. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .node {
  7480. position: absolute;
  7481. height: 100%;
  7482. width: 100%; }
  7483. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7484. position: absolute;
  7485. width: 100%;
  7486. height: 100%;
  7487. overflow: hidden; }
  7488. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau img {
  7489. width: 100%;
  7490. margin-top: -10%; }
  7491. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7492. position: relative;
  7493. z-index: 2;
  7494. width: 30%;
  7495. margin: 3em 2em; }
  7496. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content {
  7497. background-color: rgba(255, 255, 255, 0.8);
  7498. padding: 1em;
  7499. border-radius: 5px;
  7500. background-clip: padding-box; }
  7501. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-title-field {
  7502. font-size: 2.1em;
  7503. font-weight: 300; }
  7504. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .group-content .field-name-body {
  7505. margin-top: 0.5em; }
  7506. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7507. content: url("../img/bulle.png");
  7508. -webkit-transform: scale(0.8);
  7509. transform: scale(0.8);
  7510. position: absolute;
  7511. bottom: -120px;
  7512. right: -20px;
  7513. z-index: 10; }
  7514. @media only screen and (max-width: 40em) {
  7515. #home-v2 > .panel-panel > div > .panel-pane.showroom {
  7516. margin-top: 10px; }
  7517. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .field-name-field-bandeau {
  7518. position: absolute;
  7519. width: 400%;
  7520. height: 100%;
  7521. overflow: hidden; }
  7522. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper {
  7523. width: auto;
  7524. padding: 2%;
  7525. margin: 2%; }
  7526. #home-v2 > .panel-panel > div > .panel-pane.showroom .pane-content .group-content-wrapper .field-name-body {
  7527. font-size: 0.756em;
  7528. margin-top: 0.5em; }
  7529. #home-v2 > .panel-panel > div > .panel-pane.showroom:after {
  7530. opacity: 0.4; } }
  7531. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7532. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7533. transition: box-shadow 0.3s ease-out;
  7534. height: 450px;
  7535. margin-top: 30px;
  7536. background-color: #FFF;
  7537. position: relative; }
  7538. #home-v2 > .panel-panel > div > .panel-pane.bdd:hover {
  7539. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7540. #home-v2 > .panel-panel > div > .panel-pane.bdd .links a {
  7541. background-color: #e6e6e6; }
  7542. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7543. display: moz-inline-stack;
  7544. display: inline-block;
  7545. vertical-align: top;
  7546. zoom: 1;
  7547. *display: inline;
  7548. width: 60%;
  7549. height: 100%;
  7550. overflow: hidden; }
  7551. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau img {
  7552. max-width: 2000px; }
  7553. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7554. display: moz-inline-stack;
  7555. display: inline-block;
  7556. vertical-align: top;
  7557. zoom: 1;
  7558. *display: inline;
  7559. width: 35%;
  7560. padding: 1em;
  7561. border-radius: 5px;
  7562. background-clip: padding-box; }
  7563. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-title-field {
  7564. font-size: 2.1em;
  7565. font-weight: 300; }
  7566. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-body {
  7567. margin-top: 1em; }
  7568. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper .field-name-field-liens a {
  7569. background-color: rgba(230, 230, 230, 0.8); }
  7570. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7571. content: url("../img/boule.png");
  7572. -webkit-transform: scale(0.8);
  7573. transform: scale(0.8);
  7574. position: absolute;
  7575. bottom: -50px;
  7576. left: -50px; }
  7577. @media only screen and (max-width: 40em) {
  7578. #home-v2 > .panel-panel > div > .panel-pane.bdd {
  7579. height: auto; }
  7580. #home-v2 > .panel-panel > div > .panel-pane.bdd .field-name-field-bandeau {
  7581. width: 100%;
  7582. display: block;
  7583. height: 310px;
  7584. overflow: hidden; }
  7585. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper {
  7586. display: block;
  7587. width: 100%;
  7588. z-index: 1;
  7589. padding: 0; }
  7590. #home-v2 > .panel-panel > div > .panel-pane.bdd .group-content-wrapper > * {
  7591. padding: 1em; }
  7592. #home-v2 > .panel-panel > div > .panel-pane.bdd:after {
  7593. opacity: 0.6;
  7594. z-index: 0; } }
  7595. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7596. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7597. transition: box-shadow 0.3s ease-out;
  7598. position: relative;
  7599. height: 300px;
  7600. margin-top: 30px;
  7601. background-color: #000;
  7602. color: #FFF; }
  7603. #home-v2 > .panel-panel > div > .panel-pane.formations:hover {
  7604. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7605. #home-v2 > .panel-panel > div > .panel-pane.formations a {
  7606. color: #FFF; }
  7607. #home-v2 > .panel-panel > div > .panel-pane.formations .node {
  7608. padding: 0 0 0 30%;
  7609. width: 70%; }
  7610. #home-v2 > .panel-panel > div > .panel-pane.formations .node:before {
  7611. content: " ";
  7612. background: transparent url("../img/formations.png") no-repeat center center;
  7613. background-clip: padding-box;
  7614. background-size: contain;
  7615. position: absolute;
  7616. left: 0;
  7617. z-index: 2;
  7618. width: 30%;
  7619. height: 100%; }
  7620. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper {
  7621. padding: 1em;
  7622. position: relative; }
  7623. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-title-field {
  7624. font-size: 2.1em;
  7625. font-weight: 300; }
  7626. #home-v2 > .panel-panel > div > .panel-pane.formations .group-content-wrapper .field-name-body {
  7627. margin-top: 1em; }
  7628. @media only screen and (max-width: 40em) {
  7629. #home-v2 > .panel-panel > div > .panel-pane.formations {
  7630. height: auto; } }
  7631. #home-v2 > .panel-panel > div > .panel-pane.services {
  7632. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7633. transition: box-shadow 0.3s ease-out;
  7634. background-color: #FFF;
  7635. height: 300px;
  7636. margin-top: 30px; }
  7637. #home-v2 > .panel-panel > div > .panel-pane.services:hover {
  7638. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7639. #home-v2 > .panel-panel > div > .panel-pane.services .node {
  7640. padding: 0 30% 0 0;
  7641. width: 70%; }
  7642. #home-v2 > .panel-panel > div > .panel-pane.services .node:before {
  7643. content: " ";
  7644. background: transparent url("../img/services.png") no-repeat center center;
  7645. background-clip: padding-box;
  7646. background-size: contain;
  7647. position: absolute;
  7648. right: 0;
  7649. z-index: 2;
  7650. width: 30%;
  7651. height: 100%; }
  7652. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper {
  7653. padding: 1em;
  7654. position: relative; }
  7655. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-title-field {
  7656. font-size: 2.1em;
  7657. font-weight: 300; }
  7658. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-body {
  7659. margin-top: 1em; }
  7660. #home-v2 > .panel-panel > div > .panel-pane.services .group-content-wrapper .field-name-field-liens a {
  7661. background-color: rgba(230, 230, 230, 0.8); }
  7662. @media only screen and (max-width: 40em) {
  7663. #home-v2 > .panel-panel > div > .panel-pane.services {
  7664. height: auto; } }
  7665. #home-v2 > .panel-panel > div > .panel-pane.publication {
  7666. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7667. transition: box-shadow 0.3s ease-out;
  7668. position: relative;
  7669. margin-top: 30px;
  7670. padding: 1em;
  7671. background-color: #000;
  7672. border-radius: 10px;
  7673. background-clip: padding-box; }
  7674. #home-v2 > .panel-panel > div > .panel-pane.publication:hover {
  7675. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7676. #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 {
  7677. color: #fff; }
  7678. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7679. display: moz-inline-stack;
  7680. display: inline-block;
  7681. vertical-align: top;
  7682. zoom: 1;
  7683. *display: inline;
  7684. width: 30%; }
  7685. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row h1 {
  7686. display: none; }
  7687. @media only screen and (max-width: 40em) {
  7688. #home-v2 > .panel-panel > div > .panel-pane.publication .view-publication-home-v2 .views-row {
  7689. display: block;
  7690. width: 90%;
  7691. margin-bottom: 1em; } }
  7692. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7693. background-color: #e6e6e6;
  7694. border-radius: 10px;
  7695. background-clip: padding-box;
  7696. margin-top: 30px;
  7697. padding-top: 1em;
  7698. padding-bottom: 1em;
  7699. position: relative; }
  7700. #home-v2 > .panel-panel > div > .pane-news-home-v2 h2 {
  7701. font-size: 30px; }
  7702. @media only screen and (min-width: 40.063em) {
  7703. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper {
  7704. width: 100%;
  7705. margin-left: auto;
  7706. margin-right: auto;
  7707. margin-top: 0;
  7708. margin-bottom: 0;
  7709. max-width: 80rem; }
  7710. #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 {
  7711. content: " ";
  7712. display: table; }
  7713. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper:after {
  7714. clear: both; }
  7715. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7716. overflow: hidden;
  7717. padding-left: 0.9375rem;
  7718. padding-right: 0.9375rem;
  7719. width: 33.33333%;
  7720. float: left;
  7721. padding: 0em;
  7722. margin-left: 1em; }
  7723. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel.panel-col-first {
  7724. width: auto; }
  7725. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel:not(.panel-col-first) {
  7726. width: 31%; }
  7727. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7728. margin: 0; }
  7729. #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 {
  7730. margin: 0;
  7731. height: 610px; } }
  7732. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom {
  7733. width: 100%;
  7734. margin-left: auto;
  7735. margin-right: auto;
  7736. margin-top: 0;
  7737. margin-bottom: 0;
  7738. max-width: 80rem;
  7739. margin-top: 1.5em;
  7740. margin-bottom: 1.5em; }
  7741. #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 {
  7742. content: " ";
  7743. display: table; }
  7744. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom:after {
  7745. clear: both; }
  7746. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom > .inside {
  7747. padding-left: 0.9375rem;
  7748. padding-right: 0.9375rem;
  7749. width: 100%;
  7750. float: left; }
  7751. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom p {
  7752. display: none; }
  7753. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes {
  7754. margin: 0 0 0.5em 0; }
  7755. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-checkboxes .form-item {
  7756. display: moz-inline-stack;
  7757. display: inline-block;
  7758. vertical-align: top;
  7759. zoom: 1;
  7760. *display: inline;
  7761. margin-right: 1em; }
  7762. #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 {
  7763. vertical-align: middle; }
  7764. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .panel-col-bottom .form-item-mail {
  7765. display: moz-inline-stack;
  7766. display: inline-block;
  7767. vertical-align: top;
  7768. zoom: 1;
  7769. *display: inline;
  7770. margin: 0; }
  7771. #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 {
  7772. display: moz-inline-stack;
  7773. display: inline-block;
  7774. vertical-align: top;
  7775. zoom: 1;
  7776. *display: inline;
  7777. margin-right: 1em; }
  7778. #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 {
  7779. display: moz-inline-stack;
  7780. display: inline-block;
  7781. vertical-align: top;
  7782. zoom: 1;
  7783. *display: inline; }
  7784. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews {
  7785. border-radius: 5px;
  7786. background-clip: padding-box;
  7787. background-color: #FFF;
  7788. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7789. transition: box-shadow 0.3s ease-out;
  7790. overflow: hidden;
  7791. position: relative;
  7792. margin: 7px; }
  7793. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a {
  7794. position: absolute;
  7795. bottom: 0;
  7796. width: 100%;
  7797. background-color: #FFF;
  7798. text-align: center; }
  7799. #home-v2 > .panel-panel > div > .pane-news-home-v2 .node-simplenews > a h1 {
  7800. padding: 10px;
  7801. margin: 0;
  7802. font-size: 1em; }
  7803. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7804. content: url("../img/point.png");
  7805. position: absolute;
  7806. bottom: 20px;
  7807. right: 10px; }
  7808. @media only screen and (max-width: 40em) {
  7809. #home-v2 > .panel-panel > div > .pane-news-home-v2 {
  7810. background-color: transparent; }
  7811. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel {
  7812. width: 100%; }
  7813. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .inside {
  7814. margin: 0; }
  7815. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node {
  7816. max-width: 100%;
  7817. margin: 0; }
  7818. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body {
  7819. width: 100%;
  7820. padding: 0; }
  7821. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node .field-name-body p {
  7822. max-width: 100%;
  7823. padding: 1em; }
  7824. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a {
  7825. padding: 0;
  7826. display: block;
  7827. height: 100%; }
  7828. #home-v2 > .panel-panel > div > .pane-news-home-v2 #mini-panel-news_home_v2 .center-wrapper .panel-panel .node-simplenews .field-name-body a img {
  7829. max-width: 100%; }
  7830. #home-v2 > .panel-panel > div > .pane-news-home-v2:after {
  7831. z-index: -1;
  7832. opacity: 0.4; } }
  7833. #home-v2 #contact-pane {
  7834. margin: 2em 0;
  7835. padding: 1em;
  7836. background-color: #e6e6e6; }
  7837. #home-v2 #contact-pane .field-name-body {
  7838. text-align: center; }
  7839. #home-v2 #contact-pane .field-name-body p {
  7840. display: moz-inline-stack;
  7841. display: inline-block;
  7842. vertical-align: top;
  7843. zoom: 1;
  7844. *display: inline;
  7845. min-width: 20%; }
  7846. /*
  7847. _ _ _ _ _
  7848. | | | (_) | | (_)
  7849. _ __ _ _| |__ | |_ ___ __ _| |_ _ ___ _ __ ___
  7850. | '_ \| | | | '_ \| | |/ __/ _` | __| |/ _ \| '_ \/ __|
  7851. | |_) | |_| | |_) | | | (_| (_| | |_| | (_) | | | \__ | .__/ \__,_|_.__/|_|_|\___\__,_|\__|_|\___/|_| |_|___/
  7852. | |
  7853. |_|
  7854. */
  7855. body.node-type-publication article.node-publication .field figure, body.node-type-publication article.node-publication .field img {
  7856. max-width: 100%; }
  7857. @media only screen and (min-width: 64.063em) {
  7858. body.node-type-publication article.node-publication .field {
  7859. display: moz-inline-stack;
  7860. display: inline-block;
  7861. vertical-align: top;
  7862. zoom: 1;
  7863. *display: inline; }
  7864. body.node-type-publication article.node-publication .field-name-field-couverture {
  7865. width: 25%; }
  7866. body.node-type-publication article.node-publication .field-name-body {
  7867. margin-left: 1em;
  7868. width: 70%; } }
  7869. /*
  7870. __ ___
  7871. / |/ /__ ______________ _____ ____ _____
  7872. / /|_/ / _ \/ ___/ ___/ __ `/ __ `/ _ \/ ___/
  7873. / / / / __(__ |__ ) /_/ / /_/ / __(__ )
  7874. /_/ /_/\___/____/____/\__,_/\__, /\___/____/
  7875. /____/
  7876. */
  7877. div.messages {
  7878. padding: 9px;
  7879. margin: 0.5em 0 0;
  7880. color: #3a87ad;
  7881. background: #d9edf7;
  7882. border: 1px solid #bce8f1;
  7883. border-radius: 5px;
  7884. font-size: 12px; }
  7885. div.messages.warning {
  7886. color: #c09853;
  7887. background-color: #fcf8e3;
  7888. border-color: #fbeed5; }
  7889. div.messages.error {
  7890. color: #b94a48;
  7891. background-color: #f2dede;
  7892. border-color: #eed3d7; }
  7893. div.messages.status {
  7894. color: #468847;
  7895. background-color: #dff0d8;
  7896. border-color: #d6e9c6;
  7897. font-size: 14px; }
  7898. .messages-label {
  7899. display: none; }
  7900. #better-messages-wrapper {
  7901. background-color: rgba(255, 255, 255, 0.7);
  7902. padding: 10px;
  7903. border-radius: 5px;
  7904. background-clip: padding-box;
  7905. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4); }
  7906. #better-messages-wrapper #better-messages-default div.messages {
  7907. padding: 9px;
  7908. margin: 0.5em 0 0;
  7909. color: #3a87ad;
  7910. background: #d9edf7;
  7911. border: 1px solid #bce8f1;
  7912. border-radius: 5px;
  7913. font-size: 12px;
  7914. margin: 0 0 10px 0; }
  7915. #better-messages-wrapper #better-messages-default div.messages.warning {
  7916. color: #c09853;
  7917. background-color: #fcf8e3;
  7918. border-color: #fbeed5; }
  7919. #better-messages-wrapper #better-messages-default div.messages.error {
  7920. color: #b94a48;
  7921. background-color: #f2dede;
  7922. border-color: #eed3d7; }
  7923. #better-messages-wrapper #better-messages-default div.messages.status {
  7924. color: #468847;
  7925. background-color: #dff0d8;
  7926. border-color: #d6e9c6;
  7927. font-size: 14px; }
  7928. #better-messages-wrapper #better-messages-default .footer {
  7929. border: none;
  7930. padding: 0;
  7931. margin: 0; }
  7932. #better-messages-wrapper #better-messages-default .footer a.message-close {
  7933. background: #fff url("../img/close.png") no-repeat center center;
  7934. width: 15px;
  7935. height: 15px;
  7936. border-radius: 3px;
  7937. background-clip: padding-box;
  7938. display: block; }
  7939. /** Tab navigation */
  7940. /**
  7941. * icons
  7942. */
  7943. /**
  7944. * figures
  7945. */
  7946. figure figcaption {
  7947. display: none; }
  7948. figure .blank {
  7949. position: absolute;
  7950. top: 0;
  7951. left: 0;
  7952. width: 100%;
  7953. height: 100%; }
  7954. /* ==|== print styles =======================================================
  7955. Print styles.
  7956. Inlined to avoid required HTTP connection: h5bp.com/r
  7957. ========================================================================== */
  7958. a:focus {
  7959. outline: 0; }
  7960. /*
  7961. * Improves readability when focused and also mouse hovered in all browsers.
  7962. */
  7963. a:active,
  7964. a:hover {
  7965. outline: 0; }
  7966. i {
  7967. transition: color 0.3s; }
  7968. i:hover {
  7969. color: #606060;
  7970. text-shadow: 1px 4px 6px #FFF,0 0 0 #000,1px 4px 6px #FFF; }
  7971. /** COLORBOX */
  7972. #colorbox {
  7973. border-radius: 2px;
  7974. background-clip: padding-box;
  7975. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  7976. #colorbox #cboxLoadedContent {
  7977. background-color: #fff; }
  7978. /** embed player */
  7979. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7980. .embedded-video .player iframe {
  7981. max-width: 100%;
  7982. height: auto; } }
  7983. /** devel */
  7984. .not-logged-in #tasks ul.tabs.primary {
  7985. display: none; }
  7986. /*
  7987. __ _
  7988. ____ _____/ /___ ___ (_)___ ____ ___ ___ ____ __ __
  7989. / __ `/ __ / __ `__ \/ / __ \ / __ `__ \/ _ \/ __ \/ / / /
  7990. / /_/ / /_/ / / / / / / / / / / / / / / / / __/ / / / /_/ /
  7991. \__,_/\__,_/_/ /_/ /_/_/_/ /_/ /_/ /_/ /_/\___/_/ /_/\__,_/
  7992. */
  7993. #admin-menu {
  7994. top: 0; }