/* Main container for form */
div.form-container { 
width: 500px; 
padding: 5px; 
border: #EEE 1px solid; 
margin-left: 20px;}

div.form-container form p { 
margin: 0; }

div.form-container form fieldset { 
margin: 10px 0; 
padding: 10px; 
border: #DDD 1px solid; 
border-bottom: 0;
background: transparent;}

/* Legend definition */

div.form-container form legend { 
font-weight: bold; 
color: #666; }

/* Fieldset definition */ 

div.form-container form fieldset div { 
padding: 0.2em 0; }

/* Label, textarea and other content of form */

div.form-container label, div.form-container span.label { 
margin-right: 10px; 
padding-right: 10px; 
width: 80px; 
display: block; 
float: left; 
text-align: right; 

color:#295098; }

div.form-container label.error, div.form-container span.error { 
color: #C00; }

div.form-container label em, div.form-container span.label em { 
font-size: 130%; 
font-style: normal; 
color: #C00; 
}

div.form-container input.error { 
border-color: #C00; 
background-color: #FEF; }

div.form-container input:focus, div.form-container input.error:focus, div.form-container textarea:focus {	
background-color: #FFC; border-color: #FC6; }

/* Button of form */

div.form-container div.buttonrow { 
text-align: center;}

/* Input required and disabled for the validation with the javascript */

div.form-container input.disabled {
border: 2px solid #F2F2F2;
background-color: #F2F2F2; }

div.form-container input.required, textarea.required {
border: 2px solid #00A8E6;
}

/* In case of failed validation by the javascript */

div.form-container input.validation-failed, div.form-container textarea.validation-failed {
border: 2px solid #FF3300;
color : #FF3300; }

/* If validation passed by the javascript */

div.form-container input.validation-passed {
border: 2px solid #00CC00;
color : #009900; 
background: transparent url(../images/ok.gif)  no-repeat top right; }


div.form-container .validation-advice {
margin: 5px 0;
font-size: 90%;
color : #fff;	
text-align: center;
font-weight: bold;
border: #FF0000 solid 1px;
background: #900 url(../images/cancel.gif) no-repeat center right;}

/* Basic definition for form elements */

fieldset {
padding: 1em;
margin-bottom: 0.5em;}

label {
font-weight: bold;}

.form-row {
clear: both;
padding: 0.5em;
}

/*cnil text definition */

.cnil {
font-family:Georgia, "Times New Roman", Times, serif;
font-size:10px;
color:#295098;}