﻿/* mono_table.css */

/* For displaying tables with monospaced text */


#mono /* TODO: move out? */
{
  font-family: Monospace, Arial, Verdana, sans-serif;
  word-wrap: break-word;
}

#mono_table 
{
  display: table;
  font-family: Monospace, Arial, Verdana, sans-serif;
  border-style: solid;
  border-color: black;
  border-width: 1px;
  /* float: left; */
  text-align: left;
  vertical-align: top;
  background-color: white;
  margin: 0px 0px 0px 0px; 
  padding: 0px 0px 0px 0px; 
  margin: 0 auto; 
  empty-cells: show;
}

#mono_row  
{
 display: table-row;
}

#mono_header /* default alignment */
{
 display: table-cell;
 border-style: solid;
 border-color: blue;
 border-width: 1px;
 padding: 2px 2px 2px 2px; 
 margin: 0px 0px 0px 0px;
 font-weight: bold;
 font-size: 8pt;
 vertical-align: bottom;
}

#mono_header_left
{
 display: table-cell;
 border-style: solid;
 border-color: blue;
 border-width: 1px;
 padding: 2px 2px 2px 2px; 
 margin: 0px 0px 0px 0px;
 font-weight: bold;
 font-size: 8pt;
 text-align: left;
 vertical-align: bottom;
}

#mono_header_center
{
 display: table-cell;
 border-style: solid;
 border-color: blue;
 border-width: 1px;
 padding: 2px 2px 2px 2px; 
 margin: 0px 0px 0px 0px;
 font-weight: bold;
 font-size: 8pt;
 text-align: center;
 vertical-align: bottom;
}

#mono_header_right
{
 display: table-cell;
 border-style: solid;
 border-color: blue;
 border-width: 1px;
 padding: 2px 2px 2px 2px; 
 margin: 0px 0px 0px 0px;
 font-weight: bold;
 text-align: right;
 font-size: 8pt;
 vertical-align: bottom;
}

#mono_cell /* default alignment */
{
 display: table-cell;
 border-style: solid;
 border-color: #c0c0c0;
 border-width: 1px;
 padding: 2px 2px 2px 2px; 
 margin: 0px 0px 0px 0px;
 vertical-align: top;
 font-size: 8pt;
 white-space: nowrap;
}


#mono_cell_left
{
 display: table-cell;
 border-style: solid;
 border-color: #c0c0c0;
 border-width: 1px;
 padding: 2px 2px 2px 2px; 
 margin: 0px 0px 0px 0px;
 text-align: left;
 vertical-align: top;
 font-size: 8pt;
}

#mono_cell_center
{
 display: table-cell;
 border-style: solid;
 border-color: #c0c0c0;
 border-width: 1px;
 padding: 2px 2px 2px 2px; 
 margin: 0px 0px 0px 0px;
 text-align: center;
 vertical-align: top;
 font-size: 8pt;
}

#mono_cell_right
{
 display: table-cell;
 border-style: solid;
 border-color: #c0c0c0;
 border-width: 1px;
 padding: 2px 2px 2px 2px; 
 margin: 0px 0px 0px 0px;
 text-align: right;
 vertical-align: top;
 font-size: 8pt;
}
