@charset "utf-8";
body  {
	font: 13px "Times New Roman", Times, serif;
	background: #000;
	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;
}
a {
	color: #F00;
	font-weight: bold;
}
a img {
	border: none
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#container {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
	background: #FFF url(herimages/mainbg150.jpg) repeat-y left top;
	color: #006;
} 
#header {
	font: 12px Arial, Helvetica, sans-serif;
	text-align: right;
	padding: 10px;
	color: #CCC;
	background: #000;
} 
#header ul {
	overflow: auto;
	border-left: 1px dotted #333;
}
#header li {
	float: left;
}
#header li a {
	display: block;
	text-decoration: none;
	padding: 2px 20px;
	border-right: 1px dotted #333;
}
#header li a:hover, #header li a:active, #header li a:focus {
	color: #CCC;
	font-size: 110%;
}
.home #home a, .pdts #pdts a, .reviews #reviews a, .gallery #gallery a, .contact #contact a, .blog #blog a{
	color:#CCC;
	font-size: 110%;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 120px;
	padding: 20px 15px 10px;
	background: url(herimages/sidebar1top.jpg) no-repeat left top;
}
#mainContent {
	float: right;
	width: 820px;
	padding: 0px 15px 20px;
	background: url(herimages/sidebar2top.jpg) no-repeat right top;
}
#footer {
	padding: 20px 10px 0;
	text-align: center;
	background: #000 url(herimages/footerbgmain.jpg) no-repeat left top;
	color: #CCC;
	font: 10px "Comic Sans MS", cursive;
}
#footer a {
	text-decoration: none
}
#footer a:hover, #footer a:active, #footer a:focus {
	color: #CCC;
	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 */
}
.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;
}
.noTop {
	margin-top: 0px
}

