/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/
ul.simple-pagination {
	list-style: none;
}

.simple-pagination {
	display: block;
    overflow: hidden;
	padding: 0 5px 5px 0;
	margin: 0;clear:both; 
	/*width:100%;*/ 
	position:relative; 
	text-align: center; 

}

.simple-pagination ul{display: inline-block; }
 
.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}



/*------------------------------------*\
	Compact Theme Styles
\*------------------------------------*/

.compact-theme a, .compact-theme span {
	float: left;
	color: #333;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #AAA;
	border-left: none;
	min-width: 14px;
	padding: 0 7px;
	box-shadow: 2px 2px 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 */
}

.compact-theme a:hover {
	text-decoration: none;
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(100%,#bbbbbb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* IE10+ */
	background: linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* W3C */
}

.compact-theme li:first-child a, .compact-theme li:first-child span {
	border-left: 1px solid #AAA;
	border-radius: 3px 0 0 3px;
}

.compact-theme li:last-child a, .compact-theme li:last-child span {
	border-radius: 0 3px 3px 0;
}

.compact-theme .current {
	background: #bbbbbb; /* Old browsers */
	background: -moz-linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bbbbbb), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* W3C */
	cursor: default;
}

.compact-theme .ellipse {
	background: #EAEAEA;
	padding: 0 10px;
	cursor: default;
}

/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/


.light-theme a, .light-theme span {
	margin: 10px 0;
	display:inline-block;
	position:relative;
	_width /**/:18px;
	margin-left:-6px;
	padding:2px 10px 3px 10px;
	color:#777;
	font-family:Tahoma;
	font-size:12px ;
	line-height:normal;
	text-decoration:none;
	vertical-align:middle}
}

.light-theme a:hover {
	text-decoration:underline
}

.light-theme .current {
	font-weight:bold;
	color: #14b0d4 !important;
	cursor: default;
}

.light-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}

.light-theme .prev { text-indent:-999px; background:url(../images/btn_paginate_pre.gif) no-repeat;  margin-left:0px; padding:2px 10px 3px 20px;}
.light-theme .next { text-indent:-999px; background:url(../images/btn_paginate_next.gif) no-repeat; margin-left:10px; padding:2px 20px 3px 10px;}

/*------------------------------------*\
	Dark Theme Styles
\*------------------------------------*/

.dark-theme a, .dark-theme span {
	margin: 10px 0;
	display:inline-block;
	position:relative;
	_width /**/:18px;
	margin-left:-6px;
	padding:2px 10px 3px 10px;
	color:#fff;
	font-family:Tahoma;
	font-size:12px ;
	line-height:normal;
	text-decoration:none;
	vertical-align:middle}
}

.dark-theme a:hover {
	text-decoration:underline
}

.dark-theme .current {
	font-weight:bold;
	color: #03657d !important;
	cursor: default;
}

.dark-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}

.dark-theme .prev { text-indent:-999px; background:url(../images/search/btn_left.png) no-repeat;  margin-left:0px; padding:2px 10px 3px 20px;}
.dark-theme .next { text-indent:-999px; background:url(../images/search/btn_right.png) no-repeat; margin-left:10px; padding:2px 20px 3px 10px;}
