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


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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-family: Verdana, sans-serif;
	font-size: 11px;
}

#container {
	width: auto;
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
/*	border: 1px none #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	/*padding-left: 20px;*/
}

#header {
	padding: 0 10px;  /* 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-color: #FFFFFF;

}

#container #header img {
	height: 91px;
	width: 400px;
}

#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 */
}
#topnav {
	visibility:hidden;}
#sidebar {
	width: 1%;
	visibility:hidden;}

#content {
	width: 98%;
	background-color:#fff;
	float:left;
	/*zoom: 1;*/
	margin-top: 1em;
	padding: 0 1em;
	}

#text {width:98%;}

#content p {
	font-size: 95%;
}


#img-holder {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}


#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#EEE;
	visibility: hidden;
	}
#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:6px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 85%;
	text-align: right;	
	}
#footer a {

	font-size: 85%
	}
#footer a hover{

	font-size: 85%	
	}
 #footer a visited{

	font-size: 85%
		}
a:link {
	color: #000000;
	}
a:visited {
	color: #FF6300;
	}
a:hover {
	color: #FF6300;
	}
img {
	padding-right: 8px;
	}

/* Miscellaneous classes for reuse */

.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;
	}

.italicnote {
	font-size: 9pt;
	font-style: italic;
	/*padding-right: 20px;
	padding-left: 20px;*/
	}


[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
#sidebar1 { padding-top: 30px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

.statename {
	font-weight: normal;
	text-transform: uppercase;
	font-weight:bold;
	color: #FFF;
	background-color: #800000;
	margin-top: 10px;
	line-height:1.2em;
	}
.chaptername {
	font-weight: bold;
	text-transform: uppercase;
	padding-left: 30px;
	margin-bottom: -1em;
	/*font-size: 95%*/
	}
.border {
	border: 1px dotted #800000;
	}
.contact {
	font-size: 95%;
	/*line-height: 1.3em;*/
	/*margin-top: -13px;
	margin-bottom:-8px;*/
	padding-left: 30px;
}
ul {
	padding-right: 30px;
	padding-left: 30px;
	}
ul p {
	/*line-height: 1.4em;*/
	/*padding-top: 1em;  change this to 1em if 16p. is allowed.*/
	margin:0 auto;
	/*margin-bottom: .2em;*/
	
	}
	.date {
		visibility:visible;
	}
