/* Bloc conteneur de tout le système d'actu */
#actu-container{
  z-index: 999;
	margin: 20px auto 20px auto;
	left: 50%;
	top: 416px;
	width: 570px;
	height: 279px;
	margin-top: -327px;
	margin-left: -135px;
	position:absolute;
}


/* Style du bouton d'affichage de l'actu */
#affiche-actu{
  /* REQUIRED */
	float: right;	 /* This make sure it stays horizontal */
	/* REQUIRED */  
	display: block;
	height: 279px;
	width: 30px;
	background: url(../../images/fond_actu_bt0.gif) no-repeat top left #ffffff;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	margin: 0 0 0 0;
}

/* Style du bloc actu */
#zone-actu{
  /* REQUIRED */
	height: 279px;	/* We need to define a height for the accordion as it stretches the width */
	/*float: right;	 This make sure it stays horizontal */
	/* REQUIRED */
	
	overflow: hidden;
	color: #444444;
	
	z-index:50;	
	
	display:none;
}

/* -------------------------------------------------------------------------- */
/* Style au survol de l'actualité */
a.actu-survol:link{
	display: block;
	width:520px;
	height:271px;
	padding:4px;
	background-color:#ffffff;
	text-decoration: none;
	
	opacity: .8; /* Standard CSS3 */
	-moz-opacity:0.8; /* Balise Mozilla */
	-khtml-opacity: 0.8; /* Balise Konqueror (Safari) */
	filter:alpha(opacity=80); /* Balise IE < 5.5 */
	filter: progid:DXImageTransform.Microsoft.alpha(opacity=80); /* Balise IE > 5.5 */ 
}

a.actu-survol:visited{
	display: block;
	width:520px;
	height:271px;
	padding:4px;
	background-color:#ffffff;
	text-decoration: none;
	
	opacity: .8; /* Standard CSS3 */
	-moz-opacity:0.8; /* Balise Mozilla */
	-khtml-opacity: 0.8; /* Balise Konqueror (Safari) */
	filter:alpha(opacity=80); /* Balise IE < 5.5 */
	filter: progid:DXImageTransform.Microsoft.alpha(opacity=80); /* Balise IE > 5.5 */ 
}

a.actu-survolhover{
	display: block;
	width:520px;
	height:271px;
	padding:4px;
	background-color:#ffffff;
	text-decoration: none;
	
	opacity: 1; /* Standard CSS3 */
	-moz-opacity:1; /* Balise Mozilla */
	-khtml-opacity: 1; /* Balise Konqueror (Safari) */
	filter:alpha(opacity=100); /* Balise IE < 5.5 */
	filter: progid:DXImageTransform.Microsoft.alpha(opacity=100); /* Balise IE > 5.5 */ 
}

