body {
   text-align: left;
   background-color: #7b7152;
   color: #615944;
   font-family: Georgia,Times, "Times New Roman", serif;
   text-decoration: none;
   font-size: 13px;
	margin:0;
	padding:0;
}

div {
   font-size: 11px;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #6A6246;
   /*color: #18507C;*/ 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
   color: #6A6246;
   /*color: #18507C;*/ 
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #dfdbbc;
   color: #FFFFFF;
}

/*****************
basic layout 
*****************/
body {
	text-align: left;
	background-color: #7b7152;
	color: #615944;
	font-family: Georgia,Times, "Times New Roman", serif;
	text-decoration: none;
	font-size: 11px;
	/*overflow: hidden;*/
	letter-spacing: 1px;
	line-height: 14px;
}

/* center wrapper, min max width */
div#pagewrapper {
	margin: 0 auto;       /* this centers wrapper */
	width: 1027px;
	/*overflow: hidden;*/
	background-color: #000;;/*#edefd3;;*/
	color: #615944;
	height: 602px;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 102px;    /* adjust according your image size */
   background: #c9c5a4;           
}

div#header h1 a {
/* you can set your own image here */
   background: #c9c5a4;
   display: block;
   height: 102px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#header h2{
	letter-spacing: 3px;
	margin-top:-20px;
	font-size:14px;
}



div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
} 

div#content {
	margin: 0px;   /* some air above and under menu and content */
	padding-top: 5px;
	padding-right: 20px;
	padding-left: 25px;
	margin-top:0px;
	width: 355px;
	height: 485px;
	float: right;
	/*
	overflow: hide;
height: 490px;
width: 400px;*/
overflow: auto;
}


div#main {

}

div#lgs{
text-align : right;
margin-top:80px;
}
div#lgs a{
color: #7b7152;
text-decoration : none;
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}

div#footer {
	clear: both;       /* keep footer below content and menu */
	color: #fff;
	background-color: #c9c5a4;
	text-transform: uppercase;
	text-align: center;
	margin-top:500px;
	/*overflow : hidden;*/
}

div#footer p {
	font-size: 0.8em;
	padding: 1.5em;       /* some air for footer */
	text-align: center;  /* centered text */
	margin: 0;
	text-transform: uppercase;
}

div#footer p a {
	color: #fff; /* needed becouse footer link would be same color as background otherwise */
	text-transform: uppercase;
	text-align: center;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}

.menu_baseline {
  text-align: right;
  text-decoration:none;
  color:#C9C5A4;
  font-size:11px; 
  margin-top: 6px;
}
a.menu_baseline, a.menu_baseline:link, a.menu_baseline:active, a.menu_baseline:visited {
  text-align: right;
  font-size:11px;
  text-decoration:none;  
 color:#C9C5A4;
}

a.menu_baseline:hover {
   text-decoration: none;
   background-color: #dfdbbc;
   color: #FFFFFF;
}

div.menu_baseline {
  text-align: right;
   color:#8f8364; 
  font-size:11px;
}

.menu_haut {
  /*font-size:12px;*/
  padding-bottom: 6px;
  letter-spacing: 3px;
  font-family: Georgia,Times, "Times New Roman", serif;
}
a.menu_haut, a.menu_haut:link, a.menu_haut:active, a.menu_haut:visited {
  text-align: right;
  font-size:12px;
  color:#8f8364;
  text-decoration: underline;
}

a.menu_haut:hover {
   text-decoration: none;
   background-color: #dfdbbc;
   color: #FFFFFF;
}

div.menu_haut {
  text-align: right;
   color:#8f8364; 
  font-size:12px;
  height: 50px;  
}

/********************
CONTENT STYLING
*********************/
div#content {
	background-color: #edefd3;;
	color:#8f8364;
}

/* HEADINGS */
div#content h1 {
    font-weight: bold;
    /*margin-bottom:10px;*/
    text-transform: uppercase;
    font-size: 14px;
    color:#8f8364;
    letter-spacing: 3px;
    text-align:left;
}

div#content h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px; 
    color:#8f8364;
    margin-bottom:20px;
    margin-top:30px;
    text-align:left;
}

div#content h3 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px; 
    color:#8f8364;
    letter-spacing: 3px;
    text-align:left;
}

