/* Set up the containing div with a background image */
#outer {width:760px; height:40px; position:relative;}

/* Style the surrounding 'decoration' for this demo only. This is not required for the menu function */
#outer .pad1 {width:40px; height:24px; background:#FFD35D; float:left; margin-top:2px; margin-right:2px; border:1px solid #000; border-width:1px 1px 1px 0;}
#outer .pad2 {width:40px; height:24px; background:#FFD35D; float:left; margin-top:2px; margin-bottom:2px; border:1px solid #000; border-width:1px 0 1px 1px;}
#outer .topline {width:760px; height:3px; border-bottom:1px solid #000; background:#FFD35D; font-size:1px;}
#outer .botline {clear:both; width:760px; height:3px; border-bottom:1px solid #000; border-top:1px solid #000; background:#FFD35D; font-size:1px;}

/* The menu styling */
/* Remove the padding, margins and bullets from the lists */
.menu, .menu ul {list-style-type:none; padding:0; margin:0;}

/* for IE7 to position the tables correctly */
.menu {position:relative;}

/* for IE5.5 and IE6 to position the tables corectly */
* html .menu {position:static;}

/* Set up the size of the list items and float left to place inline */
.menu li {float:left; background:#FFD35D; width:148px; height:24px; margin:2px 2px 0 0; border:0px solid #000;}

/* Give the sub level list item a diffent background color to make it 'stand out'. */
.menu li.sub {background:#FFD35D;}

/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */
.menu table {border-collapse:collapse; width:0; height:0; position:absolute; top:0; left:0; font-size:1em;}

/* Default link styling */
.menu li a {display:block; color:#433; font-family:arial, sans-serif; font-size:12px; line-height:24px; width:125px; text-decoration:none; text-align:center;}

/* Style the list OR link hover. Depends on which browser is used */
.menu :hover {color:#433;background:#FFEBB7;}

/* Give the link OR list a relative position. Depends on which browser is used */
.menu li.sub:hover,
.menu li.sub a:hover {position:relative;}

/* For all browsers except IE5.5 and IE6 to keep the hover state through the menu cascade. */
.menu li:hover > a {color:#433; background:#FFEBB7;}

/* keep the 'next' level invisible by placing it off screen. */
.menu ul, 
.menu :hover ul ul, 
.menu :hover ul :hover ul ul,
.menu :hover ul :hover ul ul.left {position:absolute;left:-9999px; width:150px;}

/* Position the drop-down first sub level beneath the top level list item when hovering over the top level list OR link. The transparent image is for IE7 to render this correctly. The image does not have to exist :) */
.menu :hover ul{left:-1px; top:24px; background:#7D8D34; padding-top:2px; }

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">

.style1 {font-family: Arial, Helvetica, sans-serif}


/*DROPDOWN MENUS - HORIZONTAL*/

#menuh-container
	{ width: 760px; 
	height: 27px; margin: auto;
	padding: 0; border: 0;
	}

#menuh
	{
	font-size: 14px;
	font-family: arial, sans-serif; 
	width:100%;
	float:left;
	margin: 0; padding: 0;
	}

#menuh a
	{ height: 22px;
	text-align: center;
	display:block;
	border: 0;
	white-space:nowrap;
	margin: 0;
	padding-top: 5px;
	}

#menuh a, #menuh a:visited	/* menu at rest */
	{ 
	color: black;
	background-color:#ffd35d;
	text-decoration:none;
	margin: 0;
		
}

#menuh a:hover	/* menu at mouse-over  */
	{ text-decoration:none;
	color: black;
	background-color:#FFE295;
	}
.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #888888;
}
.img_border {
	border: 2px solid #7D8D34;
}

#menuh ul
	{
	list-style:none;
	margin: 0;
	padding: 0;
	float: left;
	width: 152px; 	/* width of all menu boxes */
	}

#menuh li
	{ padding: 0;
	position:relative;
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 0;
	margin: 0;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	}

div#menuh li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}

/*end of dropdown menus - horizontal*/


.style2 {font-size: 14px}
.transferback {
	background-attachment: fixed;
	background-color: #7D8D34;
	background-image: url(resources/transferback.gif);
	background-repeat: no-repeat;
	background-position: center top;
}

