/* --- STYLES DE BASE --- */

/* - version 1.2.0 :
	modification couleur menu,bouton,label,lien en vert foncé
*/


/* Page */
html {
  font-size: 100%; /* Évite un bug d'IE 6-7. (1) */
}

body {
	margin: 0;
  	padding: 0; 
	background-color:white;	
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
	text-align: left;
	font-size: .8em; 
  	line-height: 1.2; 
  	color: black;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
  margin:0;
  line-height: 1.2;
  font-style: normal;
}
h1, h2, h3{
	font-family: 'NeoSansRegular', 'Arial';
}
h1 {
  font-size: 1.75em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.25em;
}
h4 {
  font-size: 1em;
}

/* Listes */
ul, ol {
  margin: .75em 0 .75em 32px;
  padding: 0;
}

/* Paragraphes */
p {
  margin: .75em 0; /* Marges plus faibles que par défaut. (7) */
}
address {
  margin: .75em 0;
  font-style: normal;
}

/* Liens */
a:link,a:active,a:visited  {
    color: #95BF0D;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Pas de bordure autour des images dans les liens */
a img {
  border: none;
}

/* Divers éléments de type en-ligne (8) */
em {
  font-style: italic;
}
strong {
  font-weight: bold;
}

/************** Mise en forme élements générique formulaire *****/

/* Formulaires */
form, fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

/* CSS Label */
label { 
    color: #95BF0D;
	font-weight: bold;	
}

/* CSS FieldSet */
fieldset  {
	position:relative; /* Positionnement de la légende */
    border: 2px #E5E5E5 solid;
    margin: 5px;
    padding: 10px;
}
fieldset legend {
	font-family: 'NeoSansRegular', 'Arial';
    margin-bottom: 10px;
	margin: 0;
	padding: 0;
	font-weight: bold;
}

/* CSS Select */
select{
	border: 1px solid #999;
    background-color: #ffffff;
    width: 100%;
    color:#72736D;
}
select option{
	color: #72636D;
}

select option:hover{
	background: #ACD622;/* ca marche pas */
}

select optgroup{
	font-style : italic;
	font-weight:bold;
	color: #95BF0D;
}

/* CSS Input */
input, button, select {
  vertical-align: middle; /* Solution pb. d'alignement. (9) */
}
input, textarea{
	border: 1px solid #999;
	color:#72736D;
	background: none repeat scroll 0 0 #ffffff;
	font-size: 1em;
}
		
/* CSS Text */
input[type="text"],input[type="password"],textarea {	
	width:100%;
}

/* CSS Bouton */
input[type="submit"],input[type="reset"],input[type="button"],input[type="file"]{ /* Charte FAM */
    background: none repeat scroll 0 0 #95BF0D;
	border: 1px solid #EAEAEA;
    cursor: pointer;
	color: white;
    padding: 3px 10px 3px 10px;
    width: auto;
}

input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,input[type="file"]:hover{ /* Charte FAM */
	background-color: #ACD622;
	color:#FFFFFF;
}

/* CSS boite à cocher */
input[type="checkbox"] { /* Charte FAM */
 	border:none;
}
   
/* CSS bouton radio */
input[type="radio"]{ /* Charte FAM */
    border:none;
}
	 
/* CSS Disabled */
[disabled] { /* Texte et fond,  gris sur vert */
	border: 1px solid #EAEAEA;
    color:#72736D; /* charte graphique texte */
	background-color:#F7F7F7;
}