﻿
/***** Main Formatting *****/
#wrapper {
	display: block;
	width: 600px;
	/*margin: 100px auto;*/
}

/***** Menu Formatting *****/
#menu { 
	display: block;
    text-align: left;
    font-size: 16px;
    text-decoration: none;
    font-family: Arial Narrow;
	font-weight: normal;
	color: White;
}

#menu ul { 
	width: 600px; /*If your links text is bigger you will have to adjust this value*/
    height: 45px;
	/*margin: 0 auto;*/
	padding: 0;
	line-height: 40px; /*same as height. This will center your text verticaly*/
	text-decoration: none;
    /*background: url(../images/menu_bg.png) repeat-x center top;*/
}

/*Left Corner*/
#menu ul li.left {
	display: block;
	float: left;
	clear: left;
	width: 40px;
	height: 45px;
    /*background: url(../images/menu_l.png) no-repeat left top;*/
}

/*Right Corner*/
#menu ul li.right {
	display: block;
	float: right;
	clear: right;
	width: 40px;
	height: 45px;
    /*background: url(../images/menu_r.png) no-repeat 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;
	padding: 0 25px;
	color: White; /*  #CCCCCC;*/
}

#menu ul li em {
	display: block;
	float: left;
	width: 1px;
	height: 40px;
    background: url(../images/menu_sep.gif) no-repeat left top;
}

/*last separator*/
/*This will add a separator after your last link*/
#menu ul li.sep {
	width: 1px;
    background: url(../images/menu_sep.gif) no-repeat left top;
}
		  
#menu ul li a:hover, #menu ul li a.active { 
	background: transparent url(../images/but_over.gif) repeat-x center top;
	text-decoration: none;
	Color: white;
}

#menu ul li a.active {
	font-weight: bold;
	cursor: default;
}



.dropmenudiv_b{
position:absolute;
top: 0;
border: 1px solid #918d8d; /*THEME CHANGE HERE*/
border-width: 0 1px;
font:normal 11pt Arial Narrow;
line-height:30px;
z-index:100;
background-color: white;
width: 150px;
visibility: hidden;
text-align: left;
background-color: #303c57;
}


.dropmenudiv_b a{
width: auto;
display: block;
text-indent: 5px;
border: 0 solid #918d8d; /*THEME CHANGE HERE*/
border-bottom-width: 1px;
/*padding: 0px 0px;*/
text-decoration: none;
color: White;
text-align: left;

}

* html .dropmenudiv_b a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv_b a:hover{ /*THEME CHANGE HERE*/
background-color: #3f4b64;
}




/******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]-->

