body {
	background-image:  url(../images/background.gif);
	margin: 0px 0px 0px 20%;
	background-repeat: repeat-x;
	background-color: #EDEDE5; 
	behavior:url(css/csshover.htc);
}

td {
 	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 11px;
    line-height: 18px;
	color: #444; 
}

.divider { 
    border: #999 1px solid; 
	background-color: #EFD6DE; 
	color: #EFD6DE; 
	height: 5px; 
	width: 100%;
}

.copy { 
    color: #666666;
	font: 9px verdana, arial, sans-serif;
}

.required {
    color: red;
}

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #666666;
	margin-top: 0px;
	margin-bottom: 0px;
	border-bottom: 0px #CB875D solid; 
}

h2 {
  	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-variant: small-caps;
	color: #5A592E;
	margin-top: 0px;
	margin-bottom: 0px;
}

p {
	margin-top: 3px;
}

.form { 
    font: 13px arial, verdana, sans-serif;
    color: #F02F15;
    background-image:  url(../images/form_shade.gif);
    text-align: left;
    width: 180PX;
    border: #000000 1px solid; }

.form_button {	
    border-left:1px solid #999999;
    border-right:1px solid #999999;
    border-top:1px solid #999999;
    border-bottom:1px solid #999999;
    color: #000000;
    font-size: 12px;
    line-height: 14px;
    padding: 2px;
    background-color:#BEBD9D ;
}

.textarea {
    font: 12px arial, verdana, sans-serif;
    color: #000000;
    background-color: #F2F2F3;
	background-image: url("../images/form_shade.gif");
	text-align: left;
	width: 250PX;
	height: 125px;
	border: #000000 1px solid;
}

.footnote {
  font-family: Verdana, Arial, Sans-serif;
  font-size: 11px;
  color: #444;
  line-height: 14px;
}

a:link		{ color: #BF2F2F; text-decoration: none; }

a:visited	{ color: #BF2F2F; text-decoration: none;  }

a:active	{ color: #BF2F2F; text-decoration: none; }

a:hover		{ color: #333;  }

/* LIST-BASED MENU */
/* the horizontal menu starts here */
div#listmenu {
	
	width:100%; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
	border-top:2px solid #AAB379;	/* draws line on top edge of div */
	border-bottom:2px solid #AAB379;	 /* draws line on bottom edge of div */
	font-size: 100%;	/* SET FONT-SIZE HERE */
	letter-spacing:.1em;
	background-color:#78A22F; /* colors the div */
	margin-top:0px; 
	}
div#listmenu ul {margin:0 0 0 30px;/* indents ul from edge of container */
	}
div#listmenu li {
	z-index:100; /* had to add this to make the drop be on top in Safari */
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#BEBD9D; /*sets the background of the menu items */
	border-right:1px solid #000000; /* creates dividing lines between the li elements */
	}
div#listmenu li:first-child {
	border-left:1px solid #000000; /*the first vertical line on the menu */
	}
div#listmenu li:hover { 
	background-color:#FFF; /*sets the background of the menu items */
	}
div#listmenu a {

	display:block; /*makes rolled list items in drop down highlight link text, and wrapped lines indent correctly */
	padding:1 12px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#444444;	/* sets the type color */
	}
div#listmenu a:hover {
	color:#78A22F;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#listmenu ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:10em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; /*aligns the drop exactly under the menu */
	}
div#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:1px solid #000000; /*  three sides of each drop-down item */
	border-bottom:1px solid #000000;
	border-right:1px solid #000000;
	padding:0 0 1px;
	}
div#listmenu ul li ul li:first-child {
	border-top:1px solid #000000; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

/* pop-out starts here */
body div#listmenu ul li ul li ul  {
	visibility:hidden; /* same effect as display:none in this situation */
	left:10em;
	}
div#listmenu ul li ul li:hover ul {visibility:visible;} /* same effect as display:block in this situation */
/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#listmenu ul {
	float:left; /* makes the ul wrap the li's */
	border-left:1px solid #000000; /* adds the rightmost menu vertical line to the ul */
	margin-left:110px; /* IE doubles the given value above - why? */
	}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  div#listmenu ul li ul {
	border-top:1px solid #000000;
	border-left:0px; /* stops the drop inheriting the ul border */
	}
/* end of hack zone */
/* END OF LIST-BASED MENU */

