body {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:12px;font-style:normal;
line-height:normal;color:#000000;
text-decoration:none;
padding:0px;
margin:0px;
background-color:#6F6F6F;
scrollbar-face-color:#EFFBF9;
scrollbar-track-color:#CCCCCC;
scrollbar-arrow-color:#FF0000;
}

h1 {
line-height:normal;
padding:0px;
margin:0px;color:#F08800;
font-size:25px;
text-align:center
}

a {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight: bold;
font-size:13px;
font-style:normal;
line-height:normal;
color:#FF0000;
text-decoration:none;
}

a.copyright {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight: bold;
font-size:9px;
font-style:normal;
line-height:normal;
color:#F08800;
text-decoration:none;
}

a.body {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-weight: bold;
font-size:13px;
font-style:normal;
line-height:normal;
color:#000000;
text-decoration:none;
}



table {
border-style:collapse;
border-width:0px;
padding:0px;
border-collapse:collapse;
}

.tarifs{
border-style:solid;
border-width:2px;
border-color:#F08800;
border-style:dotted;
text-align :center;
font-size: 12px;
}

td {

border-style:solid;
border-width:0px;
valign:top;
padding:0px;
}

td.body {

border-style:solid;
border-width:0px;
valign:top;
padding:5px;
}


p {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:13px;
font-style:normal;
line-height:normal;
color:#000000;
text-decoration:none;
}

p.copyright  {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:9px;
font-style:normal;
line-height:normal;
color:#FFFFFF;
text-decoration:none;
}

p.num  {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:18px;
font-style:normal;
line-height:normal;
text-decoration:none;
}

p.siret  {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:10px;
font-style:normal;
line-height:normal;
text-decoration:none;
}

ul {
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:13px;
font-style:normal;
line-height:normal;
color:#000000;
text-decoration:none;
}


/*** Mise en forme du formulaire ***/

#inscription {
	border: none;
	margin: 0;
	padding: 0;
	width: 55em;	/*** Largeur du formulaire ***/
}

#identification {
	border: none;
	margin: 0;
	padding: 0;
	width: 30em;	/*** Largeur du formulaire ***/
}

#titreForm, #piedForm {	/*** Mise en forme du titre et du pied de formulaire ***/
	font: bold 1.1em arial, hevetica, sans-serif;
	color: white;
	background: #555;
	margin: 0;
	padding: .5em;
}
#piedForm {
	text-align: right; /*** Les boutons sont alignés à droite ***/
}
#piedForm input {
	font-weight: bold; /*** Pour améliorer la lisibilité des boutons ***/
	margin-left: 1em;
}
#corpForm {	/*** Mise en fome du corp du formulaire (bordure, couleur du fond...) ***/
	border: 1px solid #555;
	color: black;
	background: #efefef;
	margin: 0;
	padding: 1em;
}
#corpForm fieldset {	/*** Mise en forme des cadres ***/
  border: 0px ;
	margin: 0;
	font-style: normal;
	padding: 0 1em 1em;
}
#corpForm legend {	/*** Mise en forme des titres des cadres ***/
	font-weight: bold;
	color: black;
	background: transparent;
}
#corpForm p {	/*** Mise en forme des lignes du formulaire ***/
	padding: .2em 0;
	margin: 0 0 .2em 0;
}
#corpForm fieldset#infosgenerale label {	/*** Mise en forme des intitulés de champs ***/
	float: left;	/*** Très important, ne pas suprimer ! ***/
	width: 40%;	/*** Les intitulés prennent 1/3 de la largeur totale du formulaire... ***/
	text-align: right;	/*** ... et ils sont alignés à droite... ***/
	margin: 0;
	padding: 0 .5em 0 0;
	line-height: 1.8;	/*** ... et centrés verticalement. ***/
}
#corpForm fieldset#stock label {	/*** Mise en forme des intitulés de champs ***/
	float: left;	/*** Très important, ne pas suprimer ! ***/
	width: 20%;	/*** Les intitulés prennent 1/3 de la largeur totale du formulaire... ***/
	text-align: right;	/*** ... et ils sont alignés à droite... ***/
	margin: 0;
	padding: 0 .5em 0 0;
	line-height: 1.8;	/*** ... et centrés verticalement. ***/
}
#corpForm label:hover, #piedForm input {
	cursor: pointer;	/*** Petite astuce pour apprendre aux utilisateurs à cliquer sur les intitulés ***/
}
#corpForm .legende {	/*** Mise en forme des aides contextuelles ***/
	font-style: italic;
	color: #666;
	background: transparent;
	margin: 0;
	padding: 0;
}
#corpForm a.aide {	/*** Mise en forme des bulles d'aide ***/
	text-decoration: none;
}
#corpForm a.aide img {	/*** Mise en forme de l'image des bulles d'aide ***/
	margin: 0;
	padding: 0;
	border: 0;
}
#corpForm a.aide:hover {	/*** Le curseur de la souris change d'aspect quand il passe au-dessus d'une bulle d'aide ***/
	cursor: help;
}

/***** mise en forme image ombrée ***/

.shadowImage
{
  /* On met notre span en bloque */
  display:block;
 
  /* On lui applique un float left, il sort ainsi du flux standard
  et n'occupera pas toute la largeur disponible comme il l'aurait
  fait normalement */
  float:left;
 
  /* On place notre ombre en arrière plan en bas à droite */
  background: url('images/shadowAlpha-mini.png') no-repeat bottom right;
 
  /* Quelques marges pour le style... */
  margin: 10px 0 0 10px;
}
 
.shadowImage img
{
  /* On fixe notre image en format bloque */
  display: block;
 
  /* On définit sa position à relative pour plus de liberté */
  position: relative;
 
  /* Son fond est blanc pour obtenir une bordure de cette couleur*/
  background-color: #fff;
 
  /* Une autre bordure */
  border: 1px solid #a9a9a9;
 
  /* Les marges positives servent à aficher les ombres,
     les marges négative sortent l'image de son coteneur */
  margin: -6px 6px 6px -6px;
 
  /* Marge interne pour la bordure blanche */
  padding: 4px;
 
}

