/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #2F2214;
	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;
}
#header {
	background: #FFFFFF url(images/logoBgd.gif) right;
	padding: 0px;  /* 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. */
} 
#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 */
}
#menu {
	background-color: #533700;
}
#footer {
	text-align: center;
	font-size: 10px;
	padding: 5px 5px 5px 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #533700;
	color: #FFFFFF;
}
#footer a:link {
	color: #AAAAAA;
	text-decoration: none;
}
#footer a:hover {
	color: #FFFF00;
	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 */
}
a:link {
	text-decoration: none;
	color: #FFFFFF;
}
a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
a:hover {
	text-decoration: none;
	color: #FFFF00;
}
/* CSS for left-side Product category menu */
#catList {
	background: url(images/catMenuList2.gif) repeat;
	margin: 30px 0px 0px 5px;
	padding: 0px;
	width: 190px;
	height: auto;
}
#catTitle {
	background: url(images/catTitleBg.gif) repeat-x;
	color: #FFFFFF;
	text-align: left;
	margin: 0px 0px 0px 0px;
	height: 56px;
}
#catTitle h1 {
	font-size: 16px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}
#catItems {
	color: #FFFFFF;
	height: auto;
	padding: 0px 0px 20px 0px;
}
#catItems ul {
	list-style: circle;
	line-height: 40px;
	list-style-position: outside;
}
.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;
}
