/**
 * jQueryUI Paginator plugin
*/
.paginator {
	clear: both;
	position: relative;
	width: auto;
	height: 30px;
	margin: 0 auto;
	padding: 0px;
	font-size: 12px;
}

.paginator span.arrow,
.paginator ul li {
	margin: 3px 2px;
	float: left;
	height: 15px;
	background-position: bottom left;
	background-repeat: no-repeat;
	cursor: pointer;
	cursor: hand;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
	position: relative;
}

.paginator span.arrow {
	width: 1px;
}

.paginator span.arrow.left {
	background-image: url(/img/pages_left_arrow.png);
}

.paginator span.arrow.right {
	background-image: url(/img/pages_right_arrow.png);
}

.paginator span.arrow.hidden {
	visibility: hidden;
}

.paginator div.container {
	margin: 0px;
	padding: 0px;
	float: left;
	/*width: 160px;*/
	height: 30px;
	overflow: hidden;
	position: relative;
}

.paginator ul {
	margin: 0px;
	padding: 0px;
	position: relative;
	width: auto;
	height: 30px;
}

.paginator ul li {
	width: 12px;
	list-style-image: none;
	list-style-type: none;
	text-align: center;
	text-indent: 0px;
	color: #ffffff;

}

.paginator ul li.active,
.paginator ul li:hover
{
	text-indent: 0px;
	color: #000000;
}


.paginator ul li a {
	color: #fff;
	text-decoration: none;
}
