/* CSS Document */
/********************************************************* 

Styles generaux
	background-image : 	<uri> | none;
	background-position: ;	[ [ <percentage> | <length> | left | center | right ] [ <percentage> | <length> | top | center | bottom ]? ] | [ [ left | center | right ] || [ top | center | bottom ] ]
	background-repeat: repeat | repeat-x | repeat-y | no-repeat;
********************************************************/

body {
	margin:				0px;
	padding:			0px;
	color: 				#485d79;
	font-family: 		Verdana, Tahoma, Arial, sans-serif; 
	font-size: 			10px;
	border:				0px;
	background-color:	#d6e1e5;
	background-image:url('../img/bg_page.jpg');
	background-repeat:repeat-x;
}


/* Pour IE qui ne supporte pas l'heritage (identique a body) */
TD {  
	font-family: 	Verdana, Tahoma, Arial, sans-serif; 
	font-size: 		10px; 
	text-align:		left;
}

P {
	font-family: 	Verdana, Tahoma, Arial, sans-serif; 
	font-size: 		10px; 
	text-indent: 	0px;
	white-space: 	normal;
	margin:			0px;
}
/********************************************************* 

	DIVERS 
font-family : toujours finir par une famille generique.
	Arial, sans-serif
	Courier, Monospace
	Helvetica, sans-serif
	Palatino, serif
	Times, serif
	Verdana, sans-serif
	ZapfChancery, Cursive
font-style: normal | italic | oblique
font-variant: normal | small-caps
font-weight : normal (400)| bold (700)| bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
content : 	normal | none | [ <string> | <uri> | <counter> | attr(<identifier>) | open-quote | close-quote | no-open-quote | no-close-quote
********************************************************/

.big 		{ font-size: 14px; } /* Gros Texte */
.small 		{ font-size: 10px;  } /* Petit Texte */


/*********************************************************
	Raccourcis
	Stylse specifiques
	Classifier par ordre d'importance les couleurs de la charte
	Ces styles permettront de les utiliser
********************************************************/

