/* Begin CSS Popout Menu */
.menu {
	/* z-index: 1000; */
	margin-top: 2ex;
	font-size: 12px;
	text-align: center;
	color: #FFFFFF;
	/* padding-bottom: 12em; */ /* To allow room for bottom dropdown */
}

.menu ul, .menu li, .menu a {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

.menu a {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;	
	
	text-decoration: none;
	color: #FFFFFF;
}

/* Styling for Expand */
.menu ul {
	width: 150px;
	list-style: none;
}

/* Requirement: Put the element selector name (div)
onto non anchor hover selectors to force IE5 and
5.5 to correctly apply the csshover file. */
div.menu li, div.menu li.x {
	position: relative;
	width: 100%;
	
	margin-bottom: 3px;
	padding-top: 2px;
	padding-bottom: 2px;
	
	background-color: #ed1c24;
}

.menu li.x {
	background-image: url('/public/images/backgrounds/menu-x.gif');
	background-repeat: no-repeat;
	background-position: bottom right;
}

.menu li.x:hover {
	background-image: url('/public/images/backgrounds/menu-x-hover.gif');
	background-repeat: no-repeat;
	background-position: bottom right;
}
.menu li:hover, .menu li.x:hover { background-color: #d41920; }

div.menu li ul {
	position: absolute;
	top: 0;
	left: 100%;
	display: none;
	background-color: #d41920;
}

div.menu ul ul,
div.menu ul ul ul,
div.menu ul li:hover ul ul,
div.menu ul li:hover ul ul ul {
	display: none;
}

div.menu ul li:hover ul,
div.menu ul ul li:hover ul,
div.menu ul ul ul li:hover ul {
	display: block;
}

div.menu li:hover ul, 
div.menu li:hover li:hover ul,
div.menu li:hover li:hover li:hover ul { 
	display:block; 
}

/* End non-anchor hover selectors */