@charset "utf-8";
body  {
	font: 12px Tahoma, Geneva, sans-serif;
	background: #000;
	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: #CCC;
}
a {
	color: #00F;
	font-weight: bold;
}
a img {
	border: none
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#container {
	width: 1000px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #333;
	text-align: left;
} 
#header {
	font: 11px Verdana, Geneva, sans-serif;
}
#header ul {
	overflow: auto;
	background: #000 url(audio88images/navbg.jpg) repeat-x;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}
#header li {
	float: left;
}
#header li a {
	display: block;
	text-decoration: none;
	padding: 12px 20px;
}
#header li a:hover, #header li a:active, #header li a:focus {
	color: #F00;
	font-size: 110%;
}
.home #home a, .abt #abt a, .pdts #pdts a, .trade #trade a, .gallery #gallery a, .contact #contact a{
	color:#F00;
	font-size: 110%;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
}
#sidebar1 h1 {
	color: #0FF;
}
#mainContent {
	margin: 0px;
	width: 698px;
	float: left;
	padding: 10px 10px 10px 20px;
	border-right: 1px solid #333;
} 
#mainContent h1 {
	color: #0FF;
	font: 20px "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
#mainContent h5 {
	font-size: 16px;
	color: #FFF;
}
#footer {
	padding: 0 10px;
	font-size: 10px;
	border-top: 1px solid #333;
}
#footer a {
	text-decoration: none
}
#footer a:hover, #footer a:active, #footer a:focus {
	color: #F00;
	font-size: 110%;
}
.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;
}
.noTop {
	margin-top: 0px;
}
