/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyout2.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
#menu {
	z-index:1000;
	font-size:1.4em; /* this page only */
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 2px;
	margin-left: 0px;
	font-weight: normal;
	text-transform: uppercase;
}

/* remove all the bullets, borders and padding from the default list styling */
#menu ul {
	margin:0;
	list-style-type:none;
	width:235px;
	padding: 0;
}
/* hack for IE5.5 */
* html #menu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
#menu li {
	position:relative;
	height:auto;
	background-image: url(gfx/spacer.gif));
	background-repeat: no-repeat;
	background-position: 3px 0px;
}
#menu li li {
	position:relative;
	height:auto;
	background-color: #E0E0E0;
}

/* style the links */
#menu a, #menu a:visited {
	display:block;
	text-decoration:none;
	height:auto;
	width:235px;
	color:#8A6D5B;
	text-indent:0px;
	padding-left: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
}
#menu .selected a , #menu .selected a:visited {
	display:block;
	text-decoration:none;
	height:auto;
	width:235px;
	color:#231F20;
	background-image: url(../gfx/menu-icon.gif);
	background-repeat: no-repeat;
	background-position: 0px 7px;
	text-indent:0px;
	padding-left: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
}
/* hack for IE5.5 */
* html #menu a, * html #menu a:visited {
	width:235px;
	w\idth:235px;
}
/* style the link hover */
* html #menu a:hover {
	color:#262020;
	}

#menu :hover > a {
	color:#231F20;
	background-image: url(../gfx/menu-icon.gif);
	background-repeat: no-repeat;
	background-position: 0px 7px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:212px;
}
/* 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;
}


  

