﻿/*** plain_table.css ***/

#plain_table 
{
  display: table;
  float: left;
  margin: 0px 0px 0px 0px; 
  padding: 0px 0px 0px 0px; 
  margin: 0 auto; 
}

#plain_row  
{
  display: table-row;
}

#plain_cell
{
  display: table-cell;
}

#plain_cell_left
{
  display: table-cell;
  text-align: left;
}

#plain_cell_center
{
  display: table-cell;
  text-align: center;
}

#plain_cell_right
{
  display: table-cell;
  text-align: right;
}

#blank_table 
{
  display: table;
  float: left;
  margin: 0px 0px 0px 0px; 
  padding: 0px 0px 0px 0px; 
  margin: 0 auto; 
}

#blank_row  
{
  display: table-row;
}

#blank_cell
{
  display: table-cell;
  vertical-align: top;
}

#borderless_table 
{
  display: table;
  float: left;
  margin: 0px 0px 0px 0px; 
  padding: 0px 0px 0px 0px; 
  margin: 0 auto; 
/*
border-style: solid;
border-color: red;
border-width: 3px;
*/
}

#borderless_row  
{
  display: table-row;
}

#borderless_cell
{
  display: table-cell;
  vertical-align: top;
  padding: 2px 2px 2px 2px; 
/*
border-style: solid;
border-color: green;
border-width: 1px;
*/
}

#borderless_cell_left
{
  display: table-cell;
  text-align: left;
  padding: 2px 2px 2px 2px; 
}

#borderless_cell_center
{
  display: table-cell;
  text-align: center;
  padding: 2px 2px 2px 2px; 
}

#borderless_cell_right
{
  display: table-cell;
  text-align: right;
  padding: 2px 2px 2px 2px; 
}