/*
 * App pages pagers
 * @author itziky 
 */

.pager {
	float: right;
}

.pager>*, .pager>div>* {
	float: left;
}

.pager a.prev-page {
	margin-right: 12px;
}

.pager a.next-page {
	margin-left: 8px;
}

.pager a {
	color: #474338;
	text-decoration: none;
}

.pager a, .pager span.dots {
	font-size: 12px;
}

.pager a.page {
	padding: 0 5px;
	margin-right: 4px;
}

.pager a.page.selected {
	background-color: #464339;
	color: white;
	font-weight: bold;

/* rounded corners */
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	border-radius: 9px;
	/* for IE9 */
	border-top-right-radius: 9px;
	border-top-left-radius: 9px;
	border-bottom-right-radius: 9px;
	border-bottom-left-radius: 9px;
}

.pager span.dots {
	margin-left: -4px;
}

/* specific to alternate list where the pager has just prev and next links and the prev link is floated to the left */
#product-page .pager {
	float: none;
}

#product-page a.next-page {
	float: right;
}