/*********************分页样式开始*********************/ /**
定义所有分页内容显示为粗体字
*/
#pagination {
	clear: both;
	font-weight: bold;
	padding-bottom: 10px;
margin-left: 150px;
margin-bottom:50px;
margin-top:50px;
}

/**
定义分页块内 ul 下 li的样式
*/
#pagination ul li {
	float: left;
	align: left;
	padding: 2px 4px 2px 4px;
	border: 1px solid #E6E6E6;
	cursor: pointer;
	margin-left: 4px;
	height:20px;
}

#pagination ul li span.info {
	cursor: default;
}

#pagination ul li span {
	cursor: pointer !important;
 
}

#pagination ul li span input {
	cursor: text;
	width: 15px;
	height: 10px;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	border-bottom-style: 1px;
}

/**
定义disabled样式
*/
#pagination li.disabled {
	background-color: #fff;
	color: #e6e6e6;
	border: 1px solid #e6e6e6;
	cursor: default;
}

/**
定义当前页样式
*/
#pagination li.currentPage {
	background-color: #D2EAF6;
	cursor: default;
}

/**
定义鼠标靠近样式
*/
#pagination li.over {
	background-color: #D2EAF6;
}

/**
定义鼠标离开样式
*/
#pagination li.out {
	background-color: #fff;
}

/*********************分页样式结束*********************/