/***** Menu Formatting *****/
#menu {
	display: block;
	text-align: center;
	font-size: 90%;
	text-decoration: none;
	margin-top: 20px;
}

#menu ul {
	width: 590px; /*If your links text is bigger you will have to adjust this value*/
	height: 25px;
	margin: 0 auto;
	padding: 0;
	line-height: 25px; /*same as height. This will center your text verticaly*/
	text-decoration: none;
	background-image: url(menu_bg.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

/*Left Corner*/
#menu ul li.left {
	display: block;
	float: left;
	clear: left;
	width: 20px;
	height: 25px;
	background-image: url(menu_l.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

/*Right Corner*/
#menu ul li.right {
	display: block;
	float: right;
	clear: right;
	width: 20px;
	height: 25px;
	background-image: url(menu_r.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

#menu ul li { 
	width: auto;
	display: inline;
	float: left;
	list-style: none;
	text-align: center;
	text-decoration: none;
}
			
#menu ul li a {
	display: block;
	text-decoration: none;
	text-transform: inherit;
	color: #CCCCCC;
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 15px;
}

#menu ul li em {
	display: block;
	float: left;
	width: 2px;
	height: 25px;
	background-image: url(menu_sep.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

/*last separator*/
/*This will add a separator after your last link*/
#menu ul li.sep {
	width: 2px;
	background-image: url(menu_sep.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
		  
#menu ul li a:hover, #menu ul li a.active {
	text-decoration: none;
	Color: white;
	background-color: transparent;
	background-image: url(menu_over.jpg);
	background-repeat: repeat-x;
	background-position: center top;
}

#menu ul li a.active {
	font-weight: bold;
	cursor: default;
}


/******IE hack******/
[if IE]>
<style type="text/css">
p.iepara{ /*Conditional CSS- For IE (inc IE7), create 1em spacing between menu and paragraph that follows*/
padding-top: 1em;
}
</style>
<![endif]
