/* CSS Document */

/* Style Sheet for 2 Column Template */
@charset"utf-8";

body  {
	background-color: #CCCCCC;
	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: left; /* this centers the container in IE 5* 	browsers. The text is then set to the left aligned default in the 
	#container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	left: auto;	
}

#container {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000; /* this overrides the text-align: center on the 	body element. */
	background-color: #FFFFFF;
	background-image: url(images/seal.gif);
	background-repeat: no-repeat;
	background-position: 35px 35px;
	color: #000000
} 

#header {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 0px;
	width: 580px;
	height: 120px;
	text-align: right;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 48px;
	color: #FFFFFF;
	background-color: #DB0000;
	margin-left: 180px;
	background-image: url(images/headerphoto.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
} 

#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;
	font-size: 48px;
	color: #FFFFFF;
	font-weight: bold;
}

#topnav {
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
	background-color: #DB0000;
	font-size: 10px;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	width: 740px;
	vertical-align: middle;	
	
}
#topnav a {
	color: #FFFFFF;
}


#topnav a:hover {
	color: #000000;
}



#left-column {
	float: left; /* since this element is floated, a width must be 	given */
	width: 200px; /* the background color will be displayed 	for the length of the content in the column, but no further */
	padding: 20px; /* top right bottom left */
	margin-top: 20px;
	margin-left: 20px;
	font-size:12px;
	color: #000000;
	background-color: #FFFFFF;
	border: medium double #000099;
}
 #right-column {
	float: right;
	width: 300px;
	background-color: #FFFFFF;
	margin-right: 20px;
	color: #000000;
	padding: 10px;
} 

#content {
	width: 440px;
	background-color: #FFFFFF;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	color: #000000;
	margin-right: 0px;
	margin-left: 300px;
} 
#content p {
	line-height: 150%;
	font-size: 14px;
	list-style-type: circle;
	text-align: left;
}


#footer {
	background:#CC0000 center bottom;
	color: #FFFFFF;
	font-size: 10px;
	text-align: center;
	font-style: normal;
	font-weight: bold;
	padding: 5px;
	clear: both;
	width: 770px;
} 
#footer a {
	color: #FFFFFF;
}
#footer a:hover {
	color: #000000

#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 */
}

.float-right { /* 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;
}

.float-left { /* 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;
}
.small type {
	font-size: xx-small;
}
