/* DIV Navigation block */
div#nav {
	margin-top: 50px;
	width: 100%;
	height: 100%;
}

div#nav a {
	text-decoration: none;
	color: Black;
}

/* menu item */
div.item {
	width: 90%;
	background-color: #F8F5D4;
	border: 1px solid #191970;
}

/* menu title */
div.title {
	width: 90%;
	background-color: #D3D011;
	border: 1px solid #003875;
}
/* div.title style when it's parent class is 'hover' (e.g. on MouseOver event) */
div.hover div.title {
	background-color: #F8F5D4;
}

/* Don't display a div.menu default */
div.menu {
	display: none;
}

/* div.menu style when it's parent class is 'hover' (e.g. on MouseOver event) */
div.hover div.menu {
	position: absolute;
	width: 150px;
	display: block;
}

/* Style for the 'Home' menu item. */
div#home {
	margin-top: 425px;
}