body {
	text-align: center;
	font-family:Arial,Helvetica,Geneva,Swiss,SunSans-Regular;
	/*	font-weight:100; */
}

/******************* HEADER ********************************/
#header table
{
	margin:0px;
	padding:0px;
	border:0px;
	text-align:center;
	line-height:12px;
}

#header table p
{
	margin:0px;
	padding:0px;
	font-size:12px;
	line-height:12px;
	text-align:center;
	color:#000000;
}

#header img {
	border:0px;
	padding:0px;
	margin:0px;
}


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

 LAYOUT INFORMATION: describes box model, positioning, z-order

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

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: 100%;
	background-color:#C77B5A;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: auto;
	float: left;
	border-left:1px solid #ffffff;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	z-index: 1020;
	cursor: default;
	width: 140px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 140px;
	border-bottom:1px solid #ffffff;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 0 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
}

ul.MenuBarHorizontal ul a
{
	font-weight:100;
/*	margin:0px;
	padding:0px;	*/
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #004b78;
/*	padding: 0.5em 0.75em;	*/
	padding-bottom:3px;
	padding-top:2px;
	padding-left: 15px;
	padding-right:25px;
	color: #ffffff;
	text-decoration: none;
	font-weight:bold;
	margin:0;
}

ul.MenuBarHorizontal ul a
{
	padding-bottom:3px;
	padding-top:2px;
	padding-left:15px;
	padding-right:0px;
}

ul.MenuBarHorizontal ul ul a
{
	padding-bottom:3px;
	padding-top:2px;
	padding-left:5px;
	padding-right:0px;
}


/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #cccccc;
	color: #000000;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #cccccc;
	color: #000000;
}

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

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

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

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(../images/icon/SpryAssets/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(../images/icon/SpryAssets/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(../images/icon/SpryAssets/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(../images/icon/SpryAssets/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

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

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

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

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}

/******************* COLUMN-LEFT-MENU ********************************/

#column-left-menu {
	color:#666666;
	font-family:Arial,Helvetica,Geneva,Swiss,SunSans-Regular;
	font-size:12px;
	line-height:12px;
	padding:0;
	margin: 30px 0 30px 10px;
	border:1px solid #004b78;
	background-color:#eaedfd;		
}

#column-left-menu a {

	color:#666666;
	padding:0px;
	margin:0px;
	text-decoration:none;
}

#column-left-menu a:hover{
	color:#cc6611;
}

#column-left-menu h2 {
	text-align:left;
	background-image:url(../images/style/h2-menu-bgr.gif);
	background-position:left;
	background-repeat:repeat-x;
	color:#ffffff;
	font-size:14px;
	line-height:20px;
	margin-top:0px;
	margin-bottom:0px;
	margin:0px;
	padding-left:5px;
	padding-top:0px;
}

#column-left-menu table {
	width:100%;
	text-align:center;
}

#column-left-menu ul {
	list-style:none;
	margin:0px;
	padding:0px;
	padding-top:7px;
	padding-bottom:7px
}

#column-left-menu ul li {
	font-weight:bold;
	padding-left:14px;
	padding-top:3px;
	padding-bottom:3px;
}

#column-left-menu li ul {
	list-style:none;
	margin:0px;
	margin-left:0px;
	padding:0px;
	margin-top:0px;
	margin-bottom:0px;
	padding-top:3px
}

/******************* COLUMN-RIGHT ********************************/

#column-right {
	color:#666666;
	font-family:Arial,Helvetica,Geneva,Swiss,SunSans-Regular;
	font-size:12px;
	line-height:14px;
	font-weight:100;
}

#column-right a {
	color:#9C3000;
	padding:0px;
	margin:0px;
	text-decoration:none;

}

#column-right a:hover{
	color:#cc6611;
}

#column-right ul {
	list-style:none;
	margin:0px;
	margin-left:0px;
	padding:0px;
}

