<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body {
	font: 76% Verdana, Arial, Helvetica, sans-serif;
	
	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; width: 100%; height:100%; 
	background:#ABB7C2 url("http://www.dnr.sc.gov/psc/images/woodBG.png") no-repeat center center fixed;
	
}	

#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding-right: 0px;
	padding-left: 0px;
	box-shadow: 0 0 .2rem 0.2rem #252525;
}

#header {
	background: url(/images/Classicheader.jpg) no-repeat;
	padding: 0 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. */
	height: 200px;
	border-bottom: 5px solid #331811;
}
#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 */
	height: 1px;
	width: 1px;
	overflow: hidden;
	position: absolute;
	left: -1000px;
	top: auto;
}
#header .sandbag {
	float:right;
	clear:left;
	width:77px;
	height: 60px;
	margin-right: 23px;
	margin-top: 31px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* 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 */
	color: #FFFFFF;
	margin: 10px;
	padding:0 0 10px;
	background: #E0DBC9; 
	-moz-border-radius: .5em; 
	-webkit-border-radius: .5em; 
	-khtml-border-radius: .5em; 
	border-radius: .5em; border: 1px solid #928E80;
}
#sidebar1 .box160 {
	width:160px;
	background:none;
	min-height:325px;
}
#sidebar1 .box160 h3 {
	line-height:31px;
	color:#251714;
	padding:0 15px;
	margin:0px;
	font-size:1.15em;
	border-bottom: 2px solid #666;
}

#sidebar1 .box160 p {padding:.5em 0 .5em .25em; margin:0 0 0 0; background:transparent; line-height:1em; font-size:1.15em; color:#fff; 
					border:none; border-bottom: 2px solid #666666; font-weight:bold;}
#sidebar1 .box160 p:first-child	{border-top:none;}
#sidebar1 .box160 p:last-child	{}
#sidebar1 .box160 p a, #sidebar1 .box160 p a:link	{color:#8A3B25; font-weight:bold; text-decoration:none;}
#sidebar1 .box160 p a:visited	{}
#sidebar1 .box160 p a:hover		{color:#8A3B25;  text-decoration:none;}

#sidebar1 .box160 ul {
	list-style:none;
	width:138px;
	height:auto;
	margin: 0px;
	padding:20px 10px 0px 8px;
	padding-left:; margin-bottom: 1.5em; border:none;
}
#sidebar1 .box160 ul li {
	text-decoration:none;
	color:#251714;
	margin: 0px;
	padding: 0px;
	font-size:1em;
	border-bottom:1px solid #333;
	word-spacing:-1px;
	list-style: none;
}
#sidebar1 .box160 ul li a {
	text-decoration:none;
	color:#8A3B25;
	font-weight:bold;
	display: block;
	width: auto;
	padding: 2px 0px 2px 2px;
	margin: 0px;
	line-height: 20px;
}
#sidebar1 .box160 ul li a:hover {
	text-decoration:none;
	color:#8A3B25;
	font-weight:bold;
	background: #FAF7ED;
}
#sidebar1 .box160 ul li a.active {
	text-decoration:none;
	color:#333;
	font-weight:bold;
	background: #FAF7ED;
}

/* Main Content */

#mainContent .breadcrumb {
	font-size: 1em;
	color: #202020;
}
#mainContent h1 {
	padding: 2px 5px;
	color: #331811;
	font-size: 1.5em;
	border-bottom: 1px solid #251714;
		
}
#mainContent h2 {
	padding: 2px 5px 2px 0px;
	color: #331811;
	font-size: 1.25em;
	
}
#mainContent h3 {
	border-top: 1px solid #ABB7C2;
	border-bottom: 1px solid #ABB7C2;
	padding: 2px 5px;
	color: #1F1F1F;
	font-size: 1em;
	
}
#mainContent li {
	font-size: 1em;
	margin-bottom: 3px;
}
#mainContent th {
	background: #CCC;
	color: #000;
}
#mainContent table {
	border-collapse:collapse;
	border-color:#663300;
}
/* Controls Layout of Main Content */

.twoColumn {
	padding: 0px;
	margin: 0px 15px 20px 185px;
	min-height:450px;
}
.oneColumn {
	padding: 0px;
	margin: 0px 15px 20px;
	min-height:450px;
}
#footer {
	padding: 0px 0px 0px 185px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#B4A77D ;
	border-bottom: 1px solid #333;
	border-top: 2px solid #331811;
	margin-top: 20px;
	clear: both;
}
#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: 7px 0px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.8em;
	font-weight: bold;
	color: #251714;
}
.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;
}
.imgscright {
	float:right;
	margin: 5px 0px 6px 15px;
}
.imgsleft {
	float:left;
	margin: 5px 15px 6px 0px;
}
.imgscenter {
	text-align:center;
	margin: 5px 5px 6px 5px;
}
.smtxt {
	font-family:  	Verdana, Arial, sans-serif;
	font-size: 9px;
}
.morespace {
	font-weight: bold;
}
.morespace ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	padding-top: 24px;
	margin-top:10px;/* white-space:nowrap; */
}
.morespace li {
	display: block;
	margin: 0;
	text-align: left;
	padding-top: 12px;
	padding-left: 8px;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.15em;
}
/* This is CSS for the Photo Galleries */	
#thumbnails {
	padding-left: 10px;
}
#thumbnails img {
	width:100px;
	border:1px solid #D5D5CA;
	padding: 4px;
	background: #FFFFFF;
	margin-right: 4px;
	margin-bottom: 4px;
	text-decoration: none;
}
#thumbnails a {
	text-decoration: none;
	font-size: .7em;
	font-weight: bold;
}

#photo {
	text-align:center;
}
#photo .thumb {
	margin: 4px 5px;
	border: 1px solid #333;
	height: 86px;
	float: left;
	text-align: center;
	padding: 5px;
}
#photo .thumb a img{
	border: 1px solid #333;
}
legend    {
	font-weight: bold;
	font-size: 14px;
}
</pre></body></html>