/* Mise en page des onglets */
.onglets{
	margin: 0px;
	padding: 0px;
	border-bottom:1px solid #3D98B5;
}
.ong_actif {
	margin: 0px;
	padding: 0px 0px 0px 35px;
	width:130px;
	height:21px;
	background-image:url("../_images/fond_menuTop.png");
	background-repeat:no-repeat;
	background-position:left;
	color:#FFFFFF;
	text-decoration: none;
	font-weight:bold;
}
.ong_passif {
	margin: 0px;
	padding: 0px 0px 0px 35px;
	width:130px;
	height:21px;
	background-image:url("../_images/fond_menuTop_bleu.png");
	background-repeat:no-repeat;
	background-position:left;
	border-bottom:1px solid #FFFFFF;
}
.ong_passif a {
	color:#464648;
	text-decoration: none;
	font-weight:lighter;
	display:block;
}
.ong_passif a:hover{
	background-color:#FFFFFF;
	color:#FF6600;  orange 
	text-decoration: none;
	font-weight:bold;
}
/* Structure des cadres */
.bord_gauche {
	background-image:url('../_images/cadre-presentation-gauche.png');
	background-repeat:repeat-y;
	background-position:left;
	width:10px;
}
.coin_gauche {
	background-image:url('../_images/cadre-presentation-coin-g.png');
	background-repeat:no-repeat;
	width:10px;
	height:10px;
}
.bord_bas {
	background-image:url('../_images/cadre-presentation-bas.png');
	background-repeat:repeat-x;
	background-position:bottom;
	height:10px;
}
.coin_droit {
	background-image:url('../_images/cadre-presentation-coin-d.png');
	background-repeat:no-repeat;
	width:10px;
	height:10px;
}
.bord_droit {
	background-image:url('../_images/cadre-presentation-droite.png');
	background-repeat:repeat-y;
	background-position:right;
	width:10px;
}
/* style textarea */
.description_txt{
	height:170px;
	width:100%;
	overflow:auto;
	background-color:#FFFFFF;
}

/* Code HTML
			<div class="onglets">
				<table width="100%" border="0" cellpadding="0" cellspacing="0">
					<tr>
						<td class="ong_passif"><a href="#">Description</a></td>
						<td class="ong_actif"><a href="#">Plus d'info...</a></td>
						<td class="ong_passif"><a href="#">Actualit&eacute;</a></td>
						<td>&nbsp;</td>
					</tr>
				</table>
			</div>
			<div class="detail_onglets">
				<table width="100%" height="200" border="0" cellpadding="0" cellspacing="0">
					<tr>
						<td class="bord_gauche"></td>
						<td valign="top"><div style="overflow:auto; width:100%; height:170px; ">Texte dans zone avec assenceur</div></td>
						<td class="bord_droit"></td>
					</tr>
					<tr>
						<td class="coin_gauche"></td>
						<td class="bord_bas"></td>
						<td class="coin_droit"></td>
					</tr>
				</table>
			</div>

*/
