.menu {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0 0 0 0;
	padding:0 0 0 0; 
	border:0;
	width:35.0em;		/* at 1.0, this is 46.4em */
	height: 1.6em;		/* at 1.0, this is 2.5em */
        font:1.8em Trebuchet MS, Geneva, sans-serif; 
	font-weight: normal;
	/* background: url('../images/menuBackground.jpg') top left no-repeat; */
	background-color: #2e468c;
	color: #FFFFFF;
}

.menu img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

/* menu width */
.menuminwidth0 {             /* for all browsers (non-IE) that obey min-width */
        position:relative;
        border:0;
        margin:0;
        padding:0;
        width:100%;
        height:1.6em;
        min-width:35.0em;
}

* html .menuminwidth1 { /* this allows IE5/6 to simulate min-width capability */
        position:relative;  /* we can simulate a minimum width by creating a */
        float:left;          /* border in this first div, then placing our */
        height: 1px;          /* into a second nested div (see 2nd nested div */
        border-left:35.0em solid #fff;    /* CSS box-model borders are a fixed */
}

* html .menuminwidth2 {    /* used to simulate min-width capability for IE5/6 */
        position:relative;
        margin-left:-35.0em;
        height: 1px;
}

.menu ul {
	display:block; 
	width: 35.0em;
	text-align:center;
	padding:0 0 0 0;
	margin:0 0 0 0;		/* this sets the x-origin of the menu system */
	border:0;
/*	list-style-type:none; */         /* we don't want to view the list as a list */
	background:#transparent;
	line-height:1.6em;
	height: 1.6em;
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
	text-decoration:none;
	word-spacing:normal;
	letter-spacing:0px;
	display:block; 
	float:left;    /* this creates the side-by-side array of top-level buttons */
	/*position:relative;*/    /* create local positioning contexts for each button */
	margin:0 0 0 0;
	padding:0 1.0em 0 1.0em;
	font-weight: normal;
	color:#ffffff;		/* BK This is the normal, title bar text color */
	text-align:center;
	height: 1.6em;
}

.menu li a {
	text-decoration:none;
	padding:0 1.0em 0 1.0em;
	margin:0 0 0 0;
	color: #ffffff;
	height: 1.6em;
	/*width: 9.7em;*/  /* 9.7em at 1.0em font */
	text-align: center;
	font-weight: normal;
	line-height: 1.6em;
	height: 1.6em;
}

.menu li a:hover {
        text-decoration:none;
	padding:0 1.0em 0 1.0em;
	margin:0 0 0 0;
	color: #2e468c;
	background-color: #7083b3;
	height: 1.6em;
	/*width: 9.7em;*/
	text-align: center;
	font-weight: normal;
	line-height: 1.6em;
}

.menu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	margin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:1.0em;        /* this sets the base font size for our entire menu */
}

.drop {
	display:block;
	padding:0 0 0 0;	       /* this sets the l/r margins for our menu item */
	margin:0;
	text-align:left;   /* this right alignment goes with the float:left below */
	cursor:hand;           /* IE5 only knows about "hand", so set it both ways */
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
}

.drop span {        /* this simultaneously left and right aligns the text and */
	float:left;       /* the >> in the drop-down menus which link to sub-menus */
}

.rightmenu {
	position:relative;  /* establish a local positioning context for YAH label */
	float:right;                  /* and right-align it at the top of our page */
}

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

.menu ul li ul {                        /* selected top-level menu items */
	display:none;                  /* initially hide the entire list hierarchy */
	padding:0px;                               /* this is our box border width */
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
	cursor:hand;           /* IE5 only knows about "hand", so set it both ways */
	text-align: center;
	line-height: 1.6em;
	height: 1.6em;
}

.menu ul li a {
        display:block;
        float:left;
        text-align: center;
        text-decoration:none;
	color: #ffffff;
	line-height: 1.6em;
	height: 1.6em;
}


