@charset "utf-8";
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: #000000;
	background-color: #E8E8E8;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.twoColFixLtHdr #container {
	width: 1000px;
	text-align: left;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	margin-top: 0px;
	background-image: url(../img/bk.jpg);
	background-repeat: repeat-y;
} 
.twoColFixLtHdr #header {
	height: 220px;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
	background-image: url(../img/top.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #E8E8E8;
} 
#header #topnav {
	width: 600px;
	margin-left: 40px;
	margin-top: 18px;
}
#header #topnav a {
	color: #666;
	font-family: "Lucida Grande", "Lucida Sans";
	font-size: 0.8em;
	text-decoration: none;
	text-transform: uppercase;
}
#header #topnav a:hover {
	color: #7B7B7B;
}

#navigation   {
	background-image: url(../img/nv.jpg);
	height: 35px;
	padding-top: 9px;
	text-align: center;
}
#navigation #noline {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#navigation   ul   {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#navigation li    {
	font-family: Tahoma, Verdana;
	font-size: 0.80em;
	display: inline;
	word-spacing: -1px;
	list-style-type: none;
}
#navigation   a   {
	color: #EFEFEF;
	padding-top: 1px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;
	text-decoration: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333333;
	margin: 0px;
	font-family: "Lucida Grande", "Lucida Sans";
	text-transform: uppercase;
	list-style-type: none;
}
#navigation   a:hover   {
	color: #000000;
}

.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 img {
	margin-top: 15px;
	margin-right: 10px;
	float: right;
	padding-bottom: 5px;
}

.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 30px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 60px;
	padding-bottom: 20px;
	padding-left: 60px;
} 
#mainContent p strong {
	color: #333;
}
#mowers {
	width: 160px;
	height: 300px;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 5px;
	background-image: url(../img/mm.gif);
	background-repeat: no-repeat;
	background-position: center top;
	float: left;
}
#mowers h3 {
	color: #FFF;
	font-size: 1em;
	text-align: center;
	margin: 0px;
	padding-top: 16px;
}
#mowers img {
	padding-top: 42px;
	padding-right: 19px;
	padding-left: 19px;
	padding-bottom: 0px;
	margin: 0px;
}
#mowers #dif {
	padding-top: 24px;
}
#mowers ul li {
	font-size: 0.8em;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	color: #666;
	font-weight: bold;
}
#mowers ul {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-left: 20px;
}

#mainContent a {
	color: #930;
	list-style-type: none;
}
#mainContent a:hover {
	color: #000000;
}


p {
	color: #333;
	font-size: 0.9em;
}
strong {
	color: #666;
}

h1 {
	color: #333;
	font-size: 1.8em;
}
h2 {
	font-size: 1.2em;
	color: #333;
}


.twoColFixLtHdr #footer {
	background-image: url(../img/ft.jpg);
	height: 67px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixLtHdr #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 */
	text-align: center;
	font-size: 0.8em;
	color: #A8A8A8;
}
#footer a {
	color: #A8A8A8;
	text-decoration: none;
}
#footer a:hover {
	color: #7B7B7B;
}
.twoColFixLtHdr #base {
	font-size: 0.8em;
	color: #7B7B7B;
}
.twoColFixLtHdr #base a {
	color: #7B7B7B;
}
.twoColFixLtHdr #base a:hover {
	color: #111111;
}


.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;
}

