div#calendar{
    position: relative;
}

table.calendar{
    border-collapse: collapse;
    margin: 0 auto;
    text-align: center;
}

table.calendar td{
    text-align: center;
    vertical-align: middle;

    width: 40px;
    height: 40px;

    font-size: 18px;
}

table.calendar td.calendarDayNames{
    background-color: #b38d5a;
    color: #ffffff;

    font-size: 18px;
}

div.calendarHeader{
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
}

td.calendar{
    background: #B5B5B5;
    color: #000000;
}

table.calendar td.calendarToday{
    background-color: #ffffff;
    color: #000;
}

td.calendarShowTooltip{
    cursor: pointer;
}

td.calendarEvents{
    background-color: #53ad42;
    color: #fff;
    cursor: pointer;
}

td.calendarNoDay{
    background: none;
    cursor: auto;
}

td.calendar a{
    color: #ffffff;
    text-decoration: none;
    font-weight: normal;

    display: block;
    padding: 5px;
}

td.calendar a:hover{
}

.tooltip{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3000;
    display: none;
    background-color: #53ad42;
    /*border: 1px solid #000;*/
    padding: 5px 10px;
    font-size: 18px;
    color: #fff;
    width: 250px;
}

.tooltip ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip span.datum{
    font-size: 11px;
    font-weight: bold;
}

.calendarTooltip{
    display: none;
}

.click{
    cursor: pointer;
}