	li.cart_link {
		display: block;
		height: 60px;
		margin: 6px auto;
		border-bottom: 1px solid #eee;
	}
	li.cart_link:hover {
		border: 1px dashed #ddd;
		background-color:#fdd;
	}
	a.cart_link {
		height: auto;
	}
	a.cart_link:hover {
		background-color:transparent;
	}
	span.close_btn {
		background: url('./minicart/close.png') no-repeat scroll 50% 50% transparent;
		height: 8px;
		display: block;
		margin: 6px auto;
		text-indent: -999999px;
		width: 8px;
		cursor: pointer;
	}
	span.close_btn:hover {
		opacity:0.7;
	}
	a.delete_item {
		background: url('./minicart/close.png') no-repeat scroll 50% 50% transparent;
		display: inline-block;
		height: 10px;
		margin: 0 auto;
		text-indent: -999999px;
		width: 10px;
	}
	a.delete_item:hover {
		opacity:0.7;
	}
	a.update_item {
		background: url('./minicart/update_icon.png') no-repeat scroll 50% 50% transparent;
		display: inline-block;
		height: 20px;
		margin: 0 auto;
		text-indent: -999999px;
		width: 34px;
	}
	a.update_item:hover {
		opacity:0.7;
	}

.success, .warning, .attention, .information {
	padding: 10px 10px 10px 33px;
	margin-bottom: 15px;
	color: #555555;
}
.success a, .warning a, .attention a, .information a {
	color:#08c;
	text-decoration:underline;
}
.success {
	background: #EAF7D9 url('./minicart/success.png') 10px center no-repeat;
	border: 1px solid #BBDF8D;
}
.warning {
	background: #FFD1D1 url('./minicart/warning.png') 10px center no-repeat;
	border: 1px solid #F8ACAC;
}
.attention {
	background: #FFF5CC url('./minicart/attention.png') 10px center no-repeat;
	border: 1px solid #F2DD8C;
}
.information {
	background: #E8F6FF url('./minicart/information.png') 10px center no-repeat;
	border: 1px solid #B8E2FB;
}
.success .close, .warning .close, .attention .close, .information .close {
	float: right;
	padding-top: 4px;
	padding-right: 4px;
	cursor: pointer;
}
.required {
	color: #FF0000;
	font-weight: bold;
}
.error {
	display: block;
	color: #FF0000;
}
.help {
	color: #999;
	font-size: 10px;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	display: block;
}