#menutop {
	/*width: 100%;
	float: left;*/	
	width: 620px;
}
#menutop ul {	/*controls placement of 1st level - top */
	list-style: none;
	margin: 0; /* -right controls space between buttons */
	padding: 0;
	/*width: 6em; controls width of top and second tier menus - use if all widths are the same*/
	float: left;
	background: #fff;
	height: 28px;
}
#menutop a {  /*describes specifics of the look of 2nd tier since they all have links*/
	display: block;
	margin: 0;
	padding-top: 2px;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	color: #5E88BA;
	background: #fff;
	text-decoration: none;
	cursor: pointer;
}
#menutop a:hover {		/*describes specifics of the look of 2nd tier */
	color: #0966A6;
	background: #fff;
	font-weight: bold;
}

#topmenubar {
	/*width: 100%;*/
	float: left;	
	width: 600px;
	margin-top: 26px;
	padding-left: 20px;	
}

#topmenubar ul {	/*controls placement of 1st level - top */
	list-style: none;
	margin: 0; /* -right controls space between buttons */
	padding: 0;
	/*width: 6em; controls width of top and second tier menus - use if all widths are the same*/
	float: left;
	height: 38px;
}

#topmenubar a {  /*describes specifics of the look of 2nd tier since they all have links*/
	display: block;
	margin: 0;
	padding: 4px 4px;
	padding-left: 2px;
	padding-right: 10px;
	color: #0A2F59;
	background: #FEBA3D;
	text-decoration: none;
	cursor: pointer;
	text-align: left;
}

#topmenubar a:hover {		/*describes specifics of the look of 2nd tier */
	color: #fff;
	background: #5E88BA;	
}

#topmenubar ul ul li a {font: 12px Verdana, Arial, Helvetica, sans-serif}

#topmenubar h2 {  /*nothing in h2 but 1st tier name with link, but needs margin: 0*/
	margin: 0;
}

#topmenubar h2 a {  /*only need to specify attributes here that will be different from the standard <a> defined above*/
	padding-top: 13px;
	padding-bottom: 11px;
	padding-left: 0px;
	padding-right: 0px;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	border-bottom: 0px;
	color: #000;
	background: url(images/nav_bg.jpg) repeat-x;
	margin: 0;
	text-align: center;
}
#topmenubar h2 a:hover {	/*only need to specify attributes here that will be different from the standard <a: hover> defined above*/
	color: #517DB5;
	/*color: #FF4711;*/
	background: url(images/nav_bg.jpg) repeat-x;
}

#topmenubar li {position: relative;}

#topmenubar ul ul {
	position: absolute;
	z-index: 500;
	width: 200px;  /*if added, could make the second tier longer than the first tier*/
	left: -30px;  /*controls left offset */
}

div#topmenubar ul ul,
div#topmenubar ul li:hover ul ul,
div#topmenubar ul ul li:hover ul ul
{display: none;}

div#topmenubar ul li:hover ul,
div#topmenubar ul ul li:hover ul,
div#topmenubar ul ul ul li:hover ul
{display: block;}


