
/* ---------- */ 
/* Welcome to menu_css.css - menu formatting */
/* ---------- */ 

#menu {
	font-size: 12px;
	height: 30px;
}

#menu ul {
	padding:0;
	margin:0;
	list-style-type: none;
	line-height: 20px;
}

#menu li {
	float: left;
	position: relative;
	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 */
}

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

#menu ul li ul {
	display: none;
	padding: 0;
}

#menu ul li a,
#menu ul li a:visited {
	display: block;
	float: left;
	text-decoration: none;
	line-height: 20px;
	padding: 0 10px;
	color: #fff;
	background-color: #000;
	border-left: 1px solid #fff;
}
#menu ul li:hover a,
#menu ul li a:hover,
#menu ul li a.nav_on {
	background-color: #333;
}

#menu ul li a.nav_on, #menu ul li a.nav_off {
}

/*======================== 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:0;       /* 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; */
	background: #000;         /* this sets our menu's effective "border" 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: 0 10px;
	height:auto;
	color:#fff;               /* this sets the unselected drop-down text color */
	background:#000;       /* this sets the drop-down menu background color */
/*	width:13.5em; */
	border-left: 1px solid #fff;
}

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