/* calendar CSS */
body{
    color:#000;
    background-color:#fff;
}
a{
    color:#000;
}
table.calendar th,
table.calendar td,
table.calendar div,
table.calendar span{
    margin:0;
    padding:0;
    border:none;
}
.clear-block { clear: both; overflow:hidden; height: 0; }

table.calendar {
    width: 1050px; border: 1px solid #cccccc; border-collapse: collapse; margin: 0px; padding: 0px; background-color: #ffffff;
}
table.calendar th {
    background-color: #eeeeee; text-transform: none; color: #000; padding: 4px; text-align: center; border: 1px solid #000;
}
table.calendar th.cell-prev {
    text-align: left;
}
table.calendar th.cell-next {
    text-align: right;
}
table.calendar th.cell-header {
    width: 150px; border-bottom: 1px solid #000;
}
table.calendar td.cell-day{
    width:150px;
    height:auto;
    min-height:150px;
}
table.calendar td.cell-today {
    background-color: #fff;
} /* today in the current month */

table.calendar td.cell-weekend {
    background-color: #fff;
}
table.calendar td {
    border: 1px solid #000;
}
table.calendar td .cell-number {
    text-align: left;
    font-size: 8px;
    color: #000;
    display: block;
}
table.calendar td div.cell-data {
    /*width:150px;
    height:150px;*/
    width:auto;
    height:auto;
    min-height:150px;
    overflow:hidden;
    margin:0;
    padding:0;
}
table.calendar td div {
    display: block; font-size: 10px; text-align: left;
}
table.calendar thead th {
    border: 1px solid #000;
}
table.calendar th span.printable{
    font-size:10px;
    float:left;
    vertical-align:top;
}
table.calendar th span.current-month{
    font-size:10px;
    float:right;
    vertical-align:top;
}