table.SimpleCalendar {
  font-family: inherit;
  width: 75%;
  margin: 0 auto;
  border-collapse: collapse;
  text-transform: uppercase;
  vertical-align: middle;
  text-align: center;
font-weight: 400;}
  table.SimpleCalendar thead td,
  table.SimpleCalendar th {
    background: #123e56;
    color: #fff;
    font-size: 1.2em;
    padding: 3px;
    border: 1px solid #123e56;
    height: 30px;
    text-align: center;
    vertical-align: middle;
    border-top: none;
    font-weight: 700;
    cursor: pointer}
  table.SimpleCalendar tbody td {
    vertical-align: top;
    width: calc(100% / 7);
    padding-bottom: 13.25%;
    border: 1px solid #123e56;
    background: #fff;
    color:#123e56;
    position: relative;
    cursor: pointer}
    table.SimpleCalendar tbody td time {
    position: absolute;
    background: none;
    box-sizing: border-box;
    display: inline-block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1}
    table.SimpleCalendar tbody td.SCsuffix, table.SimpleCalendar tbody td.SCprefix {
      background: #888; 
      height: 0;
      width: 0;
    }
    table.SimpleCalendar tbody td div.event {
      color: #355;
      font-size: .65em;
      padding: 5px;
      line-height: 1em;
      border-bottom: 1px solid #bbb;
      background: #858585;
      color: white; }
      table.SimpleCalendar tbody td.today {
        background: #d2d2d2; }
        table.SimpleCalendar tbody td .book,
        table.SimpleCalendar tbody td .booked {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          background: #F00;
          z-index: 2;
          color: #fff;}
          table.SimpleCalendar tbody td .book {
          background: #fff;
          color: #000;
          }
          table.SimpleCalendar tbody td .book:hover {
            background-color: #123e56;
            color: #fff;
          }
          table.SimpleCalendar tbody td .book .book-date,
          table.SimpleCalendar tbody td .booked .booked-date {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);}