@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #000000;
	background-color: #6E0019;
	background-image: url(../images/bg001.jpg);
	background-repeat: repeat-x;
}
#container  {
	width: 800px;
	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: #FFFFFF;
	background-image: url(../images/bgSideBar.jpg);
	background-repeat: repeat-y;
} 
#header  {
	background-color: #FFFFFF;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
	background-image: url(../images/hBG001.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px;
	height: 95px;
} 
#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 */
}


#header img {
	margin-right: 5px;
}
#topNav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #666666;
}
#topNav a {
	color: #333333;
	text-decoration: none;
	padding: 2px;
}
#topNav a:hover {
	color: #990000;
	text-decoration: underline;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 225px;
	margin: 0px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 5px;
}
#footer  { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
#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 */
	font-size: 10px;
}
#mainContent  {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
} 
#footer a {
	color: #006699;
}
#footer a:hover {
	color: #990000;
	text-decoration: none;
}

#mainContent h1 {
	font-size: 24px;
	color: #333333;
}
#mainContent p {
	font-size: 12px;
}
#mainContent h2 {
	font-size: 18px;
	color: #666666;
}

.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;
}
#navcontainer
{
	width: 215px;
	font-family: georgia, serif;
	font-size: 13px;
	text-align: center;
	text-transform: capitalize;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 1em;
	padding-right: 0;
	padding-bottom: 1em;
	padding-left: 0;
}

ul#navlist
{
	text-align: left;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	width: 95%;
}
#quickContact h3 {
	color: #666666;
}


ul#navlist li
{
display: block;
margin: 0;
padding: 0;
}
ul#navlist li a
{
	display: block;
	width: 100%;
	padding: 0.5em 0 0.5em 2em;
	color: #CCCCCC;
	text-decoration: none;
	background-color: #666666;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #666666;
	border-bottom-color: #ccc;
	border-left-color: #B7B7B7;
}
#quickContact  input {
	font-size: 10px;
	width: 150px;
}

#quickContact {
	font-size: 10px;
}


#navcontainer>ul#navlist li a { width: auto; }

ul#navlist li#active a
{
background: #f0e7d7;
color: #800000;
}

ul#navlist li a:hover, ul#navlist li#active a:hover
{
	color: #FFFFFF;
	border-color: #aaab9c #fff #fff #ccc;
	background-color: #990000;
}
#mainContent ul {
	font-size: 10px;
}
#mainContent li {
	list-style-type: square;
}
