/*@import "./menu/menu.css";*/

/*pour le centrage du site, il faut utiliser Text-align ou <center> pour IE
car auto sur le padding fonctionne pas donc center obligatoire et sa fout la
merde complet sur tout le site
*/
html
{
	height: 100%;
}

body
{
	margin: 0;
	height: 100%;
	background-color: black;
	color: white;
}	

body a 
{
	text-decoration : none;
	color: white;
}

#fond
{
	height: 100%;
}

#fond div
{
	height: 100%;
	width: 100%;
	background-position: center;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
}
	
#entete 
{
	position: fixed;
	top: 0;
	left: 0;
	/* technique de centrage auto sans utiliser <center> */
	margin: 0;
	padding: 0;
	width: 100%;
	height: 40px;
	background-image: url( image/cadre_texte.png );
	z-index: 50;
	text-align: center;
}

.menu
{
	margin: 0 auto;
	padding-top: 10px;
	font-size: 15px;
	font-weight: bold;
	width: 900px;
	height: 28px;
	color: white;
	padding-left: 0;
	font-family: helvetica;
}

.menu li
{
	position: relative;
	float: left;
	list-style: none;
	padding: 0;
	text-align: center;
	cursor: default;
	margin: 0 10px;
	vertical-align: middle;
}

.menu li:hover
{
	color: red;
}

#contenu
{
	position: fixed;
	top: 50%;
	margin-top: -240px;
	right: 0;
	width: 400px;
	height: 400px;
	z-index: 50;
	padding: 5px;
	/*background-image: url( image/cadre_texte.png );*/
	border: none;
}

iframe
{
	display: block;
}

#pied 
{
	position: fixed;
	bottom: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 120px;
	background-image: url( image/cadre_texte.png );
	font-weight: bold;
	z-index: 50;
}

#pied #agence
{
	float: right;
	margin: 10px;
}

#pied #chalet
{
	float: left;
	margin: 10px;
}