#cartit {
	background-color: #fffef0;
	padding: 15px 0;
}

#cartit .fullwidth {
	margin: 0 20px;
}

/* @group Basket Table */
#cartit table {
	border: 2px solid #f1efd1;
	border-collapse: collapse;
	font-size: 14px;
	margin-bottom: 16px;
	table-layout: fixed;
}

#cartit th {
	color: black;
	padding: 8px 5px;
	text-align: left;
	font-weight: 700;
	font-size: 12px;
	background-color: #f1efd1;
	text-transform: uppercase;
}

#cartit td {
	border: 1px solid #f1efd1;
	padding: 8px 5px;
}

#cartit tr th:last-child,
#cartit tr td:last-child {
	text-align: right;
}

#cartit tfoot tr:first-child td {
	border-top: 2px solid #f1efd1;
}

#cartit td.separator {
	border-right: 2px solid #f1efd1;
}

#cartit fieldset li {
	margin-left: 0px;
	padding-bottom: 10px;
}

#cartit fieldset li label {
	float: none;
	display: inline-block;
	vertical-align: middle;
}

#cartit fieldset li input {
	vertical-align: middle;
}

#cartit fieldset li span.error {
	display: inline-block;
	color: #b94a48;
	padding: 0 8px;
	vertical-align: middle;
	font-size: 13px;
}

#cartit input[type="number"] {
	width: 35px;
}

#cartit input[type="number"],
#cartit input[type="text"],
#cartit input[type="password"],
#cartit textarea {
	font-size: 14px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #252525;
	padding: 4px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

#cartit input[type="number"]:focus,
#cartit input[type="text"]:focus,
#cartit input[type="password"]:focus,
#cartit textarea:focus {
	border-color: rgba(248, 125, 11, 0.8);
	outline: 0;
	outline: thin dotted \9;
	/* IE6-9 */
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(248, 125, 11, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(248, 125, 11, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(248, 125, 11, 0.6);	
}

#cartit .total.highlight {
	font-weight: 700;
}