#column-right li {
	margin-top:7px;
	font-weight:100;
}

#column-right h2 {
	font-weight:400;
	padding:0px;
	text-align:left;			  
	font-size:12px;
	line-height:21px;
	font-weight:bold;
	margin:0px;
	padding:0 0 0 5px;
	color:#FFFFFF;
}
#column-right h2 a{
color:#FFFFFF;
}

#column-right h2 a:hover{
color:#000000;
}

#column-right h3 {
  	font-size:14px;
  	text-align:left;
	color:#666666;
	margin-top:20px;
	margin-bottom:0px;
	padding:0px;
	line-height:16px;
}

#column-right p {
	margin-left:0px;
	margin-right:5px;
	padding:0px;
}

#column-right .box-right p{
	padding:0px;
	margin:0px;
	margin-bottom:5px;
	margin-top:5px;
	margin-left:5px;
}

column-right table p {
	margin-bottom:0px;
	margin-left:2px;
	font-size:12px;
	line-height:14px;
}

/******************* CONTENT ********************************/

INPUT {
     font-size:11px;
     font-family:arial;
}

form{
	margin:0px;
	padding:0px;
	text-align:center;	

}
form table{
	margin:0px;
	padding:0px;
}


.formulaire {
/*	width:500px;*/
	color:#660000;
  	text-align:left;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:15px;
	margin:0px;
	padding:0px;	
}

.formulaire td p{
	font-size:10px;
	line-height:10px;
	padding:0px;
}

.content table{
	margin:0px;
	padding:0px;
	text-align:left;
}
.content table p {
	margin-bottom:0px;
	margin-left:2px;
}
.content a {
	color:#9C3000;
	padding:0px;
	margin:0px;
}

.content a:hover{
	color:#cc6611;
}

.content p img {
	border:0px;
	padding:0px;
	margin:0px;
}

.content p {
	padding:0px;
	margin-top:0px;
	margin-bottom:16px;
	text-align:justify;
}

.content  {
	color:#000000;
  	text-align:left;
	font-family:Arial,Helvetica,Geneva,Swiss,SunSans-Regular;
	font-size:12px;
	line-height:14px;
	font-weight:normal;
}

.content li {
list-style-type:square;
}

h1, .content h1 {
	font-size:22px;
	line-height:30px;
	text-align:center;
	margin-top: 25px;
	margin-bottom:30px;
	color:#666666;
	font-weight:bold;
	font-family:Times New Roman, Times, serif;
}

.content h2 {
  	font-size:14px;
  	text-align:left;
	color:#cc6611;
	margin-bottom:3px;
	margin-left:0px;
	margin-right:0px;
	margin-top:0px;
	padding:0px;
}
.content h3 {
	font-family:Arial,Helvetica,Geneva,Swiss,SunSans-Regular;
  	font-size:14px;
  	text-align:left;
	color:#cc6611;
	margin: 0 0 10px 10px;
	padding:0px;
}


.content li {
	margin-top:7px;
	font-weight:100;
}


img.img-pad3{
	margin: 0;
	padding:3px;
	border: 1px solid #ddd;
	background-color:#f0f0f0;
}

img.img-pad3-marg{
	margin: 0 15px 5px 0;
	padding:3px;
	border: 1px solid #ddd;
	background-color:#f0f0f0;
}

/******************* NOTIFICATION ********************************/

.notification {
margin:0px;
padding:0px;
width:500px;

}

.notification p {
font-size:10px;
line-height:12px;
font-style:italic;
margin-top:5px;
margin-bottom:0px;
margin-left:0px;
margin-right:0px;
padding:0px;
} 

/******************* FOOTER ********************************/

#footer {
	text-align:center;
	color:#000000;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:100;
}
#footer p {
	margin:0px;
	padding-top:8px;
	padding-bottom:0px;
	font-size:10px;
	font-weight:100;
}

#footer a {
	color:#FFFFFF;
	padding:0px;
	margin:0px;
}

