
body {
	color:            black;
	background-color: #e3dbf0;
	margin: 0;
	padding: 0; }

#conteneur {
	background-color: white;
	width: 1000px;
	margin-right: auto;
	margin-left: auto; }

#head {
	background-image: url(../assets/bgd2.jpg);
	background-repeat: repeat-x;
	height: 130px; }
#logo {
	font-size: 0.8em;
	font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
	text-align: center;
	width: 300px;
	height: 150px;
	float: left; }
#logo h1 {
	font-size: 1.2em;
	font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; }

#head_right {
	color: red;
	font-size: 1.8em;
	font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
	font-weight: bold;
	text-align: center;
	width: 700px;
	float: right;
	padding-top: 30px; }
#head_right a:link {
	color: #005c5c;
	text-decoration: none; }

#head_right a:visited {	text-decoration: none; }

#maincontent {
	background-image: url(../assets/fds_euroweb.gif);
	height: 100%; }

#left {
	color: #efd78f;
	font-size: 0.8em;
	font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
	width: 245px;
	height: 100%;
	float: left;
	padding-left: 5px; }
#left a:link {
	color: orange;
	text-decoration: none; }
#left a:visited {	color:           orange;
	text-decoration: none; }

#left a:over {
	color:           orange;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none; }

#left a:active {	color:           orange;
	text-decoration: none; }

#left h1 {
	color: #ebc155;
	font-size:   1.2em;
	font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
	font-weight: bold;
	margin:      0.67em 0; }

#right {
	font-size: 0.8em;
	font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
	background-color: white;
	width: 745px;
	height: auto;
	float: right;
	padding-left: 5px; }
#right h1 {
	color: #462d89;
	font-size: 1.5em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none; }

#right h2 {	color:           maroon;
	font-size:       1.2em;
	font-family:     Verdana, Arial, Helvetica, sans-serif;
	font-weight:     bold;
	text-decoration: none; }
#right a:link {
	color: #bb7900;
	font-size: 1em;
	font-weight: bold;
	text-decoration: none; }
#right a:visited {
	color:           #bb7900;
	font-size: 1em;
	font-weight: bold;
	text-decoration: none; }

#right a:over {
	color:           #bb7900;
	font-size: 1em;
	font-weight: bold;
	text-decoration: none; }

#right a:active {
	color:           #bb7900;
	font-size: 1em;
	font-weight: bold;
	text-decoration: none; }

#footer {
	color: #e1e1e1;
	font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
	background-color: teal;
	text-align: center;
	height: 50px;
	padding-top: 20px; }

#footer a:link {
	color: #e1e1e1;
	font-size: 1em;
	text-decoration: none; }
#footer a:visited {
	color:           #e49300;
	font-size: 1em;
	text-decoration: none; }

#footer a:over {
	color:           lime;
	font-size: 1em;
	text-decoration: none; }

#footer a:active {
	color:           #e49300;
	font-size: 1em;
	text-decoration: none; }

/* the horizontal menu starts here */
#listmenu {
	width:1000px; /* makes the div full width */
	border-top:1px solid #069;	/* draws line on top edge of div */
	border-bottom:1px solid #069;	 /* draws line on bottom edge of div */
	font-size:0.8em;	/* SET FONT-SIZE HERE */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color:#ebc155; /* colors the div */
	text-decoration: none;
	letter-spacing: 0.3em;
	float: left;
	margin-top: -20px;
	padding-top: 2px;
	padding-bottom: 2px; /* TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	}
#listmenu ul {
	margin:0 0 0 250px;
	padding-top: 2px;
	padding-bottom: 2px;/* indents ul from edge of container - NOTE: diff value for IE in hacks below */
	}
#listmenu li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#ebc155; /*sets the background of the menu items */
	border-right:1px solid #069; /* creates dividing lines between the li elements */
	}
#listmenu li:first-child {
	border-left:1px solid #069; /*the first vertial line on the menu */
	}
#listmenu li:hover { 
	background-color:#efd78f; /*sets the background of the menu items */
	}
#listmenu a {
	display:block;
	padding:1px 6px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#069;	/* sets the type color */
	}
#listmenu a:hover {
	color:#F33;
	}
/* the menu ends here */
/* the drop-down starts here */
#listmenu ul li ul {
	margin:0;
	z-index:10; /* puts drop-down on top of div - Safari needs this as menu is 1px higher */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:17em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	border-right:0 none; /* stops SCBs drops having two right borders - they inherit the border, IE doesn't */
	left:-1px;
	padding-top: 2px;
	padding-bottom: 2px; /*aligns the drop exactly under the menu */
	}
#listmenu ul li ul li {padding:2px;
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #069; /*  three sides of each drop-down item */
	border-bottom:1px solid #069;
	border-right:1px solid #069;}
#listmenu ul li ul li a {padding:1px .5em;}
#listmenu ul li ul li:first-child {
	border-top:1px solid #069; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
#listmenu ul li ul {display:none;}
/* conceals the drop-down when menu not hovered */
#listmenu ul li:hover ul {display:block; }
/* shows the drop-down when the menu is hovered */
#calque1 {
	visibility: visible; }
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden; }
* html .clearfix {
	height: 1%; }
.clearfix {
	display: block; }
