@charset "utf-8";
/* CSS Document */

body {
	font: 90%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #bfbfbf;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px; 
}
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: #F00;
	text-decoration: none; 
}
a:visited {
	color: #4E5869;
	text-decoration: none;
}
a:hover, a:active, a:focus { 
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 80%;
	max-width: 1000px;
	min-width: 780px;
	background: #FFF;
	margin: 0 auto; 
}

.header {
	background-image:url(images/header.jpg); background-repeat:no-repeat; width: 100%; height: 56px;
}

.content {
	padding: 0px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 30px; 
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #333 ;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}