/* MG2 : table.standard */

table.standard
{
  border          : 1px solid rgb(162, 169, 177);
  border-collapse : collapse;
}

table.standard > thead
{
  background-color : rgb(234, 236, 240);
}

table.standard > thead > tr > th
{
  border  : 1px solid rgb(162, 169, 177);
  padding : 0.5em;
}

table.standard > tbody > tr > th.left
{
  background-color : rgb(234, 236, 240);
  border           : 1px solid rgb(162, 169, 177);
  padding          : 0.5em;
}

table.standard > tbody > tr > td
{
  padding-bottom : 0.25em;
  padding-left   : 0.5em;
  padding-right  : 0.5em;
  padding-top    : 0.25em;
  vertical-align : top;
}

table.standard > tbody > tr > td > ol
{
  margin-bottom : 0;
  margin-top    : 0;
  padding-left  : 1em;
}

table.standard > tbody > tr > td > p
{
  margin-bottom : 0;
  margin-top    : 0;
}

/* MG2 : table.striped */

table.striped > tbody > tr:nth-child( even )
{
  background-color : rgb(234, 236, 240);
}

/* MG2 : table.highlight */

table.highlight
{
  white-space : nowrap;
}

table.highlight > tbody > tr:hover
{
  background-color : rgb(234, 236, 240);
}

/* MG2 : table.nowrap */

table.nowrap
{
  white-space : nowrap;
}

/* MG2 : input and textarea */

input, textarea
{
  box-sizing  : content-box;
  font-family : serif;
  font-size   : medium;
}

textarea
{
  resize : both;
}

