#myCurPage {
	width:30px; 
	padding: 0; 
	margin-top: -2px; 
	border: 1;
	text-align: center;
}


/* Contenitore */
.myPagination {
  display: inline-block;
  padding-left: 0;
  margin: 5px 5px;
  border-radius: 4px;  
  float: right;
}
 
.myPagination > li{
  display: inline;
}

/* Formattazione dei singoli item */
.myPagination > li > a,
.myPagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.428571429;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
}
 
 
/* Arrotondamento degli angoli sul primo item */
.myPagination > li:first-child > a,
.myPagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
 
/* Arrotondamento degli angoli sull'ultimo item */
.myPagination > li:last-child > a,
.myPagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
 
/* Colore dell'item sull'hover */
.myPagination > li > a:hover,
.myPagination > li > span:hover,
.myPagination > li > a:focus,
.myPagination > li > span:focus {
  background-color: #eeeeee;
}
 
/* Colori e bordo dell'item attivo (corrente) */
.myPagination > .active > a,
.myPagination > .active > span,
.myPagination > .active > a:hover,
.myPagination > .active > span:hover,
.myPagination > .active > a:focus,
.myPagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  cursor: default;
  background-color: #428bca;
  border-color: #428bca;
}
 
/* Colori e bordo dell'item disabilitato */
.myPagination > .disabled > span,
.myPagination > .disabled > a,
.myPagination > .disabled > a:hover,
.myPagination > .disabled > a:focus {
  color: #999999;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #dddddd;
}