/* CSS Document */

ul, li {
margin: 0;
padding: 0;
list-style-type: none;
}

#menu {
width: 700px;
margin-left:80px;
}
#menu h2 {
	cursor: pointer;
	margin: 2px 0;
	;
	height: 20px;
	line-height: 20px;
	text-align: center;
	font-weight: bold;
	border: 1px solid gray;
	background: #DDDDDD;
	color: #6DA8E2;
}
#menu h3 {
	cursor: pointer;
	margin: 2px 0;
	;
	height: 20px;
	line-height: 15px;
	text-align: center;
	font-weight: bold;
	border: 1px solid gray;
	color: #909090;
	font-size: 1em;
}
#menu ul{
border: 1px solid gray;
}
#menu li {
text-align: center;
background: #fff;
}
#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;
}

