/**************** menu coding *****************/
#menu {
	width: 759px;
	background: #48403f;
	float: left;
	border-top: 2px solid white;
	border-bottom: 2px solid white;
}

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-right: 2px solid white;
	float: left;
}

#menu a, #menu h2 {
	font-family: Arial;
	font-size: 8pt;
	font-weight: bold;
	display: block;
	margin: 0;
	padding: 2px 3px;
}

#menu h2 {
	color: white;
	background: #48403f;
	font-size: 7pt;
	font-weight: bold;
	text-transform: uppercase;
	padding-right: 6px;
	padding-left: 6px;
}

#menu h2:hover, #menu h2:hover a {
	color: white;
	background-color: #F18A20;
}

#menu a {
	color: white;
	background: #48403f;
	text-decoration: none;
}

#menu a:hover {
	color: white;
	background: #F18A20;
}

#menu li {
	border: 0px;
	position: relative;
}

#menu ul ul {
	position: absolute;
	z-index: 500;
	/*width: 12em;*/
	width: 8em;
	border: 0px;
}

#menu ul ul ul {
	position: absolute;
	top: 0;
	left: 100%;
}

#menu ul ul li {
	border-left: 0px;
	border-bottom: 1px solid white;
}

#menu ul.lastItem {
	border-right: none;
}

#menu ul.lastItem li h2 {
	padding-left: 8px;
	padding-right: 8px;
}

#menu ul.firstItem li h2 {
	padding-right: 8px;
	padding-left: 8px;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{
	z-index: 500;
	display: block;
}

