A:link {
	text-decoration: none;
	color:#8B0000;
	font: bold;
	}
    
A:visited {
	text-decoration: none;
	color:#8B0000;
	font: bold;
	}
    
A:active {
	text-decoration: none;
	color:#008000;
	font: bold;
	}
   
A:hover {
	text-decoration: underline;
	color:#FF0000;
	font: bold;
	}
	
body {
	margin-left: 4px;
	margin-top: 4px;
	margin-right: 4px;
	margin-bottom: 4px;
	background-color: #FFFF66;
	color: #800000;
	font-family: Tahoma;
	}
	
.yellow_bg {
	font-family: Tahoma;
	background-color: #FFFF66;	
	}

.suckertreemenu ul {
	margin: 0; padding: 0; list-style-type: none; list-style-image: none;
	}

/*Top level menu items*/
.suckertreemenu ul li{
	position: relative; display: inline; float: left; padding: 5px 35px 5px 30px; font: 12;
	}

/*Sub level menu*/
.suckertreemenu ul li ul{
	left: 0; position: absolute; top: 1em; visibility: hidden;
	}

/*Sub level menu list items*/
.suckertreemenu ul li ul li{
	display: list-item; float: none;
	}

/*Background image for top level menu list links*/
.suckertreemenu .mainfoldericon{
	background: url(images/arrow-down.gif) no-repeat center right;
	}

h1, h2, h3 {
	font-family: Tahoma, sans-serif;
	}
	
.btmborder {
	border-bottom-style: solid;
	border-bottom-color: #8B0000;
	border-bottom-width: 2px;	
	}
	
.topborder {
	border-top-style: solid;
	border-top-color: #8B0000;
	border-top-width: 2px;
	}

.maintable {
	background-color: #FFFF66;
	border-width: 0px;
	width: 85%;
	height: 100%;
	}
	
.copyright{
	font-family: Tahoma, sans-serif;
	font-size:10px;
	color: #8B0000;
	}

hr {
	color: #990000;
	height: 3px;
	}

address:after {
	content: "<seanl\40rmbhs.com>";
	}

<script type="text/javascript">

//SuckerTree Horizontal Menu (Sept 14th, 06)
//By Dynamic Drive: http://www.dynamicdrive.com/style/

var menuids=["treemenu1,mainfoldericon,one,two,three"] mainfoldericon//Enter id(s) of SuckerTree UL menus, separated by commas

function buildsubmenus_horizontal(){
for (var i=0; i<menuids.length; i++){
  var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
    for (var t=0; t<ultags.length; t++){
		if (ultags[t].parentNode.parentNode.id==menuids[i]){ //if this is a first level submenu
			ultags[t].style.top=ultags[t].parentNode.offsetHeight+"px" //dynamically position first level submenus to be height of main menu item
			ultags[t].parentNode.getElementsByTagName("a")[0].className="mainfoldericon"
		}
		else{ //else if this is a sub level menu (ul)
		  ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px" //position menu to the right of menu item that activated it
    	ultags[t].parentNode.getElementsByTagName("a")[0].className="subfoldericon"
		}
    ultags[t].parentNode.onmouseover=function(){
    this.getElementsByTagName("ul")[0].style.visibility="visible"
    }
    ultags[t].parentNode.onmouseout=function(){
    this.getElementsByTagName("ul")[0].style.visibility="hidden"
    }
    }
  }
}

if (window.addEventListener)
window.addEventListener("load", buildsubmenus_horizontal, false)
else if (window.attachEvent)
window.attachEvent("onload", buildsubmenus_horizontal)

</script>