/*CSS type par ProoXi.com*/

/*Ici on détermine un margin et un padding de 0 pour le body et le html 
au besoin on ajouter au html un overflow: hidden; pour éviter d'avoir un ascenseur inutile dans IE si le site fait toujours une hauteur inférieure à celle de la surface d'affichage mimnimum de sa cible*/
 
html, body {
	margin: 0;
	padding: 0;
}

body {
	background: #4a7e3f url(images/barquepeche.jpg) 0px -250px fixed;
	font-family: tahoma, Arial, Helvetica, Nimbus Sans L, Sans serif; /*Ici déclaration d'une famille de polices cohérante (Linux n'est pas mis de coté avec la Nimbus)*/
	font-size: 11px; /*Taille relative ne pas descendre en dessous de .7em ou en absolue mettre 12px qui me semble trop petit*/
	color: black;
}


/*
a {
}

a:hover {
}
Style des liens à adapter*/

/*technique des marges negative ou un positionnement absolue d'une div pour la centrer horizontalement sur toutes les résolutions d'écrans
Si la largeure change penser à modifier le margin-left = - (width/2)px
*/

#page {
	position: absolute;
	width: 790px;
	top: 10px;
	left: 50%;
	margin: 0 0 0 -388px;
}

/*Fin de la div qui contient tout le site*/

#header {  
	position: relative;
	margin: 0;
	padding: 0;
	background: url(images/bandeau2.jpg);
	border-top: 2px solid #e3d605;
	border-left: 2px solid #e3d605;
	border-right: 2px solid #e3d605;
	height: 235px;
}

h1 {
	margin: 0;
	padding: 0;
}



/*Lien sur le titre h1 bon pour google et autre*/
#header h1 a {
    background: url(images/logo4.png) no-repeat;
    position: relative;
    height: 111px;
	width: 417px;
	margin: 0px;
	padding: 0;
	text-indent: -5000px; 
	display: block;
}

#carpe {
	height: 200px;
	width: 404px;
	position: absolute;
	background: url(images/carpe.jpg);
	top: 0;
	left: 364px;
}

/*Début du positionnement du menu*/
#menutop {
	position: relative;
	height: 35px;
	margin: 0;
	padding: 0;
	background: url(images/bgmenu.gif) left bottom repeat-x;
	margin-bottom: 10px;
}

ul#menutop {   
    height:25px; 
	position: relative;
	margin:0px;
	padding: 0px ;
	list-style-type: none ;
	background: #e3d605 url(images/bgyellow2.gif) 0 0 repeat-x;
}

#menutop li {
	float: left ;
	text-align: center ;
}

#menutop li a {
	width: 95px;
	height: 25px;
	line-height: 25px;
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 1px;
	color: #238435;
	display: block;
	background: #e3d605 url(images/bgyellow.gif) 0 0 repeat-x;
	text-decoration: none;
	border-right: 1px solid white;
}

#menutop li a:hover {
	height: 25px;
	line-height: 25px;
	background: #e3d605 url(images/bgyellow.gif) 0 -25px repeat-x;
	color: white;
}
/*Fin du positionnement du menu si menu CSS*/

/*Div milieu dans laquelle on place un tableau dont la position reste à déterminer en fonction du contenu et des visuelles*/
#milieu {
	position: relative;
	margin:0;
	padding: 0 0 20px 0;
	border-left:2px solid #e3d605;
	border-right: 2px solid #e3d605;
	border-bottom: 2px solid #e3d605;
	background: white;
}

table#content td {
	padding: 0 3px;
}

ul.list {
		margin: 0 15px;
		list-style-image: url(images/puce2.gif);
}

/*Propriété d'un tableau dont le code est valide*/
table {
	width: 100%;
	border: 0 none;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
}

tr {  
	margin: 0;
	padding: 0;
}

td {
	vertical-align: top;
	margin: 0 0 10px 0;
	padding: 0px;
}

.tdb {
	border: 1px solid #ccc;
}
/*Propriété d'un tableau dont le code est valide fin*/


p {
	text-align: justify;
	margin: 5px 0;
	padding: 5px;
}

.imgleft {
	float: left;
	margin: 0 15px 5px 0;
	border: 1px solid #238435;
}


/*Les h2 sont à adapter en fonction de leur style background-image, liens ou les deux*/
h2 { 
	background: url(images/puce3.gif) left no-repeat;
	color: #238435;
	font-size: 14px;
	margin: 0;
	padding: 0 0 0 15px;
}

h2.cor {
	background: url(images/coordone.gif) 0 0 no-repeat;
	height: 15px;
	text-indent: -5000px;
}

h2.hor {
	background: url(images/horaires.gif) 0 0 no-repeat;
	height: 15px;
	text-indent: -5000px;
}

h2.art {
	background: url(images/article.gif) 0 0 no-repeat;
	height: 15px;
	text-indent: -5000px;
}

h2.per {
	background: url(images/permis.gif) 0 0 no-repeat;
	height: 15px;
	text-indent: -5000px;
}

h2.fam {
	background: url(images/fam.gif) 0 0 no-repeat;
	height: 15px;
	text-indent: -5000px;
}

h2.prod {
	margin-left: 5px;
	background: url(images/prod.gif) 0 0 no-repeat;
	height: 15px;
	text-indent: -5000px;
}
h2.marq {
	margin-left: 5px;
	background: url(images/prod.gif) 0 0 no-repeat;
	height: 15px;
	text-indent: -5000px;
}

h3 {
	font-size: 12px;
	margin: 0;
	padding: 0;
}

#footer {
	position: relative;
	padding: 0;
	margin:0;
	line-height: 20px;
	color: white;
}

a.copyright {
    color: white;
	text-decoration: none;
}

a.copyright:hover {
    text-decoration: underline;
}
	
