/* CSS Document */

#menu {
width: 146px; /* set width of menu */
/*
background: #eee;
*/
} 

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	
}

/* style, color and size links and headings to suit */
#menu a, #menu h2 {
	 font: bold 11px Arial, Helvetica, Sans-Serif; 
	display: block;
	margin: 0;
	padding: 2px 3px 2px 16px;
	color: #FFFFFF;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 1px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #ccc;
	border-right-color: #0C4F76;
	border-bottom-color: #FFFFFF;
	border-left-color: #bbb;
	text-decoration:none;
	
}

#menu ul ul ul  a {
/* border-bottom-style: none; */
background: #2789AA   url(../images/a.gif) no-repeat left center; 
text-decoration:none;

}
#menu ul ul ul  a:hover {
/* border-bottom-style: none; */
background: #2789AA   url(../images/aHover.gif) no-repeat left center; 
text-decoration:none;
}

#menu ul #home a{
border-bottom-style: none;
text-decoration:none;
}

#menu ul #upshow a{
border-top-style: solid;
border-top-color: #FFFFFF;
border-top-width: 1px;
text-decoration:none;
}
#menu ul #upshow ul   a {
border-top-style: none;
}
#menu ul #upshow ul #first  a {
border-top-style: solid;
}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu a {
color: #FFFFFF;
background: url(../images/a.gif) no-repeat left center; /* */
}

#menu a:hover {
color: #FFFFFF;
background:  url(../images/aHover.gif) no-repeat left center; /* #2990B3 */
}
#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 106%; /* width is based on the containing block */

}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

