@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;
	background-image: url(../images/onepixel.jpg);
	background-repeat: repeat-y;
	background-position: top center;
	background-attachment: fixed;
	background-color: #000000;
}
.hcs #container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* this overrides the text-align: center on the body element. */
	padding: 0;
	font-family: "Trebuchet MS", Verdana, Arial;
} 
.hcs #topshadow{
	background: #000000;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-attachment: fixed;
	background-image: url(../images/onepixel.jpg);
	background-position: top center;
	height: 20px;
	padding: 0;
} 
.hcs #header {
	background: #DDDDDD;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 486px;
	border-color: #000000;
	padding: 0;
	margin: 0 0 0 0;
} 
.hcs #menua {
	background: #DDDDDD;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 35px;
	background-image: url(../images/menuback3.jpg);
	width: 760px;
	padding: 0;
} 
.hcs #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.hcs #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px; /* padding keeps the content of the div away from the edges */
	margin: 0;
}
.hcs #mainContent {
	margin: 0px 0px 0px 0px;
	color: #666666;
	font-size: 14px;
} 
.hcs #pagetitle {
	margin: 30px 0px 0px 25px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #752615;
	font-size: 30px;
	font-weight: normal;
	text-align: left;
}
.hcs #footer {
	background-image: url(../images/onepixel.jpg);
	background-repeat: repeat-y;
	background-attachment: fixed;
	background-position: top center;
} 
.hcs #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 */
}
ul.menu {
	list-style-type:none;
	width:auto;
	display:table;
	height:30px;
	font-size:small;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	margin:0px 0 0 12px;
	padding:0;
}

ul.menu li {
	display:table;
	float:left;
	margin:0;
	padding:0;
}

ul.menu li a {
	float:left;
	color:#FFFFFF;
	text-decoration:none;
	height:24px;
	padding:9px 15px 0;
	font-weight: 700;
}

ul.menu li a:hover,.current {
	color:#752615;
	background:url(images/bg.png) repeat-x top left;
	font-weight: 700;
}

ul.menu .current a {
	color:#666666;
	font-weight:700;
}


/*RED*/
ul.menu.red{

}
ul.menu.red li a:hover, .menu.red li.current {

}
.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;
}
