/* desktop diary table */
div.diary-table
{
  display: table;
  font-size: 11pt;
  text-align: left;
  vertical-align: top;
  background-color: white;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
div.diary-row
{
  display: table-row;
}
div.diary-col
{
  display: table-cell;
  font-size: 11pt;
  vertical-align: top;
  padding: 0px 0px 0px 0px;

  border-style: solid;
  border-color: #e0ffe0;
  border-width: 0px;
}
div.diary-date
{
  font-size: 11pt;
}
div.diary-event-table
{
  display: table;
  width: 100%;
  font-size: 11pt;
  text-align: left;
  vertical-align: top;
  background-color: white;
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 0px 0px;
}
div.diary-event-row
{
  display: table-row;
}
div.diary-event-left
{
  display: table-cell;
  width: 40%;
  font-size: 11pt;
  vertical-align: top;
  padding: 0px 0px 0px 0px;

  border-style: solid;
  border-color: green;
  border-width: 0px;
}
div.diary-event-right
{
  display: table-cell;
  width: 60%;
  font-size: 12pt;
  vertical-align: top;
  padding: 10px 10px 10px 10px;

  border-style: solid;
  border-color: blue;
  border-width: 0px;
}