.menu {
	font-family: arial;
	position: relative; 
	top: 25px; left: 3px;
	padding-bottom: 25px;
	width: 165px;
	font-size: 10px;
	border-right: 3px solid #EFEFEF; 
	z-index: 99;
	}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	margin: 0; padding: 0;	
	list-style-type: none;
	}

.menu ul ul {
	width: 165px;
	}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	position: relative;
	height: 22px; width: 165px;
	}

/* style the links for the top level */
.menu a:link, .menu a:visited {
	display: block;
	padding-left: 25px;
	font-weight: bold;
	font-size: 13px;
	color: #000; 
	line-height: 20px;
	text-decoration: none; 
	background: url(../images/bullet.gif) 5px 7px no-repeat;
	}
	
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a {
	width: 145px; 
	w\idth: 145px;
	}

/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
	visibility: hidden; 
	position: absolute;
	top: 0px;
	left: 165px; 
	width: 169px;
	background: #EFEFEF;
	}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 0px;
	t\op: 0px;
	}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position: absolute; 
	top: 0; left: 0; 
	border-collapse: collapse;
	}

/* style the second level links */
.menu ul ul a.link {
	color: #000; 
	height: auto; 
	line-height: 18px; 
	width: 144px;
	font-weight: bold;
	text-decoration: none;
	}

/* yet another hack for IE5.5 */
* html .menu ul ul a { 
	width: 132px;
	w\idth: 132px;
	}

/* style the top level hover */
.menu a.link:hover { 
	color: #3C5589;
	font-weight: bold;
	text-decoration: none;
	background: #EFEFEF;
	}

* html .menu a.link:hover { 
	color: #3C5589;
	font-weight: bold;
	text-decoration: none;
	}

.menu :hover > a.link {
	color: #3C5589;
	font-weight: bold;
	text-decoration: none;
	}

.menu ul ul a.link:hover { 
	color: #3C5589;
	font-weight: bold;
	text-decoration: none;
	}

.menu ul ul :hover > a.link { 
	color: #3C5589;
	font-weight: bold;
	text-decoration: none;
	}

/* 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; 
	}