/* 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: 				#647682;
	font-family: 		Tahoma, Verdana, Arial, sans-serif; 
	font-size: 			11px;
	border:				0px;
	background-color:	#FFFFFF;
}


/* Pour IE qui ne supporte pas l'heritage (identique a body) */
TD {  
	font-family: 	Tahoma, Verdana, Arial, sans-serif; 
	font-size: 		11px; 
}

P {
	font-family: 	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		11px;
	text-indent: 	0px;
	white-space: 	normal;
	margin:			0px;
	float: none;
}
/********************************************************* 

	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: #666; } /* gris */
.color3     { color: #ce2f00; } /* red */
.color4     { color: #633b1b; } /* brun */
.color5     { color: #f26600; } /* orange */
.color6     { color: #106d99 ;} /* 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: none; color: #ce2f00}
A:visited 	{text-decoration: none; color: #ce2f00}
A:hover 	{text-decoration: none; color: #633b1b}

/********************************************************* 
	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;
	color: 				#633b1b;
	font-family:		Tahoma, Verdana, Arial, sans-serif;
	font-size: 			18px;
	text-align: 		left;
	margin-bottom:		8px;
	height:				30px;
	letter-spacing: 	2px;
}

/* 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: 			#f26600;
	font-family:  	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		12px;
	font-weight: 	bold;
	font-style: 	normal;
	text-align: 	left;
	margin:			0px;
}

/* Titre de niveau 2 : A),B),C) */
H3 {
	display: 		block;
	color: 			#633b1b;
	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: 			#717171;
	font-family:  	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		11px;
	font-weight: 	bold;
	font-style: 	normal;
	text-align: 	left;
	padding-left:	25px;
	text-transform:	uppercase;
}


/********************************************************* 
	LISTE
	
********************************************************/
/* Liste a puce de contenu NIV 1 */
UL {
	list-style-position: 	outside; /* outside, inside */
	list-style-image:		url('/skins/vandoeuvre/images/puce01.gif');
	font-size:				11px;
	font-family:			Tahoma, Verdana, Arial, sans-serif;
	line-height: 			14px;
	padding-left:       	20px;
	color:					#717171;
	margin:					0px;
}

/* Liste a puce de contenu NIV 2 */
UL LI UL {
	list-style-position: 	outside; /* outside, inside */
	list-style-image:		url('/skins/vandoeuvre/images/puce02.gif');
	font-size:				11px;
	font-family:			Tahoma, Verdana, Arial, sans-serif;
	line-height: 			14px;
	padding-left:       	20px;
	font-weight: 			normal;
	color:					#717171;
	margin:					0px;
}

/* Liste a puce de contenu NIV 3 */
UL LI UL LI UL {
	list-style-position: 	outside; /* outside, inside */
	list-style-image:		url('/skins/vandoeuvre/images/puce03.gif');
	font-size:				11px;
	font-family:			Tahoma, Verdana, Arial, sans-serif;
	line-height: 			14px;
	padding-left:       	20px;
	font-weight: 			normal;
	color:					#717171;
	margin:					0px;
}

/* Liste numerotee de contenu NIV 1 */
OL {
	list-style-type: upper-roman; 
}
/* Liste numerotee de contenu NIV 2 */
OL LI OL {
	list-style-type: upper-alpha; 
}

/* Liste numerotee de contenu NIV 3 */
OL LI OL LI OL {
	list-style-type: decimal; 
}

/*********************************************************
  FORMS - FORMULAIRES
********************************************************/

FORM {
	margin : 	0px;
	padding : 	0px;
}

/* Le titre des champs doivent se trouver dans une balise LABEL (accessibilite) */ 
LABEL {
	font-family: 	Tahoma, Verdana, Arial, sans-serif;
	font-size: 		11px;
}


/* Text Box*/
INPUT.fieldtextbox{
	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;
	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: 		Tahoma, Verdana, Arial, sans-serif;
	font-size:			9px;
}


INPUT.button, INPUT.fieldbutton {
	color: 			#f26600;
	font-family:     	Tahoma, Verdana, Arial, sans-serif;
	font-style:    		normal;
	font-weight: 		bold;
	font-size:    		10px;
	background-color:   	#FFF;
	border-bottom: 		#999 solid 1px;
	border-right: 		#999 solid 1px;
	border-left: 		#999 solid 1px;
	border-top: 		#999 solid 1px;
	cursor: 			pointer;
}


INPUT.button:hover, INPUT.fieldbutton:hover {
	background-color:   #FFF;
	color: 				#ce2f00;
}

SELECT.fieldlistbox {
	background-color:   #FFFFFF;
	color: 				#000000;
	font-family: 		Tahoma, Verdana, Arial, sans-serif;
	font-style:    		normal;
	font-size:    		10px;
	width: 				150px;
	border-top: 		1px solid #DFDFDF;
	border-right: 		1px solid #DFDFDF;
	border-bottom: 		1px solid #DFDFDF;
	border-left: 		1px solid #DFDFDF;
}

SELECT.fieldlistbox OPTION {
	color: 				#000000;
	font-family: 		Tahoma, Verdana, Arial, sans-serif;
	font-style:    		normal;
	font-size:        	11px;
	background-color:   #FFFFFF;
	width: 				150px;
}

TEXTAREA.fieldtextbox {
	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;
}

/* Champs de formulaire inactif */
.disabled {
	visibility : 		hidden;
	color: 				#FFF;
	font-size: 			0px;
	font-family: 		Tahoma, Verdana, 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;
	}
}



/********************************************************* 
	STRUCTURES
	(style des tableaux de structure (header, menu, colonne)
********************************************************/

			/********************************************************* 
				ACCUEIL et HEADER
			********************************************************/
			
			/* fond header */
			DIV.bg_header {
				background-image:	url('/skins/vandoeuvre/images/bg_header.jpg');
				background-repeat:	no-repeat;
				margin:0px;
				padding:0px;
				}
			/* fond colonne de gauche */
			TD.bg_left { 
				background-image:	url('/skins/vandoeuvre/images/bg_left.jpg');
				background-repeat:	no-repeat;
				width:567px;
				margin:0px;
				padding:0px;
				}
			/* fond colonne de droite */
			TD.bg_right { 
				background-image:	url('/skins/vandoeuvre/images/bg_right.jpg');
				background-repeat:	repeat-y;
				width:208px;
				border-left:solid 1px #633b1b;
				margin:0px;
				padding:0px;
				}
			/* fond menu principal */
			TD.bg_menu { 
				background-image:	url('/skins/vandoeuvre/images/bg_menu.jpg');
				background-repeat:	no-repeat;
				height:25px;
				background-position:right;
				width:762px;
				margin:0px;
				padding:0px;
				}
			/* fond recherche */
			TD.bg_recherche { 
				height:31px;
				margin:0px;
				padding:0px;
				}
			/* zone texte recherche */
			INPUT.search{
				border-top: 		1px solid #DFDFDF;
				border-right: 		1px solid #DFDFDF;
				border-bottom: 		1px solid #DFDFDF;
				border-left: 		1px solid #DFDFDF;
				color:				#999999;
				background-color: 	#FFF;
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			11px;
				background-image:	url('/skins/vandoeuvre/images/p_lope.gif');
				background-repeat:	no-repeat;
				padding-left:		20px;
				padding-right:		5px;
				background-position:2px 2px;
				}
			/* fond bouton home */
			TD.bg_home { 
				background-image:	url('/skins/vandoeuvre/images/bg_bhome.gif');
				background-repeat:	no-repeat;
				height:23px;
				}

			/* couleur menu principal */

			DIV#menu_principal {
				height:23px;
				text-transform: uppercase;
				font-family: Tahoma, Verdana, Arial, sans-serif; 
				font-size: 11px; 
				padding-left: 16px;
				padding-top: 2px;
				vertical-align: bottom;
			}
			
			DIV#menu_principal A:link {
				color: #ce2f00; 
				text-decoration: none; 
				font-weight: normal;
			}
			
			DIV#menu_principal A:active {
				color: #ce2f00; 
				text-decoration: none; 
				font-weight:normal;
			}
			
			DIV#menu_principal A:visited {
				color: #ce2f00; 
				text-decoration: none; 
				font-weight:normal;
			}
			
			DIV#menu_principal A:hover {
				color: #633b1b; 
				text-decoration: none;
				border-bottom:solid 2px #ce2f00;
				font-weight:normal;
			}

			/* liens blanc*/
			.link_blanc:link 		{text-decoration: none;  color: #fff;}
			.link_blanc:visited 	{text-decoration: none;  color: #633b1b;}
			.link_blanc:hover 		{text-decoration: none;  color: #633b1b;}




			/********************************************************* 
				COLONNE DROITE
			********************************************************/
			/* fond titre rubrique colonne droite*/
			DIV.bg_rub{
				background-color:	#ce2f00;
				height:				38px;
				width:				194px;				
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			18px;
				color:				#FFFFFF;
				padding-top:		10px;
				}

			/* fond menu vertical niv 1 colonne droite*/
			TD.bg_menuver01{
				background-image:	url('/skins/vandoeuvre/images/bg_menu_ver.gif');
				background-repeat:	no-repeat;
				height:				22px;
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			11px;
				color:				#6c0006;
				padding-left:		20px;
				}
			TD.bg_menuver01 A:link{
				color:				#6c0006;
				}			
			TD.bg_menuver01 A:hover{
				color:				#ce2f00;
				}			
			/*  menu vertical niv 2 colonne droite*/
			TD.menuver02{
				background-image:	url('/skins/vandoeuvre/images/sep_verpoint01.gif');
				background-position:bottom;
				background-repeat:	no-repeat;
				height:				22px;
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			11px;
				color:				#666;
				padding-left:		30px;
				}
			TD.menuver02 A:link{
				color:				#666;
				}			
			TD.menuver02 A:hover{
				color:				#999;
				}	
			/* BG Tableau annuaire (Pair et Impair)*/						
				TR.odd TD {
				background-color:#ffefd7;
				border-bottom:solid 1px #666;
				height:27px;
				}
		
				TR.even TD {
				background-color:#fff;
				border-bottom:solid 1px #666;
				height:27px;
				}
			/* fond bouton colonne droite*/
			DIV.bg_b_right{
				background-color:	#FFFFFF;
				border-bottom:		solid 1px #647682;
				border-top:			solid 1px #647682;
				height:				38px;
				width:				194px;
				margin-bottom:		3px;				
				}

			/* zone texte identifiant */
			INPUT.ident{
				border-top: 		1px solid #DFDFDF;
				border-right: 		1px solid #DFDFDF;
				border-bottom: 		1px solid #DFDFDF;
				border-left: 		1px solid #DFDFDF;
				color:				#666;
				background-color: 	#FFF;
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			11px;
				background-image:	url('/skins/vandoeuvre/images/p_ident.gif');
				background-repeat:	no-repeat;
				padding-left:		20px;
				padding-right:		5px;
				background-position:2px 2px;
				margin-bottom:		5px;
				margin-top:			5px;
				}
			/* zone texte mot de passe */
			INPUT.pass{
				border-top: 		1px solid #DFDFDF;
				border-right: 		1px solid #DFDFDF;
				border-bottom: 		1px solid #DFDFDF;
				border-left: 		1px solid #DFDFDF;
				color:				#666;
				background-color: 	#FFF;
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			11px;
				background-image:	url('/skins/vandoeuvre/images/p_pass.gif');
				background-repeat:	no-repeat;
				padding-left:		20px;
				padding-right:		5px;
				background-position:2px 2px;
				margin-bottom:		5px;
				}
			/* titre acces */
			.Title_acces{
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			13px;
				color:				#ce2f00;
				}

			/* fond a ne pas manquer*/
			DIV.bg_manquer{
				background-color:	#ed7341;
				border-bottom:		solid 1px #633b1b;
				border-top:			solid 1px #633b1b;
				width:				194px;
				margin-bottom:		3px;	
				margin-top:			5px;			
				}
			/* titre ne pas manquer */
			.Title_manquer{
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			13px;
				font-weight:		bold;
				color:				#fff;
				}
			/* titre zoom */
			.Title_zoom{
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			15px;
				color:				#ce2f00;
				}
			/* titre acces */
			.Title_accesrap{
				font-family: 		Tahoma, Verdana, Arial, sans-serif;
				font-size: 			15px;
				color:				#633b1b;
				}
			/* fond interieur a ne pas manquer*/			
			TD.bg_manquer{
				background-color:	#ffefd7;			
				color:				#633b1b;
			}
			/* fond zoom top*/
			TD.bgzoomtop{
			background-image:	url('/skins/vandoeuvre/images/bg_zoomtop.gif');
			height:				40px;
			background-repeat:	no-repeat;

			}

			/* fond zoom middle*/
			TD.bgzoommiddle{
			background-image:	url('/skins/vandoeuvre/images/bg_zoommiddle.gif');
			background-repeat:	repeat-y;
			}

			/* fond zoom bottom*/
			TD.bgzoombottom{
			background-image:	url('/skins/vandoeuvre/images/bg_zoombottom.gif');
			background-repeat:	no-repeat;
			height:				40px;
			}
			/* separation zoom horizontale */
			TD.zoomsepver{
			background-image:	url('/skins/vandoeuvre/images/sep_verpoint01.gif');
			background-repeat:	repeat-x;
			height:				1px;
			}
			
			DIV.zoomsepver{
			background-image:	url('/skins/vandoeuvre/images/sep_verpoint01.gif');
			background-repeat:	repeat-x;
			height:				1px;
			}
			
			/* liens brun*/
			.link_brun:link 		{text-decoration: none;  color: #633b1b;}
			.link_brun:visited 		{text-decoration: none;  color: #ce2f00;}
			.link_brun:hover 		{text-decoration: none;  color: #ce2f00;}

			/* liens gris*/
			.link_gris:link 		{text-decoration: none;  color: #666;}
			.link_gris:visited 		{text-decoration: none;  color: #666;}
			.link_gris:hover 		{text-decoration: none;  color: #666; font-weight: bold; text-decoration:underline}




/********************************************************* 
	BOTTOM
********************************************************/			
			/* fond bas de page*/
			DIV.bottom{
			background-image:	url(/skins/vandoeuvre/images/bg_bottom.gif);
			height:				66px;
			background-repeat:	no-repeat;
			border-bottom:		solid 1px #633b1b;
			border-top:			solid 1px #633b1b;
			}
			
			


/********************************************************* 
	CONTENU COLONNE GAUCHE
********************************************************/			
			/* cellule couleur bleu vert*/		
			.coul_01{
			background-color:#00978f;
			width:5px;
			}				
			/* cellule couleur jaune*/		
			.coul_02{
			background-color:#edb500;
			width:5px;
			}				
			/* cellule couleur rose*/		
			.coul_03{
			background-color:#ff01f0;
			width:5px;
			}	
			/* cellule couleur red*/		
			.coul_04{
			background-color:#db0000;
			width:5px;
			}				
			/* cellule couleur vert*/		
			.coul_05{
			background-color:#519700;
			width:5px;
			}				
			/* cellule couleur orange*/		
			.coul_06{
			background-color:#ff6d01;
			width:5px;
			}				
			/* cellule couleur violet*/		
			.coul_07{
			background-color:#9f44a6;
			width:5px;
			}

			/* */		
			.coul_08{
			background-color:#8f9700;
			width:5px;
			}
			/* */		
			.coul_09{
			background-color:#00b5ed;
			width:5px;
			}
			/* */		
			.coul_10{
			background-color:#f001ff;
			width:5px;
			}
			/* */		
			.coul_11{
			background-color:#0000db;
			width:5px;
			}
			/* */		
			.coul_12{
			background-color:#009751;
			width:5px;
			}
			/* */		
			.coul_13{
			background-color:#016dff;
			width:5px;
			}
			/* */		
			.coul_14{
			background-color:#a6449f;
			width:5px;
			}
			
			/* separation colonne*/				
			TD.sep_col{
			background-image:url('/skins/vandoeuvre/images/sep_col.gif');
			background-repeat:repeat-y;
			width:12px;
			
			}
			/* fond actu et agenda*/			
			TD.bg_actu{
			background-color:	#ffefd7;			
			}			
			/* titre actu et agenda*/					
			.TitreActu{
			color: 				#f26600;
			font-family:		Tahoma, Verdana, Arial, sans-serif;
			font-weight:		bold;
			font-size: 			16px;
			text-align: 		left;
			margin-bottom:		8px;
			height:				20px;
			letter-spacing: 	2px;
			}
			/* fond box question top*/			
			TD.bg_question_top{
			background-image:url('/skins/vandoeuvre/images/bgtop_question.gif');
			background-repeat:no-repeat;
			height:28px;
			width:258px;}
			
			/* fond box question middle*/			
			TD.bg_question_middle{
			background-image:url('/skins/vandoeuvre/images/bgmiddle_question.gif');
			background-repeat:repeat-y;
			width:258px;}
						
			/* fond box question bottom*/			
			TD.bg_question_bottom{
			background-image:url('/skins/vandoeuvre/images/bgbottom_question.gif');
			background-repeat:no-repeat;
			height:12px;
			width:258px;}			
				
			.Titre_question{
			color: 				#ce2f00;
			font-family:		Tahoma, Verdana, Arial, sans-serif;
			font-weight:		bold;
			font-size: 			14px;
			text-align: 		left;
			margin-bottom:		8px;
			height:				20px;
			letter-spacing: 	2px;
			padding-left:		35px;
			}			
			
			/* fond titre box services*/			
			TD.bg_titreservice{
			background-image:url('/skins/vandoeuvre/images/bg_services.gif');
			background-repeat:no-repeat;
			height:32px;
			}
			/* fond titre box services*/			
			TR.bg_service{
			background-image:url('/skins/vandoeuvre/images/bg_services02.jpg');
			background-repeat:no-repeat;
			background-position:bottom;
			}
			
			DIV#contenu {
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 4px;
	padding-bottom: 4px;
	background-color: #FFFFFF;
			}
			
			DIV#content {
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 0px;
	padding-bottom: 4px;
	width: auto;
	background-color: #FFFFFF;
	position: relative;
			}
			
			
			DIV#breadcrumb {
				margin-top: 8px;
			}
			
			DIV#footer {
				padding: 12px;
				text-align: center;
			}
			
			DIV#footer A:link {
				color: #ce2f00;
				text-decoration: none;
				text-transform : uppercase;
			}
			
			DIV#footer A:visited {
				color: #ce2f00;
				text-decoration: none;
				text-transform : uppercase;
			}
			
			DIV#footer A:active {
				color: #ce2f00;
				text-decoration: none;
				text-transform : uppercase;
			}
			
			DIV#footer A:hover {
				color: #633b1b;
				text-decoration: none;
				text-transform : uppercase;
				border-bottom: 2px solid #ce2f00;
			}

                        CAPTION {
                        color:                  #f26600;
                        font-family:            Tahoma, Verdana, Arial, sans-serif;
                        font-weight:            bold;
                        font-size:              14px;
                        }
.coordList {
	width: 550px;

}
/* CSS Document */

#content .subHeader {
}
DIV#formulairevideo {
	padding-left: 10px;
	padding-right: 4px;
	padding-top: 0px;
	padding-bottom: 4px;
	width: auto;
	background-image:url(bcground.JPG)
	float: left;
}

DIV#messagevideo {
	background-color: #FFFFFF;
	font-size: 14px;
	text-align: center;
}
