#calendar{
	
	text-align: center;
}
#calendar .table {
  border:2px solid #024593;
  font-size: 12px;
  background-color: #024593;
  color: #fff;
}
#calendar .table a{
   color: #fff;
   text-decoration:none;
}
#calendar .table a:hover{
   color: #fff;
   text-decoration:underline;
}

#calendar td {
  background-color: #3d70b1;
  text-align: center;
  padding:5px;
}
/* Current date */
#calendar .table .curr { background-color: #EFDC0E;}

/* Weekend  */
#calendar .table .weekend { background-color: #A7BBDF;}

/* Cell link */
.table td a {text-decoration: none; color: #2F2F2F;}

/* Cell link hover */
.table td:hover {background-color: #aaccee;}

/* Name of the selected month (at the top) */
.monthName {margin: 2px; padding: 2px; text-align: center; font-size: 12px;  background-color: #3d70b1;}

/* Next-Prev arrows */
.monthName a {color: #fff; text-decoration:none;  font-size: 12px;}
.monthName a:hover {color: #fff; text-decoration:underline;  font-size: 12px;}
.next {float:right; margin: 0px; }
.prev {float:left; margin: 0px; }

.next:hover {margin: 0px; }
.prev:hover {margin: 0px; }

