.menu {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0 0 0 0;
	padding:0 0 1em 0;
	border:0;
	height:1.7em;                                  /* the menu's overall height */
	width:48.3em;
	background: url('../images/menuBackground.jpg') top left no-repeat;
	font: 1.4em Helvetica, Arial, sans-serif;
}

.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:22px;
        min-width:560px;
}

* 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:560px solid #fff;    /* CSS box-model borders are a fixed */
}

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

.menu ul {
	z-index: 1;
	display:block;
	text-align:left;
	padding:0 0 0 0;
	margin:0 0 0 0.5em;		/* 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 */
	line-height:2.0em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
	/*text-transform:uppercase;*/
	background-color:#transparent;
	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;
	/*width:88.5em;*/
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	padding-left:2em;
	font-weight:normal;
	color:#000000;		/* BK This is the normal, title bar text color */
	text-align:left;
}

.menu li a {
	text-decoration:none;
	color:#000000;
}

.menu li a:hover {
	color:#0C3154;
	text-decoration:none;
}

.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 */
	/*width:40em;*/
}

.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-align: left;
	text-decoration:none;
	height:2.5em;
	/*width:40em;*/
}

.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:2.5em;
	color:#3DD4FF; 				/* BK - This is the hover font color */;
	background:#transparent;			/* BK - This is the hover bg over a main pick */
	text-align: left;
}

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

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	text-align: left;
	top:1.8em;              /* NEW BK - place us just up underneath the top-level images */
	_top:1.2em;
	left:2.5em;       /* left-align our drop-down to the previous button border, previously -1px */
	_left:1.6em;
	padding:0 0 0 0;
	margin:0 0 0 0;
	height:auto;      /* the drop-down height will be determiend by line count */
	width:18.0em;
	color:#403D2C;                        /* this sets the unselected-text color */
	/*background:#E1A823;*/         /* BK - this sets our menu's effective "border" color */
	background:#A9A288;
	_width:10em;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0 0 0 -1.8em;
	_margin:0 0 0 -1em;		/* NEW this controls the text's left placement wrt dropdown menu bg */
	padding:0 0 0 0;
	height:auto;
	text-align: left;
	color:#403D2C;               /* BK - this sets the unselected drop-down text color */
	/*background:#E1A823;*/       /* BK - this sets the drop-down menu background color */
	background:#A9A288;
	width:18.0em;
	_font-size:0.7em;
	_width:10.0em;
}

.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:#004D9A;  /* BK - this sets the lower level highlight text color */
	/*background:#transparent;*/ /* BK - this sets the lower level background highligher */
	background:#96979B;		/* NEW backgoround highlighter */
}

/*====== menu anchors =====*/ 
.menu ul li a {                        /* selected top-level menu items */
        height: 2.5em;
        text-align: left; 
        padding: 0 0 0 0;
        font-size: 1.0em;
        font-family: Arial, Helvetica, sans-serif; /* BK - Make sure the font is correct */
        color: #403D2C;			/* BK - Main menu text color for non-Safari */
}

.menu ul li a:hover {
        color: #013567;			/* BK - Main menu hover for non-Safari */
        background: #transparent;  	/* BK - um, change this too */
}
