* {
	margin:0;
	padding:0;
}

body  {
	font: 18px Cochin, Georgia, Times New Roman, Times, serif;
	background-image:url(/images/BkgTileNew.gif);
	background-repeat:repeat-y;
	background-position:left;
	background-color: #fff9b7;
	min-width:1004px;
	font-weight:500;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.noprint {}

.twoColFixLt #container { 
	width: 1004px;  /* using 20px less than a full 1024px width allows for browser chrome and avoids a horizontal scroll bar */
	/*background-image:url(/images/BkgTileNew.gif);
	background-repeat:repeat-y;
	background-position:center;*/
	margin: 0 0; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 350px; /* 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 */
	text-align:center;
}
.twoColFixLt #sidebar1 UL {
	margin:20px 0;
	padding:0;
}
.twoColFixLt #sidebar1 LI {
	list-style:none;
	margin:10px 0;
}

.twoColFixLt #mainContent {
	margin: 0 0 0 350px; /* 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: 30px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixLt #mainContent p {
	margin:.6em 0;
} 

.twoColFixLt #mainContent H2 {
	margin:1em 0 .6em 0;
	font-weight:bold;
	font-size:1.4em;
}
.twoColFixLt #mainContent H2.tight {
	margin:0;
	padding:0;
}  

.twoColFixLt #mainContent H3 {
	font-weight:bold;
	font-size:1.1em;
	margin:1em 0 0 0;
}

fieldset {
	margin:8px;
	padding:10px;
}
legend {
	margin:0 4px;
}

input[type=text], input[type=password] {
	font-size:12pt;
}

TD {
	padding:2px;
}

TD.formLabel {
	width:150px;
	text-align:right;
}
TD.formElement {
	width:300px;
	text-align:left;
}

.twoColFixLt #footer {
	margin: 0 0 0 350px; /* 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. */
	text-align:center;
} 

.note {
	font-size:12px;
	color:#333333;
}

.small {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#333333;
}
.small A:link{
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#666666;
	text-decoration:none;
}
.small A:visited{
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#666666;
	text-decoration:none;
}
.small A:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#666666;
	text-decoration:underline;
}

.itemName {
	font-weight:bold;
}
.priceHeader {
	text-align:center;
	margin:0;
	padding:0;
}

.cartTable, .storeTable {
	width:600px;
}

.storeTable .item {
	width:350px;
}

.storeTable .price {
	width:50px;
}

.storeTable .addcart {
	width:200px;
}

.storeTable .addcart A:link, .storeTable .addcart A:hover, .storeTable .addcart A:visited {
	text-decoration:none;
}

.storeTable IMG {
	vertical-align:middle;
}

.storeTable .description, .cartTable .description {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}

.warning {
	font-size:12px;
	font-weight:bold;
	color:#CC0000;
}

.cartTable .item {
	width:350px;
}

.cartTable .price {
	width:75px;
}

.cartTable .quantity {
	width:75px;
	text-align:center;
}

.cartTable .subtotal {
	width:100px;
	text-align:right;
}

.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;
}