/**
* 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 {
	position: relative;
	overflow: hidden;
	margin: 0;
}

.simple-pagination ul {
	list-style: none;
	float: left;
	left: 50%;
	position: relative;
	padding: 0;
	margin: 0;
	min-height: 50px;

}

.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0 2px 6px;
	float: left;
	left: -50%;
	position: relative;
	display: inline-block;
	vertical-align: middle;
}


/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/

.light-theme a, .light-theme span {
	float: left;
	text-align: center;
	background: transparent;
}

.light-theme a:hover {
	text-decoration: none;
}

.light-theme .current {
	box-shadow: 0 1px 0 rgba(255,255,255,8), 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;
	cursor: default;
}