﻿/* --------------------------------------------------------------------------
	Shopping cart
	#cart
-------------------------------------------------------------------------- */
#dummy{}
/* -- */

#cart
{
	width:96%;
	border-collapse:collapse;
}
#cart .money
{
	font-family:Courier New;
	text-align:right;
}
#cart .quantity
{
	text-align:right;
}
#cart .product a
{
	color:#000000;
	text-decoration:none;
}
#cart .product a:hover
{
	text-decoration:underline;
}
#cart .quantity input
{
	width:40px;
	text-align:right;
}
#cart thead tr th
{
	border-bottom: 2px solid #888888;
	padding:3px 0px 3px 0px;
	border-left:0px;
	border-right:0px;
	border-top:0px;
}
#cart tr td
{
	border-bottom: 1px solid #888888;
	border-left:0px;
	border-right:0px;
	padding:3px 3px 3px 3px;
}
#cart tfoot tr td
{
	text-align:right;
}
#cart tfoot tr.totals td
{
	border-top: 2px solid #888888;
}
#cart tfoot tr.generaltotal td
{
	border-top: 2px solid #888888;
	font-weight:bold;
}