/* MENU.CSS
   JOSHUA BULLOCK 07/25/08
   CSS DEFITIONS FOR SITE HEADER AND MENU */

/* Header */
#header {
	background:url('/images/topbar_bg.jpg');
	width:801px; 
	height:101px; 
	margin-bottom:6px;
	clear:right;
	background-repeat:no-repeat;
}

#header #links {
	list-style:none;
	margin:0 0 0 0;
	padding:0 0 0 0;
	position:relative;
	left:170px;
	top:81px;
	width:500px;
	z-index:2;
	height:18px;
}

#header #links li {
	font-size:10pt;
	font-weight:bold;
	display:inline-block;
	margin: 0 14px 0 14px;
	float:left;
	z-index:2;
	cursor:pointer;
}

/* MENU */
#header #menu {
	width:165px;
	background:url('/images/menu/menu_top.png');
	background-position:center top;
	background-repeat:no-repeat;
	position:relative;
	z-index:1;
	top:60px;
	left:255px;
	visibility:hidden;
	padding: 25px 0px 0px 0px;
}

#menuLinks {
	list-style:none;
	margin:0;
	padding:0;
}

#menuLinks li {
	background:url('/images/menu/menu_item.png');
	background-position:left center;
	background-repeat:repeat-y;
	padding-left:6px;
	padding-top:2px;
	height:18px;
	width:159px;
	font-size:10pt;
	cursor:pointer;
	font-weight:bold;
}

#menuLinks li:hover {
	background:url('/images/menu/menu_item_hover.png');
	background-repeat:repeat-y;
	color:black;
}

#menuLinks li a {
	color:#000000;
	text-decoration:none;
}

/* END OF FILE */