@charset "utf-8";
#menu li {
	float:left;
	list-style-type: none;
	height:18px;
	width:104px;
	border:solid 1px #999999;
	background-image:url(../img/bullet2.jpg);
	background-repeat:no-repeat;
	background-position: 8px 7px;
}

#menu ul ul {
	display: none;
	position: absolute; /*this will make the object to move to where you want it to go, everything will ignore it and it will ignore the others.*/
	width:104px;	
	border-top:solid 1px #999999;	
}

#menu ul li:hover {
	background-image:url(../img/bullet1.jpg);
}

#menu ul ul li:hover {
	background-image:url(../img/bullet2.jpg);
}

#menu ul ul li {	
	height:20px;
	width:150px;
	border-left:solid 1px #999999;
	border-right:solid 1px #999999;
	border-bottom:solid 1px #999999;
	border-top:none;
	background-color:#FFFFFF;	
	clear: both;
	background-image:none;			
	background-image:url(../img/bullet2.jpg);
	background-repeat:no-repeat;
	background-position: 8px 7px;	
}

#menu li:hover ul, #menu li.over ul{
	display:block;
}

#menu a:hover {
	text-decoration:underline;
}

#menu ul li a {
	font-family:"Times New Roman", Times, serif;
	font-size: 11px;
	line-height: 18px;
	color: #000000;
	text-decoration: none;
	display: block;
	text-align:left;	
	padding-left:18px;
}

#menu ul ul li a {
	font-family:"Times New Roman", Times, serif;
	font-size: 11px;
	line-height: 20px;
	color: #000000;
	text-decoration: none;
	display: block;
	text-align:left;	
	padding-left:18px;
	height:20px;
	width:150px;	
}