﻿#menudd {
	float: left;
	margin: 10px 0px 0px 10px;
	height: 30px;
	width: 270px;
}

#menudd ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#menudd ul li {
	position: relative;
}

#menudd ul li a {
	font-size: 11px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	color: white;
	display: block;
	height: 30px;
	margin: 0px;
	text-decoration: none;
}

#menudd ul li a:hover {
	color: rgb(189,12,1);
}

#menudd ul ul {
	position: absolute;
	left: 40px;
	top: 20px;
	z-index: 500;
	display: none;
}

#menudd ul li ul li a {
	font-size: 11px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	display: block;
	height: 13px;
	margin: 0;
	padding: 2px 3px;
	color: black;
	background: rgb(239,239,239);
	text-decoration: none;
}

#menudd ul li ul li a:hover {
	color: rgb(189,12,1);
	background: white;
}

#menudd ul li:hover ul {
	width: 150px;
	display: block;
}

#menudd ul ul,
#menudd ul li:hover ul ul,
#menudd ul ul li:hover ul ul
{display: none;}

#menudd ul li:hover ul,
#menudd ul ul li:hover ul,
#menudd ul ul ul li:hover ul
{display: block;}