/* -----MENU----- */

#menu {
	position: absolute;        /* establish a menu-relative positioning context */
	left: 50%;
	margin: 0 0 0 -437px;
	padding: 0;
	border: 0;
	height: 37px;                                  /* the menu's overall height */
	width: 875px;         /* we always want our menu to fill the available space */
	top: 159px;
	font-family: Verdana, Arial, Helvetica, sans-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 */
	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;
	font-size: 13px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #fff;
	width: auto;
	height: 27px;
	padding: 10px 10px 0px 10px;
	margin: 0;
	text-align: left;
	font-style: normal;
	font-weight: normal;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-right-color: #333333;
	border-left-color: #333333;
}

#menu ul li:hover a,
#menu ul li a:hover {                        /* selected top-level menu items */
	height: 28px;
	color: #fff;
	background: #333333;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-right-color: #cccccc;
	border-left-color: #999999;
}

/*======================== 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: 38px;              /* place us just up underneath the top-level images */
	left: -1px;       /* 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 */
	background-color: #cccccc;
	border-bottom-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #cccccc;
	border-right-color: #cccccc;
	border-left-color: #cccccc;
}

#menu ul li:hover ul li a,
#menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border: 0;
	margin: 0;
	padding: 3px;
	height: auto;
	color: #fff;               /* this sets the unselected drop-down text color */
	width: 210px;
	background-color: #333333;
	border-top: 1px #999999 solid;
}

#menu ul li:hover ul li:hover a,
#menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color: #fff;
	background-color: #626262;
}

