.menu {
	width:146px;
	position:relative;
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0px;
margin:0px;
list-style-type:none;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	width:140px;
	position:relative;
	margin:0px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	text-decoration:none;
	width:140px;
	/*height:30px;*/
	line-height:29px;
	font-size: 8pt;
	color: #5b5a5a;
	font-weight: bold;
	padding-left: 10px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:140px;
w\idth:129px;
}

/* style the second level drop background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background-color: #1A5187;
	background-image: url(images/menuArrow.gif);
	background-position: right center;
	background-repeat: no-repeat;
}
/* style the second level drop hover */
.menu ul ul a.drop:hover{
	background-color:#f8ca02;
	background-image: url(images/menuArrowOV.gif);
	background-position: right center;
	background-repeat: no-repeat;
}
.menu ul ul :hover > a.drop {
	background-color:#f8ca02;
}
/* style the third level background and width*/
.menu ul ul ul a, .menu ul ul ul a:visited {
	width:140px;
	background-color: #1A5187;
}
/* another hack for IE5.5 */
* html .menu ul ul ul a, .menu ul ul ul a:visited {
	width:140px;
	w\idth:140px;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background-color:#f8ca02;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0px;
top:0px;
left:139px; 
width:114px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:0px;
t\op:0px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:150px; 
top:0px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-114px;
}

/* 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 {
	color:#FFFFFF;
	/*height:30px;*/
	line-height:29px;
	width:140px;
	display: block;
	background-color: #1A5187;
	padding-right: 5px;
	padding-left: 5px;
	}

.menu ul li ul li ul li .tall {
	line-height: 15px;
	padding-top: 5px;
	padding-bottom: 5px;
}



.menu ul ul a:hover {
color: #5b5a5a;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a{
width:140px;
w\idth:140px;
}

/* style the top and second level hover */
.menu a:hover, .menu ul ul a:hover{
	background-color: #f8ca02;
}
.menu :hover > a, .menu ul ul :hover > a {
	background-color: #f8ca02;
}

/* 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; 
}
/* 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;
}
