<!-- 
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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: black;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(images/background.jpg);
}
.twoColFixLtHdr #header {
} 
.twoColFixLt #container {
	width: 960px;
	margin: 0 auto;
	text-align: left;
	background-repeat: no-repeat;
	background-position: right 120px;
}

.twoColFixLt #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 460px;
} 
.twoColFixLtHdr #container #sidebar1 {
	text-decoration: none;
	color: #0000FF;
}
.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;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	line-height: 1.2em;
	color: white;
}
.reviews {
	font-size: 0.85em;
	line-height: 1.2em;
	color: white;
}
.reviewsb {
	font-size: .85em;
	color: white;
	font-weight: bold;
}
a.menu:link {
	text-decoration: none;
	color: #0000FF;
}
a.menu:visited {
	text-decoration: none;
	color: #0000FF;
}
a.menu:hover {
	color: #0000FF;
	text-decoration: none;

}
a.menu:active {
	text-decoration: none;
	color: #0000FF; 
}

a:link {
	text-decoration: none;
	color: #0000FF;
}
a:visited {
	text-decoration: none;
	color: #0000FF;
}
a:hover {
	text-decoration: underline;
	color: #0000FF;

}
a:active {
	text-decoration: none;
	color: #0000FF;
}

a.reviewsbold:link {
	text-decoration: none;
	color: #0000FF;
	font-size: 1em;
}
a.reviewsbold:visited {
	text-decoration: none;
	color: #0000FF;
font-size: 1em;
}
a.reviewsbold:hover {
	text-decoration: underline;
	color: #0000FF;
font-size: 1em;

}
a.reviewsbold:active {
	text-decoration: none;
	color: #0000FF;
	font-size: 1em;
}


.twoColFixLt p a {
	font-size: 90%;
}


--> 
