/* CSS Menus - Horizontal CSS Menu with Dropdown and Popout Menus - 20050131 */

*{margin:0}

body{font-family:Arial, Helvetica, sans-serif}

/* Begin CSS Popout Menu */

#menu{
width:950px;
height:21px;
float:left;
  background-color: #444;
  padding-bottom: 3px;
}

#menu a, #menu h2{
	font: 12px Arial, Helvetica, sans-serif;
	font-weight: 450;
	font-style: normal;
	display:block;
	#333-space:nowrap;
	margin:0;
	color:#ddd;
}

#menu h2{
	border-right-color: #ddd;
	border-right-style: solid;
	border-right-width: 1px;
  }

#menu a{
	background:#444;
	text-decoration:none;
	color: #ddd;
	padding:3px 6px;
}

#menu a, #menu a:visited{
color:#ddd;
}

#menu a:hover{
color:#333;
 background-color: #ddd;
text-decoration: none;
}

#menu a:active{
color:#ddd;
background:#444;
}

#menu ul{
list-style:none;
margin:0;
padding:0;
float:left;

}

#menu li{
position:relative;
}

#menu li.last{
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #444;
}

#menu ul ul li{
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #333;
  top:4px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #444;
}

#menu ul ul{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	width:9em;
	left:-1px;
}

#menu ul ul ul{
top:0;
left:100%;
border-left:1px solid #EBF9DE;
}

#menu ul ul ul li{
top:0;
}

/* Begin non-anchor hover selectors */

/* Enter the more specific element (div) selector
on non-anchor hovers for IE5.x to comply with the
older version of csshover.htc - V1.21.041022. It
improves IE's performance speed to use the older
file and this method */

div#menu h2:hover{
background:#444 url(arrows.gif) no-repeat -999px -9999px;
}

div#menu li:hover{
cursor:pointer;
z-index:100;
}

div#menu li:hover ul ul,
div#menu li li:hover ul ul,
div#menu li li li:hover ul ul,
div#menu li li li li:hover ul ul
{display:none;}

div#menu li:hover ul,
div#menu li li:hover ul,
div#menu li li li:hover ul,
div#menu li li li li:hover ul
{display:block;

}

/* End of non-anchor hover selectors */

/* Styling for Expand */

#menu a.x, #menu a.x:visited{
background:#444 url(arrows.gif) no-repeat 100% 8px;
}

#menu a.x:hover{
background:#ddd url(arrows.gif) no-repeat 100% 8px;
}

#menu a.x:active{
	color:#111;
	background-color: #fff;
}

/* End CSS Popout Menu */

