* {
	margin: 0;
	padding: 0;
} 
/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {height: 100%;}

body {
	background: url(../images/bg-body.jpg);
	background-repeat:no-repeat;
	background-position:center top;
	background-attachment:fixed;
	font-family: arial, verdana, helvetica;
	font-size: .8em;
}

#wrap {
	width: 100%;
	min-height: 100%;
}

#header {
	width: 100%;
	background: url(../images/bg_header.png);
	height: 275px;
}

#menu {
	height: 20px;
	padding-top:10px;
	width: 1000px;
	margin: 0 auto;
}

#menu ul, li{
	display: inline;
}

#menu a {
	padding: 0 25px 0 0;
	font-size: 1.2em;
	color: #000;
	font-weight: bold;
	text-decoration: none;	
}

#menu a:hover {
	color: #777;
}

#headings {
	height: 125px;
	width: 1000px;
	margin: 0 auto;
}

#main {
	overflow: auto;
	padding-bottom: 80px; /* must be same height as the footer */
	width: 1000px;
	margin: 0 auto;
}

#main p {
	padding: 15px 0 0 0;
}

ul.thelist {
	display: block;
}

li.thelist2 {
	display: block;
	list-style-type: initial;
	list-style-position: initial;
	margin:0 0 0 25px;
	padding:0 0 5px 10px;
}

h1 {
	 font-size: 19pt;
	 font-weight: bold;
	 font-family: Georgia;
	 font-style: italic;
	 padding: 25px 0 0 0;	
}

h2 {
	 font-size: 16pt;
	 font-weight: bold;
	 font-family: Georgia;
	 font-style: italic;
	 padding: 25px 0 0 0;	
}

td {
    padding:8px 25px 8px 25px;
    color:white;
    font-weight:bold;
    background-color:aaa;
}

.siteinfo {
    color:black;
}

.item {
	border: 1px solid #999;
	width: 175px;
	float: left;
	margin: 0 20px 10px 0;
	background: url(../images/bg-text.png);
}

.lastitem {
	border: 1px solid #999;
	width: 175px;
	float: left;
	margin: 0 0 10px 0;
	background: url(../images/bg-text.png);
}

.item p {
	font-size: .85em;
	line-height:1.4;
	margin: 0 10px 10px 10px;
}

.lastitem p {
	font-size: .85em;
	line-height:1.4;
	margin: 0 10px 10px 10px;
}

.item img {
	padding: 15px 15px 0 15px;
}

.lastitem img {
	padding: 15px 15px 0 15px;
}

#footercontainer {
	position: relative;
	margin-top: -80px; /* negative value of footer height */
	height: 80px;
	clear: both;
	background: url(../images/bg-footer.png);
} 

#footer {
	width: 1000px;
	margin: 0 auto;
	padding: 8px 0 3px 0;
}

#footer a {
	color: #000;
}

.footOne {
	float: left;
	width: 350px;
	color: #000;
	font-size: 8pt;
	text-align: left;
	margin: 0;
}

.footOneB {
	float: left;
	width: 350px;
	color: #000;
	font-size: 8pt;
	text-align: center;
	margin: 0;
}

.footTwo {
	float: right;
	width: 300px;
	color: #000;
	font-size: 8pt;
	text-align: right;
	margin:0;
}



/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}

.clr {clear: both;}

