/* overall table */
#calendar table {
border:1px solid #fff;
padding: 0;
margin:0px;
}

/* the day headers across the top */
#calendar th {
background: #DE8C22;
color: #fff;
margin: 3px;
padding: 2px 5px;
font-size: 10px;
}

/* how days this month will look, make dates appear in top right */
#calendar td {
background: #EFEBE5;
color: #000;
padding: 2px;
margin:0;
/*height:60px;*/
text-align:right;
vertical-align:top;
border:1px solid #fff;
}

.cal_event {
    border-width: 1px;
    border-color: #555555;
    border-bottom:2px solid #555555;
    font-size:9px;
    padding:1px;
    text-align:left;
    background-color: white;
    border-style:solid;
    cursor:auto;
    margin-top: 2px;
}  

/* these are the days falling outside this month */
#calendar td.notInMonth {
background: #DED1BF;
}
