/* ************************************************************************************************************* */
/* menu */

/* remove all the bullets, borders and padding from the default list styling */
#Menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#Menu li {
	float: left;
	position: relative;
	padding: 0;
}

/* style the links for the top level */
#Menu a.small {
	width: 100px;
	border-left: 1px solid #666666;
}

#Menu a.small:hover{
	background: Black;
}

#Menu a {
	display: block;
	font: 10px Verdana;
	text-decoration: none; 
	color: White; 
	height: 30px;
	width: 156px;
	line-height: 29px;
	text-align: center;
	letter-spacing: 1px;
}

/* style the second level background */
#Menu ul ul a.drop {
	background: Black;
	width: 156px;
}
/* style the second level hover */
#Menu ul ul a.drop:hover{
	background: #333333;
	width: 156px;
}
#Menu ul ul :hover > a.drop {
	background: #333333;
	width: 156px;
}
/* style the third level background */
#Menu ul ul ul a {
	background: #333333;
	width: 200px;
	text-align: left;
	padding-left: 10px;
}
/* style the third level hover */
#Menu ul ul ul a:hover {
	background: Black;
	width: 200px;
	text-align: left;
	padding-left: 10px;
}
#Menu ul ul ul :hover > a {
	background: Black;
	width: 200px;
	text-align: left;
	padding-left: 10px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#Menu ul ul {
 	visibility: hidden;
 	position: absolute;
 	height:0;
 	top: 30px;
 	left: 0; 
 	width: 156px;
}

/* position the third level flyout menu */
#Menu ul ul ul{
	left: 156px;
	top: 0;
	width: 220px;
}
/* position the third level flyout menu for a left flyout */
#Menu ul ul ul.left {
	left: -156px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
#Menu table { position: absolute; top: 0; left: 0;}

/* style the second level links */
#Menu ul ul a {
	margin: 0px 0px -1px 0px;
	color: White; 
	height: auto;  
	width: 156px;
	border-top: 1px solid #666666;
}

/* style the top level hover */
#Menu a:hover, #Menu ul ul a:hover{ 
	background: Black;
}
#Menu :hover > a, #Menu ul ul :hover > a {
	background: Black;
}

/* make the second level visible when hover on first level list OR link */
#Menu ul li:hover ul,
#Menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
#Menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
#Menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
#Menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
#Menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}