@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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
	line-height: 130%;
	font-weight: normal;
	background-color: #000000;
	letter-spacing: 1.5px;
}
.threeCol #container {
	width: 925px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #021906;
	color: #FFCC66;
	background-image: url(images/content-bkgd-4.jpg);
	background-repeat: repeat;
} 
.threeCol #header {
	background-color: #021906;
	font-family: "Times New Roman", Times, serif;
	background-repeat: no-repeat;
	background-image: url(images/header-smaller.jpg);
	height: 250px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	top: 55px;
}
.threeCol #container #headerNav {
	margin-left: 120px;
	padding-top: 218px;
	color: #000000;
}
.navNone {
	color: #000000;
	text-decoration: none;
}
.threeCol #container #header #headerNav .navNone a {
	color: #000000;
}
.threeCol #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 */
	color: #FFFFFF;
	font-weight: normal;
	letter-spacing: .2em;
}
.threeCol #mainContent {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 285px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 10px;
	width: 575px;
} 
.threeCol #mainContentTest {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 265px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 10px;
	width: 600px;
}
.threeCol #container #mainContent h1 {
	padding-bottom: 10px;
	font-size: 25px;
	font-variant: small-caps;
}
.threeCol #container #mainContent h2 {
	font-family: "Times New Roman", Times, serif;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFCC66;
	padding-bottom: 10px;
	font-size: 20px;
	padding-top: 3px;
	padding-right: 0px;
	padding-left: 3px;
	text-transform: uppercase;
}
.threeCol #container #mainContent p {
	color: #ffcc66;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin-left: 3px;
}
.threeCol img {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.threeCol #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	background-image: url(images/sidebar1-bkgd.png);
	background-repeat: no-repeat;
	margin-top: 15px;
	height: 475px;
	margin-left: 40px;
}
.threeCol #sidebar1b {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	margin-top: 15px;
	height: 475px;
	margin-left: 40px;
}
#sidebar1Frame {
}
.threeCol #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 175px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-image: url(images/contact-bkgd.png);
	background-repeat: no-repeat;
	margin-top: 25px;
}
.threeCol #container #sidebar1 ul {
	padding-left: 10px;
}
.threeCol #footer {
	background-image: url(images/nav-bar-3.jpg);
	background-repeat: no-repeat;
} 
#underFooter {
	font-size: 85%;
	padding: 10px;
	color: #FFCC66;
	background-color: #000000;
}
.threeCol #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 80%;
	text-align: center;
	color: #000000;
	height: 25px;
	padding-top: 0px;
}
h1,h2,h3,h4 {
	margin-right: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFCC66;
}
h2 {
	font-variant: small-caps;
}
h3 {
	font-variant: small-caps;
}
h4 {
	font-variant: small-caps;
	margin-right: 140px;
	padding-bottom: 10px;
	font-size: 18px;
}
.moreLink {
	font-style: italic;
}
.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;
}
.clearfloatRight {
	clear:right;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.subheader {
	font-variant: small-caps;
	text-transform: capitalize;
	font-size: 125%;
	letter-spacing: .2em;
}
#metalBeach {
	font-size: 90%;
	float: right;
	width: 350px;
	text-align: right;
}
#mainContent a:link {
	color: #FFCC66;
}
#sidebar1 a:link {
	color: #FFCC66;
}
#sidebar2 a:link {
	color: #FFCC66;
}
#underFooter a:link {
	color: #FFCC66;
}
#mainContent a:visited {
	color: #FFCC66;
}
#sidebar1 a:visited {
	color: #FFCC66;
}
#siedebar2 a:visited {
	color: #FFCC66;
}
#underFooter a:visited {
	color: #FFCC66;
}
#mainContent a:hover {
	color: #FF9900;
}
#sidebar1 a:hover {
	color: #FF9900;
}
#sidebar2 a:hover {
	color: #FF9900;
}
#underFooter a:hover {
	color: #FF9900;
}
#mainContent a:active {
	color: #FFCC66;
}
#sidebar1 a:active {
	color: #FFCC66;
}
#sidebar2 a:active {
	color: #FFCC66;
}
#underFooter a:active {
	color: #FFCC66;
}
#mainContent img {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 15px;
}
