/* CSS Document, design.css */
body
{
   width: 955px;
   height: 775px;
   margin: auto; /* Pour centrer notre page */
   margin-top: 20px; /* Pour éviter de coller avec le haut de la fenêtre du navigateur. Essayez d'enlever pour voir ! */
   margin-bottom: 0px;    /* Idem pour le bas du navigateur */
   background-color:#141534;
   background-image: url("../image/fondfacture.jpg");
   background-repeat: no-repeat;
   background-position:center;
    font-family:
    Corbel,
    "Lucida Grande",
    "Lucida Sans Unicode",
    "Lucida Sans",
    "DejaVu Sans",
    "Bitstream Vera Sans",
    "Liberation Sans",
    Verdana,
    "Verdana Ref",
    sans serif;
}


#en_tete
{
   width: 955px;
   height: 190px;
   background-image: url("../image/haut_page.png");
   background-repeat: no-repeat;
   margin-bottom : 0px;
}

#menu
{
   float: left; /* Le menu flottera à gauche */
   width: 180px; /* Largeur menu */
   height: 500px;
   background-image: url("../image/menu.png");
   background-repeat:no-repeat;
   margin:0px 0px 0px 10px;
}

li a :hover
{
	background-image: url(../image/bouton1hover.png);
	background-repeat:no-repeat;
	}

a img
{
	border: none;
}
 
li
{
font-size:16px;
list-style:none;
margin : 20px 0px 0px -30px;	
}

#corps
{
	margin-left: 200px; /* Une marge à gauche pour pousser le corps, afin qu'il ne passe plus sous le menu */
	height: 540px;
	width: 660px;
}
h1
{
text-indent: 3px;
	color: #141434;
	font-size:26px;
	
	}


#corps ol li /* Ma liste aura des puces en forme de dossiers */
{
	list-style-position:outside;
	list-style-image: url(../image/puce.png);
	margin: 0px 0px 5px -20px;
}

#pied_de_page
{
	text-align: center;
	color:#FFFFFF;
	}


