#submenu {
	font-weight: normal;
	width: 150px; /* set width of submenu */
	text-align: left;
	text-transform: uppercase;
}

#submenu ul { /* remove bullets and list indents */
	font-weight: normal;
	list-style: none;
	margin: 0;
	padding: 0;
}

#submenu ul li {
	height: 30px;
	line-height: 30px;
	list-style: none;
	padding-left: 4px;
	position:relative
}

/* style, color and size links and headings to suit */
#submenu a {
	font-family: arial, helvetica, sans-serif;
	font-size: 9pt;
	display: block;
	margin: 0;
}

li.item_selected {
	background: white url('../pics/submenubottom.png') no-repeat bottom;
}

a.item_selected {
	color: #028AD4;
}

#submenu a {
	text-decoration: none;
}

#submenu a:hover {
	color: #028AD4;
}

/* DEEP MENU PART */
#submenu ul ul {
	z-index:200;
	display:none;
	position:absolute;
	left:100px;
	top:26px;
	padding-top:4px;
	border:#fff solid;
	border-width:1px;
	background-color:#5E5E5E;
}
#submenu ul li:hover ul {
	display:block;
}
#submenu ul ul li {
	border:none; 
	width:150px; 
	float:left; 
	display:inline;
	height: 25px;
	line-height: 25px;
}
#submenu ul ul li a {
	color: white;
}
#submenu ul ul li a:hover {
	color: #D3E3C8;
}
