cssof@charset "utf-8";
body {
	background: #fff;
	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: #000;
}
#container {
	width: 960px;
	background: #ccc;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	position: relative;
	border: 1px solid #000;
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/*========== Header==========*/

 #header {
	position: relative;
	background: #fff;
	margin:0;
	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. */
	border-color: #004927;
	height: 230px;
}
 #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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#headerContent {
	position: relative;
	height: 204px;
	padding: 0 24px;
}
#headerContent p{
	margin:0;
}
#menu {
	position: relative;
	margin:0;
	width:100%;
	height: 26px;
	z-index: 50;
	background: #004225;
}

/*=========Main Content=========*/
#mainContent {
	 margin:0 auto;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #fff url(../_images/LOGO_003-vi.jpg) repeat-y center;
	height:auto;
	}
	
#mainContent h1, #mainContent h2, #mainContent h3, #mainContent h4 {
	text-align: center;
	font-weight: bold;
	margin:0;
	padding: 0;
}

#mainContent h1 {
	font-size: 24px;
	padding-top: 10px;
}
#mainContent h2 {
	font-size:18px;
	padding: 20px 0 5px 0;
}
#mainContent h3 {
	font-size: 16px;
}
#mainContent h4 {
	font-size: 14px;
	font-weight:normal;
	font-style: italic;
}
#intro a {
	color: #004927;
	font-weight:normal;
	font-size: 1.1em;
}
#intro a:hover {	
	background: #9F1B1B;
	color: #fff;
}
#mainContent p{
	text-align:center;
	font-size: 14px;
	padding:0 15px;
}

#additions {
	width:70%;
	margin: 0 auto;
	padding-bottom: 7px;
	border-style:solid;
	border-color:#C00;
}

#additions p {
	font-size:24px;
	padding-bottom:10px:
}


/*==========links==========*/
#mainContent div#linksContainer {
	width:940px;
	height:auto;
	padding: 0 0 0 20px;
	position:relative;
}
.links {
	width: 450px;
	height: 7em;
	padding: 0 0 0 20px;
	float:left;
}
#linksContainer p {
	text-align:left;
	display: block;	
}
.linksContainer a {
	color: #004927;
	font-weight:normal;
	font-size: 1.4em;
}
.linksContainer a:hover {	
	background: #9F1B1B;
	color: #fff;
}

/*==========events Page==========*/
#eventsContainer {
	position:relative;
	height:auto;
	font-weight: normal;
	text-align:center;
}
#eventsContainer a {
	font-size:20px;
}
#calendarContainer {
	height:auto;
	margin:10px 60px;
	border: 1px solid #004927;
}
#calendar {
	height: 600px;
	width: 800px;
	padding: 0 10px;
}
#events {
	border: 1px solid #004927;
	margin:0 auto;
	height:auto;
}
#events h3{
	padding-bottom: 7px;
}
#events h4{
	padding-bottom: 15px;
	font-size:15px;
}
#events dl {
	margin:0;
		
}
#events dt:hover {
	color:#FFF;
	background:#004927;
	cursor: hand;
}
#events dt {
	padding-top:7px;
	font-weight:bold;
	font-size:15px;
}
#events dd {
	border: 1px solid #004927;
	margin-right:40px;
}
#events dd h3 {
	padding: 15px;
}

.directions {
	padding-left: 15px;
	padding-right: 15px;
}

/*==========Parts Pages==========*/

#categoryDescription {
	position:relative;
	
	height: 250px;
	width: 900px;
	padding:0 30px;
	float:none;
}
#categoryDescription h4{
	padding:10px;
}
#categoryDescription p {
	padding-bottom:10px;
}

#fragment-3.literature h3{
	padding:20px 10px 10px 10px;
}
#fragment-3.literature table{
	width:100%;
}

/*========== For Sale ==========*/
#adContainer {
	position:relative;
	 height:auto;
}
#adContainer div {
	margin:5px 30px;
	padding: 0;
	position:relative;
	border: 1px solid #004927;
	height:450px;
}
#adContainer img {
	height: 150px;
	width: 200px;

}
#adContainer h3, #adContainer h4  {
	padding:20px;
}
#adContainer p {
	text-align: center;
	padding: 0 15px;
}

#adContainer div p {
	margin:0;
	padding:0 30px 0 15px;
}
#adContainer h4 {
	clear:both;
	padding-top:0;
}
#adContainer div.forsaleL {
	float: left;
	height: auto;
}
#adContainer div.forsaleC {
	width: 300px;
	height: auto;
	float: left;
}
#adContainer div.forsaleC p {
	text-align: center;
}

#adContainer div.forsaleR {
	float: right;
	height: auto;
}

#adContainer div.forsaleB {
	clear: both;
	height: auto;
 border-width: 0px;
}
#adContainer div.forsaleB img {
     padding-left: 5px;
     padding-right: 0px;
	
} 
/*========== Footer ==========*/

#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:rgb(0, 66, 37);
	font-size: .8em;
	color: #FFF;
	text-align: center;
	margin: 0;
	height: 50px;
	width: 100%;
}
 #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 */

}

/*============tables ==========*/
table {
	width:100%;
	border-collapse: collapse;
	empty-cells:show;
	border-color:#111111;
	color:#000;
}
thead {
	color:#FFF;
	background: #004927;
}
th {
	text-align:center;
	border-color:#004927;
	border:thin;
	padding:5px;
}
tfoot {
	text-align:center;
	padding:5px;
	color:#FFF;
	background: #004927;
}
td {
	padding: 5px;
	border-color:#004927;
}
.odd {
	background:#CCC;
}
.even {
	background:#EEE;
}
.highlight {
	background: #004927;
	color: #FFF;
}

.price {
	text-align: right;
}
.saleprice {
	text-align: right;
	text-decoration: line-through;
}
.onSale {
	background: #9F1B1B;
	color:#FFF;
}
.notVisible {
	background: #F00;
}
/*==========Menu Bar Styles ==========*/

#jsddm
{	margin: 0;
	padding: 0;
	z-index: 50;
}
	#jsddm ul{
background: #9F1B1B;
}
	#jsddm li
	{	float: left;
		list-style: none;
		font: 13px Tahoma, Arial;
			background: #9F1B1B}
	
		

	#jsddm li a
	{	display: block;
	background: #004927;
		padding: 5px 12px;
		text-decoration: none;
		border-right: 1px solid white;
		width: 70px;
		color: #EAFFED;
		white-space: nowrap;
		z-index: 50;
	}

		

	#jsddm li a:hover
	{		
			background: #9F1B1B;
		z-index: 50;
}
		
		#jsddm li ul
		{	margin: 0;
			padding: 0;
			position: absolute;
			visibility: hidden;
			border-top: 1px solid white}
		
		#jsddm li ul li
		{
	float: none;
	display: inline
	z-index: 50;
			}
		
		#jsddm li ul li a
		{	width: auto;
					z-index: 50;

			background: #9F1B1B}
		
		#jsddm li ul li a:hover
		{	background: #7F1616;
				z-index: 50;
}
		
/*==========miscellaneous==========*/

.clear { 
	clear:both;
	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 */
}

.boldItalic {
	font-weight: bold;
	font-style:italic;
}
span.emphasis {
	font-size: 1.4em;
	font-weight: bold;
	padding:0;
}
span.printer {
	float: right;
	display:none;
}
