.menu {
	position: absolute;        /* establish a menu-relative positioning context */
	margin: 325px 0 0 -405px;
	left: 50%;
	top: 0;
	padding: 0;
	height:25px;                                  /* the menu's overall height */
	width: 810px;         /* we always want our menu to fill the available space */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;         /* this (and also below) sets the menu's font size */
	z-index: 1000;
}

.menu ul {
	padding: 0;
	margin: 0;
	border: 0;
	list-style-type: none;          /* we don't want to view the list as a list */
}

.menu li {
	float: left;    /* this creates the side-by-side array of top-level buttons */
	position: relative;    /* create local positioning contexts for each button */
	margin: 0;
	list-style-image: none;
}

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

.menu img {
	border: none;
}

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

.menu ul li ul {
	display: none;                  /* initially hide the entire list hierarchy */
}

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

.menu ul li:hover a,
.menu ul li a:hover {                        /* selected top-level menu items */
	height: 20px; 
	background: #000000;					/* important for ie 6 */
}

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

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display: block;
	position: absolute;
	margin: 0;
	top: 20px;              /* place us just up underneath the top-level images */
	left: 17px;       /* left-align our drop-down to the previous button border */
	height: auto;      /* the drop-down height will be determiend by line count */
	width: auto;
	color: #fff;                        /* this sets the unselected-text color */
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border: 0;
	margin: 0;
	padding: 6px;
	height: auto;
	color: #fff;               /* this sets the unselected drop-down text color */
	width: 200px;
	background-color: #2B2B2B;
	border-bottom: solid #000000 1px;
	z-index: 1002;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color: #2B2B2B;
	background: #EFCD48;
	border-bottom: solid #000000 1px;
}