/* CSS Document */
ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}

#menu {

	width: 300px;
	text-align: center;
	
}
#menu h2 {
	cursor: pointer;
	margin: 2px 0;
	height: 20px;
	line-height: 20px;
	text-align: center;
	font-weight: bold;
	border: 1px solid gray;
	background: #C6c6c6;
	color: #013567;
}
#menu ul{
	border: 1px solid gray;
	background: #6699CC;
}
#menu li {
	text-align: center;
	background: #86A0C5;
	color: #FFFFFF;
}
#menu li a, #menu h2 a {
color: #000;
text-decoration: none;
display: block;
border: 0 none;
height: 100%;
}

#menu li a:hover, #menu h2 a:hover {
background: #eee;
}
