body  {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-attachment: fixed;
	height: 100%;
	width: 100%;
	background-color: #000000;
}

/* Specify the position and layering for the content that needs to appear in front of the background image. Must have a higher z-index value than the background image. Also add some padding to compensate for removing the margin from the 'html' and 'body' tags. */
.twoColFixLtHdr #container {
	width: 740px;
	margin: 0 auto; /* 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. */
	z-index: 2;
	background-color: #FFFFFF;
} 
.twoColFixLtHdr #page-background {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-1;
	background-repeat: no-repeat;
	overflow: hidden;
}
/* Specify the position and layering for the content that needs to appear in front of the background image. Must have a higher z-index value than the background image. Also add some padding to compensate for removing the margin from the 'html' and 'body' tags. */
	
.twoColFixLtHdr #header {
	font-size: 48px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	padding: 10px 20px;
	color: #000000;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	background-color: #FF0066;
} 
.twoColFixLtHdr #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 */
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 190px;
	font-size: 80%;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.twoColFixLtHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 190px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #000000;
	font-size: 80%;
	border: 0;
	min-height: 200px;
} 
.twoColFixLtHdr #LeftContent {
	color: #000000;
	font-size: 120%;
	border: 0;
	margin-top: 0;
	margin-right: 230px;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 0px;
	}
.twoColFixLtHdr #Content {
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #000000;
	font-size: 80%;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-style: solid;
	border-right-color: #000000;
	border-left-style: solid;
	border-left-color: #000000;
	border-top-style: solid;
	border-bottom-style: solid;
} 
.twoColFixLtHdr #ContentBK {
	background-color: #000000;
	color: #FFFFFF;
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 80%;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
.twoColFixLtHdr #footer {
	font-size: 80%;
	color: #000000;
	width: 710px;
	background-color: #000000;
	background-color: #FF0066;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	border: 0px solid #000000;
} 
.twoColFixLtHdr #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;
}
.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:0px;
	font-size: 1px;
	line-height: 0px;
}
.twoColFixLtHdr #line {
	height: 1px;
	background-color: #FFFFFF;
}
.twoColFixLtHdr #container #footer a:link {
	color: #000000;
	text-decoration: underline;
}
.twoColFixLtHdr #container #footer a:hover {
	color: #000000;
	text-decoration: none;
}
.twoColFixLtHdr #container #footer a:visited {
	color: #000000;
	text-decoration: underline;
	}
.twoColFixLtHdr #container #topspace{
	padding: 5px 0px;
	background-color: #FF0066;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #000000;
	border-bottom-color: #FFFFFF;
	border-left-color: #000000;
}

.pressphotos{
	padding-top: 10px;
}
a:link {
	color: #000000;
	text-decoration: underline;
}
a:visited {
	color: #000000;
	text-decoration: underline;
}
a:hover {
	color: #000000;
	text-decoration: none;
}
.twoColFixLtHdr #BLline {
	height: 1px;
	background-color: #000000;
}
.imageborder {
	padding-right: 2px;
	padding-bottom: 4px;
	border-right-width: 1px;
	border-bottom-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-top-width: 0px;
	border-left-width: 0px;
	border-top-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
.imageborder #a:link{
	color: #FFFFFF;
	text-decoration: none;
}

.twoColFixLtHdr #container #header a:link {
	color: #000000;
	text-decoration: none;
}
.twoColFixLtHdr #container #header a:visited {
	color: #000000;
	text-decoration: none;
}
.twoColFixLtHdr #container #header a:hover {
	color: #000000;
	text-decoration: none;
}
.BIG {
font-size: 100%;
}.twoColFixLtHdr #container #Content #sidebar1 {
	font-size: 120%;
}
