#paginate-top .pagination {
	padding: 2px;
	font-size:11px;
	margin: 0 auto;
	text-align:center;
	clear: both;
}

#paginate-top .pagination ul{
	margin: 0;
	padding: 0;
	text-align: center; /*Set to "left" or "right" to left/right align pagination interface*/
	font-size: 100%;
}

#paginate-top .pagination li{
	list-style-type: none;
	display: inline;
	padding-bottom: 1px;
	margin:0;
}

*: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*/
}

#paginate-top .pagination a, #paginate-top .pagination a:visited{
	padding: 0 5px;
	text-decoration: none; 
	color: #444444;
}

#paginate-top .pagination a:hover, #paginate-top .pagination a:active{
	color: #6077bb;
}

#paginate-top .pagination a.currentpage{ /*Style for currently selected page link*/
	color: #6077bb !important;
	font-weight: normal;
	text-decoration:underline;
	cursor: default;
}

#paginate-top .pagination a.disabled, #paginate-top .pagination a.disabled:hover{ /*Style for "disabled" previous or next link*/
	cursor: default;
	display: none;
	color: #929292;
}

#paginate-top .pagination a.prevnext{ /*Style for previous and next link*/
	font-weight: bold;
}