/* CSS Document */
/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:3px;
}

/* the day headers across the top */
#calendar th {
background: #565;
color: #fff;
margin: 3px;
padding: 2px 5px;
}

/* how days this month will look, make dates appear in top right */
#calendar td {
background: #eee;
color: #000;
padding: 2px;
margin:0;
height:60px;
text-align:right;
vertical-align:top;
border:1px solid #fff;
}

/* these are the days falling outside this month */
#calendar td.notInMonth {
background: #999;
}

