/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}


/*-------------------------
	General Styles
--------------------------*/


html{ background: url('../../img/fond.jpg') no-repeat center center fixed;
    background-size: cover;
	
}

body{
    padding: auto;
	font:14px/1.3 'Segoe UI',Arial, sans-serif;
	min-height:500px;
	text-align:center;
}

a, a:visited {
	text-decoration:none;
	outline:none;
	color:#54a6de;
}

a:hover{
	text-decoration:underline;
}
.basdepage
{
font-size:2;
display:inline-block;
overflow: hidden;
border:1px solid #000;
opacity:0.8;
background-color:#888;
 border-radius: 2em;
 padding:0 2em;
}
.depl
{
	font-size:2;
display:inline-block;
overflow: hidden;
border:1px solid #000;
opacity:0.8;
background-color:#FFF;
 border-radius: 2em;
 padding:0 2em;
	
}
section, footer, nav{
	display: block;
}


/*----------------------------
	The Navigation Menu
-----------------------------*/


.page{
	Background-color:#FFF;
	width:75%;
	min-width:730px;
	display:inline-block;
	border:1px solid black;
	margin:5px 0;
	
}
.i200{width:25%;min-width:200px;}
.hidden{display:none;}
.desc{text-align:left;
display:block;
font-size:2em;
padding-left:20px;padding-bottom:50px;}
	

.menu
{
display:inline-block;}

/*Strip the ul of padding and list styling*/
.menu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	/*position: absolute;*/
	
}

/*Create a horizontal list with spacing*/
.menu li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
.menu li a {
	display:block;
	min-width:120px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #2f3036;
	text-decoration: none;
}

/*Hover state for top level links*/
.menu li:hover a {
	/*background: #19c589;*/
	background: #0f75bc;
	font-weight:bold;
}

/*Style for dropdown links*/
.menu li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
.menu li:hover ul a:hover {
	background: #19c589;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
.meu li ul {
	display: none;
}

/*Make dropdown links vertical*/
.menu li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.menu li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 0px;
}

/*Display the dropdown on hover*/
.menu ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #19c589;
	text-align: center;
	padding: 5px 0;
	display: none;
}

/*Hide checkbox*/
.menu input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
.menu input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 740px){
.page {min-width:0px;width:100%; margin:0;border:none;}
	.menu
{
display:block;}

	/*Make dropdown links appear inline*/
	.menu ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.menu li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	.menu ul li, .menu li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}