/* ----------------------
* PHP Version 1.0 ¹öÀü
* jQuery Paging CSS
* -------------------- */
.PageList {
	padding: 0;
	margin: 20px 0 10px;
	width: 100%;
	text-align: center;
	overflow:hidden;
}
.PageList ul {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-left: 0;
	margin-bottom: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #fff;
}
.PageList li {
	display: inline;
}
.PageList a {
	float: left;
	padding: 0 10px;
	line-height: 26px;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left-width: 0;
}
.PageList a:hover {
	background-color: #f5f5f5;
}
.PageList .active a {
	color: #ffffff;
	cursor: default;
	background-color: #337ab7;
	border-color: #337ab7;
}
.PageList .disabled span,
.PageList .disabled a,
.PageList .disabled a:hover {
	color: #999999;
	background-color: transparent;
	cursor: default;
}
.PageList li:first-child a {
	border-left-width: 1px;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
}
.PageList li:last-child a {
	-webkit-border-radius: 0 3px 3px 0;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
}
