/* tier 1 list item */
.menu li
{
	margin: 0px;
	border: 0px;
	background: none;
}

/* tier 2 list item if different from tier 1*/
.menu ul li
{	
	text-align: left;
	border: 1px solid #000000;
	margin: 0px;
	background: #444473;
}

/* tier 2 list (make sure to set the width! */
/* Be sure to set this value in the IE6 fixes as well */
.menu ul 
{
	width: 180px;
}

/* tier 1 anchor tag */
.menu a 
{
	padding: 8px;
	display: block;
	margin: 0px;
	text-decoration: none;
	color: #ffffff;
	font-size: 12px;
	font-weight: bold;
}

/* tier 2 anchor tag if different from tier 1 */
.menu ul li a
{
	font-size: 11px;
	color: #ffffff;
}

/* tier 1 anchor tag on hover */
/* Be sure to set this value in the IE6 fixes as well */
.menu li a:hover
{	
	background: none;
	color: #cccccc;
}

/* tier 2 anchor tag on hover if different from tier 1 */
.menu ul li a:hover
{
	background: #666666;
	color: #ffffff;
}

/* if you have a border around the tier 2 list items, this will remove the top border on all the items except the first */
.menu ul>li + li 
{
	border-top: 0px;
}

/* this determines the position of the tier 2 menu */
/* Be sure to set this value in the IE6 fixes as well */
.menu li li:hover>ul 
{
	top: 0px;
	left: 100%;
}





/* IE6 Fixes */

.menu li li 
{
	width: 180px;
}

.menu li a:hover, .menu .adxmhoverA 
{	
	color: #cccccc;
}

/* this determines the position of the tier 2 menu */
.menu .adxmhoverUL .adxmhoverUL 
{
	top: 0px;
	left: 100%;
}