@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #000;
	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: #fff;
}
.twoColFixLtHdr #container { 
	width: 990px;  /* using 34px less than a full 1024px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-width: 1px 1px 0px 1px;
	border-style: solid;
	border-color: #ffffff;
	background: url(../images/bgs/minotaur.jpg) no-repeat bottom right;
} 
.twoColFixLtHdr #header { 
	position:relative;
	height: 153px;
} 
.twoColFixLtHdr #header #headerLeft { 
	width: 499px;
}
.twoColFixLtHdr #header #headerRight { 
	width: 469px;
	position: absolute;
	right:15px;
	top:32px;
	font-size: 11px;
	line-height: 16px;
}
.twoColFixLtHdr #header #homebtn a {
	color: #FFFFFF;
}

.twoColFixLtHdr #sidebar1 {
	float: left;
	width: 246px;
	border-right: #FFFFFF solid 1px;
	padding: 0;
	margin: 0;
	min-height: 440px;
}
.twoColFixLtHdr #sidebar1main {
	float: left;
	width: 246px;
	border-right: #FFFFFF solid 1px;
	padding: 0;
	margin: 0;
	min-height: 220px;
}
.twoColFixLtHdr #sidebar1 p, .twoColFixLtHdr #sidebar1main p {
	width: 171px;
	padding: 0px 25px 0px 50px;
	font-size: 11px;
	line-height: 19px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 247px; 
	width: 744px;
} /*
.twoColFixLtHdr #sidebar1 {
	float: left;
	width: 244px;
	border-right: #FFFFFF solid 1px;
	padding: 0;
	margin: 0;
}
.twoColFixLtHdr #sidebar1 p {
	width: 171px;
	padding: 0px 25px 0px 48px;
	font-size: 11px;
	line-height: 19px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 248px; 
	width: 442px;
	position: absolute;
	top: 153px;
	left: 130px;
} */
.twoColFixLtHdr #buttons {
	width: 990px; /* 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 */
	height: 216px;
}
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height: 42px;
	background-image:url(../images/layout_images/footer_repeater.jpg); background-repeat: repeat-x;
	position:relative;
} 
.twoColFixLtHdr #footer #footerLeft {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0;  /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 11px;
	font-weight: bold;
}
.twoColFixLtHdr #footer #footerCenter { 
	/*padding: 0 10px 0 20px;  this padding matches the left alignment of the elements in the divs that appear above it. */
	position: absolute;
	top: 0px;
	margin-left: 225px;
} 
.twoColFixLtHdr #footer #footerRight { 
	position: absolute;
	right: 0px;
	top: 0px;
} 
.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:0;
    font-size: 1px;
    line-height: 0px;
}
.bold { font-weight: bold; }
