@charset "UTF-8";
body  {
	font: 12px Tahoma, Verdana, Arial, Helvetica, sans-serif;
	line-height:17px;
	background: #f1efef;
	margin: 15px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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-image:url(../images/page_bg.jpg);
	background-repeat:repeat-y;
	background-position:left;
}
.twoColFixLtHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	padding:0px;
	background: #FFFFFF;
	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. */
} 
.twoColFixLtHdr #header {  
	background-image:url(../images/header_bg.jpg);
	background-repeat:no-repeat;
	padding: 0px;  /* 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. */
	width:800px;
} 

.twoColFixLtHdr #menu { 
	position:absolute;
	top:250px;
	right:auto;
	text-align:right;
	height:35px;
	width:775px;
} 
.twoColFixLtHdr #gem { 
	position:absolute;
	top:84px;
	left:auto;
	padding-left:2px;
} 

h1,h2,h3,h4,h5,h6 {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:20px;
	color:#000000;
	margin-top:0px;
	margin-bottom:5px;
}
h3 {
	font-size:18px;
}
h4 {
	font-size:13px;
}
.nomargin {
	margin-left:0px;
	padding-left:0px;
}
.twoColFixLtHdr #bcontainer {
	border-left:1px solid black;
	border-bottomt:1px solid black;
	border-right:1px solid black;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #FFFFFFB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	text-align:right;
}
#sidebar1 p {
	width:170px;
	float:right;
	font-size:16px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#b80000;
	font-weight:bold;
	line-height:25px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0px 5px 0px 250px; /* 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. */
	background-image:url(../images/shadow.gif);
	background-repeat:repeat-y;
	background-position:right;
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#f1f0f0;
	width:538px;
	
} 
#mainContent .copy {
	padding-left:20px;
	padding-right:30px;
	padding-top:0px;
}
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000; 
	font-size:10px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#FFFFFF;
	text-align:center;
} 
.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:0;
    font-size: 1px;
    line-height: 0px;
}
a, a:link, a:visited {
	color:#000000;
}
a:hover, a:active {
	color:#b80000;
}