#navmenubar {
    background-color: #E8EDF2;
    border-top: 1px solid #82A2B9;
    font-family: Arial,verdana, helvetica, sans-serif;
    font-size: 8pt;
    font-weight: bold;
	margin: 0px;
    padding: 0px;
    width: 220px;
} 

#navmenubar ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;    
}

/* style, color and size links and headings to suit */
#navmenubar a {
    border-bottom: 1px solid #82A2B9;
    border-top: 1px solid #E8EDF2;
    color: black;
    display: block;
    margin: 0px;
    padding: 6px 18px;
    text-decoration: none;
    width: 184px;
}

#navmenubar a:hover, 
#navmenubar a:focus, 
#navmenubar a:active {
    border-top: 1px solid #D2DCE5;
    background-color: #D2DCE5; 
    color: #002538;
}

#navmenubar li {
	/* make the list elements a containing block for the nested lists */
	position: relative;
} 

#navmenubar li a.selected {
	color: #002538;
} 

#navmenubar ul ul li.haschildren a {
	background-color: #E8EDF2;
	background-image: url('../Images/arrow-right.gif');
	background-position:right;
	background-repeat: no-repeat;
}

#navmenubar ul ul li.haschildren a:hover,
#navmenubar ul ul li.haschildren a:focus,
#navmenubar ul ul li.haschildren a:active {
	background-color: #D2DCE5;
	background-image: url('../Images/arrow-right.gif');
	background-position:right;
	background-repeat: no-repeat;
}

#navmenubar ul ul ul li a {
	background-color: white;
	background-image: none !important;
    border-bottom: 1px solid #82A2B9;
    border-right: 1px solid #82A2B9;
	margin: 0px !important;
}

* html #navmenubar ul li a {
    height: 1%; /* IE fix: make links honour display: block; properly */
}

* html #navmenubar ul li {
    float: left; /* IE fix: "whitespace in lists" problem */
    width: 100%;
}

#navmenubar ul ul ul li a:hover,
#navmenubar ul ul ul li a:focus,
#navmenubar ul ul ul li a:active {
	background-color: #D2DCE5;
	background-image: none !important;
	color: #002538;
}

#navmenubar ul ul ul {
    /*border-top: 1px solid #82A2B9;*/
	left: 220px; /* to position them to the right of their containing block */
	position: absolute;
	top: -1px;
	width: 100%; /* width is based on the containing block */
	z-index: 1000;
}

#navmenubar ul ul ul,
#navmenubar ul ul li:hover ul ul {
	display: none;
}

#navmenubar ul ul li:hover ul,
#navmenubar ul ul ul li:hover ul {
	display: block;
}