.color1     { color: #fff;} /* blanc( */
.color2     { color: #848181; } /* gris */
.color3     { color: #91d200; } /* green */
.color4     { color: #409c12; } /* green2 */
.color5     { color: #d52915; } /* rouge */
.color6     { color: #092559 ;} /* bleu */

.bgcolor1     { background-color: #fff; }
.bgcolor2     { background-color: #666;}
.bgcolor3     { background-color: #db0000; }
.bgcolor4     { background-color: #ea862a;}
.bgcolor5     { background-color: #febd2b; }
.bgcolor6     { background-color: #106d99; }

.border 	{ border: 1px solid #29385f; }
.noborder 	{ border: 0px; }

/* Attention, Erreurs, mises en gardes 
border-style : none,hidden,dotted,dashed,solid,double,groove,ridge,inset,outset 
border-top-style, border-right-style, border-bottom-style, border-left-style
overflow : scroll | hidden | visible | auto
*/
.warning	{
	color: 				#FF0000;
	background-color: 	#FFF7DF;
	font-weight: 		bold;
	font-size: 			12px;
}


/* Citations */
Q 			{ font-style: italic;}
 
/* Definition des caracteres de quotes (FF seulement) */
Q:lang(fr)	{quotes: '« ' ' »'; }
Q:lang(en)	{quotes: '" ' ' "'; }

Q:before 	{content : open-quote}
Q:after 	{content : close-quote}

/* A utiliser pour les acronymes en utilisant l'attribut title dans la balise pour la signification de l'acronyme (synthese vocale) */
ACRONYM {
   text-transform: uppercase
}

/* A utiliser pour les abbreviations en utilisant l'attribut title dans la balise pour la signification de l'abbreviation (synthese vocale) */
ABBR {
   text-transform: uppercase
}


/********************************************************* 
	LINKS - LIENS 
a:focus:hover { outline: thick solid black }
vertical-align : baseline | sub | super | top | text-top | middle | bottom | text-bottom | <percentage> | <length>
text-decoration : none | [ underline || overline || line-through || blink ]
white-space : normal | pre | nowrap | pre-wrap | pre-line
********************************************************/


A:link 		{text-decoration: underline; color: #d52915}
A:visited 	{text-decoration: none; color: #d52915}
A:hover 	{text-decoration: none; color: #485d79}

/********************************************************* 
	PARAGRAPHES
	(le style par defaut des paragraphes est defini au debut du doc)
********************************************************/
/* Style pour la premiere lettre */
P.lettrine:first-letter {
	font-size:			16pt; 
	vertical-align: 	text-top; 
	text-indent: 		15px;
	text-transform: 	uppercase
}

/* style specifique pour la premiere ligne d'un paragraphe */
p.lettrine:first-line { 
	font-weight: 	bold;
}



/********************************************************* 

	TABLES 
	dont on se sert comme veritables tableau pour y fair apparaiter des données.
	Ceci ne concerne pas les tableaux qui structurent la page.

********************************************************/

/* Tableau de structure */

TABLE.struct {
	border: 0px;
	margin:0px;
	padding:0px;
}




/********************************************************* 
	 Titres
	dipaly: block,inline
********************************************************/	

/* Titre de page */
H1 {
	display: 			block;
	font-size:			20px;
	color:				#485d79;
	font-weight:		bold;
	text-align: 		left;
	margin:0px;
	border-bottom:dotted 1px #485d79;
	}

/* Baseline, slogan : utilisé pour le référencement genralement dans le header */
H1.baseline {
	display:		inline;
	color: 			#fff;
	font-family: 	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		10px;
	font-weight: 	normal;
	font-style: 	normal;
	text-align: 	left;
	background: 	transparent;
	padding-left:	10px;
}

/* Titre de niveau 1 : I.,II.,III. */
H2 {
	display: 		block;
	color: 			#0A2862;
	font-family:  	Verdana, Tahoma, Arial, sans-serif;
	font-size: 		14px;
	font-weight: 	bold;
	font-style: 	normal;
	text-align: 	left;
	margin:			2px;
}

/* Titre de niveau 2 : A),B),C) */
H3 {
	display: 		block;
	color: 			#952900;
	font-family:  	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		11px;
	font-weight: 	bold;
	font-style: 	normal;
	text-align: 	left;
	margin:			0px;
}

/* Titre de niveau 3 : 1/,2/,3/ */
H4 {
	display: 		inline;
	color: 			#535353;
	font-family:  	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		11px;
	font-weight: 	bold;
	font-style: 	normal;
	text-align: 	left;
}


/*********************************************************
  FORMS - FORMULAIRES
********************************************************/

FORM {
	margin : 	0px;
	padding : 	0px;
}

/* Le titre des champs doivent se trouver dans une balise LABEL (accessibilite) */ 
LABEL {
	font-family: 	Verdana, Tahoma, Arial, sans-serif;
	font-size: 		11px;
	color:#FFFFFF;
}


/* Text Box*/
INPUT.fieldtextbox{
	border-top: 		1px solid #aabfc7;
	border-right: 		1px solid #aabfc7;
	border-bottom: 		1px solid #aabfc7;
	border-left: 		1px solid #aabfc7;
	background-color: 	#FFF;
	color:#678d78;
	font-family: 		Verdana, Tahoma, Arial, sans-serif;
	font-size: 			11px;
	padding-left: 		2px;
	padding-right: 		2px;
}

/* Check Box*/
INPUT.fieldcheckbox {
	border: 0px;
}

/* Radio Box*/
INPUT.fieldradiobox {
	border: 0px;
}

INPUT.file{
	background-color: 	#FFF;
	padding-left:		2px;
	font-family: 		Verdana, Tahoma, Arial, sans-serif;
	font-size:			9px;
}


INPUT.button, INPUT.fieldbutton {
	color: 				#678d78;
	font-family:     	Verdana, Tahoma, Arial, sans-serif;
	font-style:    		normal;
	font-weight: 		bold;
	font-size:    		10px;
	background-color:   #666;
	border-bottom: 		#000 solid 1px;
	border-right: 		#000 solid 1px;
	border-left: 		#000 solid 1px;
	border-top: 		#000 solid 1px;
	cursor: 			pointer;
}


INPUT.button:hover, INPUT.fieldbutton:hover {
	background-color:   #FFF;
	color: 				#FF7800;
}

SELECT.fieldlistbox {
	background-color:   #FFFFFF;
	color: 				#678d78;
	font-family: 		Verdana, Tahoma, Arial, sans-serif;
	font-style:    		normal;
	font-size:    		10px;
	width: 				150px;
	border-top: 		1px solid #aabfc7;
	border-right: 		1px solid #aabfc7;
	border-bottom: 		1px solid #aabfc7;
	border-left: 		1px solid #aabfc7;
}

SELECT.fieldlistbox OPTION {
	color: 				#678d78;
	font-family: 		Verdana, Tahoma, Arial, sans-serif;
	font-style:    		normal;
	font-size:        	11px;
	background-color:   #FFFFFF;
	width: 				150px;
}

TEXTAREA.fieldtextbox {
	border-top: 		1px solid #aabfc7;
	border-right: 		1px solid #aabfc7;
	border-bottom: 		1px solid #aabfc7;
	border-left: 		1px solid #aabfc7;
	background-color: 	#FFF;
	font-family: 		Verdana, Tahoma, Arial, sans-serif;
	font-size: 			11px;
	padding-left: 		2px;
}

/* Champs de formulaire inactif */
.disabled {
	visibility : 		hidden;
	color: 				#FFF;
	font-size: 			0px;
	font-family: 		Verdana, Tahoma, Arial, sans-serif;
	background-color:   transparent;
	border: 			#FFF solid 0px;
}

/* Champs de formulaire actif */
.enabled {
	visibility : 		visible;
	border-top: 		1px solid #DFDFDF;
	border-right: 		1px solid #DFDFDF;
	border-bottom: 		1px solid #DFDFDF;
	border-left: 		1px solid #DFDFDF;
	background-color: 	#FFF;
	font-family: 		Tahoma, Verdana, Arial, sans-serif;
	font-size: 			11px;
	padding-left: 		2px;
}

/* Impression */
.unprintable {
	display:	block;
}

@media print {
.unprintable { 
	display: 	none;
	visibility: hidden;
	}
}

/*********************************************************
STRUCTURE
********************************************************/

DIV#entete_haut{
background-image:url('../img/entete_haut.jpg');
background-repeat:no-repeat;
height:16px;
width:778px;
text-align:right;
color:#092559;
text-transform:uppercase;
padding-right:20px;
font-weight:bold;
}

DIV#structure{
margin-left:auto;
margin-right:auto;
width:798px;
}



/*********************************************************
NOUVEAU
********************************************************/
DIV#entete-head{
background-image:url('../img/head.jpg');
background-repeat:no-repeat;
height:93px;
width:797px;
}

DIV#menu_principal{
background-image:url('../img/menu.jpg');
background-repeat:no-repeat;
height:22px;
width:777px;
text-align:right;
color:#FFFFFF;
padding-top:10px;
padding-right:20px;
}

/*********************************************************
NOUVEAU
********************************************************/





TD.contenu{
background-image:url('../img/contenu.jpg');
background-repeat:repeat-y;
width:798px;
}



DIV#fond_contenu{
background-image:url('../img/bg_contenu.jpg');
background-repeat:repeat-x;
background-color:#FFFFFF;
width:508px;
}

DIV#contenu{
width:480px;
float:left;
margin-left:10px;
margin-top:10px;
float:left;}

DIV#bas{
background-image:url('../img/bg_bas.jpg');
background-repeat:no-repeat;
width:798px;
height:23px;
float:left;
color:#FFFFFF;}



DIV.sep_bleu{
background-image:url('../img/sep_bleu.gif');
background-repeat:repeat-x;
height:5px;}


DIV#menu_principal A {
	color: 			#ffffff;
	font-family: 	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		11px;
	font-weight: 	bold;
	text-decoration: none;
}
DIV#menu_principal A:link{
	color: 			#ffffff;
}
DIV#menu_principal A:hover{
	color: 			#ffd201;
}
DIV#menu_principal A:visited{
	color: 			#ffffff;
}

DIV#menu_principal .actif, DIV#menu_principal A.actif {
	color: 			#ffd201;
	font-family: 	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		11px;
	font-weight: 	bold;
	text-decoration: none;
}




DIV.bottom{
	background-image:url('../img/bg_bottom.jpg');
	background-repeat:no-repeat;
	width:772px;
	height:38px;
	padding-left:5px;
	padding-right:5px;
	color:#FFFFFF;
}	


.Titre_espace{
	color: 			#092559;
	font-family: 	Verdana, Tahoma, Arial, sans-serif;
	font-size: 		12px;
	font-weight: 	bold;
	letter-spacing: 2px;}

INPUT.username{
	width:119px; 
	height:12px;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
  	border-left: 1px solid #666;
	background-image:url('../img/p_username.gif');
	background-repeat:no-repeat;
	background-color:#FFFFFF;
	padding-left:20px;
	font-family:Tahoma;
	font-size:9px;
	color:#666666;
	margin-bottom:5px;
	}
	
INPUT.password{
	width:119px; 
	height:12px;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
  	border-left: 1px solid #666;
	background-image:url('../img/p_password.gif');
	background-repeat:no-repeat;
	background-color:#FFFFFF;
	padding-left:20px;
	font-family:Tahoma;
	color:#666666;
	font-size:9px;
	}

.BottomLink:link 	{text-decoration: none; color: #637682}
.BottomLink:visited {text-decoration: none; color: #637682}
.BottomLink:hover 	{text-decoration: none; color: #009ee0}

.espaceLink:link 	{text-decoration: none; color: #4b6fad}
.espaceLink:visited {text-decoration: none; color: #4b6fad}
.espaceLink:hover 	{text-decoration: none; color: #d52915}

thead td, tfoot td {
 text-align:center;
}

/* Check Boxes dans table.lst et treview */  
input.cb_rpt, div.ThemeXPTreeLevel1 input, div.ThemeXPTreeLevel0 input {
	padding: 0;
	border: 0;
	margin:0;
	width: 16px;
	height: 16px;	
}

