body  {
	background: #003300;
	background-image:url(images/body_bg.gif);
	background-position: 100% 100%;
	background-attachment:fixed;
	background-repeat:repeat-x;
	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 */
	
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ffcc99;
	background-image:url(images/content_bg.gif);
	border: solid #330000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align:left;
}
#header{
	width: 800px;
	background:inherit;
}

#content {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: inherit;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
#lftcolumn {
	width: 200px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 600px 0 0; /* the auto margins (in conjunction with a width) center the page */
	padding: 0px 0px 0px 0px; 
	text-align: left; /* this overrides the text-align: center on the body element. */	
} 

#rtcolumn {
	width: 575px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: inherit;
	text-align: left; /* this overrides the text-align: center on the body element. */
	float: right;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	padding: 0 15px 0 0;
} 

#footer {
	width: 800px;
	background: #663300;
	border: 0px;
	text-align: center;
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#ffcc99;
	font-weight: bold;
	letter-spacing: 1px;
	clear:both;
}
#footer a {
	text-decoration:none;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight:bold;
	color:#FFCC99;
} 
#bar {
	background-color:#663300;
}

#frame {
	float:left;
	width: 200px;
	height: 200px;
	background-color:#FFFFFF;
	border: solid #003300;
	margin: 0 20px 0 0;
}

.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;
}

h1 {
	font-family:Verdana, Geneva, sans-serif;
	color: #990000;
	font-size: 16px;
	text-align:center;
	
}

h2 {
	font-size:12px;
	font-family:Verdana, Geneva, sans-serif;
	color:#330000;
	font-weight: bold;
	text-align:center;
}

p {
	font-size:12px;
	font-family:Verdana, Geneva, sans-serif;
	color:#330000;
	font-weight: normal;
}

p.list {
	font-size:14px;
	font-family:Verdana, Geneva, sans-serif;
	color:#330000;
	font-weight: bold;
	text-align:center;
	text-decoration:line-through;
}
p.sale {
	font-size:14px;
	font-family:Verdana, Geneva, sans-serif;
	color:#330000;
	font-weight: bold;
	text-align:center;
}
a {
	text-decoration:none;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight:bold;
	color:#990000;

}

a.small {
	text-decoration:none;
	font-family:Verdana, Geneva, sans-serif;
	font-size:10px;
	font-weight: bold;
	color:#000;
}

table tr td {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
}
hr {
	color: #630;
}
