/* MENU CCS */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 160px; /* Width of Menu Items */
	background: #b7b7b7; /* IE6 Bug */
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	border-color: #000000;
	outline-color: #000000;
	}

ul li {
	position: relative;
	border: 1px solid #fff;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	background-color: #000000;
	}
	
#nav ul, #nav ul ul, #nav ul ul ul{
	position: absolute;
	left: 158px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}
#nav li:hover ul ul, #nav li:hover ul ul ul{
    display:none; 
  
}
/* Styles for Menu Items */
#nav a {
	width: 152px; /* Width of Menu Items */
	display: block;
	text-decoration: none;
	color: #66CCFF;
	padding:3px;
	border-top: 1px solid  #ddd;
	border-bottom: 1px solid  #aaa;
	font-size:12px;
	border-color: #333333;
	outline-color: #333333;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */
		
#nav li ul li a { padding: 2px 3px; } /* Sub Menu Styles */
		
#nav li:hover ul, #nav li.over ul { display: block; } /* The magic */

ul li a:hover {
	border-top: 1px solid  #660066;
	border-bottom: 1px solid  #660066;
	color: #CCCCCC;
	} /* Hover Styles */

ul li.menuparent { background: transparent url(../images/menu_purple_arrow.gif) right center no-repeat; }
ul li.menuparent:hover {
	background-color: transparent;
	background-image: url(../images/menu_purple_arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
}


li>ul { 
	top: auto;
	left: auto;
}
/* Win IE only \*/
* html #nav li{float:left;} 
/* end holly hack */
#nav li:hover ul, #nav ul li:hover ul, #nav ul ul li:hover ul{
    display:block;
}

ul li.menuparent:hover,
ul li:hover,
ul li.over{
	background-color: #666666;
	border-top-color: #000000;
	} /* Hover Styles */
