body {
background-image:url(../images/background2.jpg)
}

.breadcrumbs {
	font-family: Arial;
	font-size: 10px;
}
.maincopy {
	font-family: Arial;
	font-size: 11px;
}
.mainBold {
	font-family: Arial;
	font-size: 11px;
	font-weight: bold;
	color: #336600;
}
.links_bkgd {
	background-color: #F5F5E0;
	padding: 10px;
	border: thin solid #666666;
}
.headlinecopy {
	font-family: Arial;
	font-size: 16px;
	font-weight: bold;
	color: #336600;
}
.headlineWhite {

	font-family: Arial;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}
.defaultcopy {
	font-family: Arial;
	font-size: 12px;
}

.style1 {color: #990000}


/* ------------------- Navigation ----------------------- */

#side {
	width: 150px;
	position: absolute;
	padding: 0;
	top: 225px;
	left: 0px;
	background-color: #CCCCCC;
	z-index: 6;
	 }

#navcontainer {
	width: 140px;
	float: left;
	margin:0;
	padding:0;
		}

/*All lists*/
#navcontainer ul {
	list-style: none;
	padding: 0 0 0 5px;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #787870;
	top:0; /*lines up submenus directly across from their parent item*/
		}
		
/*All list items*/
#navcontainer li {
	float:left;
	position:relative;
	width: 145px;
	background-color:#CCCCCC;
		}

/*Needed to position second level lists*/
#navcontainer li ul {
	position:absolute;
	left:-999em; /*same as display:none, but works in Opera*/
	margin-left:12.82em; /*determines the amount of space between a submenu and it's parent*/
	  }

/*Allows the nested list to display when it's parent item is hovered on and positions the nested menu directly next to the parent*/
#navcontainer li ul ul {
	left:-999em; /*same as display:none, but works in Opera*/
	}

/*Link attributes for the main nav*/
#navcontainer li a,
#navcontainer li a:link,
#navcontainer li a:active,
#navcontainer li a:visited {
	height: 25px;
	margin: 0;
	display: block;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #af9f8c;
	background: url(../images/bullet.gif) no-repeat 2px 10px;
	padding: 6px 0 0 12px;}

/*Hover attribute for the main nav*/
#navcontainer li a:hover {
	color: #fff;
	text-decoration: underline; 
	border-bottom: 1px solid #af9f8c;
	background: url(../images/bullet2.gif) no-repeat 2px 10px;
	padding: 6px 0 0 12px; background-color:#999;}
	
#navcontainer li.on {background-color:#F5F5E0;}

/*For the submenus
----------------------------------------------------------------------------------------
*/
#nav li:hover ul ul,
#nav li:hover ul ul ul,
#nav li.sfhover ul ul,
#nav li.sfhover ul ul ul {
	left:-999em; /*same as display:none, but works in Opera*/
						 }
/*lists submenus under hovered parent item*/
#nav li:hover ul,
#nav li li:hover ul,
#nav li li li:hover ul,
#nav li.sfhover ul,
#nav li li.sfhover ul,
#nav li li li.sfhover ul {
	left:auto;
						 }
