@charset "UTF-8";
body {
	font-size: 100%;
	line-height: 1.4;
	text-align: left;
	background-color: #666633;
	height: 40px;
}



h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px; 
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
}
a img {
	border: none;
	background-color: #FFC;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 760px;
	background: #000;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	background-color: #FFC;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-style: normal;
	font-weight: bold;
	color: #003366;
	background-color: #FFC;
	height: 90px;
}


.content {
	background-color: #FFC;
	text-align: left;
	padding-top: 20px;
	padding-right: 60px;
	padding-bottom: 10px;
	padding-left: 60px;
}

.container .content p {
	text-align: justify;
	font-size: 20px;
	line-height: 30px;
}


/* ~~ The footer ~~ */
.footer {
	height: 30px;
	margin: 0px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 0px;
	font-size: 12px;
	font-weight: normal;
	color: #D6CB4B;
	background-image: url(file:///Macintosh%20HD/Users/pam/Desktop/final/images/Footer_bkg.jpg);
	background-repeat: repeat-x;
	text-align: left;
	margin: 0px;
	padding: 25px;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
