@charset "utf-8";
/* CSS Document */

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;
	background-color: #1B1B1B;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
}
p, li, td {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: .5em;
	margin-left: 0px;
	font-size: 90%;
	line-height: 1.2em;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	color: #FC0;
	line-height:1.5em;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #FFF;
	line-height:1.5em;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #FC0;
	line-height:1.5em;
}

a, a:link {
	color: #FF6D00;
}
a:visited {
	color: #CCC;
}
#itemtable a:visited {
	color: #FF6D00;
}
a:hover {
	color: #FC3;
}
#container  {
	width: 1000px;
	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: #000;
	background-image: url(images/Band_Auction_2_04.jpg);
	background-repeat: repeat-y;
	background-position: left top;
} 
#header  {
	background-color: #DDDDDD;
	background-image: url(images/Band_Auction_2_01.jpg);
	background-repeat: no-repeat;
	background-position: left;
	height: 156px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 

#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 */
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 181px;
	height: 400px;
	margin: 0px;
	padding: 0px;
	background-image: url(images/Band_Auction_2_02.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#sidebar1_inside  {
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	margin: 0px;
	padding-top: 200px;
	height: 181px;
}
ul.menu {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
ul.menu li {
	background-image: url(buttons/button_bkgd.gif);
	height: 28px;
	width: 157px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	background-repeat: no-repeat;
	background-position: right top;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	font-size: 0.9em;
	text-align: center;
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
ul.menu li a, ul.menu li a:link, ul.menu li a:visited {
	color: #FFF;
	text-decoration: none;
}
ul.menu li a:hover {
	color: #FF6D00;
	text-decoration: none;
}
body#about ul.menu li#about a, body#about ul.menu li#about a:link, body#about ul.menu li#about a:visited,
body#items ul.menu li#items a, body#items ul.menu li#items a:link, body#items ul.menu li#items a:visited,
body#itemsbyname ul.menu li#itemsbyname a, body#itemsbyname ul.menu li#itemsbyname a:link, body#itemsbyname ul.menu li#itemsbyname a:visited,
body#contact ul.menu li#contact a, body#contact ul.menu li#contact a:link, body#contact ul.menu li#contact a:visited
{
	color: #FF6D00;
}

#mainContent  { 
	margin: 25px 0 0 150px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 100px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer  {
	background-color: #000;
	background-repeat: no-repeat;
	background-position: right bottom;
	height: 300px;
	background-image: url(images/Band_Auction_2_06.jpg);
} 
#footer_left  {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-image: url(images/Band_Auction_2_05.jpg);
	background-repeat: no-repeat;
	background-position: left;
	height: 300px;
	float: left;
	width: 200px;
} 
#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 */
}

.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;
}
table.contactinfo th {
	text-align: right;
	vertical-align: top;
	width: 100px;
}
table.contactinfo td {
	text-align: left;
	vertical-align: top;
	width: 250px;
}
#itemtable {
	width: 600px;
	border: 1px solid #CCC;
}
#itemtable th {
	background-color:#333;
}
#itemtable td {
	border: 1px solid #333;
	vertical-align: top;

}
#itemtable td#itemprice {
	text-align: right;
}
#itemtable #itemprice input {
	text-align: right;
}

#itemtable td#itemphoto  {
	text-align: center;
}
#itemtable th#itemid {
	width: 140px;
}
#itemtable th#itemname  {
	width: 150px;
}
#itemtable th#itemphoto  {
	width: 130px;
}
#itemtable th#itemdesc  {
	width: 160px;
}
#itemtable th#itemprice  {
	width: 70px;
}
