body {
    font-family: 'Sanchez', serif;

}
.container {
    margin: 0;
    width: 100%;
    max-width: 100%;

}
.matrix_header_row {
    font-size: 11px;
    height: 50px;
    text-align: center;
    background-color: #ffffff;
    float: left;
    border-bottom: 2px solid #ccc;

}
.matrix_col {
    float:left;

}
.matrix_cel {
    font-size: 11px;
    height: 50px;
    text-align: center;
    border-bottom: 1px solid #ccc;
    position: relative;
    overflow: hidden;

}
.booked_cel {
    position: relative;
    /* shift for days rather than nights top: -25px; */
    border: 1px solid #fff;
    white-space: pre-line;
    display: table;
    table-layout: fixed;
    width: 100%;

}
.booked_cel_contents {
      display: table-cell;
      vertical-align: middle;
      width: 100%
}
.booked_cel a {
    color: #ffffff;


}
.booked_cel:hover {
    cursor: hand;
    cursor: pointer;
    border: 4px solid #ffffff;

}
.diary_cel {
    white-space: pre-line;
    height: 49px;
    background-color: #FFF397;
    border: 1px solid #bbbbbb;
    overflow: hidden;
    padding-top: -1em;

}
.diary_cel a {
    color: #ffffff;

}
.diary_cel:first-line {
    line-height: 0;
}

.diary_cel:hover {
    cursor: hand;
    cursor: pointer;
    border: 4px solid #bbbbbb;

}
a.divLink {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-decoration: none;
    /* Makes sure the link doesn't get underlined */
    z-index: 10;
    /* raises anchor tag above everything else in div */
    background-color: white;
    /*workaround to make clickable in IE */
    opacity: 0;
    /*workaround to make clickable in IE */
    filter: alpha(opacity=0);
    /*workaround to make clickable in IE */
}
div.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 99;
}
table.hover-highlight tbody tr:hover {
    background-color: #eeeeee;
}
