<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">table.tblBasket{
	width: 100%;
	margin-top: 15px;
}

table.tblBasket th{
	background: #595959; /* Old browsers */
	background: -moz-linear-gradient(top, #888888 0%, #595959 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888888), color-stop(100%,#595959)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #888888 0%,#595959 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #888888 0%,#595959 100%); /* Opera 11.10+ */
	background: linear-gradient(to bottom, #888888 0%,#595959 100%); /* W3C */
	color: white;
	font-weight: bold;
	padding: 10px 0px;
}

table.tblBasket th:first-child{
	border-radius: 8px 0px 0px 0px;
}

table.tblBasket th:last-child{
	border-radius: 0px 8px 0px 0px;
}

table.tblBasket td{
	border-top: 1px dashed #ccc;
	padding: 10px 0px;
	vertical-align: middle;
	line-height: 1.1em;
	background-color: #F7F7F7;
	text-align: center;
}

table.tblBasket tr:nth-child(2) td{
	border: 0px;
}

table.tblBasket td a:hover img{
	opacity: 0.8
}

table.tblBasket tr.trBasketTotal td{
	background-color: #E6E6E6;
	font-weight: bold;
	border-top: 1px dashed #ccc;
	padding: 7px 0px;
}

table.tblBasket tr.trBasketTotal td:first-child{
	text-align: right;
}

table.tblBasket tr.trBasketGrandTotal td{
	background-color: #595959;
	color: white;
	padding: 10px 0px;
	border: 0px;
}

table.tblBasket tr.trBasketGrandTotal td:first-child{
	border-radius: 0px 0px 0px 8px;
}

table.tblBasket tr.trBasketGrandTotal td:last-child{
	border-radius: 0px 0px 8px 0px;
}</pre></body></html>