@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background: #000000 url(../images/photo_background.jpg) no-repeat center top;
}

/*.thrColAbsHdr */
#container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: none;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/*.thrColAbsHdr */
#header { 
/*	height: 48px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
/*	margin: 130px 0 0 0;*/
	padding: 0 0 10px 0;
	background-image: none;
}

/*.thrColAbsHdr */
#header h1 {
	display: none;
	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: 0;
}
	#mastheadpadder {
		padding: 0 0 142px 0;
	}
	
	#navcontainer {
	background: url(/assets/images/navigation_bg.png);
	/*margin: 142px 0 0 0;  IE7 does not respect this...*/
	padding: 6px 0 6px 0;
	width: 100%;
	border: 1px #b0aeae solid;
	font-size: 0.85em;
}

	#navcontainer ul {
		margin: 0;
		padding: 1px 0 0 12px;
	}
	
	ul#navlist li {
		display: inline;
		list-style-type: none;
		padding-right: 10px;
		}
		
		ul#navlist li a {
			text-decoration: none;
			color: #000;
		}
		
#content {
	background: url(/assets/images/content_bg.png);
	border: 1px solid #b0aeae;
	padding: 8px 8px 8px 8px;
}

/*.thrColAbsHdr */
#sidebar1 {
	/*position: absolute;*
	/*top: 57px;*/
	top: 193px;
	left: 8px;
	width: 216px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: url(/assets/images/column_bg.png); /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 12px;
	border: 1px solid #b0aeae;
}

.thrColAbsHdr #mainContent { 
	position: absolute;
	top: 193px;
	left: 258px;
	width: 244px;
	padding: 12px;
	background: url(/assets/images/column_bg.png);
	border: 1px solid #b0aeae;
}

.oneColAbsHdr #mainContent {
	/*position: absolute;*/
	top: 193px;
	left: 8px;
	width: 736px;
	padding: 12px;
	background: url(/assets/images/column_bg.png);
	border: 1px solid #b0aeae;
}


#mainContent img {
	border: 1px solid #b0aeae;
}

.oneColAbsHdr table.gallery {
	width: 100%;
	border: none;
}

/*.thrColAbsHdr */
#sidebar2 {
	position: absolute;
	top: 193px;
	right: 8px;
	width: 210px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: url(/assets/images/column_bg.png); /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 12px;
	border: 1px solid #b0aeae;
}

/*.thrColAbsHdr */
#footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #b4b3b3;
	font-size: 0.75em;
	
} 

/*.thrColAbsHdr */
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}