@charset "UTF-8";
/* CSS Document */

.container { /* block onglet 1 */
	margin: 0px auto 10px auto;
	}

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 21px;
	border-bottom: 1px solid #8f7e6a;
	border-left: 1px solid #8f7e6a;
	width: 100%;
}

ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 20px;
	line-height: 20px;
	border: 1px solid #8f7e6a;
	border-left: none;
	margin-bottom: -1px;
	background: #cbc3ba; /* couleur onglet non sélectionné */
	overflow: hidden;
	position: relative;
}

ul.tabs li a {
	text-decoration: none;
	color: #000;
	display: block;
	/* font-size: 1.2em;*/
	font-size: 11px;
	padding: 0 20px;
	border: 1px solid #fff;
	outline: none;
}

ul.tabs li a:hover {
	background: #8f7e6a; /* couleur onglet rollover */
}	

html ul.tabs li.active, html ul.tabs li.active a:hover  {
	background: #fff;
	border-bottom: 1px solid #fff;
}

.tab_container { /* panneau */
border-top: none;
border-bottom: 1px solid #8f7e6a;
border-left: 1px solid #8f7e6a;
border-right: 1px solid #8f7e6a;
clear: both;
/*float: left; 
/*width: 100%;*/
background: #fff;

}

.tab_content { /* contenu du panneau */
	padding: 4px;
}

.tab_content img {  /* images panneau */
	float: left;
	margin: 0 20px 20px 0;
	border: 1px solid #ddd;
	padding: 5px;
}