/* Feuille de style du Turfu */

/* Classe de page logo */
.logo {
	padding: 1em 0 0 1em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align:left;
}

	.logo img {
		height: 10em;
	}

	.logo a:hover {
		border-bottom: 0;
	}

/* Classe de haut de page */
.haut_de_page {
	overflow: hidden;
	padding: 0.5em 0 0.5em 0;

	text-align: right;
	font-size: 0.8em;
	line-height: 1em;

	color: rgba(255, 255, 255, 0.8);

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

	.haut_de_page ul {
		margin-top: 1em;
		margin-right: 1.5em;
	}

	.haut_de_page li {
		display: inline-block;
		list-style: none;
		margin-left: 1em;
		padding-left: 1em;
	}
	
	.haut_de_page a {
		color: rgba(255, 255, 255, 0.8);
	}

		.haut_de_page a:hover {
			color: #74D14C;
		}

/* Classe de la navigation sur telephone */
	.nav_gauche {
		visibility: hidden;
		position: fixed;
		top: 0px;
		left: -270px;
		color: rgba(255, 255, 255, 0.6);
		height: 100%;
		transition-duration: 0.6s;
	}
	
	.bouton_switch {
		cursor: pointer;
	}

	.bouton_switch input { 
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		width: 0;
		height: 0;
	}

	.navigation_complete {  /*etat par defaut*/
		position: relative;
		top: 0;
		left: 0px;
		width: 270px;
		padding: 0em 2em 0em 1em;
		height: 100%;
		background-color: black;
	}
	
	.bouton_nav {
		background-color: #e44c65;
		position: absolute;
		top: 0;
		right: -1.4em;
		padding: 0.1em 0.5em 0.2em 0.5em;
		font-size: 2em;
		z-index: 0;
	}
	
	.menu_nav {
		position: relative;
		top: 0px;
		left: 0px;
	}
	
	.navigation_complete ul {
		list-style-type: none;
	}

	.navigation_complete li {
		padding-top: 1em;
		padding-bottom: 1em;
		border-top: solid 1px rgba(255, 255, 255, 0.3);
	}

		.navigation_complete li:first-child {
			border-top: 0;
		}
