/* CSS Document */

table.calendar{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}

/*Styles for the Month and Year  */
caption{
font-size:16px;
font-weight:bold;
font:Arial, Helvetica, sans-serif;
}

/*Height of the rows of dates  */
tr.cal_row {
height:30px;
}

/* Formatting of the dates - booked and unbooked */
/* No padding on the cells */
/* Set the width (same as row height above) */
/* Set date (cell) border properties */
/* center the date in the cell - first hozontially and then vertcally */
td.cal,td.bookedday {
padding:10px;
width:30px;
border-color:#ce99b3;
text-align:center;
vertical-align:middle;
}

/* Formatting for the days that are booked (different backgroung in this case) */
td.bookedday {
background-color:#76848D;
}
