@charset "utf-8";
/* CSS Document */



/* Horizontal Mode - CSS and Drop Down */
/* horizontal width = #menu div */
/* individual list width is set here */
#menu {
	width: 926px;
	float: left;
	height: 48px;
	background:url(images/menuBK.jpg) top left repeat-x;
}

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 12.8em;
	float: left;
	text-align:center;
}




/* Formatting Headings and Anchors */
/* apply colors and text-decorations to links */
#menu a, #menu h2 {
	font: bold 16px/16px arial, helvetica, sans-serif;
	display: block;
	border-width: 0px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
	margin: 0;
	padding: 0px 0px;
	background:url(images/menuBK.jpg) top left repeat-x;

}
#menu h2 {
	color: #fff;
	text-transform: uppercase;
}
#menu a {
	color: #FFF;
	text-decoration: none;
	height:25px;
	padding-top:15px;
}
#menu a:hover {
	color: #EA1F19;
	background:url(images/menuBK.jpg) top left repeat-x;

}





/* Position sub-menu and dropdowns */
/* The li-pos-relative is the containing block for sub ULs */
/* Following subs are absolute w/ high z-index to make them appear and drop down above content */
/* Moving third subs require offset position */
#menu li {
	position: relative;
}
#menu ul ul {
	position: absolute;
	z-index: 500;
}
#menu ul ul ul {
	top: 0;
	left: 100%;
}




/* Hiding headings unless they are inside the top level UL */
/* Display BLOCK show the three levels being activated */
/* Display NONE hides the unwanted (and deeper level) lists or LIs */
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;}

