/* Beginning of Shopping Cart Table */
#shoppingCartDisplay {
	width: 100%;
	border-top: 1px solid #DEDEDE;
	font-family: Trebuchet MS, Verdana, Helvetica, Sans-serif;
	font-size: 12px;
	color: #333333;
	margin: 5px 0;
}

#shoppingCartDisplay a {
	font-weight: normal;
}

#shoppingCartDisplay input, #shoppingCartDisplay textarea, #shoppingCartDisplay select {
	font-family: Trebuchet MS, Verdana, Helvetica, Sans-serif;
	font-size: 12px;
}

	/* Column Widths */
	th.scQuantity 	{width: 30px;}
	th.scUpdateCart {width: 75px;}
	th.scItemName	 	{}
	th.scUnitPrice 	{width: 35px;}
	th.scTotalPrice {width: 35px;}
	th.scDeleteBox 	{width: 20px;}
	
#shoppingCartDisplay th {
	background-color: #f2f2f2;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
}

tr#shoppingCartRowSpacer td {
	height: 5px;
	line-height: 1px;
	border: 0;
	padding: 0;
}

#shoppingCartDisplay td {
	background-color: #f7f7f7;
	border-left: 1px solid #DEDEDE;
	padding: 5px 5px 4px;
	line-height: 20px;
	font-weight: normal;
}

#shoppingCartDisplay td.scQuantity, #shoppingCartDisplay td.scTotals, #shoppingCartButtons td {
	border-left: 0;
}

#shoppingCartDisplay th, #shoppingCartDisplay td {
	height: 29px;
	border-bottom: 1px solid #DEDEDE;
}

#shoppingCartTotals {
	text-align: center;
}

#shoppingCartButtons {
	text-align: center;
}

#shoppingCartButtons ul li {
	list-style-type: none;
	display: inline;
/*	padding: 0 5px;
	border-left: 1px solid #333333; */
	line-height: 12px;
}

#shoppingCartButtons ul li a {
	display: inline-block;
}
#shoppingCartButtons ul li.firstItem {
	border-left: 0;
}

	/* Styling for individual columns */
	.scQuantity 	{text-align: center;}
	.scUpdateCart {text-align: center;}
	.scItemName	 	{text-align: left;}
	.scUnitPrice 	{text-align: center;}
	.scTotalPrice {text-align: center;}
	.scDeleteBox 	{text-align: center;}

	/* Styling for individual fields */
	.scQuantity .productFixedQuantity {
		display: block;
		width: 43px;
		height: 18px;
		border: 1px solid #DEDEDE;
		background-color: #FAFAFA;
		color: #CCCCCC;
	}
	
	.scQuantity .productEditableQuantity { display: block; }
	
	.scQuantity .productEditableQuantity input {
		display: block;
		width: 43px;
		height: 18px;
		border: 1px solid #DEDEDE;
		text-align: center;
	}
	
	input.scUpdateCart, #scDeleteMarkedItems input {
		border: 0;
		background-color: transparent;
		margin: 0;
		text-align: center;
	}
	
	.productImage {
		border: 1px solid #DEDEDE;
		display: block;
		float: left;
		margin-right: 5px;
	}
	
	.productAttributes {
		
	}

	/* Styling for shopping cart help */
	#cartInstructionsDisplay { display: none; } /* hide the original language file stuff, as we include our own help */
	
	#scHelp {
		font-family: Trebuchet MS, Verdana, Helvetica, Sans-serif;
		font-size: 12px;
	}
	
	.scInstructionsToggle {
		font-weight: bold;
	}
	
	#scInstructions {
		display: block;
		border: 1px solid #DEDEDE;
		border-left: 0;
		border-right: 0;
		background-color: #F7F7F7;
	}

/* End of Shopping Cart Table */