/**************** menu coding *****************/
#menu {
	position:relative;
	z-index:2;
	width: 100%;
	float: left;
	background-image: url(art/nav-bg-grn.jpg);
	background-repeat: repeat;	
}

#menu ul {	
	position:relative;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 11.4em;
	float: left;
	/* Text alignment for menu */
	text-align:center;
}

#menu a, #menu h2 {
	display: block;
	margin: 0;
	padding: 2px 3px;
	font-family: arial, helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
	font-variant: normal;
	color: #FFF;
	background-image: url(art/nav-bg-grn.jpg);
	background-repeat: repeat;
	background-color: #090;
	border: 0px solid #D6D6D6;
	text-transform: uppercase;
}

#menu h2 {	
	color: #fff;
	text-transform: uppercase;
}

#menu a {
	color: #FFF;
	text-decoration: none;
}

#menu a:hover {
	color: #FC0;
	background-image: url(art/nav-bg-blu.jpg);
	background-repeat: repeat-x;
}

#menu li {position: relative; vertical-align: bottom;}

#menu ul ul {
	position: absolute;
	/* Text alignment for submenu */
	text-align:left;
}

#menu ul ul ul {
	position: absolute;
	top: 0;
	left: 100%;
	border:0px solid;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;  vertical-align: bottom;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;  vertical-align: bottom;}

