/* CSS Document */

/*Horizontal CSS Dropdown and Popout Menu*/
#menu {
	background-color: #FFFCF2;
	width: 780px;
	float: left;
}
#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
	width: 130px;
}

#menu a, #menu h2 {
	display: block;
	margin: 0;
	border-top-width: 0.1em;
	border-right-width: 0.1em;
	border-bottom-width: 0.1em;
	border-left-width: 0.1em;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFCF2;
	border-bottom-color: #960001;
	border-left-color: #FFFCF2;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 3px;
}

#menu h2 {
	font-size: 13px;
	color: #FFFFFF;
	background-color: #960001;
	text-align: center;
	font-weight: normal;
}
#menu h2:hover {
	color: #000000;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #FDD87E;
	font-weight: bolder;
	font-size: 13px;
	border-right-color: #FFFCF2;
	border-top-width: 0.1em;
	border-right-width: 0.1em;
	border-bottom-width: 0.1em;
	border-left-width: 0.1em;
	background-color: #FEDF98;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 3px;
}
#menu h2 a {
	font-size: 13px;
	color: #FFFFFF;
	background-color: #960001;
	text-align: center;
	font-weight: normal;
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#menu h2 a:hover {
	color: #000000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	font-weight: bolder;
	border-left-style: none;
	font-size: 13px;
	background-color: #FEDF98;
	text-align: center;
	text-decoration: none;
}
#menu a {
	font-size: 11px;
	color: #343433;
	text-decoration: none;
	background-color: #FFFCF2;
}
#menu a:hover {
	color: #343433;
	background-color: #FEDF98;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}


/*Positioning the Popout Menus and Dropdown Menus*/
#menu li {
	position: static;
	background-position: center;
}
#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 {
behavior: url(csshover.htc);
font-size: 100%;
}
#menu ul li {
	float: left;
	width: 100%;
}
#menu ul li a {
	height: 1%;
} 
#menu a, #menu h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
</style>
<![endif]

