pagwidth{
display:block;
width:180px;
}
.pagination{
padding: 1px;
margin: 1em 0 0 15px;
clear: both;
width:120px;
}


*:first-child+html .pagination  a{ /*IE7 only CSS hack*/
margin-right: 2px; /*IE bug causes default spacing between links to disappear, so added it explicitly in IE7 */
}

* html .pagination  a{ /*IE6 and below CSS hack*/
margin-right: 2px; /*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 4px;
border: 1px solid #bbb3a7;
text-decoration: none; 
color: #b20838;
}

.pagination a:hover{
border: 1px solid #6b021f;
color: #000;
background-color: #FFFF80;
}

.pagination a.currentpage{ /*Style for currently selected page link*/
background-color: #b20838;
color: #FFF !important;
border-color: #6b021f;
font-weight: bold;
cursor: default;
}

.pagination a.disabled, .pagination a.disabled:hover{ /*Style for "disabled" previous or next link*/
background-color: white;
cursor: default;
color: #929292;
border-color: transparent;
}

.pagination a.prevnext{ /*Style for previous and next link*/
font-weight: bold;
}