/* Css reset */
/* v1.0 | 20080212 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*---------------------------------------------------------------------------------------------------------------*/

body {
	background-image:url(imgs/background2.jpg); /* FOND */
	background-color: black;
	background-repeat: no-repeat;
	margin: auto;
	font-family: Verdana, Arial, Tahoma, serif;

}

#page{
	width: 1024px;
	height: 768px;
	
	/* background-color: white; */
}
/* ---------------------------------------- DEBUT DU MENU ------------------------------------------------ */
#menu{
	width: 1001px;
	height: auto;
	margin-top:20px;
	margin-left: 12px;
	font-family: Tahoma, Verdana, Arial, serif;
	
	
 	/* background-color: green; */
}

#menu .topmenu {       /* POUR LES TITRES DU MENU SUR UNE LIGNE */
	display: block;
	width: 143px;		/* LONGUEUR D'UNE "CASE" DU MENU */
	height:27px;
	padding-top: 10px;
	text-decoration:none;
	color:#990000;   /* COULEUR DU TEXTE */
	text-align: center;
	
}
#menu .topmenu2 {		/* POUR LES TITRES DU MENU SUR DEUX LIGNES */
	display: block;
	width: 143px;
	height:30px;
	text-decoration:none;
	color:#990000;			/* ROUGE */
	text-align: center;
}


#menu .topmenu a {			/* POUR LES LIENS DU MENU SUR UNE LIGNE */
	padding-top:0px;
	padding-bottom:0px;
	font-size: 16px;
}
#menu .topmenu2 a {			/* POUR LES LIENS DU MENU SUR DEUX LIGNES */
	padding-top:0px;
	padding-bottom:4px;
	font-size: 16px;
}

#menu .topmenu:hover {		/* COULEUR DE FOND DU MENU AU SURVOL */
	background:#ffffff;
}
#menu .topmenu2:hover {
	background:#ffffff;
}

#menu .topmenu a:hover {		/* COULEUR DE FOND ET COULEURS DES LIENS DU MENU  */
	background:#ffffff;
	color: #990000		/* ROUGE */
}
#menu .topmenu2 a:hover {
	background:#ffffff;
	color: #990000
}

#menu a {				/* ORGANISATION EN LIGNE DU MENU */
 	display: block;
	width: 143px;
	padding-top: 5px;
	padding-bottom:2px;
	text-decoration:none;
	font-weight: bold;
	font-size: 14px;
	color:#990000;
	text-align: center;
}


#menu a:hover {				/* SURVOL DES LIENS DES SOUS-MENUS */
	background:#990000;
	color:#eeeeee;			/* GRIS TRES CLAIR */
	
}

#menu li { 				/* ORGANISATION EN COLONNE DES SOUS-MENUS */
	float: left;
	display: block;
	width: 143px;
	
}

#menu li a{
	width:auto;
	padding:2px;

}

#menu li ul{ 
	position: absolute;	/* EMPECHER LE DECALAGE VERTICAL DU CONTENU LORS DU DEROULEMENT DES SOUS-MENUS */
	width: 143px;
	height: auto;
	display: none;	/* NE PAS MONTRER DES SOUS-MENUS */
}

#menu li:hover ul{
	display: block; 		/* MONTRER DES SOUS-MENUS AU SURVOL */
	background: #ffffff;
	border-style: solid;
	border-width: 1px;
	border-color: #000000;
	
}

/* ---------------------------------------- FIN DU MENU ------------------------------------------------ */


#content {
	padding-top: 123px;
	width:1024px;
	height:480px;
}

h1{
	text-indent: 320px;
	font-variant: small-caps;
	font-size: 18px;
	margin-left: 5px;
	font-family: Arial, Verdana, Tahoma, serif;
}

#liste{

	width: 652px;
	height:438px;
	margin-top: 17px;
	margin-left: 300px;
	padding: 10px;
}
#liste a{		/* LIENS DU CONTENU (VERS PARTIE DU DOSSIER) */

	font-size: 15px;
	text-decoration: none;
	color:#990000;			/* ROUGE */
	font-family: Arial, Verdana, Tahoma, serif;
}
#liste li{
		margin: 8px;
}

#piedpage {
	margin-top:125px;
	display:block;
	width: 950px;
	height: 20px;
	text-align: right;
	margin-left: 40px;
	font-size:12px;
	font-family: Arial, Verdana, Tahoma, serif;
	
	
}
#piedpage a{			/* LES LIENS TOUT EN BAS DE PAGE */
	text-decoration: none;
	float: left;
	color: #000000;

}