#menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px;
	border-bottom-width: 1px;
	border-bottom-color: #704601;
} 

#menu ul li { 
	position: relative; 
} 

#menu li ul { 
	position: absolute; 
	left: 149px; /*Set 1px less than menu width */ 
	top: 0; 
	display: block; 
} 

#menu li:hover ul {
	display: block; 
} 

#menu li:hover>ul { 
	visibility:visible; 
} 

#menu ul ul {
	visibility:hidden; 
} 

/* Fix IE. Hide from IE Mac \*/ 
* html #menu ul li { float: left; height: 1%; } 
* html #menu ul li a { height: 1%; } 
/* End */ 

/* Make-up syles */ 

#menu ul, li { 
	margin: 0; 
} 

/* Styles for Menu Items */ 
#menu ul a {
	display: block;
	text-decoration: none;
	padding: 5px;
	background-color: #FFD688;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0;
	border-left-width: 1px;
	border-top-color: #704601;
	border-right-color: #704601;
	border-bottom-color: #704601;
	border-left-color: #704601;
	text-align: center;
} 

/* Hover Styles */ 
#menu ul a:hover {
	color: #64330B;
	background-color: #FFE8BB;
} 

/* Sub Menu Styles */ 
#menu li ul a {
	text-decoration: none;
	color: #64330B;
	background-color: #FFD688; /* IE6 Bug */
	padding: 5px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 0;
	border-left-width: 1px;
	border-top-color: #704601;
	border-right-color: #704601;
	border-bottom-color: #704601;
	border-left-color: #704601;
	background-image: url(../images/button.png);
} 

/* Sub Menu Hover Styles */ 
#menu li ul a:hover {
	color: #64330B;
	background-color: #FFE8BB;
	background-image: url(../images/button_hover.png);
} 

/* Icon Styles */ 
#menu ul a.submenu {
	background-color: #FFD688;
	color: #64330B;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	background-image: url(../images/button.png);
} 
#menu ul a.submenu:hover {
	color: #64330B;
	background-color: #FFE8BB;
	background-image: url(../images/button_hover.png);
}
