@charset "utf-8";
body  {
	margin: 0 auto;
	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*/
	}
#container {
	width: 800px;  
	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. */
	background-color: #FFFFFF;
	background-image:url(images/bkg-dots6.jpg);
	background-repeat: repeat-y;
	} 
#header { 
	padding: 0; 
	margin: 0;
	} 
#pagetitle { 
	padding: 0;
	margin: 0;
	} 
#navigation { 
	float: left; /* since this element is floated, a width must be given */
	width: 155px; /* 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 */
	padding: 55px 20px 0px 0px; /* top right left bottom remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0px 0px 0px 0px;
	text-align:right;
	} 
#content { 
	float: left; /* since this element is floated, a width must be given */
	width: 500px; /* 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 */
	padding: 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
	text-align: justify;
	} 
#footer { 
	padding: 10px 30px 10px 30px; /* top - right - bottom - left -this padding matches the left alignment of the elements in the divs that appear above it. */
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	color: #666666;
	}
p 	{
	font: 90% Arial, Verdana, Helvetica, sans-serif;
	color: #666666;
}
.sidebar {
	font: 80% Arial, Verdana, Helvetica, sans-serif;
	color: #666666;
}
.subnav {
	font: 80% Arial, Verdana, Helvetica, sans-serif;
	color: #666666;
}
.form {
	font: 90% Arial, Verdana, Helvetica, sans-serif;
	color: #666666;
}
.caption {
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	color: #666666;
}
.justleft {
	text-align: left;
}
h1 {
	font: 90% Arial, Verdana, Helvetica, sans-serif;
	font-weight: bold;
	color: #666666;
	}
h2 {
	font: 90% Arial, Verdana, Helvetica, sans-serif;
	font-weight: bold;
	color: #FF0033;
	}
h3 {
	font: 70% Arial, Verdana, Helvetica, sans-serif;
	font-weight: bold;
	color: #666666;	
	}
a:link {
	color: blue;
	}
a:visited {
	color: purple;
	}
a:active {
	color: red;
	}
a:hover {
	color: red;
	}
a {
	text-decoration: none;
	}
.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;
	}
ul {list-style:outside;
	list-style-type: square;
	font: 90% Arial, Verdana, Helvetica, sans-serif;
	color: #666666;
	}
.red-bold {
	color: #FF0033;
	font-weight: bold;
}
.imgpadright {
	margin-right: 10px;
	margin-bottom: 7px;
	}
.imgpadleft {
	margin-left: 10px;
	margin-bottom: 7px;
	}
