@charset "UTF-8";
/* CSS Document */

.menu {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0;
	padding:0;
	border:0;
	left: 0;
	height:25px;                                  /* the menu's overall height */
	width:675px;         /* 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;
}

.menu 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 */
	font-size: 12px;        /* this sets the base font size for our entire menu */
}

/*======================== 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: 25px;
}

.menu ul li:hover a,
.menu ul li a:hover {                        /* selected top-level menu items */
	height: auto;
	background-color: #d7e5b9;
}

/*======================== 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: 18px;              /* place us just up underneath the top-level images */
	left: 5px;       /* 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 */
	z-index: 1001;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border-bottom: solid #FFFFFF 1px;
	margin: 0;
	padding: 3px 10px;
	height: auto;
	color: #fff;               /* this sets the unselected drop-down text color */
	width: 150px;
	background-color: #5E1D1B;
	text-align: left;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color: #FFFFFF;
	background: #9D2D2A;
	text-align: left;
}
