@charset "utf-8";
body  {
	font: 80% 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: 30px 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: #9D734D no-repeat 150px;
}
h1,h2,h3,h4,h5,h6 {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
}
h1 {
	font-size: 24px;
}
h2 {
	font-size: 22px;
	text-align: center;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 16px;
}
a:link {
	color: #DFD9C6;
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #9E7350;
}
a:active {
	text-decoration: none;
}


#container {
	width: 825px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #DFD9C6 url(Graphics/sidebar.gif) repeat-y right;
	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. */
	position: relative;
	z-index: 100;
} 
#header {
	background: #DDDDDD url(Images/brown115.gif);
	padding: 5px 10px 5px 30px;  /* 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. */
	color: #DFD9C6;
	font-weight: normal;
	height: 120px;
	width: auto;
} 
#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 10px 30; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 36px;
}
#mainnav
{
	background: #614730;
	height: 30px;
	color: #DFD9C6;
	padding-top: 10px;
	padding-left: 30px;
	border-bottom: medium solid #292121;
	border-right-width: medium;
	border-left-width: medium;
	border-right-color: #292121;
	border-left-color: #292121;
	border-top: medium solid #292121;
	font-weight: bold;
}
#mainnav a:hover {
	color: #DFD9C6
}
#mainnav a {
	color: #C60
}
#mainContent {
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right 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: 10px 30px 30px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: relative;
} 
#mainContent h1
{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
}
#mainContent a
{
	color: #614730;
	text-decoration: underline;
}


#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 245px; /* 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 */
	background: #614730; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px;
	color: #DFD9C6;
	font-size: 95%;
}
#sidebar1 a:hover {
	color:#C60;
}
#sidebar1 a:visited {
	color:#dfd9c6;
}
#packsizes
{
	margin-left: 15px;
}
.boldtext
{
	font-weight: bold;
}

#contactimage
{
	float: right;
	height: 250px;
	width: 180px;
}
#productstable
{
	margin-left: 50px;
	vertical-align: top;
	text-align: center;
}
#itemtable
{
	margin-bottom: 20px;
}
#itemtable table tr th
{
	border-bottom: thin solid #614730;
}
#itemtable table tr td
{
	border-bottom: thin solid #614730;
	border-top-width: thin;
	border-right-width: thin;
	border-left-width: thin;
	border-top-color: #614730;
	border-right-color: #614730;
	border-left-color: #614730;
}
.itemtablesmall
{
	margin-left: 75px;
	padding-bottom: 75px;
}


#productlinks
{
	font-size: 80%;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#614730;
	color: #DFD9C6;
	border-top: medium solid #292121;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-right-color: #292121;
	border-bottom-color: #292121;
	border-left-color: #292121;
	position: relative;
} 
#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: 80%;
}
.footersmall
{
	font-size: 60%;
	text-align: center;
	color: #9D734D;
}
.footersmall a
{
	color: #DFD9C6;
}
.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;
}
#mainContent h4
{
}

.smalltext
{
	font-size: 90%;
	font-style: normal;
}
.largetext
{
	font-size: 120%;
}
#buttons
{
	text-align: center;
	z-index: 3;
	width: 500px;
	margin-top: 20px;
}
.profilewheels
{
	height: 225px;
	text-align: center;
	width: 225px;
}
.centertext
{
	text-align: center;
}
#easybarrique
{
	width: 500px;
	padding-top: 10px;
}
.scripttext
{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 13px;
	border: thin dashed #614730;
	padding-right: 15px;
	padding-left: 15px;
	width: 435px;
	margin-left: 15px;
}
.scripttext .fltrt .smalltext
{
	background: #c60;
}
#homebox
{
	background: #9d734d;
	float: right;
	padding: 5px;
	margin-left: 5px;
	font-size: 85%;
	font-style: normal;
	border-width: medium;
	border-color: 614730;
	color: #000;
}
#homebox a
{
	color:#000;
}
#homebox a:hover
{color:#630;

.underlinetext
{
	text-decoration: underline;
}
.indent
{
	padding-left: 15px;
}
.italictext
{
	font-style: italic;
	font-family: Georgia, "Times New Roman", Times, serif;
}

