/*========================= TOP OF THE MENU CASCADE =========================*/

.submenu {
	font:10px Verdana, Arial, Helvetica, sans-serif; /* this sets the base font style for our entire menu */
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin: 33px 0 0 5px;
	padding:0;
	border:0;
	z-index: 100;                             /* keep menu below cut off corner */
}
html>body .submenu {
	margin: 33px 0 0 10px;
}

.submenu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:12px;                /* globally set the menu item line height */
}

.submenu li {
/*	float:left;     this creates the side-by-side array of top-level buttons - LEAVE in for vertical menu - by Greg */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
}

.submenu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.submenu ul li a,
.submenu ul li a:visited,
.submenu ul li:hover a,
.submenu ul li a:hover {          /* selected and unselected top-level menu items */
	height: 10px;           /* set height of all top level menu images or items */
	line-height: 14px;
	margin: 0;
	color: #665744;
}

html>body .submenu ul li a,
html>body .submenu ul li a:visited,
html>body .submenu ul li:hover a,
html>body .submenu ul li a:hover {
	height: 14px;           /* set height of all top level menu images or items */
	line-height: 14px;
}

.submenu ul li a,
.submenu ul li a:visited {                     /* unselected top-level menu items */
	display:block;
/*	float:left; */
	text-decoration:none;
}

.submenu ul li:hover a,
.submenu ul li a:hover {
	font-weight: bold;
	text-decoration: none;
}


.submenuDivider {
	width: 130px;
	height: 1px;
	background: #0094d9;
	margin: 0;
}
html>body .submenuDivider {
	margin: 0 0 2px 0;
}
