/***** Menu Formatting *****/
#menu { 
	position: relative;
	left: 95px;
	top: 160px;
	
	display: block;
    text-align: center;
    font-size: 120%;
    text-decoration: none;
}

#menu ul { 
	width: 800px; /*If your links text is bigger you will have to adjust this value*/
    height: 34px;
	margin: 0 auto;
	padding: 0;
	line-height: 34px; /*same as height. This will center your text verticaly*/
	text-decoration: none;
	/*border: 1px dotted red;*/
}

/*Left Corner*/
#menu ul li.leftCorner {
	display: block;
	/*float: left;*/
	clear: left;
	width: 39px;
	height: 34px;
    background: url(../images/menu_l.png) no-repeat left top;
}

/*Right Corner*/
#menu ul li.rightCorner {
	display: block;
	float: right;
	/*clear: right;*/
	width: 39px;
	height: 34px;
    background: url(../images/menu_r.png) no-repeat right top;
}

#menu ul li { 
	width: auto;
	display: inline;
	float: right;
	list-style: none;
	text-align: center;
	text-decoration: none;
    background: url(../images/menu_bg.png) repeat-x left top;
}
			
#menu ul li a { 
	display: block;
	text-decoration: none;
	text-transform: inherit;
	padding: 0 25px;
	color: #CCCCCC;
}

#menu ul li em {
	display: block;
	float: left;
	width: 2px;
	height: 34px;
    background: url(../images/menu_sep.png) no-repeat left top;
}

/*last separator*/
/*This will add a separator after your last link*/
#menu ul li.sep {
	width: 2px;
    background: url(../images/menu_sep.png) no-repeat left top;
}
		  
#menu ul li a:hover, #menu ul li a.active { 
	background: transparent url(../images/menu_over.png) repeat-x center top;
	text-decoration: none;
	Color: white;
}

#menu ul li a.active {
	font-weight: bold;
	cursor: default;
}

