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

.simple-pagination {
	display: inline-block;
    margin: 10px 0;
}
.simple-pagination ul {
	list-style: none;
	margin: 0;
    padding:6px 12px;
    margin-left:-1px;
    line-height:1.428571429;
    height:100%;
    position:relative;
    float:left;
    text-decoration:none;
    color:#ff7500;
}
.simple-pagination li {
    display:inline;
}
span.ellipse.clickable {
	cursor: pointer;
}
.ellipse input {
	width: 3em;
}
/* Compact Theme Styles */
.compact-theme span {
	cursor:pointer;
}
.compact-theme a, .compact-theme span {
    position:relative;
    float:none;
    padding:6px 12px;
    line-height:1;
    text-decoration:none;
    background-color:#fff;
    border:1px solid #ddd;
    color:#ff7500;
    margin-left: -1px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight:400;
}
.compact-theme a:hover, .compact-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
    background: white;
    color: #ff7500;
}
.compact-theme li:first-child a, .compact-theme li:first-child span {
	border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}
.compact-theme li:last-child a, .compact-theme li:last-child span {
	border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}
.compact-theme .current {
    background: rgb(230,234,238);
	cursor: default;
}
.compact-theme .ellipse {
	cursor: default;
}

/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/
.light-theme span {
	cursor:pointer;
}

.light-theme a, .light-theme span {
	float: right;
	color: #FF7500;
	font-size:15px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #BBB;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #ffffff 0%,#efefef 100%); /* W3C */
}

.light-theme a:hover, .light-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
	background:#AAA;
}

.light-theme .current {
	background: #666;
	color: #FFF;
	border-color: #444;
	box-shadow: 0 1px 0 rgba(255,255,255,1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
	cursor: default;
}

.light-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight:bolder;
	cursor: default;
}

/*------------------------------------*\
	Dark Theme Styles
\*------------------------------------*/
.dark-theme span {
	cursor:pointer;
}

.dark-theme a, .dark-theme span {
	float: left;
	color: #CCC;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #222;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #555; /* Old browsers */
	background: -moz-linear-gradient(top, #555 0%, #333 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555), color-stop(100%,#333)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #555 0%,#333 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #555 0%,#333 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #555 0%,#333 100%); /* IE10+ */
	background: linear-gradient(top, #555 0%,#333 100%); /* W3C */
}
.pagination a {
    margin: 0 1px;
    transition: background-color .3s;
    color:#FF7500;
}
.pagination a:hover {
    margin: 0 1px;
    transition: background-color .3s;
     background-color:whitesmoke;
     color:black;
     font-size: 16px
}

.dark-theme a:hover, .dark-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
	background: #333;
}

.dark-theme .current {
	background: blue;
	color: #FFF;
	border-color: #000;
	box-shadow: 0 3px 0 rgba(255,255,255,0.2), 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
	cursor: default;
}

.dark-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}