.menu ul li:hover a,
.menu ul li a:hover {                        /* selected top-level menu items */
	border-top:0px solid #000;    /* these 2 lines create the push-in illusion */
	height:1.6em;
	color:#2e468c; 				/* BK - This is the hover font color */
	background-color:#7083b3;		/* BK - This is the hover bg over a main pick */
	text-align: center;
	/*width: 7.2em;*/  /* 7.2em at 1.0em font */
	line-height: 1.6em;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
    display:block;
        position:relative;
        text-align: left;
        top:0px;              /* BK - place us just up underneath the top-level images */
        _top:5px;
        left:0em;       /* left-align our drop-down to the previous button border, previously -1px */
        _left:1px;
        padding:0 0 0 0;
        margin:0 0 0 0;
        height:auto;      /* the drop-down height will be determiend by line count */
        width:5.0em;
        /*color:#403D2C;*/                        /* this sets the unselected-text color */
        /*background:#E1A823;*/         /* BK - this sets our menu's effective "border" color */
        _padding: 0 0 0 0;
        _margin: 0 0 0 -1.5em;
        border: 0px solid yellow;
        _width:2.0em;
        _height: 0.5em;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
        border:0;
        margin:0 -3.5em 0 0em;
        padding:0 0 0 0.5em;
        height:auto;
        text-align: left;
        color:#000000;               /* BK - this sets the unselected drop-down text color */
        background:#7083b3;       /* BK - this sets the drop-down menu background color */
        width:8.0em;
        font-size: 1.0em;
        _padding: 0 0 0 0;
        _margin: 0 0 0 0;
        _font-size:0.5em;
        border: 0px solid red;
        _height: 0.5em;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
        text-align: left;
        color:#FFFFFF;  /* BK - this sets the lower level highlight text color */
        background:#2E468C; /* BK - this sets the lower level background highligher */
        _padding: 0 0 0 0;
        _margin: 0 0 0 0;
        border: 0px solid green;
        _height:0.5em;
}

/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul li ul,
.menu ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
        visibility:hidden;
	/*display:none;*/
	color: #000000;
}
    
.menu ul li:hover ul li:hover ul,
.menu ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
        visibility:visible;
        position:relative;
        text-align: left;
        margin-top:-1px;              /* bring the top edge of the 3rd level.menuContent up one */
        top:0.5em;
      	left:0.08333em;
        width:8em;
	background:red;
	color:#000000;
	height:5em;
}

/* 3rd level unseelected items */
/*
.menu ul li:hover ul li:hover ul li a,
.menu ul li a:hover ul li a:hover ul li a {
        width:10em;
        background:blue;
	color:blue;
	visibility:hidden;
}
*/

/* level3 selected items */
/*
.menu ul li:hover ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover ul li a:hover {
        width:10em;
        background:yellow;
	color:yellow;
}
*/

/*====== menu anchors =====*/ 
.menu ul li a {                        /* selected top-level menu items */
        /*width: 7.2em;*/
        height: 1.6em;
        line-height: 1.6em;
        text-align: center; 
        padding: 0 1.0em 0 1.0em;
	margin: 0 0 0 0;
        /*font:1.0em MS Sans Serif, Geneva, sans-serif;*/
        color: #FFFFFF;			/* BK - Main menu text color for non-Safari */
	font-weight: normal;
}

.menu ul li a:hover {
        color: #2e468c;			/* BK - Main menu hover for non-Safari */
	background-color: #7083b3;	/* HS - added this */
	padding:0 1.0em 0 1.0em;
	margin:0 0 0 0;
	line-height: 1.6em;
	/*width:7.2em;*/
	font-weight: normal;
	height: 1.6em;
}

#menu ul li a:active {
	/* color: #2e468c; */
	/* background-color: #7083b3; */
	padding:0 1.0em 0 1.0em;
	margin:0 0 0 0;
	font-weight: normal;
	line-height: 1.6em;
	height: 1.6em;
}
