/* simple1_table.css */

/* For displaying tables with simple1spaced text */


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

#simple1_table 
{
  display: table;
  font-family: Arial, Verdana, sans-serif;
  /* 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;
  border-style: solid;
  border-left-color: white;
  border-right-color: white;
  border-top-color: white;
  border-bottom-color: white;
  border-width: 1px;
}

#simple1_row  
{
  display: table-row;
}

#simple1_header /* default alignment */
{
  display: table-cell;
  padding: 2px 2px 2px 2px; 
  margin: 0px 0px 0px 0px;
  color: #808080;
  font-weight: normal;
  font-size: 10pt;
  vertical-align: bottom;
  border-style: solid;
  border-color: white;
  border-width: 1px;
}

#simple1_header_left
{
  display: table-cell;
  padding: 2px 2px 2px 5px; 
  margin: 0px 0px 0px 0px;
  color: #808080;
  font-weight: normal;
  font-size: 10pt;
  text-align: left;
  vertical-align: bottom;
  border-style: solid;
  border-color: white;
  border-width: 1px;
}

#simple1_header_center
{
  display: table-cell;
  padding: 2px 2px 2px 2px; 
  margin: 0px 0px 0px 0px;
  color: #808080;
  font-weight: normal;
  font-size: 10pt;
  text-align: center;
  vertical-align: bottom;
  border-style: solid;
  border-color: white;
  border-width: 1px;
}

#simple1_header_right
{
  display: table-cell;
  padding: 2px 5px 2px 2px; 
  margin: 0px 0px 0px 0px;
  color: #808080;
  font-weight: normal;
  text-align: right;
  font-size: 10pt;
  vertical-align: bottom;
  border-style: solid;
  border-color: white;
  border-width: 1px;
}

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

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

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

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

/*** no borders ***/

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

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

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

#simple1_cell_left_nb
{
  display: table-cell;
  color: #808080;
  padding: 2px 2px 2px 5px; 
  margin: 0px 0px 0px 0px;
  text-align: left;
  vertical-align: top;
  font-size: 10pt;
  border-style: solid;
  border-color: white;
  border-width: 1px;
}

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

#simple1_cell_right_nb
{
  display: table-cell;
  color: #808080;
  padding: 2px 5px 2px 2px; 
  margin: 0px 0px 0px 0px;
  text-align: right;
  vertical-align: top;
  font-size: 10pt;
  border-style: solid;
  border-color: white;
  border-width: 1px;
}

