/* CSS Document */
a:link  {
	color:#F2F2F2;
	text-decoration: none;
} /* lien non-visité */
a:visited  {
	color:#F2F2F2;
	text-decoration: none;

}  /* lien visité */
a:hover  {
	color:#F2F2F2;
	text-decoration: underline;

} /* lien survolé */

.actualite {
	color: #FFFFFF;
	margin-right: 4px;
	margin-left: 4px;
	
} 



label {
	width:8em;
	float:left;
	text-align:right;
	padding-right:18px;
	color: #FFFFFF;

}

textarea {
	width:65%;
	height:15em;
	font-family:sans-serif;
	font-size:small;
	background:#F1EFE2;
	border:1px solid #aaa;
	padding:3px;
}

textarea.fullsize 
{
	width:98%;
	height:10em;
	font-family:sans-serif;
	font-size:small;
	background:#F1EFE2;
	border:1px solid #aaa;
	padding:3px;
}

input.textfield 
{
	width:30%;
	background:#F1EFE2;
	border:1px solid #aaa;
	padding:3px;
}

input.textfield:focus, textarea:focus
{

	background-color: #D1EFF1;
}
input.bouton 
{
	background:#F1EFE2;
	color: #000000;
	font-weight:bold;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	color: #ffffff;
}




#dewplayer
{
	position: absolute;
	
   <?php
   // récupére le scroll de la page précédente afin repositionner le player (si le paramètre est présent)
   $topPosition = 20;
   if (isset($_GET['scrollTop']))
   {
      $topPosition += $_GET['scrollTop'];
   }
   echo 'top: '.$topPosition.'px;';
   ?>
}


