.agenda{

}

.agenda td{
    width: 110px;
}

.agenda td.hour{
    text-align: right;
    font-weight: bold;
    min-height: 100px;
}

.agenda td.hour.AM{
    background-color: #DDFFFF;
}

.agenda td .item{
    font-size: 10px;
    line-height: 1;
    border-bottom: 1px dashed #ccc;
    padding: 5px;
    margin-bottom: 5px;
    width: 100px;
}

.agenda td .item p{
    margin-bottom: 2px;
}

.agenda td .item.available{
    border: 1px solid #000;
    border-radius: 5px;
}

.agenda td .item.unavailable{
    color: #999;
}

.agenda td .item .more{
    display: none;
}

.agenda td .item .ellipsis{
    font-weight: bold;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agenda td .item h5{
    line-height: 12px;
    font-size: 12px;
}

.agenda td .item p.relevant{
    font-weight: bold !important;
}


/* class hover */
.agenda td .item:hover{
    cursor: pointer;
    background-color: #ccc;
    border-radius: 5px;
}

.agenda td .item:hover .ellipsis{
    overflow: visible;
    white-space: normal;
}

.agenda td .item:hover .more{
    margin: 0;
    display: block;
}

.agenda td .item:hover p{
    margin: 0px;
    margin-top: 2px;
    font-weight: normal;
    font-size: 10px;
    text-overflow: clip;
    white-space: normal;

}
