.pagination{
	padding-right: 50px;
	font-size: 14px;
	padding-left: 30px;
}

.pagination ul{
	text-align: right; /*Set to "left" or "right" to left/right align pagination interface*/
	font-size: 100%;
	margin: 0px;
	padding: 0px;
}

.pagination li{
list-style-type: none;
display: inline;
padding-bottom: 1px;
}

*:first-child+html .pagination li{ /*IE7 only CSS hack*/
margin-right: 4px; /*IE bug causes default spacing between links to disappear, so added it explicitly in IE7 */
}

* html .pagination li{ /*IE6 and below CSS hack*/
margin-right: 4px; /*IE bug causes default spacing between links to disappear, so added it explicitly in IE6 and below browsers*/
}

.pagination a, .pagination a:visited{
	padding: 0 2px;
	text-decoration: none;
	color: #333333;
}

.pagination a:hover, .pagination a:active{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
}

.pagination a.currentpage{ /*Style for currently selected page link*/
	font-weight: bold;
	cursor: default;
	border: 1px solid #333333;
}

.pagination a.disabled, .pagination a.disabled:hover{ /*Style for "disabled" previous or next link*/
	cursor: default;
	color: #666666;
	font-style: italic;
	background-color: #999999;
}

.pagination a.prevnext{ /*Style for previous and next link*/
	margin-right: 5px;
	padding-right: 5px;

}

