 /* common styling */

 /* Set up the default font and ovrall size to include image */
.navs {
	width: 108px;
	position:relative; 
	top: -479px;
	#top: -476px;
	left: 40px;

}
/* get rid of the default padding - margin and bullets */
.navs ul {
	padding:0; 
	margin:0;
	list-style-type: none;
}
/* make menu horizontal */
.navs ul li {
	float:left;
	position:relative;
}
/* set up the default top level links */
.navs ul li a, .navs ul li a:visited {
	display:block; 
	text-decoration:none; 
	color:#000; 
	width:108px; 
	height:1.5em;
	font-weight:bold;
	color:#D1AB6F; 
	border-bottom:6px solid #987431;
	background:#930101; 
	padding-left:10px; 
	line-height:1.5em;
	font-size: 0.9em;
}
/* hack for IE5.5 to correct the faulty box model */
* html .navs ul li a, .navs ul li a:visited {
	width:108px; 
	w\idth:90px;
}
/* hide the drop down menu */
.navs ul li ul {
	display: none;
}
/* remove all table style so that it does not interfere with the menu */
.navs table {
	margin:-1px; 
	border-collapse:collapse;
	font-size:1em;
}

/* first line for IE7 and non-IE browsers, second line for IE5.5 and IE6 */

/* style the top level hover */
.navs ul li:hover a,
.navs ul li a:hover {
	color:#000; 
	border-bottom:6px solid #000;
	text-decoration:none; 
}
/* make the drop down menu show and correctly position it */
.navs ul li:hover ul,
.navs ul li a:hover ul {
	display:block; 
	position:absolute; 
	top:1.2em;
	margin-top:8px;
	left:0; 
	width:108px;
	border-top:0;
	background:transparent;
	text-decoration:none; 
}
/* style the drop down links with no hover */
.navs ul li:hover ul li a,
.navs ul li a:hover ul li a {
	display:block; 
	background:transparent url(../images/opaqueblk.png); 
	border:0;
	margin:0;
	color:#D1AB6F;
	font-weight:normal; 
	font-size:0.9em;
	height:auto; 
	line-height:1em; 
	padding:5px; 
	width:108px
}
/* style the drop down menu links when hovered */
.navs ul li:hover ul li a:hover,
.navs ul li a:hover ul li a:hover {
	background: #987431; 
	filter:alpha(opacity=80); 
	-moz-opacity: 0.8; 
	opacity: 0.8;
	color:#000;
	text-decoration: none;
}

/* special styling for IE5.5 and IE6 - transparency is non validating */
.navs ul li a:hover ul {
	background:transparent filter: alpha(opacity=80);
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
	opacity:0.8;
	margin-top:6px; /* for IE5.5 faulty box model */
	marg\in-top:5px; /* for IE6 */
}
/* IE5.5 hack for faulty box model in drop down menu */
.navs ul li a:hover ul li a {
	background:#000;
	width:108px; /* for IE5.5 faulty box model */
	w\idth:90px; /* for IE6 */
}