.uparrow, .downarrow {
	position:absolute ;
	width:169px ;
	color:#000;
	border: 1px solid #FFF;
	height:25px ;
	z-index:10000 ;
}
.uparrow {
	background:#ccc url(/images/arrow_up.gif) center no-repeat ;
}
.downarrow {
	background:#ccc url(/images/arrow_down.gif) center no-repeat;
}
.menu {
	width:770px; 
	position:relative;
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	border-bottom: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
	white-space: normal;
	/* hide the sub levels and give them a positon absolute so that they take up no room */
	visibility:hidden;
	position:absolute;
	top:23px;
	left:0; 
	width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	color:#fff;
/*	width:110px;  defined in html pages by anchor id */
	height:23px;
	background:#CC0044;
	padding-left:0px;
	line-height:23px;
	font-size: 11px;
	font-weight: bold;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#CCC url(/images/drop.gif) bottom right no-repeat;

}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#CCC url(/images/drop.gif) bottom right no-repeat;
}
.menu ul ul :hover > a.drop {
background:#CCC url(/images/drop.gif) bottom right no-repeat;
}
.menu ul ul a, .menu ul ul a:visited {
	border:1px solid #FFF; 
	border-width:1px 1px 0 0; 
	font-weight: normal;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#CCC;
}

/* another hack for IE5.5 */
* html .menu ul ul {
top:23px;
t\op:23px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#CCC; 
	color:#000; 
	height:auto; 
	line-height:1em; 
	padding:6px 10px; 
	width:129px
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
}

/* position the third level flyout menu */
.menu ul ul ul{
	left:150px; 
	top:0;
	width:170px;
	border-left: none;

}

/* style the third level links */
.menu ul ul ul a, .menu ul ul ul a:visited {
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-170px;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background:#c04;
}
.menu :hover > a {
color:#fff;
background:#c04;
}
/* style the second level hover */
.menu ul ul a:hover {
background:#AAA;
}
 .menu ul ul :hover > a {
background:#AAA;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#AAA;
}
