body {
	behavior: url(includes/csshover.htc);
	} /* WinIE behavior call */
	
div#nav-cat {
	width: 150px;
	margin: -1px 0 0 -1px;
	background-color: #FFFA94;
	font-weight:bold;
}
	
div#nav-cat ul {
	width: 150px;
	margin: 0;
	padding: 0;
	background-color: #666699; /*Main menu no submenu color*/
/*  border: 1px solid #AAA;*/
}
	
div#nav-cat ul.level2 {
	background-color: #000033; /*First submenu color*/
}
	
div#nav-cat ul.level3 {
	background-color: #000033; /*Second submenu color*/
}
	
div#nav-cat ul.level4 {
	background-color: #000033;
}
	
div#nav-cat ul.level5 {
	background-color: #000033;
}
	
div#nav-cat ul.level6 {
	background-color: #000033;
}
	
div#nav-cat li {
	position: relative; 
	list-style: none; 
	margin: 0;
	margin-top: 0; /* change it to whatever space you want to put space between buttons*/
	border-bottom: 1px solid #CCC; /* <---this line may help or hinder IE menu shifting issues */
}
	
div#nav-cat li li {
	margin: 0; /* this overrides the margin-top in the declaration above */
} 
	
div#nav-cat li:hover {
	background-color: #8282BC; /* Main menu item with no submenu mouseover color*/
}
	
div#nav-cat li.submenu {
	background: url(../images/submenu.gif) 95% 50% no-repeat;
	background-color: #666699; /* Main menu WITH a submenu color*/
}
	
div#nav-cat li.submenu:hover {
	background-color: #323265; /* Main menu item with WITH submenu mouseover color*/
}
	
div#nav-cat li a {
	display: block; 
	padding: 0.25em 0 0.25em 0.5em;
	text-decoration: none; 
	width: 150px; 
	color: white;
}
  
/*border-left: 0.5em solid #BBB;}
div#nav li a:hover {
	border-left-color: red;
}*/
	
div#nav-cat>ul a {
	width: auto;
}
	
div#nav-cat ul ul {
	position: absolute; 
	top: 2px; 
	left: 150px;
	display: none;
}
  
div#nav-cat ul.level1 li.submenu:hover ul.level2, 
div#nav-cat ul.level2 li.submenu:hover ul.level3,
div#nav-cat ul.level3 li.submenu:hover ul.level4,
div#nav-cat ul.level4 li.submenu:hover ul.level5,
div#nav-cat ul.level5 li.submenu:hover ul.level6 {
	display:block;
}