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

Gestion des onglets
http://www.johnstyle.fr/langage/javascript/creer-des-onglets-facilement/

 */

a{
	text-decoration: none;
	color: #666;
}
ul, li{
	list-style: none;
}
.mon_onglet{
	float: left;
	padding: 2px 10px;
	margin-right: 5px;
	color: #333;
	border: 1px solid #bfcfda;
	cursor: pointer;
	margin-bottom: -1px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
}
.mon_onglet:hover{
	background: #bfcfda;
}
.mon_onglet_selected{
	background: #003e6d;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	color:#FFF;
	float: left;
	padding: 2px 10px;
	margin-right: 5px;
	border-top: 1px solid #bfcfda;
	border-right: 1px solid #bfcfda;
	border-left: 1px solid #bfcfda;
	border-bottom: 1px solid #bfcfda;
	cursor: pointer;
	margin-bottom: -1px;
}
.clear{
	clear: both;
}
.mon_contenu{
	color: #666;
	border: 1px solid #bfcfda;
		font-family:Arial, Helvetica, sans-serif;
	font-size:10px;

	padding: 10px;
}
#mes_contenus, #mes_onglets{
	width: 300px;
}
#bloc{
	margin-top: 10px;
}
#mes_contenus2, #mes_onglets2{
	width: 300px;
}
