﻿
.previous-product {
	float: right;
}
.next-product {
	float: left;
}
.previous-product a {
	margin: 0 auto 0 0;
	background: url('img/next.png') no-repeat right 10px center, linear-gradient(to bottom, #eeeeee 0%, #dddddd 100%)/* CHECK_HERE */;
}
.next-product a {
	margin: 0 0 0 auto;
	background: url('img/prev.png') no-repeat left 10px center, linear-gradient(to bottom, #eeeeee 0%, #dddddd 100%)/* CHECK_HERE */;
}
.previous-product a:hover {
	background: url('img/next.png') no-repeat right 10px center, linear-gradient(to bottom, #dddddd 0%, #eeeeee 100%)/* CHECK_HERE */;
}
.next-product a:hover {
	background: url('img/prev.png') no-repeat left 10px center, linear-gradient(to bottom, #dddddd 0%, #eeeeee 100%)/* CHECK_HERE */;
}