#barre_haut {
			position: fixed;
			left: 10px;
			top: 0px;
			height: 10px;
			width: 800px;
			background-color: white;
}

#menu_gauche{
			position: fixed;
			left: 10px;
			top: 50px;
			width: 140px;
			font-size: 9pt;
			padding: 10px 10px 10px 10px;
			border: 1px black solid;
}


#contenu{
			position: absolute;
			top: 50px;
			left: 170px;
			width: 620px;
			padding: 5px 20px 2px 20px;
			font-size: 11pt;
}

a { text-decoration: none; color: black;}

#contenu a:link { text-decoration: bold; color: grey;}
#contenu a:hover { text-decoration: none; color: grey;}
#contenu a:visited { text-decoration: bold; color: grey;}
#contenu a:active { text-decoration: bold; color: grey;}


#blo {
//margin: 100 100 100 100;
//border: 1px black dotted;
//position: ;
}

/* --------------------- FONTS ------------------- */

#contenu g {
//	font-family: sans-serif;
//	font-style: normal;
	font-variant: small-caps;
//	font-weight: bold;
	font-size: large;
//	line-height: 100%;
//	word-spacing: normal;
//	letter-spacing: normal;
//	text-decoration: none;
	text-transform: none;
//	text-align: left;
//	text-indent: 0ex;
}

#contenu p {
//	font-family: sans-serif;
//	font-style: normal;
//	font-variant: none;
//	font-weight: normal;
	font-size: xx-small;
	line-height: 40%;
//	word-spacing: normal;
//	letter-spacing: normal;
//	text-decoration: none;
//	text-transform: none;
	text-align: none;
//	text-indent: 0ex;
}


/*** Nav bar styles ***/

div#menu_horizontal{
			position: fixed;
			left: 10px;
			top: 10px;
			width: 200px;
			background-color: white;
}

ul.nav,
.nav ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0 0 0 0;
	cursor: default;
	list-style-type: none;
	display: inline;
}

ul.nav{
	display: table;
	width: 200px;
	table-layout: fixed;
}

ul.nav>li{
	display: table-cell;
	position: relative;
	padding: 2px 6px 0px 10px;
	margin: 0px 0px 0px 5px;
}


/* ul.nav>li:hover{
	padding-right: 1px;
}*/

ul.nav li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	width: 200px;
	margin-left: 2px;
	margin-top: -2px;
}

ul.nav li:hover>ul{
/*When hovered, make them appear*/
	display: block;
}

.nav ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	margin: 0 2 0 2;
	padding: 2px 6px;
}

/*** Menu colors (customizable) ***/

ul.nav,
.nav ul,
.nav ul li a{
	background-color: white; 
/* #778899 */
	color: black;
	font-size: 12px;
	text-align: justify;
}


ul.nav li:hover,
.nav ul li a:hover{
	background-color: white;
	color: black;
}

ul.nav li:active,
.nav ul li a:active{
	background-color: white;
	color: red;
}

ul.nav,
.nav ul{
	border-bottom: 0px solid black;
	padding-top: 2px;
}

.nav a{
	text-decoration: none;
}

