/* CSS Document */
/*http://tutorials.alsacreations.com/deroulant  */
/*  Menu w/ descending submenus */
/*CSS will define the menus (dt) and sub-menus (dd and li list). It will also define that sub-menus should be hidden by default.*/



dl, dt, dd, ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}
#menu {
	position: absolute; /* Menu position that can be changed at will */
	top: 2px;
	/*left: 10%;  */
z-index:100;
	margin-bottom:3em;
	margin-top:1em;
	width: 580px;
	left: 101px;
}
#menu dl {
	float: left;
	width: 95px;
}
#menu dt {
	cursor: pointer;
	text-align: center;
	font-weight: bold;
	background: #fff;
	color:#006d3a;
}
#menu dd {
	display: none;
}
#menu li {
	text-align: left;
	background: #fff;
	text-indent: 5px;
	width:200px;
}
#menu li a, #menu dt a {
	color: #006d3a;
	display: inline-table;
	height: 100%;
	border: 0 none;
	text-decoration: underline;
}
#menu li a:hover, #menu li a:focus, #menu dt a:hover, #menu dt a:focus {
	color: #000000;
	
}
#site {
position: absolute;
z-index: 1;
top : 70px;
left : 10px;
color: #000;
background-color: #ddd;
padding: 5px;

}
#logo {
	margin-top:3em;
}
