@charset "utf-8";
body {
	font: 100%/1.2 Verdana, Arial, Helvetica, sans-serif;
	background: #FFF;
	margin: 0;
	padding: 0;
	color: #333;

}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	padding-right: 10px;
	padding-left: 10px;
}
p {
	margin-top: 0;
	padding-right: 10px;
	padding-left: 10px;
	text-align: justify;
}

a img { 
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: underline; 
}
a:visited {
	color: #4E5869;
	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 container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 880px;
	background: #FFF;
	margin: 0 auto;
	border-left: solid 1px;
	border-left-color: #999;
	border-right: solid 1px;
	border-right-color: #999;	/*color: #C8D9DF;*/
}

.header div {
	margin: auto;
	padding-top: 70 px;
	padding-bottom: 70 px;
	width: 450 px;
	color:#009;
	font:Verdana, Geneva, sans-serif;
	font-size:16px;
	font-style: italic;
	text-align: center;
	}
.header {
	background: url(images/header.jpg) no-repeat center;
	margin: auto;
	padding-top: 70 px;
	padding-bottom: 70 px;
	width: 350 px; 
	
	/*background: #6F7D94;*/
}
.menu {
	background: #96AAC2 center;
	margin: auto;
	font-size:12px;
	font-style: normal;
	color:#00C;
	text-align: right;
	padding-bottom: 10 px;
	font-weight: bold;
	
	}
.content {
	padding: 10px 0;
	font-size:12px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #658EBA;
}
.footer p { font-size:12px;
text-align: right;
}

/* ~~ 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;
}