#footer a:hover {
	color:#000000;
}

/******************* BOX PROMO********************************/

.box {
	color:#666666;
	font-size:12px;
	line-height:14px;
	padding:0;
	margin: 20px 0 20px 10px;
	border:1px solid #bbbbbb;
	background-color:#F0F2FF;
}

.box p {
	padding:0 4px 0 4px;
	margin:5px 0 5px 0;
}


.box h3 {
	text-align:left;
	color:#000000;
	font-size:12px;
	line-height:16px;
	padding-top:10px;
	padding-left:4px;
	padding-right:4px;
	padding-bottom:3px;
	margin:0px;
}

.box a {
	color:#666666;
	padding:0px;
	margin:0px;
	text-decoration:none;
}



.box h2 a {
	color:#FFFFFF;
	padding:0px;
	margin:0px;
	text-decoration:none;	
}

.box a:hover{
	color:#cc6611;
}

.box h2 a:hover{
	color:#000000;
}

.box h2 {
	/*width:160px;*/
	background-image:url(../images/style/h2-bgr.gif);
	background-position:left;
	background-repeat:repeat-x;
	color:#000000;
	font-size:12px;
	line-height:21px;
	margin-top:0px;
	margin-bottom:0px;
	padding-left:5px;
	padding-top:0px;
}

.box table {
	width:158px;
	margin:0px;
	padding:0px;
}

.box ul {
	list-style:none;
	margin:0px;
	margin-left:5px;
	padding:0px;
}

.box li {
	margin-top:7px;
	font-weight:100;
}

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

.boxexcept {
	color:#666666;
	font-size:12px;
	line-height:14px;
	padding-left:0px;
	padding-top:0px;
	padding-bottom:0px;
	margin-bottom:20px;
	margin-top:20px;
	margin-left:10px;
	margin-right:0px;
	border:1px solid #bbbbbb;
	background-color:#fedbdb;
}

.boxexcept h2 {
	background-image:url(../images/style/h2-except.gif);
	background-position:left;
	background-repeat:repeat-x;
	color:#ffffff;
	font-size:12px;
	font-weight:bold;
	line-height:21px;
	margin:0px;
	padding: 0 0 0 3px;
}

.boxexcept p {
	padding-top:0px;
	padding-left:4px;
	padding-right:4px;
	padding-bottom:0px;
	margin-bottom:5px;
	margin-top:5px;
}

.boxexcept a {
	color:#333;
	text-decoration:none;	
}

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

.boxcatalogue {
	color:#666666;
	font-size:12px;
	line-height:14px;
	padding-left:0px;
	padding-top:0px;
	padding-bottom:0px;
	margin-bottom:20px;
	margin-top:20px;
	margin-left:10px;
	margin-right:0px;
	background-color:#FFFFFF;
}

.boxcatalogue a {
	color:#666666;
	padding:0px;
	margin:0px;
	text-decoration:none;
}

.boxcatalogue h2 a {
	color:#FFFFFF;
	padding:0px;
	margin:0px;
	text-decoration:none;	
}

.boxcatalogue a:hover{
	color:#cc6611;
}

.boxcatalogue h2 a:hover{
	color:#000000;
}

.boxcatalogue h2 a {
	color:#FFFFFF;
	padding:0px;
	margin:0px;
	text-decoration:none;	
}

.boxcatalogue h2 {
	/*width:160px;*/
	text-align:left;
	background-image:url(../images/style/h2-bgr.gif);
	background-position:left;
	background-repeat:repeat-x;
	color:#000000;
	font-size:12px;
	line-height:21px;
	margin-top:0px;
	margin-bottom:0px;
	padding-left:5px;
	padding-top:0px;
}

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

.boxcredit {
	color:#000000;
	font-size:12px;
	line-height:14px;
	padding-left:0px;
	padding-top:0px;
	padding-bottom:0px;
	margin-bottom:20px;
	margin-top:20px;
	margin-left:20px;
	margin-right:0px;
	background-color:#FFFFFF;
}

