/* CSS Document */

#menu {
width: 187px; /* 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; 
	color: #FFFFFF;*/
	display: block;
	margin: 0;
	padding: 1px 0px 1px 0px;
	
	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;
	border-style: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: 128px; /* width is based on the containing block */

}

div#menu ul ul ul li:hover 
{
background-color:#dae1ed;
}
div#menu ul ul ul li 
{
background-color:#ffffff;
}

#menu ul ul ul li {
height:18px;
}

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;}

