@charset "utf-8";
/* CSS Document */

<!-- 
*margin, padding {
0;
}
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;
	text-align: center;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-x;
	background-color: #000000;
	font-family: "Century Gothic", Tahoma, Arial, sans-serif;
	font-size: 0.9em;
	color: #ffffcc;
}
.twoColFixRtHdr #container {
	width: 903px;
	background-image: url(../images/sectionbg.jpg);
	background-repeat: repeat-x;
	background-color: #000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
background-color:#FFF;
}
.twoColFixRtHdr #mainContent {
	color:#000000;
	padding: 10px 40px;
	min-height: 500px;
	background-color: #FFFFFF;
}
.twoColFixRtHdr #menuCategories {
	float: left; /* since this element is floated, a width must be given */
	width: 210px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	border-right: dashed 1px #660;
}
.twoColFixRtHdr #menuContent {
	margin: 10px 0 0 260px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the menuCategories div contains, the column space will remain. You can remove this margin if you want the #menuContent div's text to fill the #menuCategories space when the content in #menuCategories ends. */
	padding: 0 10px 10px;
} 
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px;
} 
.twoColFixRtHdr #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 */
	color: #999900;
	font-size: 0.7em;
	text-align: center;
}
.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;
}
td,th {
	font-family: "Century Gothic", Tahoma, Arial, sans-serif;
	color: #000033;
	font-size: 0.9em;
}
h4 {
	font-size: 1.1em;
}
.style4 {color: #003366; font-weight:bold;}
a:link {
	color: #006699;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #990066;
}
a:hover {
	text-decoration: underline;
	color: #669900;
}
a:active {
	text-decoration: none;
}
a.menulink:link {
	color: #333;
	text-decoration: none;
}
a.menulink:visited {
	text-decoration: none;
	color: #333;
}
a.menulink:hover {
	text-decoration: underline;
}
a.menulink:active {
	text-decoration: none;
	color: #c30;
}
--> 
