body 
{
	margin: 0;
	font-family: Arial;
        font-size: 12px;
        color: #231e56;
}

.text
{
	margin: 0;
	font-family: Arial;
        font-size: 12px;
        color: #231e56;
}

P
{
	font-size: 12px;
       }

a           {   color: #231e56; }
a:hover     {   color: #231e56; }
a:link      {   color: #231e56; }
a:visited   {   color: #231e56; }
a:active    {   color: #231e56; }

OL
{
	font-size: 12px;
       }
UL
{
	font-size: 12px;
       }

.cms_form_table_heading
{
 font-family: Arial;
 font-size: 12px;
 text-align: left;
 color: #231e56;
 font-weight:bold; 
}

.cms_newsletter_table_heading
{
 font-family: Arial;
 font-size: 12px;
 text-align: left;
 color: #231e56;
 font-weight:bold; 
}


.success
{
	color: #408200
}

.error
{
	color: red;
}

/*
*  Table with black line under heading, then gray lines between rows.
*/
table.cms_bb_table
{
	border-collapse: collapse; 
	empty-cells: show;
}
table.cms_bb_table th
{
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border: 1px solid black;
	border-left: 1px solid gray;	
	border-right: 1px solid gray;	
	background-color: #f8f8f8;
}
table.cms_bb_table tr#row_even
{
	background-color: #f8f8f8;
}
table.cms_bb_table td
{
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border-bottom: 1px solid gray;	
	border-left: 1px solid gray;	
	border-right: 1px solid gray;	
	font-size: 0.8em;
}
table.cms_bb_table td#first_col
{
	border-left: none;	
}

<style type="text/css">

.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
font-family: arial, sans-serif;
font-size:12px;
a           {   color: #ffffff; }
a:hover     {   color: #339999; }
a:link      {   color: #ffffff; }
a:visited   {   color: #ffffff; }
a:active    {   color: #ffffff; }
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #231e56; /*overall menu background color*/
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width: 110px; /*Width of top level menu link items*/
padding: 1px 6px;
color: #ffffff;
border-left-width: 0;
text-decoration: none;
color: white;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
color= #231e56;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display: block;
width: 95px; /*width of sub menu levels*/
color: #ffffff;
text-decoration: none;
padding: 1px 6px;
border: 1px solid #231e56;
}

.suckertreemenu ul li a:hover{
background-color: #231E56;
color: #339999;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background:  url(/_content/57901) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background:  url(/_content/57901) no-repeat center right;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */

</style>

<script type="text/javascript">

//SuckerTree Horizontal Menu (Sept 14th, 06)
//By Dynamic Drive: http://www.dynamicdrive.com/style/

var menuids=["treemenu1"] //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>