@charset "utf-8";
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background-color:#000000;
	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: #FFFFFF;
	min-width:1000px;
}
.twoColFixRtHdr #container { 
	background: url(bg.jpg) repeat-y #000000 center top;
	width: 930px;  /* using 20px less than a full 800px 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 */
	margin-bottom: 0;
	text-align: center; /* this overrides the text-align: center on the body element. */
	
} 
.twoColFixRtHdr #header { 
	background: #DDDDDD url(header.jpg) center top; 
	height: 156px;
	width: 774px;
	margin: 0 auto;
	padding: 0 0 0 0;  /* 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. */
} 
.twoColFixRtHdr #menu { 
	background: transparent url(menu.jpg) no-repeat; 
	font-size: small;
	height: 49px;
	width: 774px;
	text-align:center;
	margin: 0 auto;
	padding: 3px 0 0 0;  /* 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. */
}
.twoColFixRtHdr a{ 
color:#FFFFFF;
text-decoration:none;
font-weight:bold;
}
.twoColFixRtHdr a:hover{ 
color:#990000;
text-decoration:none;
font-weight:bold;
}
.twoColFixRtHdr a:active{ 
color:#990000;
text-decoration:none;
font-weight:bold;
}

.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 240px; /* 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: none; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-right: 95px;
}
.twoColFixRtHdr #GalleryContent { 
	padding: 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 12px;
	text-align:center;
	vertical-align:top;
	margin: 0 0 0 0;
} 
.twoColFixRtHdr #mainContent { 
	margin: 0 345px 0 95px; /* the right margin on this div element creates the column down the right 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: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align:left;
} 
.twoColFixRtHdr #mainContent H1{ 
font-size:18px;
}
.twoColFixRtHdr #mainContent H2{ 
font-size:15px;
}
.twoColFixRtHdr #footer { 
	width: 774px;
	height: 35px;
	margin: -0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	background: url(bottom.jpg) no-repeat; 
	background-color: none;
	
} 
.twoColFixRtHdr #indexframe {
	height: 660px;
	width:  528px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	background-image:url(iframe.jpg);
	background-repeat:no-repeat;
	padding-top:165px;
}
.twoColFixRtHdr #indexentry {
	margin: 0 auto;
	width: 529px;
}
.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;
}