@charset "UTF-8";
body {
	background: #6a6667;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 40px 0 0 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: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
img, div {
	behavior: url(_iepngfix/iepngfix.htc);
}
img {
	border:none;
}
.SMALL10 {
	font-size:10pt;
	font-weight:100;
}
.PAD {
	padding-left:25px;
}
#container {
	width: 955px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../POI/images/portraits%20home.jpg);
	background-repeat: no-repeat;
	height:710px;
	border-top:40px #6a6667;
}
#header {
	padding: 0;  /* 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:215px;
	float: left; /* since this element is floated, a width must be given */
	width: 955px;
	margin: 0 auto;
	border-bottom: 0;
	border-left: 0;
	border-right: 0;
}
#header h1 {
	padding-top: 30px;
	padding-left: 120px;
	padding-bottom: 0;
	padding-right: 0;
}
#header h2 {
	padding-top: 80px;
	padding-left: 0;
	padding-bottom: 0;
	padding-right: 0;
	font-size: 24pt;
	font-weight:100;
}
#header h3 {
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	margin:0 auto;
	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 */
	/* the background color will be displayed for the length of the content in the column, but no further */
	height:310px;
	padding:100px 0 0 0;
	color: #FFF;
	font-size: 14pt;
}
#sidebar1 a:link {
	text-decoration: none;
	color: #000;
}
#sidebar1 a:visited {
	text-decoration: none;
	color: #000;
}
#sidebar1 a:hover {
	text-decoration: none;
	color: #B7121F;
}
#sidebar1 a:active {
	text-decoration: none;
	color: #B7121F;
}
#mainContent { 
	margin: 0px 0px 0px 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding-bottom:40px;
	padding-top: 20px;
	height:655px;
}
#mainContent p {
	padding: 3px 0 3px 0;
	font-size: 10pt;
}
#mainContent h4 {
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20pt;
}
#mainContent h5 {
	padding: 10px 0 0 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
}
#mainContent h6 {
	padding: 0;
	font-size: 8pt;
	font-weight: normal;
}
#mainContent ul {
	padding: 0 0 0 20px;
}
#mainContent li {
	font-family: Arial, Helvetica, sans-serif;
	padding: 0 0 10px 0;
}
#footer p {
	padding-left: 180px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	margin: 0 auto;
	width:955px;
	height:40px;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #6a6667;
	font-size: 7pt;
	color:#333;
	text-align: center;
}
#footer a:link {
	text-decoration: none;
	font-weight: normal;
	color: #333;
}
#footer a:visited {
	text-decoration: none;
	font-weight: normal;
	color: #333;
}
#footer a:hover,
#footer a:active {
	text-decoration: none;
	font-weight: bold;
	color: #333;
}

#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-top: 12px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-left: 80px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	vertical-align: top;
}
.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;
}