.boxcredit p {
	padding-top:10px;
	margin:0px;
}

.boxcredit a {
	color:#9C3000;
	padding:0px;
	margin:0px;
	text-decoration:none;
}

.boxcredit a:hover{
	color:#cc6611;
}

.boxcredit h2 {
	/*width:160px;*/
	text-align:left;
/*	background-color:#004b78;
	background-color:#FFCC33; */
	color:#666666;
	font-size:12px;
	line-height:20px;
	margin-top:0px;
	margin-bottom:0px;
	padding-left:5px;
	padding:0px;
}

.boxcredit ul {
	list-style:none;
	margin:0px;
	padding:0px;
	padding-top:5px;
	padding-bottom:7px
}

.boxcredit li {
	font-weight:100;
	margin:0px;
	padding-left:20px;
	padding-top:0px;
	padding-bottom:0px;
}

/******************* BOX RIGHT********************************/

.box-right {
	color:#666666;
	font-size:12px;
	line-height:14px;
	padding-left:0px;
	padding-top:0px;
	padding-bottom:0px;
	padding-right:0px;
	margin-bottom:30px;
	margin-top:30px;
	margin-left:0px;
	margin-right:5px;
	border:1px solid #bbbbbb;	
	background-color:#F0F2FF;
}

.box-right a {
	color:#666666;
	padding:0px;
	margin:0px;
	text-decoration:none;
}

.box-right h2 a {
	color:#FFFFFF;
	padding:0px;
	margin:0px;
	text-decoration:none;
}

.box-right h2 {
	background-image:url(../images/style/h2-bgr.gif);
	background-position:left;
	background-repeat:repeat-x;
}

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

.cadre {
	border:1px solid #bbbbbb;
	margin:5px;
	padding:5px;
	/*width:auto;*/
}

.cadre-circuit {
	border:1px solid #bbbbbb;

}

.cadre-circuit h2 {
	font-size:14px;
  	text-align:left;
	color:#cc6611;
	margin:0px;
	padding-left:10px;
}

.cadre-circuit h1 {
	font-size:22px;
	line-height:30px;
	color:#666666;
	font-weight:bold;
	margin-bottom:10px;
	margin-top:0px;
}


.cadre-circuit h4, .tab_content h4  {
 	font-size:12px;
  	text-align:left;
	margin-left:16px;
	margin: 10px 0 0 25px;
	padding:0px;
	font-weight:bold;
}

.cadre-circuit p, .tab_content p {
 	padding:0px;
	padding-right:10px;	
	padding-left:10px;
	padding-top:10px;
	padding-bottom:10px;
	margin-top:0px;
	margin-bottom:0px;
	text-align:justify;
}

.cadre-circuit li, .tab_content li {
	margin-top:0px;
	font-weight:100;
	list-style:square;
	
}

.cadre-circuit ul, .tab_content ul {
	margin-top:0px;
	padding:0px;
	margin-left:40px;
	border:0px;
}


h3.h3nospace{
	font-size:14px;
  	text-align:left;
	color:#666666;
	margin:0px;
	padding:0px;
}

.jour {
	margin:0px;
	padding:0px;
	color: #FFFFFF;
	font-size: 13px;
	line-height:14px;
	font-weight: bold;	
	background-image:url(../images/style/table-jour.gif);
	background-position:left;	
	background-repeat:repeat-x;
}

table.jour {
		border: 1px solid #FFF;
		width:100%;
}

.jour  a {
	margin:0px;
	padding:0px;
	color: #FFFFFF;
	font-size: 13px;
	line-height:20px;
	font-weight: bold;
	text-decoration:none;
}

.fontblanc {
	color: #FFFFFF;
	font-size: 12px;
	line-height:16px;
	font-weight: normal;
	padding:10px;
}

