* {
	margin: 0;
	padding: 0;
	
}

body {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
	 font-weight: 300;
	 -webkit-font-smoothing: antialiased;
	font-size: 11pt;
	color: white;
/* 	min-width: 1000px; */
}

a {
	text-decoration: none;
	color: inherit;
}

#logo {
	background-image: url(../img/logo_enfin_leve.png);
	width: 142;
	height: 29;
	position: fixed;
	top: 20px;
	left: 20px;
	cursor: pointer;
}

#logo-black {
	background-image: url(../img/logo_enfin_leve_black.png);
	width: 142;
	height: 29;
	position: fixed;
	top: 20px;
	left: 20px;	
	cursor: pointer;
}

/* menu */

nav {
	position: fixed;
	top: 15px;
	right: 20px;
	text-align: center;
}

nav ul ul {
	display: none;
}

nav ul li:hover > ul {
	display: block;
}


nav ul {
	list-style: none;
	position: relative;
	display: inline-table;
}

nav li {
	width: 130px;
}

nav ul:after {
	content: ""; clear: both; display: block;
}

nav ul li {
	float: left;
}
	
nav a:hover {
	font-weight: bold;
}

nav ul li a {
	display: block; 
	text-transform: uppercase;
	padding-bottom: 10px;
	
}
			
nav ul ul {
	position: absolute; top: 100%;
	background-color: rgba(1, 1, 1, 0.8);
}

nav ul ul li {
	float: none; 
	position: relative;
	padding: 10px 0px; 
}

nav ul ul li a {
	font-size: 10pt;
	padding-bottom: 0px;
	
}

nav ul ul li a.inactive {
	color: gray;
}

nav ul ul li a.inactive:hover {
	font-weight: normal;
}

/* left & right arrows */

#left-nav {
	width: 18px;
	height: 37px;
	background-image: url(../img/scroll-left.png);
	cursor: pointer;				
}

#right-nav {
	width: 18px;
	height: 37px;
	background-image: url(../img/scroll-right.png);
	cursor: pointer;				
}

/* vimeo */

iframe {
	width: 640px;
	height: 360px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -180px;
	margin-left: -320px;
}

#overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.8);
}

#close {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -170px;
	margin-left: -310px;
	cursor: hand;
}

#cookies {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.7);
	color: black;
}	

#cookies p {
	padding: 10px;
}

#cookies p:first-child {
	float: left;
}

#cookies p:last-child {
	float: right;	
}

#cookies a {
	color: #084c98;
}

