/**************** menu coding *****************/
#menutop {
	width: 10em; /* set width of menu */
	background: #b2b2b2;
} 

/* remove bullets and list indents */
#menutop ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

/* style, color and size links and headings to suit */
#menutop a {
	font: 12px/14px Trebuchet MS, Arial, Helvetica, Sans-serif;
	display: block;
	margin: 8px 5px 8px;
	padding: 0px;
	color: #fff;
	background: #b2b2b2;
	text-decoration: none;
/*	text-transform: uppercase;*/
}

#menutop a:hover,
#menutop ul li:hover,
#menutop ul li:hover a,
#menutop ul li:hover a:hover,
#menutop ul li:hover ul li:hover,
#menutop ul li:hover ul li:hover a,
#menutop ul li:hover ul li:hover ul li:hover a
{
	color: #111;
	background: #40b6c0;
}

#menutop ul li:hover ul a,
#menutop ul li:hover ul li:hover ul a
{
	color: #111;
	background: #e5e5e5;
}

/* make the list elements a containing block for the nested lists */
#menutop li {
/*	position: relative;*/
	float: left;
} 

#menutop ul ul {
	position: absolute;
	top: 100%; /* to position then below their containing block */
	left: 0px; /* to position them to the right of their containing block */
	width: 100px; /* width is based on the containing block */
	box-shadow: 4px 4px 8px #888;
}

#menutop ul ul li a {
	color: #111;
	background: #e5e5e5;
	margin: 0px 0px;
	padding: 5px 10px;
}

#menutop ul ul li a:hover {
	color: #a00;
	background: #e5e5e5;
}

div#menutop ul ul,
div#menutop ul ul ul,
div#menutop ul li:hover ul,
div#menutop ul li:hover ul ul
{display: none;}

div#menutop ul li:hover ul,
div#menutop ul ul li:hover ul
{display: block;}

/**************** menu coding *****************/
#menuleft {
	width: 10em; /* set width of menu */
	background: #ddf1f0;
} 

/* remove bullets and list indents */
#menuleft ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

/* style, color and size links and headings to suit */
#menuleft a, #menuleft h2 {
	font: 10px/12px Trebuchet MS, Arial, Helvetica, Sans-serif;
	display: block;
	border-width: 1px;
	border-style: solid;
	border-color: #ccc #fff #fff #fff;
	margin: 0;
	padding: 10px 3px;
}

#menuleft h2 {
	color: #fff;
	background: #000;
	text-transform: uppercase;
}

#menuleft a {
	color: #111;
	background: #eee;
	text-decoration: none;
}

#menuleft a:hover {
	color: #40b6c0;
	background: #eee;
}

/* make the list elements a containing block for the nested lists */
#menuleft li {
	position: relative;
} 

#menuleft ul ul {
	position: relative;
	top: 0;
	left: 0%; /* to position them to the right of their containing block */
	width: 100%; /* width is based on the containing block */
}

#menuleft ul ul li a {
	background: #eee;
	padding: 4px 10px;
}

#menuleft ul ul li a:hover {
	color: #40b6c0;
	background: #eee;
}

div#menuleft ul ul,
div#menuleft ul li:hover ul
{display: block;}

div#menuleft ul li:hover ul,
div#menuleft ul ul li:hover ul
{display: block;}