/*Slideshow controls*/
	#headerBackground { 
		height:660px; 
		width: 749px;
	}
	.headerimg { 
		background-position: center center; 
		background-repeat: no-repeat; 
		width:749px; 
		height:660px; 
		position:absolute;
	}
	/* HEADER HAVIGATION */
	#headernav-outer {
		position:absolute; 
		top:780px; 
		margin:0 auto;
		width:960px; 
	}
	#headernav{
		padding-left:604px;
	}
	#pictured{
		padding-left:584px;
	}
	
	/* HEADER TEXT */
	#headertxt {
		width:960px; 
		margin:0px 15px; 
		clear:both; 
		position:absolute; 
		top:374px;
	}
	#firstline {
		/*background-image:url("../images/backgroundImageSlideshow/textbg.png"); */
		font-family: optimus;
		/*color:#b6c54a; */
		font-size:20px; 
		padding:4px 13px 7px; 
		float:left; 
		display:block; 
	}
	#secondline {
		/*background-image:url("../images/backgroundImageSlideshow/textbg.png"); */
		color:white; 
		text-decoration:none;
		font-size:14px; 
		padding:0 13px 10px; 
		float:left; 
		display:block; 
		clear:both;
	}
	#secondline:hover {
		text-decoration:underline; 
		color:#7F000C;
	}
	.pictured {
		/*background-color:#CC3333; */
		color:#696768; 
		font-size:10px; 
		/*padding:9px 16px; */
		text-transform:uppercase; 
		float:left; 
		display:block; 
		clear:both; 
		margin-top:10px;
	}
	.pictured a {
		font-size:10px; 
		font-style:italic; 
		letter-spacing:0; 
		text-transform:none; 
		color:#696768; 
		text-decoration:none;
	}
	.pictured a:hover {
		text-decoration:underline;
	}
	
	/* CONTROLS */
	.btn {
		height:32px; 
		width:32px; 
		float:left; 
		cursor:pointer;
	}
	#back {
		background-image:url("../images/backgroundImageSlideshow/btn_back.png"); 
	}
	#next {
		background-image:url("../images/backgroundImageSlideshow/btn_next.png");
	}
	#control {
		background-image:url("../images/backgroundImageSlideshow/btn_pause.png");
	}

/*default body styles*/
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/*div placement and styling*/
#container {
	height: 1500px;
	width: 102;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFFFFF;
}
.twoColFixRtHdr #container {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: auto;
} 
.twoColFixRtHdr #header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #FFFFFF;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #999999;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px;
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 15px;
	height: auto;
	border-left: thin solid #999999;
}
.twoColFixRtHdr #mainContent {
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	height: auto;
} 
.twoColFixRtHdr #footer { 
	/*padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #666666;
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


