/**
*     Styles for the events
*/
.todoitem .title {
    font-weight: bold;
}
.round,
.plain {
    display: table-row;
}

.round .calendar,
.plain .calendar {
    display: table-cell;
    width: 64px;
    padding: 0px;
    margin: 0px;
}

.plain .calendar {
    width: 54px;
}

.round .shape {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    line-height: 18px;
    background-color: #ddd;
}

.plain .shape {
    width: 34px;
    height: 44px;
    border-radius: 4px;
    line-height: 18px;
    background-color: #ddd;
}

.border .round .shape {
    border-radius: 28px;
}

.border .shape {
    border: 2px solid #999999;
}

.round .month,
.plain .month {
    text-align: center;
    padding: 2px 0px 0px;
    margin: 0px;
}

.round .month {
    font-size: 12px;
}

.plain .month {
    font-size: 10px;
    text-decoration: underline;
}

.round .day ,
.plain .day {
    color: inherit;
    text-align: center;
    padding: 0px;
    margin: 0px;
}

.round .day {
    font-size: 24px;
}

.plain .day {
    font-size: 16px;
}

.round .text,
.plain .text {
    display: table-cell;
}

.large .round .shape {
    width: 58px;
    height: 58px;
    border-radius: 33px;
    line-height: 24px;
}

.large .plain .shape {
    width: 44px;
    height: 58px;
    line-height: 24px;
}

.large .round .month,
.large .plain .month {
    font-size: 14px;
}

.large .round .day {
    font-size: 32px;
}

.large .plain .day {
    font-size: 28px;
}
