/**
* 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: table;
	overflow: hidden;
	padding: 5px 5px 5px 0;
	margin: 0 auto;
}

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

.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}

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

.light-theme a, .light-theme span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  font-size: 14pt;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  margin-left: -1px;
}

.light-theme .prev {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.light-theme a:hover {
  color: #206c7f;
  background-color: transparent;
  border-color: transparent;
}

.light-theme .current {
  color: #666;
  background-color: transparent;
  border-color: transparent;
}

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

