/* CSS Document */
h1 {
	font-family: Continuum Bold, Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #000000;
	background-color: #FFFFFF;
	letter-spacing: 1em;
}

#menu {/*make the menus pop out horizontally*/
	width: 100%;
	background: #FFFFFF;
	float: left;
} 

#menu ul {/* remove bullets and list indents */
	list-style: none;
	margin: 0;
	padding: 0;
	width: 14em;
	float: left;
}

/* style, color and size links and headings to suit */
#menu a, #menu h2 {
	font: bold 11px/16px Arial, Helvetica, sans-serif, "Continuum Bold",;
	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;
	font-family: Arial, Helvetica, sans-serif, "continuum bold",;
	letter-spacing: .5em;
	text-align: center;
	font-size: 11px;
	margin: 0px;
	padding: 0px;
	line-height: 16px;
}

#menu a {
	color: #000;
	background: #efefef;
	text-decoration: none;
}

#menu a:hover {
	color: #a00;
	background: #fff;
}

#menu li { /* this is for the main menu items. */
	position: relative;
	letter-spacing: .5em;
	font-size: 11px;
} 


#menu ul ul {/*this is for the side pop out menus.  It makes them pop out next to the original menu */
	position: absolute;
	top: 0;
	left: 100%; /* to position them to the right of their containing block */
	width: 100%; /* width is based on the containing block */
}

div#menu ul ul, /* hides all of the child menus after the parent one */
div#menu ul li:hover ul ul, /* hides all of the menus after the hover */
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;}


