@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #CCC;
}

.twoColFixLtHdr #container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColFixLtHdr #container_contact { 
	width: 990px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: ;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	height:175px;
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #FFF;
	background-image: url(../images/header3.jpg);
	background-repeat: no-repeat;
	border-bottom-style: none;
} 
.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 */
}
.twoColFixLtHdr #header_content {
	height:175px;
	padding: 0 10px 0 20px;  /* 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. */
	background-color: #FFF;
	background-image: url(../images/header3.jpg);
	background-repeat: no-repeat;
	border-bottom-style: none;
} 
.twoColFixLtHdr #header_content 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 */
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #CCC;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #CCC;
	background-color: #E2F0D4;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}

.twoColFixLtHdr #sidebar_contact {
	float: left; /* since this element is floated, a width must be given */
	width: 280px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 15px 30px 300px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.twoColFixLtHdr #mainContent {
	font-family: calibri, Verdana, Arial, Helvetica, sans-serif; 
	color:#000;
	font-size:16px;
	font-style:normal;
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left-width: thin;
	border-left-style: none;
	border-left-color: #CCC;
} 
.twoColFixLtHdr #mainContent_gallery {
	font-family: calibri, Verdana, Arial, Helvetica, sans-serif; 
	color:#000;
	font-size:16px;
	font-style:normal;
	margin: 0 0 0 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 30px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left-width: thin;
	border-left-style: none;
	border-left-color: #CCC;
} 


.twoColFixLtHdr #mainContent_contact {
	font-family: calibri, Verdana, Arial, Helvetica, sans-serif; 
	color:#000;
	font-size:16px;
	font-style:normal;
	margin: 0 0 0 595px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left-width: thin;
	border-left-style: none;
	border-left-color: #CCC;

} 
.twoColFixLtHdr #footer {
	padding: 4px 10px 4px 20px;
	font-family: "Trajan Pro", Verdana, Geneva, sans-serif;
	color:#000;
	font-style:normal;
	margin:10px 0 0 0;
	background-color: #ffffff;
	background-image: url(../images/footer.jpg);
	background-repeat: no-repeat;

} 
.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 */
}
.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;
}




#navcontainer
{
margin-right: auto;
margin-bottom: 10px;
border-top: 1px solid #999;
z-index: 1;
}

#navcontainer ul
{
list-style-type: none;
text-align: center;
margin-top: -8px;
padding: 0;
position: relative;
z-index: 2;

}

#navcontainer li
{
display: inline;
text-align: center;
margin: 0 5px;

}

#navcontainer li a
{
	font-size:14px;
	padding: 1px 7px;
	border: 1px solid #336600;
	text-decoration: none;
	background-color:#8BC552;
	color:#000000;
}

#navcontainer li a:hover
{
color: #fff;
border: 1px solid #666;
border-top: 2px solid #666;
border-bottom: 2px solid #666;
}

#navcontainer li a#current,
body#spacer a#spacer,
body#home a#home,
body#menu a#menu,
body#price a#price,
body#news a#news,
body#testimonials a#testimonials,
body#contact a#contact,
body#spacer a#spacer
{
color: #fff;
border: 1px solid #666;
border-top: 2px solid #666;
border-bottom: 2px solid #666;
}
h4 {
	font-family: calibri, Verdana, Arial, Helvetica, sans-serif; 
	font-weight: bold;
	font-size: 26px;

}
.sidebar{
	font-family: calibri, Verdana, Arial, Helvetica, sans-serif; 
	font-size:16px;
	font-style:normal;
	color:#000;
	
}
h2{
	font-family: calibri, Verdana, Arial, Helvetica, sans-serif;
	font-size:25px;
	font-style:italic;
	color:#75AF3A;
}
.side_header{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:18px;
	font-style:bold;
	color:#57832C;
	text-align:center;
}
unused{
	font-family: calibri, Verdana, Arial, Helvetica, sans-serif;
	font-size:18px;
	font-style:bold;
	color:#336601;
	text-align: center;
}
.twoColFixLtHdr #text{
	margin:-50px 0 25px 0;
}


.twoColFixLtHdr #headline{
		margin:-35px 0 0 0;
}

.twoColFixLtHdr #ie{
		margin:30px 0 0 0;
}

.twoColFixLtHdr #line{
		
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #7CC242;
}
.twoColFixLtHdr #green{
	background-color:#83C144;
}

A.friends:LINK {Color:#039; Text-Decoration: none;}
A.friends:VISITED {Color:# 333; Text-Decoration: none;}
A.friends:HOVER {Color:#060; Text-Decoration: underline;}

P.news{font-size:22px; font-style:oblique; font-weight:300; line-height:20px;}

.twoColFixLtHdr #shadow{
	position:relative;
	left:835px;
	top: 38px;
	width:125px;
	padding:4px;
	height: 20px;
	border:#333 thin groove;
	moz-box-shadow: 2px 2px 3px #000;
	webkit-box-shadow: 2px 2px 3px #000;
	box-shadow: 2px 2px 3px #000;
	/* For IE 8 */
	ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
	background-color: #E2F0D4;
}

/*css for the gallery page to create three columns of rows with space fopr text*/

ul.rig {
	list-style: none;
	font-size: 0px;
	margin-left: -2.5%; /* should match li left margin */
}
ul.rig li {
	display: inline-block;
	padding: 10px;
	margin: 0 0 2.5% 2.5%;
	background: #fff;
	border: 1px solid #ddd;
	font-size: 16px;
	font-size: 1rem;
	vertical-align: top;
	box-shadow: 0 0 5px #ddd;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
ul.rig li img {
	max-width: 100%;
	height: auto;
	margin: 0 0 10px;
}
ul.rig li h3 {
	margin: 0 0 5px;
}
ul.rig li p {
	font-size: .9em;
	line-height: 1.5em;
	color: #999;
}
/* class for 2 columns */
ul.rig.columns-2 li {
	width: 47.5%; /* this value + 2.5 should = 50% */
}
/* class for 3 columns */
ul.rig.columns-3 li {
	width: 30.83%; /* this value + 2.5 should = 33% */
}
/* class for 4 columns */
ul.rig.columns-4 li {
	width: 22.5%; /* this value + 2.5 should = 25% */
}



 
/*
@media (max-width: 480px) {
	ul.grid-nav li {
		display: block;
		margin: 0 0 5px;
	}
	ul.grid-nav li a {
		display: block;
	}
	ul.rig {
		margin-left: 0;
	}
	ul.rig li {
		width: 100% !important; 
		margin: 0 0 20px;
	}
}
*/