@charset "utf-8";
body {
	font: 12px Tahoma, Geneva, sans-serif;
	background: #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: #CCCCCC;
}
a {
	color: #00F;
	font-weight: bold;
}
a img {
	border: none
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#container {
	width: 1000px;  /* 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 */
	border: 1px solid #333333;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	font: 11px Verdana, Geneva, sans-serif;
	padding: 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. */
}
#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%;
}
#mainContent {
	padding: 10px 20px;
}
#mainContent h1 {
	color: #0FF;
	font: 20px "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
#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%;
}
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.noTop {
	margin-top: 0px;
}

