@charset "utf-8";
body  {
	font: Georgia, "Times New Roman", Times, serif;
	background-image: url(images/peachy-bg.jpg);
	background-repeat:repeat-y;
	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-position: center; 

}
#container { 
	width: 994px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
} 
#header { 
	background-color: #626030;
	background-image: url(images/subbg.jpg);
	height: 293px; 
	background-repeat: no-repeat;
} 

#headerinner { 
	background-color: #626030;
	background-image: url(images/head-inner.jpg);
	height: 293px; 
	background-repeat: no-repeat;

} 

#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 */
}

#whitebg {
	background-color: #FFFFFF;
	border-left: 2px solid #000000;
	border-right: 2px solid #000000;
	margin-right: 19px;
	margin-left: 18px;
	position: relative;
	background-image:none;
}

.leftside {
	width: 563px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 10px 15px 20px;
	margin-left: 15px;
	border-right: 2px  dotted #ddded7;
}


.rightside { 
	padding-left: 10px;
}
	

h1 {
	color: #c63a2d;
	display:inline;
	font-weight: bold;
	font-size:36px; 
	font-weight:bold; 
}

h2 {
	color: #c63a2d;
	display:inline;
	font-weight: bold;
	font-size: 14px;
}

.product {
	color: #c63a2d;
	padding: 5px;
	font-weight: bold;
	text-align:center;
	width: 320px;
	font-size: 18px;

}

h3 {
	color: #c63a2d;
	display:inline;
	font-size: 12px;
	font-weight:100;
}

.greenbold {
	font-weight: bold;
	color: #708c1c;
	font-size:12px;
}

.greybold {
	font-weight: bold;
	color: #434343;
	font-size:12px;
}

#footer { 
	
	font-size:12px;
	background-color: #FFFFFF;
	width: 957px;
	margin-left: 18px;
	position: relative;
	text-align:center;
	line-height:16px;
		background-image: url(images/peachy-footer.jpg);
	background-repeat: no-repeat;
} 


#footer  a:link, #footer  a:visited, #footer  a:active, #footer  a{
	color	: 	#c83c2f;
}

#footer  a:hover{
	color	: 	#567108;
}


a:link, a:visited, a:active, a{
	color	: 	#c83c2f;
	text-decoration:none;
}

 a:hover{
	color	: 	#567108;
	text-decoration:none;
}

#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;
}


#nav{
   white-space : nowrap;
   float : left;
   color : White;
   margin-top: 30px;
   padding-left: 5px;
} 
#nav ul{
   margin : 0;
   float : left;
}
#nav ul li{
   display : inline;
}
#nav ul li a{
   padding-left : 1em;
   padding-right : 1em;
   color : White;
   font-weight : bold;
   text-decoration : none;
   font-size: 22px;
   float : left;
}

#nav ul li a:hover{
   color : #f4d6d3;
} 

.emptymsg {
width: 460px;
height: 198px;
background-image:url(images/empty.jpg);
background-repeat:no-repeat;
padding-top: 100px;
padding-right: 30px;
color: #5f3a1e;
position: relative;
margin-top: -200px;
margin-left: 200px;
font-weight: bold;
}

.paypal {
width: 311px;
height: 172px;
color: #5f3a1e;
background-image:url(images/paypal.jpg);
background-repeat:no-repeat;
padding-top: 50px;
padding-left: 70px;
font-weight: bold;
}

.button {
width: 311px;
height: 172px;
color: #5f3a1e;
background-repeat:no-repeat;
padding-top: 50px;

font-weight: bold;
}

.states {
width: 300px;
height: 33px;
color: #5f3a1e;
background-image:url(images/states.jpg);
background-repeat:no-repeat;
padding-left: 60px;
font-weight: 100;
margin-top: 10px;
}

div.tableContainer {
	height: 195px; 	/* must be greater than tbody*/
	overflow: auto;
	margin: 0 auto;
}

.scrolltbl table {
	width: 99%;		/*100% of container produces horiz. scroll in Mozilla*/
	border	: 	1px solid #e0dcdb;
	margin-top: 3px;
}
	
.scrolltbl table>tbody	{  /* child selector syntax which IE6 and older do not support*/
	overflow: auto; 
	height: 250px;
	overflow-x: hidden;
}

.scrolltbl tbody td {
	color				: 	#636363;
	border-left			: 	1px solid #e0dcdb;
	border-bottom		: 	1px solid #e0dcdb;
}

.scrolltbl tbody tr td {
	font-size	: 	8pt;
	padding		: 	3px;
}


.scrolltbl thead tr	{
	position:relative; 
	top: expression(offsetParent.scrollTop); /*IE5+ only*/
	background-color: #ffffff;
	}
	
.scrolltbl thead td, thead th {
	font-weight: bold;
	border-top: solid 1px #d8d8d8;
	background-color:  	#636363;
	font-weight		:	bold;
	text-align		:  	center;
	color			: 	#fff;
	padding			: 	5px;
	font-size		:	10px;
}	
	
.scrolltbl td	{
	color				: 	#636363;
	border-left			: 	1px solid #e0dcdb;
	border-bottom		: 	1px solid #e0dcdb;
}
	
.scrolltbl table tfoot tr { /*idea of Renato Cherullo to help IE*/
      position: relative; 
      overflow-x: hidden;
      top: expression(parentNode.parentNode.offsetHeight >= 
	  offsetParent.offsetHeight ? 0 - parentNode.parentNode.offsetHeight + offsetParent.offsetHeight + offsetParent.scrollTop : 0);
      }


.scrolltbl tfoot td	{
	text-align: center;
	font-size: 8pt;
	font-weight: bold;
	background-color: #636363;
	color: #000000;
}

.scrolltbl td:last-child {padding-right: 20px;} /*prevent Mozilla scrollbar from hiding cell content*/

