#cart { 
	width: 224px;
	top: 180px;
	left: 0px;
	height: 380px;
	position: absolute;
	z-index: 99999;
}

#cart.expand {
	width: 500px;
}

#cart thead {
	background: #EEE;
	text-shadow: 0px 1px 0px #FFF, 0px -1px 0px #CCC;
	font-size: 12px;
}

table.cart {
	border: 1px solid gray;
	width: 100%;
	margin-top: 10px;
	border-collapse: collapse;
}

table.cart td {
	border: 1px solid gray;
	padding: 3px;
	height: 18px;
	font-size: 12px;
	width: auto;
}

table.cart thead td {
	text-align: center;
}

table.cart tbody td {
	text-align: right;
}

table.cart td.more {
	display: none;
}

table.cart td.item, #cart-total .label { 
	text-align: left;
	padding-right: 0;
	padding-left: 2px;
}

#cart.expand tbody td.item {
	overflow: auto;
}

#cart.expand td.more {
	display: table-cell;
}

#cart-total .label {
	width: 80%;
	font-style: italic;
}


#cart.expand .remove, #cart .remove {
	max-width: 24px;
	width: 24px;
}

#cart a.remove {
	display: block;
	height: 24px;
	background: url(/themes/2009/images/x-mark-20x20.png) 0 0 no-repeat;
}

#cart thead .remove {
	background-image: none;
}

#cart-table-holder {
	clear: both;
	width: 100%;
}