div#content h4 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    text-align:left; 
}

div#content h5 {
    font-size: 9px;
    text-align:left; 
}


h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
div#content p {
    color:#8f8364;
    font-family: Georgia,Times, "Times New Roman", serif;
    font-size: 11px;
}

blockquote {
    border-left: 10px solid #ddd;
    margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}



pre {
    border: 1px solid #000;  /* black border for pre blocks */
    background-color: #ddd;
    margin: 0 1em 1em 1em;
    padding: 0.5em;
    line-height: 1.5em;
    font-size: 90%;
}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
    font-size: 1.0em;
    line-height: 1.4em;
    margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
    margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid #c0c0c0;
}

div#infos{
    margin:auto;
    width:1069px;
}
div#infos a{
    color:#8f8364;
    font-family: Georgia,Times, "Times New Roman", serif;
    font-size: 11px;
    float: right;
    text-align:right;
    text-decoration:none;
    margin-left:20px;
    margin-right:20px;
}

/* END LISTS */

/* Start formulaire */

div#content form {
	padding:0px;
    width:300px;
    font-family:Georgia,Times, "Times New Roman", serif;
}

div#content fieldset {
    padding:20px;
    margin-bottom:10px;
}

div#content legend {
    color:#edefd3;
    font-weight:bold
}

div#content label {
    margin-top:20px;
    display:block;
    font-size:90%;
}

div#content input {
    border:1px solid #8f8364;
    background-color:#fff;
    font-family:Georgia,Times, "Times New Roman", serif;
    margin:3px;
    margin-left:0px;
    padding:3px;
	color:#8f8364;
	padding-left:10px;
	padding-right:10px;
}

div#content input[type=radio] {
    margin-right:50px;
    background-color:transparent;
    border:none;
}

div#content select, option {
    background-color:#edefd3;
    font-family:Georgia,Times, "Times New Roman", serif;
}

div#content textarea {
    border:1px solid #8f8364;
    background-color:#fff;
    font-family:Georgia,Times, "Times New Roman", serif;
    width:280px;
    height: 70px;
    margin:3px;
    margin-left:0px;
    padding:5px;
	color:#8f8364;
}


/* End formulaire */

/* Start formulaire fastbooking*/

div#menu_haut2 {
  /*font-size:12px;*/
  letter-spacing: 0px;
  padding-left: 6px;
  padding-bottom: 2px;
  font-family: Georgia,Times, "Times New Roman", serif;
  font-size:9px;
}

div#menu_haut2 form {
	padding:0px;
    /*width:450px;*/
    font-family:Georgia,Times, "Times New Roman", serif;
	font-size:10px;
}

div#menu_haut2 fieldset {
    padding:20px;
    margin-bottom:10px;
}

div#menu_haut2 label {
    /*
	margin-top:20px;
    display:block;
    font-size:90%;
	*/
}

div#menu_haut2 input {
    border:1px solid #8f8364;
    background-color:#fff;
    font-family:Georgia,Times, "Times New Roman", serif;
	margin:2px;
	padding:2px;
	font-size:9px;
	 /*
    margin-left:0px;
    
	*/
	color:#8f8364;
	/*
	padding-left:10px;
	padding-right:10px;
	*/
}

div#menu_haut2 select, option {
    background-color:#edefd3;
    font-family:Georgia,Times, "Times New Roman", serif;
	font-size:10px;
}


/* End formulaire fastbooking */

/* End of 'Layout: Left sidebar + 1 column' */

/* Start of CMSMS style sheet 'Navigation: Simple - Horizontal' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
text-transform: uppercase;
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu_horiz {
text-transform: uppercase;
   width: 100%;
   margin: 0;
text-align: center;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding: 0;
   
   height:17px;
text-transform: uppercase;
}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;

text-align:center;
   text-transform: uppercase;
}


/* the links, that is each list item */
div#menu_horiz a {
padding: 2px 20px 0px 20px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #8f8364;
 text-transform: uppercase;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#menu_horiz li a:hover {
   text-transform: uppercase;
}
div#menu_horiz a.activeparent:hover {
  text-transform: uppercase;
   color: #8f8364;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
   text-transform: uppercase;
   color: #c8bfa1;
}

