.menu {
	position:relative;        
	float:left;                                     
	margin:0;
	padding:0;
	width:620px;
	background:#606060;
	font-size:11px;  
	text-align:left;       
}

.menu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
	float:left;    /* top level buttons */
	position:relative;    /* create local positioning contexts for each button */
}

.menu li a.selected {
	background-color:#808080;
}

.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 */
	padding:0px;                               /* this is our box border width */
	background-color:#fff;
}

.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:18px;
	padding:3px 20px;
	font-weight:bold;
	color:#fff;
}

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

/*======================== 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:24px;              /* place us just up underneath the top-level images */
	left:0px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:13.5em;
	color:black;                        /* this sets the unselected-text color */
	background:none;         /* this sets our menu's effective "border" color */
}

.menu ul li a:hover ul li a, .menu ul li:hover ul li a  {
	background-color:#808080;
	color:#ffffff;
}


.menu ul li:hover ul.leftbutton,
.menu ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

.menu ul.rightmenu li:hover ul,
.menu ul.rightmenu li a:hover ul {    /* 2nd level neighborhood drop-down box */
	left:auto;
	right:0;         /* nudge the right menu right to line up under the border */
}

* html .menu ul.rightmenu li a:hover ul {         /* IE5/6 needs a tweak here */
	right:-1px;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	/* margin:1px; */
	padding:2px;
	height:auto;
	font-weight:normal;
	border-top:1px #c0c0c0 solid;

	/*color:#000;*/               /* this sets the unselected drop-down text color */
	/*background:#d8d8d8; */      /* this sets the drop-down menu background color */
width:13.5em;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level hovered item */
	color:#ffff66;
	background:#a0a0a0;
	
}

