/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/

.pagination{
    text-align: center;
    margin-bottom: 10px;
}

ul.simple-pagination {
	list-style: none;	
}

.simple-pagination {
	overflow: hidden;
}

.simple-pagination ul {
	position:relative;
	list-style: none;
	padding: 0;
    display: inline-block;
}

.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
    border-right: 1px solid #cbcbcb;
    margin-bottom: 5px;
}

.light-theme li.active, .light-theme li:hover:not(:last-child):not(:first-child) {
        border-right: 1px solid #ff9900;
        border-left: 1px solid #ff9900;
        margin-left: -1px;
}

.light-theme li:first-child:hover {
        border-right: 1px solid #4e4e4e;
}

.light-theme li:last-child:hover {
}

.simple-pagination li:first-child{
    border-left: 0;
}

.simple-pagination li:last-child{
    border-right: 0;
}

/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/

.light-theme a, .light-theme span {
	float: left;
	color: #4e4e4e;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	min-width: 14px;
	padding: 0px 10px;
}

.light-theme .current {
	background: #ff9900;
	color: #FFF;
	cursor: default;
}

.light-theme a:hover {
	background: #ff9900;
	color: #FFF;
}

.light-theme .page-link.prev, .light-theme .page-link.next {
	background: none;
	color: #ff9900;
}

.light-theme .prev, .light-theme .next {
	background: none;
	color: #4e4e4e;
}

/*------------------------------------*\
	Light Theme Detail Styles
\*------------------------------------*/

.light-theme-detail a, .light-theme-detail span {
	float: left;
	color: #ff9900;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	min-width: 14px;
	padding: 0px 15px;
}

.light-theme-detail .disabled {
	color: #4e4e4e;
	cursor: default;
}

.light-theme-detail .prev, .light-theme-detail .next, .light-theme-detail .page-link.prev, .light-theme-detail .page-link.next {
	color: #ff9900;
}

.light-theme-detail li:first-child{
    border-right: 0;
}