html {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: #000;
	border: thick none #FC3;
}
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: #FFF;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4em;
	background-color: #000;
	background-image: url(../images/2back.jpg);
	background-repeat: no-repeat;
}
h1,h2,h3,h4,h5,li,ul {
	margin: 0;
	padding: 0;
}
a:link {
	color: #69c;
	text-decoration: underline;
}
.small_txt {
	font-size: small;
}

a:visited {
	color: #0067B2;
		text-decoration: none;
}
a:hover {
	color: #666;
		text-decoration: underline;
}
a:active {
	color: #666;
		text-decoration: none;
}
/* ~~this fixed width container surrounds the other divs~~ */
#container {
	width: 850px;
	background: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
	height: auto;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#header {
	background-color: #000;
	height: 163px;
	background-image: url(images/bannermain.JPG);
	background-repeat: no-repeat;
	background-position: center;
}
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#harveyheader {
	background-color: #000;
	height: 163px;
	background-image: url(harveyw/images/harvey_bannermain.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
#header ul {
	color: #FC9;
	width: 800px;
	position: relative;
	left: 10px;
	top: 124px;
	text-decoration: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#header ul li {
	display: inline;
	font-weight: bold;
	color: #FC9;
	text-decoration: none;
	font-size: 1em;
	text-align: left;
	float: left;
}
#header li a:link, #header li a:visited {
	background: transparent;
	display: inline;
	font-size: 0.9em;
	font-weight: bolder;
	color: #FC9;
	text-decoration: none;
	line-height: 50px;
	margin-right: 0.5em;
	text-transform: uppercase;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 4px;
}
#header li a.current, #header li a.current:hover, #header li a.current:active {
	color: #69C;
	cursor: pointer;
	background-color: transparent;
}
#header li a:hover {
	color: #F93;
	background-color: transparent;
}
#sidebar  {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	float: right;
	width: 260px;
	background-color: #fc9;
	margin-left: 15px;
	color: #C30;
	line-height: 30px;
	padding-right: 10px;
	padding-left: 10px;
}
#maincontent {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-left: 15px;
	width: 815px;
	color: #666;
	text-align: left;
	margin-top: 15px;
}
#maincontent ul {
	font-size: 0.85em;
	list-style-type: square;
	list-style-position: inside;
	line-height: 1.2em;
}

#maincontent h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	margin-bottom: -10px;
}
#maincontent p  {
	font-size: 0.85em;
	line-height: normal;
}
/* ~~ The footer ~~ */
#footer {
	background: #CCC49F;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	height: 20px;
	padding-top: 0px;
	padding-right: 4px;
	padding-bottom: 0px;
	padding-left: 4px;
	color: #666;
	float: none;
}
#footer p {
	font-size: 0.65em;
	color: #666666;
	text-align: left;
}
#footer ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	float: right;
	position: relative;
	right: 0px;
	bottom: 30px;
	width: 220px;
	top: -30px;
	height: auto;
}
#footer li {
	float: right;
}
#footer li a:link, #footer li a:visited {
	background: transparent;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	color: #666;
	text-decoration: none;
	line-height: 20px;
	margin-right: 0.5em;
	text-transform: uppercase;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
}
#footer li a.current, #footer li a.current:hover, #footer li a.current:active {
	color: #C6C;
	cursor: help;
	background-color: transparent;
}

#footer li a:hover {
	color: #C6C;
	background-color: transparent;
}
/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
#maincontent img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.white_text {
	color: rgba(252,252,252,1.00);
}
#container #soundgen .white_text {
	color: #FCFBFB;
}
