ol#pagination {
    position: relative;
    text-align: center;
}
ol#pagination{
	margin: 0;
}
ol#pagination li {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../img/bg_buttons.png) no-repeat 0 0;
    text-align: left;
    text-indent: -8000px;
    list-style: none;
    cursor: pointer;
    margin: 0 2px;
}
ol#pagination li:hover {
    background: url(../img/bg_buttons.png) no-repeat 0 -16px;
}
ol#pagination li.current {
    color: #f00;
    font-weight: bold;
    background: url(../img/bg_buttons.png) no-repeat 0 -32px;
}
ol#pagination li.prev,
ol#pagination li.next {
    position: absolute;
    top: -150px;
}
ol#pagination li.prev {
    left: -18px;
    background: url(../img/bg_buttons.png) no-repeat 0 -64px;
}
ol#pagination li.next {
    right: -20px;
    background: url(../img/bg_buttons.png) no-repeat 0 -48px;
}
/* SMALL & MEDIUM SCREEN FOUNDATION SUPPORT */
@media only screen and (max-width: 64em) {
	ol#pagination li.prev {
	    position: absolute;
	    background: url(../img/bg_buttons.png) no-repeat 0 -64px;
	}
	ol#pagination li.next {
	    position: absolute;
	    right: -16px;
	    background: url(../img/bg_buttons.png) no-repeat 0 -48px;
	}
}