/***********
   MENU
***********/
#menuList {
	z-index: 100;
	position: relative;
	width: 1000px;
}

#menuList ul {	
	margin: 0 auto;
	width: 1000px;
	height: 60px;
	list-style: none;
	padding-left: 0;
}

#menuList ul li {
	float: left;
}

#menuList ul li a {
	display: block;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	color: #fff;	
	padding: 0px 57px;
	line-height: 60px;
	text-align: center;
	border-right: 2px solid #711008;
}
#menuList ul li a.rightMenuItem {
	border-right: none;
}

#menuList ul li a:hover {
	color: #e31403;
}

#menuList ul li.selected a {
	background: transparent url("../images/menu_on_icon.png") center 90% no-repeat;
}