div#menu_horiz h3 {
padding: 2px 20px 0px 20px; /* padding inside the list item box */
   color: #8f8364;
     font-size: 9px;                   
}


div#menu_flash{
top:0px;

margin-left:353px;
}


/* End of 'Navigation: Simple - Horizontal' */

/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */
div#htmlmenu{
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}

/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
  position: absolute;
  left: -5000px;
  width: 4000px;
}

/* make some room for the image */
a.external {
/* css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
  padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
  color: #18507C;
/* background image for the link to show wiki style arrow */
  background: url(tempo/images/cms/external.gif) no-repeat 100% 0;
}
a.external:visited {

  color: #18507C; /* a different color can be used for visited external links */

/* 
Set the last 0 to -100px to use that part of the external.gif image for different color for active links 
external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.
*/
  background: url(tempo/images/cms/external.gif) no-repeat 100% 0; 
}

a.external:hover {
  color: #18507C;

/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
  background: url(tempo/images/cms/external.gif) no-repeat 100% 0; 
  background-color: #C3D4DF;
}
/* end wiki style external links */


/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

#pub {
	position:absolute; 
	left:100px; 
	top: 0px;	
	overflow: hide;	
}

.place
{
	position:relative; 
}


.menuu {
	position:absolute; 
	left:430px;
	top:-120px;
	opacity: 1;
	background-color: #7b7152;
	width: 120px;
	height:auto;
	margin: 0px;   /* some air above and under menu and content */
	padding-right: 25px;
	padding-left: 20px;
	overflow: hide;
	text-align: left;
	font-size:11px; 
	color: #C9C5A4;
   /*float: left;
   width: 150px;
   height: 200px;
   border: 1px dashed #009900;
   background-color: #ccffcc;
   text-align: center;*/
   z-index: 20; 
}

.flashe {
	left:100px; 
	top: 100px;
	/*position:absolute; 
   z-index: 10;*/ 
}

a.blop, a.blop:visited, a.blop:link {
  text-align: right;
  font-size:11px;
  font-weight:bold;
  color:#CAC6B9;
  text-decoration:none;
  margin: 0px;   /* some air above and under menu and content */
  /*padding-right: 25px;
  padding-left: 25px;*/
  letter-spacing: 2px;
  background-color:none;
}

a.blop:active, a.blop:hover {
   color:#FFFFFF;
   background-color:#7b7152;   
}

img.blop {
   text-decoration: none;
   font-weight:bold;
   color: #FFFFFF;
   background-color:#7b7152;
}


object.x
{
position:absolute;
left:0px;
top:0px;
z-index:-1
}
img.x
{
position:absolute;
left:0px;
top:0px;
z-index:-1
}
#monmenu ul {margin: 0; padding: 0; list-style-type: none; }
#monmenu ul ul {display: none; left: 145px; top: -22px; position: absolute; margin: 0; padding: 7px; border: 1px solid #7b7152; background-color: #7b7152;}
#monmenu li {list-style-type: none; position: relative; width: 153px; padding: 0px; margin: 0px}
#monmenu li a {text-decoration:none;}
#monmenu li:hover ul.niveau2, #monmenu li li:hover ul.niveau3, #monmenu li.sfhover ul.niveau2, #monmenu li li.sfhover ul.niveau3 {display: block}
#monmenu li.plus {background-position:right; background-repeat: no-repeat; border-bottom: 1px solid #B0B0B0;}

a.blop_m, a.blop_m:visited, a.blop_m:link {
  font-size:11px;
  color:#CAC6B9;
  text-decoration:none;
  margin: 0px;
  letter-spacing: 1px;
  background-color:none;
}

a.blop_m:active, a.blop_m:hover {
   color:#FFFFFF;
  background-color:none;
  text-decoration:none;  
}

a.blop_l, a.blop_l:visited, a.blop_l:link {
  text-align: right;
  font-size:11px;
  color:#CAC6B9;
  text-decoration:none;
  margin: 0px;   /* some air above and under menu and content */
  /*padding-right: 25px;
  padding-left: 25px;
  letter-spacing: 1px;*/
    background-color:none;
}

a.blop_l:active, a.blop_l:hover {
   color:#FFFFFF;
   background-color:#7b7152;   
}