/*----- Containers, backgrounds etc -----*/
body  {
	background: url(images/bg.jpg);
	background-position: top center;
	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 */
	font-family: Arial, Helvetica, sans-serif;
}
#container {
	width: 780px;
	height: 100%;
	background: url(images/content_bg.jpg);
	border:medium solid #333;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}

#header{
	width: 100%;
	background: url(images/header_bg.jpg);
}

#content {
	background:;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}

#lftcolumn {
	width: 200px; 
	padding: 0; 
	margin-left: 15px;
	text-align: left; /* this overrides the text-align: center on the body element. */	
} 

#rtcolumn {
	background: inherit;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0 15px 0 0;
	float: right;
	width: 535px;
} 

#footer {
	clear:both;
}
/*
#footer {
	position: absolute;
	bottom: 0;
	height: 50px;
}
*/
.leftcol {
	float: left;
	width: 150px;
	padding-right: 15px;
}

.rightcol {
	float: right;
	padding: 0 0 0 15px;
}

.centercol {
	text-align: left;
	margin-left: 165px;
}

 
.fltrt {
	float: right;
	margin: 0;
}

.fltlft {
    float: left;
}

.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;
}

.text {
	margin-left: 600px;
	padding-top: 50px;
	padding-right: 25px;
	text-align: justify;
}

.images {
	float: left;
	width: 500px;
	padding: 25px;
}

/*----- Fonts etc -----*/

h1, p.list, p.sale {
	font-family: Tahoma, Geneva, sans-serif;
	text-align: center;
	font-weight: bold;
}

h1 {
	color: #FC9;
	font-size: 1em;
}

p, a, .centercol ul {
	font-size:.9em;
	font-family:Georgia, "Times New Roman", Times, serif;
}

p {
	color:#333;
	font-weight: normal;
}

a {
	text-decoration:none;
	font-weight:bold;
	color:#990000;
}

a.small {
	text-decoration:none;
	font-size:10px;
	color:#000;
}

p.list {
	font-size:0.9em;
	color:#333;
	text-decoration:line-through;
	margin-top: 0em;
}

p.sale {
	font-size:0.9em;
	color:#900;
	margin: -.5em 0 -1em 0;
}

.centercol ul {
	list-style-type: square;
	list-style-position: outside;
	color: #333;
	margin-top: 0px;
	margin-left: 5px;
	padding-left: 5px;
}

ul li:before {
	font-size: 0.5%;	
}

#footer p {
	color: #950000;
	font-weight: bold;
}
