	/* Division Layout  */
	/* Copyright 2006 by Amies Communications. */ 

/*IE CSS :hover BUG FIX, Thank you to Peter Ned (http://www.xs4all.nl/~peterned/csshover.html)*/
body {
}

.subnav 
{
	float:left;
}

.menuExpandedPlus
{
	background-image:url(images/button_plus.gif);
	background-repeat:no-repeat;
	background-position:bottom;
	width:9px;
	height:9px;
	display:block;
	margin-right:5px;
	margin-top: 4px;
	float:left;
}

.menuExpandedPlus span
{
	display:none;
}

.menuCollapseMinus
{
	background-image:url(images/button_minus.gif);
	background-repeat:no-repeat;
	background-position:bottom;
	width:9px;
	display:block;
	height:9px;
	margin-right:5px;
	margin-top: 4px;
	float:left;
}

.menuCollapseMinus span
{
	display:none;
}


/*Define Menu Style*/
#menu {
margin: 0;
width: 900px;
background: #eee;
/*float: left;*/
display: inline;
}
#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 12em;
float: left;
}
#menu a, #menu h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu a {
color: #000;
background: #efefef;
text-decoration: none;
}

#menu a:hover {
color: #a00;
background: #fff;
}

/*Positioning the Popout Menus and Dropdown Menus*/
#menu li {position: relative;}

#menu ul ul {
position: absolute;
z-index: 500;
}

#menu ul ul ul {
top: 0;
left: 100%;
}


/*Hiding and Revealing using :hover*/
div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover 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;}



/*Fix it for IE!*/
<!--[if IE]>
<style type="text/css" media="screen">
body {
font-size: 100%;
}

#menu ul li {float: left; width: 100%;}
#menu ul li a {height: 1%;} 

#menu a, #menu h2 {
font: bold 0.7em/1.4em arial, helvetica, sans-serif;
}
</style>
<![endif]-->

