/* --- STYLES DE BASE --- */ 

/* Page */ 
html { 
  font-size: 100%; /* �vite un bug d'IE 6-7. (1) */ 
	/*background: #ddd url(../img/html.png);*/
} 
body { 
  font: 90% Arial, Helvetica, "Trebuchet MS", sans-serif; /* Familles g�n�riques : serif, sans-serif, cursive, fantasy & monospace */
  margin: 0; 
  padding: 1em; /* Remettre � z�ro si n�cessaire. */ 
  /* Pensez � utiliser une collection de polices (2), par ex: 
  font-family: Arial, Helvetica, FreeSans, sans-serif; */ 
  /*font-size: .8em; /* � adapter pour la police choisie. (3) */
  line-height: 1.4; /* � adapter au design. (4) */ 
  color: black; 
  background: white; 
} 
 
/* Titres */ 
h1, h2, h3, h4, h5, h6 { 
  margin: 1em 0 .5em 0; /* Rapproche le titre du texte. (5) */ 
  line-height: 1.2; 
  font-weight: bold; /* Valeur par d�faut. (6) */ 
  font-style: normal; 
} 
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 { 
  text-decoration: underline; 
} 
a:link { 
  color: #11C; 
} 
a:visited { 
  color: #339; 
} 
a:hover, a:focus, a:active { 
  color: #00F; 
} 
/* Pas de bordure pointill�e ou halo lors du clic sur un lien */ 
a:active { 
  outline: none; 
} 
/* 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; 
} 
 
/* Formulaires */ 
form, fieldset { 
  margin: 0; 
  padding: 0; 
  border: none; 
} 
input, button, select { 
  vertical-align: middle; /* Solution pb. d'alignement. (9) */ 
}
INPUT[type="text"] {
	font-size: .9em;
	height: 20px;
	width:250px;
	background-color : #F0F8FF;
	border: 1px solid #B0C4DE;
}
INPUT[type="submit"], INPUT[type="button"] {
	width:100px;
	border: 3px outset #B0C4DE;
	color : #696969;
	height:25px;
	font-weight: bold;
}
INPUT[type="checkbox"] {
	border: 0px;
	width:20px;
	padding-left: 0px; 
	margin-left: 0px; 
}

TD {
	vertical-align: top;
}
TH {
	vertical-align: top;
	text-align: right;
	color: #333333;
}

.TexteHisto {
	color: #666666;
}

.arrondi {
	border: 1px solid #B0C4DE;
	background-color: #E4EFFF;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.arrondiMaj {
	border: 1px solid #B0C4DE;
	background-color: #F5F5F5;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

ul.error_list {
	color:red;
	margin-top:0px;
}
ul.error_list li {
	margin-top:0px;
	height: 20px;
	line-height: 20px;
}
.required {
	border-color:red;
}
#ext-comp-1040{
	position: static !important;
	margin-left: 50%;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}
.x-shadow{
	display: none !important
}