/** structure **/
#container {
	width: 950px;
	font-family: Verdana, Arial, SunSans-Regular, Sans-Serif;
	padding:0px;
	margin: 0px;
	margin-left: auto;
	margin-right: auto;
}

/** banner **/
#banner {
	padding:0;
	margin:0 0 1em 0;
	height:1em;
}
#banner ul {
	margin:0;
	padding:0;
}
#banner ul li {
	float:left;
	font-size:1.1em;
	list-style-type:none;
}

/** outer and inner **/
#outer{ 
	border-left: solid 200px; /* color of the left column  */ 
	border-right: solid 200px; /* color of the right column  */ 
	min-height:52em;
	border-color:transparent;/* pour ie6 on est obligé de mettre une couleur 
	donc mettre la même couleur que le fond dans le css de theme **/
} 
#inner{
	margin:0;
	width:100%;
} /* The ie/pc pecularity */ 


/** left and right nav **/
#left {
	width:200px; 
	float:left; 
	position:relative; 
	margin-left:-200px; 
	margin-right:1px;
}
#right {
	width:200px; 
	float:right; 
	position:relative; 
	margin-right:-200px; 
	margin-left:1px;
	border-top:0px;
}


/** content **/ 
#content{ 
	position: relative; 
	padding-right:1em;
	padding-left:1em;
}


/** footer **/ 
#footer {
	clear:left;
	text-align: center;
	padding:0.3em 0em;
	margin:0em;
}

div.box {
	margin:0 0 1em 0;
}

/** Print **/
@media print {
	#banner, #left, #right, #footer {
	display:none;
	}
	#outer {
	border:none !important;
	}
	
	#container {
	width:100%;
	}
}