.menu {
	position: absolute;
	top: 0px; left: 0px;
	width: 175px;
	font-size: 10px;
	}

.menu h2 {
	padding-left: 20px;
	}

.menu ul.navigation {
	margin: 0; padding: 0;
	list-style-type: none;
	}

.menu ul ul {
	margin: 0; padding: 0;
	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 {
	position: relative;
	float: left;
	width: 175px;
	}

.menu li.sub {
	position: relative; 
	float: left;
	width: 175px;
	}

* html .menu li.sub {
	float: left;
	width: 175px;
	}

.menu li.sub2 {
	float: left;
	width: 175px;
	}

* html .menu li.sub2 {
	float: left;
	width: 175px;
	}

.nav_img {
	float: left;
	margin-right: 10px;
	}

/* style the links for the top level */
.menu li a {
	display: block;
	color: #4099CC; 
	font-size: 12px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 20px;
	line-height: 32px;
	}

.menu li.sub a {
	display: block;
	color: #4099CC; 
	font-size: 11px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 30px;
	line-height: 21px;
	}

.menu li.sub2 a {
	display: block;
	color: #4099CC; 
	font-size: 11px;
	font-weight: normal;
	text-decoration: none; 
	padding-left: 40px;
	line-height: 21px;
	}

.menu a.activ, .menu li.sub a.activ, .menu li.sub2 a.activ {
	color: #D25D36;
	background: #FFF; 
	}
	
* html .menu a {
	font-size: 12px;
	}

/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
	width: 122px;
	}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 0px;
	t\op: 0px;
	}

/* 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; 
	border-collapse: collapse;
	}

/* style the top level hover */
.menu a.link:hover { 
	color: #D25D36;
	font-weight: normal;
	}

* html .menu a.link:hover { 
	color: #D25D36;
	font-weight: normal;
	}

.menu :hover > a.link {
	color: #D25D36;
	font-weight: normal;
	}