table.fontblanc{
	background-image:url(../images/style/table-jour.gif);
	background-position:left;
	background-repeat:repeat-x;
	border:0;
	width:100%;
}

.actu{
	margin-top:0px;
	font-weight:100;
}

.actu li{
padding-left:1em;
margin-right:0px;
padding:0px;
}

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

.anone a{
text-decoration:none;
}

p.saison {
	color: #0033FF;
	font-size: 12px;
	margin:0 0 10px 10px;
	padding:0;
}

/* lien de l'espace espace presse  */
#CP a {
	text-decoration:none;
}
#RP a {
	text-decoration:none;
}
#DP a {
	text-decoration:none;
}

/* ************************************************* **/
/* lien imprimer*/

a.imprimer{
display: block ; /* On passe les liens en éléments de type block pour leur donner des propriétés de taille */
width: 140px ;
height: 50px ;
/*text-decoration: none ;	*/
background:url(../images/icon/imprimer.gif) no-repeat 0 0;
}

.imprimer:hover{
background:url(../images/icon/imprimer.gif) no-repeat 0 -50px;
}

/* lien devis*/

a.devis{
display: block ;  /* On passe les liens en éléments de type block pour leur donner des propriétés de taille */
width: 140px ;
height: 50px ;
/*text-decoration: none ;	*/
background:url(../images/icon/devis.gif) no-repeat 0 0;
}

.devis:hover{
background:url(../images/icon/devis.gif) no-repeat 0 -50px;
}

/* lien fiche technique*/

a.fichetech{
display: block ; /* On passe les liens en éléments de type block pour leur donner des propriétés de taille */
width: 140px ;
height: 50px ;
/*text-decoration: none ;	*/
background:url(../images/icon/fiche-technique.gif) no-repeat 0 0;
}

.fichetech:hover{
background:url(../images/icon/fiche-technique.gif) no-repeat 0 -50px;
}

/* lien extensions*/

a.extension{
display: block ; /* On passe les liens en éléments de type block pour leur donner des propriétés de taille */
width: 140px ;
height: 50px ;
/*text-decoration: none ;	*/
background:url(../images/icon/suggest-extension.gif) no-repeat 0 0;
}

.extension:hover{
background:url(../images/icon/suggest-extension.gif) no-repeat 0 -50px;
}

a.pagebrochure{
display: block ; /* On passe les liens en éléments de type block pour leur donner des propriétés de taille */
width: 140px ;
height: 50px ;
/*text-decoration: none ;	*/
background:url(../images/icon/brochure.gif) no-repeat 0 0;
}

.pagebrochure:hover{
background:url(../images/icon/brochure.gif) no-repeat 0 -50px;
}

a.retour-selection{
display: block ; /* On passe les liens en éléments de type block pour leur donner des propriétés de taille */
width: 140px ;
height: 48px ;
/*text-decoration: none ;	*/
background:url(../images/icon/retour-selection.gif) no-repeat 0 0;
}

.retour-selection:hover{
background:url(../images/icon/retour-selection.gif) no-repeat 0 -50px;
}

#beforepagebottom{
	color:#000000;
  	text-align:left;
	font-family:Arial,Helvetica,Geneva,Swiss,SunSans-Regular;
	font-size:12px;
	line-height:14px;
	font-weight:normal;
}

#beforepagebottom a{
	color:#9C3000;
	text-decoration:none;
}

#beforepagebottom h2 {
	font-size:14px;
	text-align:left;
	color:#333333;
	margin-bottom:10px;
	margin-left:0px;
	margin-right:0px;
	margin-top:0px;
	padding:0px;
}

#beforepagebottom p{
	margin:0 0 10px 0;
	padding:0px;
}

#pagebottom p{
	color:#000000;
  	text-align:left;
	font-family:Arial,Helvetica,Geneva,Swiss,SunSans-Regular;
	font-size:12px;
	line-height:14px;
	font-weight:normal;
	margin:20px
}