@charset "UTF-8";
/* CSS Document */

div#calendar_wrapper {
width: 280px;
margin: 0 auto;

text-align: center;
}

/* calendar header css */
div#calendar_header {
padding: 2px 0;
background: #0060A9;
overflow:auto;
text-align: center;
color: #fff;
font-size: 16px;
}

div#calendar_header a#prevMonth {
margin: 0 40px 0 5px;
text-decoration: none;
color: #fff;
font-size: 0.9em;
text-align: left;
}

div#calendar_header a#nextMonth {
margin: 0 5px 0 40px;
text-decoration: none;
color: #fff;
font-size: 0.9em;
text-align: right;
}

div#calendar_header form {
display: inline;
}

/* calendar body css */
table.calendar {
font-size: 16px;
font-weight:bold;
background: #F6F6FF;
border-collapse: collapse;
}

table.calendar tr {
/*padding: 3px;*/
}

table.calendar tr.header a:hover {
text-decoration: underline;

}

table.calendar tr.weekdays {
height: 25px;
background: #DBF1CC;
text-align: center;
}

table.calendar tr.days {
height: 33px;
}

table.calendar td {
width: 66px;
padding: 2px;
border: 1px solid #DADADA;
}

table.calendar td.today {
background: #F1F0CC;
}

table.calendar td a {
background: #DBF1CC;
color:#990000;
font-size: 16px;
}

code.comment {
color: #FF742A;
}
