/*
CSS-file for three column layout 2006
http://www.savio.no/examples/three-column-layout-2.asp
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/ {
	padding: 0;
	margin: 0;
	border: 0;
}
body, html {
	background-color: #a2a094;
	text-align: center; /*** Centers the design in old IE versions ***/
}
.clear {
	clear: both;
}
#mainContainer {
	width: 912px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 453px;
	background: #91a8b3;
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
	height: 513px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	background: #fff;
	height: 89px;
	position:relative;
}
#sub_header {
	background: #a2a094;
}/*
#imageContainer{
	width: 664px;
	height: 89px;
	position:absolute;
	top: 0;
	left: 248px;
}*/
#imageContainer img{
	display:none;
	position:absolute;
	top:0; left:0;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	margin-top: 23px; /*** Make some space for our top menu ***/
	padding-left: 166px;
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
	width: 746px; /*** This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
}
* html .inner {
	width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.menu into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
	float: left;
	width: 912px;
	margin-left: -166px; /*** Same length as .outer padding-left but with negative value ***/
}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
	float: right;
	width: 746px;
/*	height: 455px;*/
	min-height: 660px;
	background: #fff;
}
* html #content {
	position: relative; /*** IE needs this  ***/
}
.contentWrap {
	position:relative;
	background:url(image/bg_bot_right.gif) bottom right no-repeat;
/*	height: 455px;*/
	min-height: 660px;
}
.contentWrap ol, .contentWrap ul {
	margin: 3px 0 5px 35px;
}
.contentWrap li {
	padding-bottom: 2px;
}
#arianne {
	padding-top: 10px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: left;
	width: 166px;
	background: #91a8b3;
	min-height:400px;
	padding-top:53px;
}
* html #left {
	position: relative; /*** IE needs this  ***/
	height: 453px;
}
#left ul {
	list-style: none;
	padding-bottom: 4px;
}
#left li {
	padding-bottom: 2px;
}
#news {
	position: relative;
	margin-top:30px;
}
#section_change {
	position: relative;
	margin-top:20px;
	margin-left:15px;
}
.puce_section {
	position: relative;
	top: 3px;
}
/*************************
RIGHT COLUMN
**************************/
#right {
	position:absolute;
	right:0;
	top:0;
	width:189px;
	background:#c5d1d6 url(image/bg_bot_rightcol.gif) no-repeat bottom right;
	height:100%;
	min-height:453px;
	/*padding: 20px;*/
}
* html #right {
	position: absolute;  /*** IE needs this  ***/
	right:0;
	top:0;
	margin-right: -189px; /*** IE gets this margin. ***/
}
#right ul {
	list-style: none;
	padding-bottom: 4px;
}
#right li {
	padding-bottom: 2px;
}
#realisation {
	padding: 20px;
	background: #ffffff url(image/bg_bot_realisation.gif) no-repeat bottom right;
}
/*************************
MENU
**************************/
#menu {
	margin: -23px 0 0 -746px; /*** Top Right Bottom Left -- Move the right column so it takes the positon as a top menu ***/
	float: left;
	width: 746px;
	height: 23px;
}
* html #menu {
	position: relative; /*** IE needs this  ***/
}
#menu ul {
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
}
#menu li {
	float: left;
	display: block;
}
/**************************
FOOTER
**************************/
#footer {
	width: 912px;
	margin: 0 auto;
}
/**************************
OVERLAY PNG
**************************/
a.photo-container {
	position: relative;
	display: block;
} 
span.photo-container {
	position: relative;
	display: block;
}
img.mask {
	position: absolute;
	top: 0;
	left: 0;
}
/**************************
Ligne Tableau Réalisation
**************************/
.ligne1 {
	background-color: #E2E9ED;
}
.ligne1 p{
	padding-left: 10px;
}
.ligne2 {
	background-color: #ffffff;
}
.ligne2 p{
	padding-left: 10px;
}
/**************************
Go to top
**************************/
#gototop	{
	display: none;
	font-weight: bold;
	font-family: tahoma;
	font-size: 10px;
	width: 90px;
	background: #FABA00 url(image/top.gif) 5px -8px no-repeat;
	color: #000;
	font-size: 11px;
	text-decoration: none;
	position: fixed;
	left: 50%;
	bottom: 5px;
	padding: 7px 7px 7px 20px;
	margin-left: 303px;
}
#gototop:hover	{ text-decoration:none; color: #fff;}