@charset "utf-8";
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;
	background-image: url(../fireworks/background_alum.png);
	background-repeat: repeat;
	background-position: left;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.thrColFixHdr #container {
	width: 1022px; /* the auto margins (in conjunction with a width) center the page */
	;
	text-align: left;
	background-color: #DFDDDF;
	background-image: url(../fireworks/background_grey.jpg);
	background-repeat: repeat-y;
	background-position: 0px 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	vertical-align: top;
	top: 0px;
} 
.thrColFixHdr #header {
	background-color: #DFDDDF;
	margin: 0px 0px 0px 300px;
	
} 

.thrColFixHdr #headerleft {
	background-color: #DFDDDF;
	width: 500px;	
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	background-color: #969897;
	background-position: 969897;
}

.thrColFixHdr #mainContent {
	margin: 0px 0px 0px 300px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 100%;
	background-image: none;
	background-color: #dfdddf;
	background-repeat: no-repeat;
	background-position: 0px 0px;
} 

.thrColFixHdr #headerholder{
	width: 1022px;
	float:left;
	position: relative;
	height: 100%;
	background-color: #DFDDDF;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	 }

.thrColFixHdr #holder{
	width: 1022px;
	float:left;
	position: relative;
	height: 100%;
	background-color: #DFDDDF;
	background-image: url(../fireworks/background_grey.jpg);
	background-repeat: repeat-y;
	background-position: center;
	background-attachment: fixed;
	 }
.thrColFixHdr #footer {

	background-color: #DFDDDF ;

	
} 
.thrColFixHdr #footer p {
	margin: 0px  /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0;
	
}
.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;
}

.style1 { /* this class can be used to float an element left in your page */
	color: #000000;
	font-style: italic;
}
.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;
}
a:link {
	color: #660099;
	text-decoration: none;
	}
a:visited {
	color: #660099;
	text-decoration: none;
	}
a:hover {
	color: #660099;
	background-color: #ebebeb;
	text-decoration: none;
	}
a:active {
	color: #660099;
	}
