@charset "utf-8";

.cartboxenv {
	position: fixed;
	width: 184px;
}

.cartbox {
	background-color: #F5F5F5;
	padding: 8px;
	border: 1px solid #e5e5e5;
}

.simpleCart_items {
	background-color: #FFFFFF;
	border: thin solid #e5e5e5;
	cursor: default;
}


.cartHeaders {
	display: none;
	visibility: hidden;
}
.itemContainer {
	clear: both;
	text-align: center;
}
.itemContainer:hover {
	background-color: #F9F9F9;
}

.itemNumber {
	font-weight: bold;
	float: left;
	width: 2.5em;
}


.itemName {
	display: none;
	visibility: hidden;
}

.itemPrice {
	float: left;
	width: 3em;
	text-align: right;
}

.itemQuantity {
	float: left;
	width: 1.2em;
	font-weight: bold;
}

.itemTotal {
	float: left;
	width: 3.5em;
	text-align: right;
}
.totalRow {
	color: #000000;
	font-weight: bold;
	background-color: #e5e5e5 !important;
	clear: both;
}
.itemButtonPlus {
	float: left;
	width: 12px;
	padding-top: 0.2em;
	padding-right: 0.2em;
	padding-left: 0.2em;
}
.itemButtonMinus {
	float: left;
	width: 12px;
	padding-top: 0.2em;
	padding-right: 0.2em;
	padding-left: 0.4em;
}
.totalItems {
	display: none;
	visibility: hidden;
}

.totalPrice {
	text-align: right;
	padding-right: 0.5em;
	margin-left: 8em;
}

.totalPriceInfo {
	text-align: left;
	padding-left: 0.5em;
	float: left;
}

