

body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 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:#494949;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color:#addfae;

}
.spacer {
	height: 10px;
}
#container  {
	width:900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color:#FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: center; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
} 
#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: 80px;
	width:900px;
	background-color:#494949;
	background-image: url(../images/head1.png);
	margin-top: 0px;
	margin-bottom: 0px;
	background-repeat: no-repeat;
	vertical-align: top;
} 
#headwrap {
	background-color:#494949;
	height: 125px;
}
h4 {
	font-size: 9px;
}
#navbar {
	color:#A7CA76;
	width: 900px;
	background-color:#494949;
	height: 20px;
}
#navbar h4 .rborderlink {
	display: inline-block;
	text-align: center;
	background-color:#494949;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color:#addfae;
	text-decoration: none;
	padding: .75em 2em .2em 2em;
	font-size:1.2em;
}

a {
	text-decoration: none;
}
#navbar h4 .rborderlink a:hover, a.button:hover, input[type=submit]:hover{
	color:#FFFFFF;
	text-decoration: none;
}
a:link {
	color:#addfae;
}
a:visited {
	color:#addfae;
}
a.button, input[type=submit]{
	font-size: 11px;
	background-color:#494949;
	padding: .5em 1em;
	color:#addfae;
	border:3px solid #addfae;
	
	width:auto;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
#navbar h4 .lastLink a:hover {
	color:#FFFFFF;
	text-decoration: none;
}

#mainwrap {
	background-color:#FFFFFF;
	position: relative;
	clear: both;
	width:900px;
}
#sidebar  {
	text-align: left;
	float: left; /* since this element is floated, a width must be given */
	width: 28%;
	background-color:#FFFFFF;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
}
#sidebar img{
	width: 46%;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 10px;
	margin-left: 4px;
	vertical-align: middle;
}
#mainContent img {
	text-align: center;
	margin-top: 20px;
}
#titles h2 {
	font-size: 15px;
	font-variant: normal;
	text-transform: uppercase;
	font-style: italic;
	text-align: left;
	padding: 0px;
	margin-top: 1.5em;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#titles {
	padding:2em 1em 1em 380px;
	width: 450px;
	}
	
#titles p {
	font-size: 14px;
	line-height: 13px;
	text-align: left;
	margin: 0px;
	padding: 0px;
}
#mainContent  {
	height: 475px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	width: 70%;
	background-color:#FFFFFF;
	margin-left: 0px;
	padding-right: 0px;
	padding-left: 0px;
	text-align: center;
	vertical-align: middle;
	float: left;
} 
#footer  {
	padding: 0 10px 0 20px;
	margin-bottom:20px;
	background-color:#FFFFFF;
	clear:both;
	
} 
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	text-align: left;
}
#footer a{
	color: blue;
	text-decoration: underline;
}
.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 */
	float: left;
	margin-right: 8px;
}
.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;
}

#about  {
	position: absolute;
	text-align: left;
	font-size: 10px;
	height: 500px;
	margin-left: 20px;
	width: 380px;
}
#about p {
	font-size: 12px;
}
#contact, #reviews  {
	padding-left:10em;
	text-align: left;
	font-size: 11px;
	width: 400px;
}
div#contact form{
	padding:.5em 1.5em;
	border:3px solid #addfae;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	margin-bottom:1.5em;
}
#uploads  {
	width:780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color:#FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 25px;
}

#fileList {
	font-size: 12px;
	text-align: left;
	padding-left: 20px;
	padding-bottom: 8px;
	
}
#fileList a{
	text-decoration: underline;
	color:orange;
}
#fileList table{
	border-width: 3px;
	border-style: solid;
	border-color:#addfae;
}
#fileList td{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color:#addfae;
	padding-bottom: 5px;
	padding-left: 5px;
	
}

#news {
	text-align:left;
	padding-left:6em;
	padding-bottom:2.5em;
	background-color:#494949;
	
}
div.newsItem{
	padding:2em;
	margin-right:5em;
	margin-bottom:2.5em;
/*	border: 1px solid #555;  */
	background-color:#FFFFFF;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	
}
#news img.newsImg{
	
}
.newsCaption{
	font-size: 10px;
	font-style: italic;
	text-align: left;
}

h1.newsHeading{
font-size:1.5em;
}

#container #mainwrap #news .newsImg {
	
}
