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

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

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

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

/* 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: #aba48d;}

/* 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; }

