body{

	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
}
h1 {
	font-family: "Helvetica", Arial, Trebuchet MS, sans-serif;
    margin-top: 0.8em;	
}

h2, h3{
	font-family: "Helvetica", Arial, Trebuchet MS, sans-serif;
    margin-top: 5px;	
}

ul.products {
	max-width: 480px;

}
ul.products li {
	display: inline-block;
	max-width: 480px;
    
	background-color: #FFFFFF;
    margin-right: 10px;

}
ul.products li h3 {

	
	text-align: Left;
	font-family: "Helvetica", Arial, Trebuchet MS, sans-serif;
	font-size: 1.3em;
	color: #000000;
                                  /* This creates a bullet before the heading*/
	display: list-item;          /* This has to be "list-item"                                               */
    list-style-type: disc;       /* See https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type     */
    list-style-position: inside; /* See https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-position */

}


ul.products li fieldset {
	border: none;
	padding: 0px 0px 0px 0px;
	margin: 0px;
}
ul.products li fieldset label{
	display: block;
	margin-bottom: 0px;
	
}
ul.products li fieldset label span{
	
	width: 110px;  //Space the number from the word Quantity.
	float: left;
}
ul.products li fieldset label select{
	min-width: 80px;
}

/*In the upper level css file, #XBody .OESZ_XBodyContent{display:block;height:1052px} is
set to 1052PX. reduce it to a 310px so that it does not interfer with button
ie keychain.css */
button, .button {
	background-color: #cd4016; 

	min-width: 70px;
	border: none;
	padding: 10px;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	color: #FFF;
	min-height: 15px;
	font: 21px/24px Arial, Helvetica, sans-serif; 
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.26);
	border-radius: 5px;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 20px;
	
	
	
	
	
}



button:hover, .button:hover{
	background-color: #e14212; 
}


.product-thumb{
	text-align:center;
	
	/* If the max-width property is set to 100%, the image will scale down if it has to, but never scale up to be larger than its original size */
    
	max-width: 100%;
    height: auto;
}
.product-desc {
	font-style: italic;
	font-size: 1.3em;
	margin-bottom: 4px;
	/* height used to be 120px to fit 4 lines, but auto appears to be better and more dynamic */
	max-width: 440px;
	height: Auto;
	overflow: visible;
	margin-top: 5px;
	
}

.product-info {

	font-style: Bold;
	font-size: 1.4em;
	margin-bottom: 4px;
	height: Auto;
	overflow: visible;
	margin-top: 4px;
	/* line height to specify height of space between lines. */
	line-height: 0.8em;
 	
}

ul.shopping-cart{
	position: fixed;
	top: 40px;
	right: 0;
	background-color: #F9F9F9;
	padding: 10px;
	min-width: 250px;
	list-style: none;
	font-size: 0.8em;
	border: 1px solid #F0F0F0;
}
ul.shopping-cart .cart-itm {
	margin-bottom: 10px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 8px;
}
ul.shopping-cart .cart-itm:last-child{
	border-bottom: none;
	margin-bottom: 0px;
}
ul.shopping-cart .cart-itm .remove-itm{
	float: right;
	font-size: 2em;
}
ul.shopping-cart .cart-itm .remove-itm a{
	text-decoration:none;
	color:#000;
}
.cart-total-text a{
	float:right;
}

.cart-view-table-front{
	font-size: 0.7em;
	position: fixed;
	right: 0px;
	max-width: 480px;
	font-family: Arial
}
.cart-view-table-front h3{
	text-align: center;
	padding: 0;
	margin: 0px 0px 6px 0px;
}
.cart-view-table-front, .cart-view-table-back {
          
	max-width: 700px;
	
	background-color: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	padding: 8px;
	box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.12);
	border: 1px solid #E4E4E4;
}
.cart-view-table-front table th, .cart-view-table-back table th{
	text-align: left;
	font-size: 1.0em;
}
.cart-view-table-front table thead, .cart-view-table-back table thead{
	background-color: #9CCDFD;
}
.cart-view-table-front table tbody tr.even, .cart-view-table-back table tbody tr.even{
	background-color: #F7F7F7;
}
.cart-view-table-front table tbody tr.odd, .cart-view-table-back table tbody tr.odd{
	background-color: #EDEDED;
}
.cart-view-table-front button, .cart-view-table-front .button, .cart-view-table-back button, .cart-view-table-back .button{
	margin: 10px 1px;
	float: right;
}

/* The following are for SEARCH.PHP */


#middlediv {
	font:1.4em Arial,tahoma,sans-serif;
	color:#151077; 
	display: inline;
	
}

#finaldiv {
	font:1.4em Arial,tahoma,sans-serif;
	color:#1b12d0; 
	display: inline;
}



