/* SHOPPING CART PAGE */

/* Shopping cart alerts. E.g. when not enough inventory */

div.cartAlert
	{
	border: 2px solid #B2A680;
	background-color: #ECF1B6;
	padding: 10px;
	margin: 10px auto 0 auto;
	width: 600px;
	font-weight: bold;
	}
	div.cartAlert p
		{
		margin: 0;
		padding: 0 0 0 20px;
		}
	div.cartAlert h2
	{
		margin: 0;
		padding: 10px 0 0 20px;
		color: #000;
	}
	
	div.cartAlert h2 a
	{
		color: #000;
	}

/* Shopping cart table */
div#cartDetail
	{

	}
	table#cart
		{
		width:100%;
		margin: 20px 0;
		border-collapse: collapse;
		float:right;
		}
		table#cart th
			{
			background-color: #C8BB91;
			font-weight: bold;
			padding: 5px 10px;
			font-size: 110%;
			}
			table#cart th.cartItem
				{
				width: 55%;
				}
			
			table#cart th.cartQuantity
				{
				text-align: center;
				width: 25%;
				}
			
			table#cart th.cartPrice
				{
				text-align: right;
				width: 15%;
				}
			
			table#cart th.cartDelete
				{
				background-color: #ffffde;
				width: 10%;
				}
			
			table#cart tr.cartItem
				{
				}
				
				table#cart td
					{
					padding: 5px 10px;
					}
				
				table#cart td.cartItem
					{
					font-weight: bold;
					border-bottom: 1px solid #C8BB91;
					}
				
				table#cart td.cartQuantity
					{
					text-align: center;
					border-bottom: 1px solid #C8BB91;
					}
					input.cartQuantity
						{
						width: 45px;
						text-align:center;	
						}
				
				table#cart td.cartPrice
					{
					text-align: right;
					border-bottom: 1px solid #C8BB91;
					}
				
				table#cart td.cartDelete
					{
					text-align: center;
					}
					
				table#cart td.cartUpdateButton
					{
					text-align: center;
					}
					
				table#cart td.cartTotalLabel
					{
					padding-top: 20px;
					font-weight: bold;
					text-align:right;
					font-size: 110%;
					}
				table#cart td.cartTotal
					{
					padding-top: 20px;
					font-weight: bold;
					text-align:right;
					}

/* Shopping cart page - chechout section */
div.shopInfo
	{
	margin-top: 20px;
	float:left;
	width: 430px;
	}
	
div.checkout
	{
	margin-top: 20px;
	float:right;
	width:270px;
	border: 2px solid #B2A680;
	padding: 10px 20px 10px 10px;
	background-color: #ECF1B6
	}
	table.orderSummary
		{
		width:100%;
		border-collapse: collapse;
		margin: 5px 0;
		}
		table.orderSummary td
			{
			text-align:right;
			padding: 5px 10px;
			}
			td.orderTotalLabel, td.orderTotal
				{
				font-weight: bold;
				font-size: 105%;
				}
	div.checkoutButton
		{
		padding: 10px 0;
		text-align: center;	
		}
	p.checkoutInfo
		{
		padding: 0 5px 10px 10px;	
		font-size: 95%;
		}
		
/* Checkout by email - form fields */

input#orderBillZip
	{
	width: 60px;
	}