/****************************************
Definition of the few specific styles to
use to display the GoodStandingTracker
page
****************************************/

/* Make last updated date appear in bold. */
span#date-updated
{
  font-weight: bold;
  }

/* Enclose meetings table and each participant in a thin border */
div#wg > table, div#participants > dl
{
  border-top-width: thin;
  border-right-width: thin;
  border-bottom-width: thin;
  border-left-width: thin;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: black;
  border-right-color: black;
  border-bottom-color: black;
  border-left-color: black;
  padding-top: 0.5ex;
  padding-right: 0.5ex;
  padding-bottom: 0.5ex;
  padding-left: 1ex;
  }

/* Restrict the width of a participant's table. */
div#participants > dl
{ 
  width: 40em;
 }

/* Participant name: in bold and font size slightly higher. */
div#participants > dl > dt
{
  font-weight: bold;
  font-size: 120%;
  }

/* Participant company: in italic and no left margin. */
div#participants > dl > dd.orgname
{
  font-style: italic;
  margin-left: 0ex;
  margin-bottom: 1ex;
  }

/* Participant good standing status: in bold and italic. */
div#participants > dl > dd > dl > dt:first-child + dd
{
  font-weight: bold;
  font-style: italic;
  }
