.pagination{
padding: 0px 10px 0px 0px;
margin: 1em 0em 0em 0em;
clear: both;
}

.pagination ul{
float:left;
margin: 0px;
padding: 0;
text-align: left; /*Set to "left" or "right" to left/right align pagination interface*/
font-size: 13px;
width: 100%;
font-family: gothamBook;
}

.pagination li{
list-style-type: none;
display: inline;
padding-bottom: 1px;
}

*:first-child+html .pagination li a{ /*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 a{ /*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, .pagination a:active{
padding: 0 5px;
	
	background-color:transparent;
	/*		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;*/
text-decoration: none;
color: #666;
}

.pagination a:hover{
border: 1px solid #000;
color: #fff;
background-color: #444444;

}

.pagination a.currentpage{ /*Style for currently selected page link*/

	border:1px solid #1C355E;
	background-color:transparent;
			-moz-border-radius: 1px;
		-webkit-border-radius: 1px;
color: #1C355E !important;

font-weight: 500;
cursor: default;
}

.pagination a.disabled, .pagination a.disabled:hover{ /*Style for "disabled" previous or next link*/
background-color:  transparent;
cursor: default;
	
	background-color:transparent;
		/*	-moz-border-radius: 3px;
		-webkit-border-radius: 3px;*/
color: #1C355E;
font-size: 13px;
}

.pagination a.prevnext{ /*Style for previous and next link*/
font-weight: 500;
}