/*
 * This style sheet defines styles for use by the DbTable class.
 * They apply site-wide, but may be customized for each web site.
 * 
 * 26-May-2005 / Alex van Oostenrijk
 * 
 */
 
/* 
 * General DB table style.
 */
.table 
{
  width:            100%;              /* Fills up width of container. */
  color:            black;
  padding-left:     0px;
  padding-top:      2px;
  padding-right:    0px;
  padding-bottom:   2px;
}

/*
 * Header columns
 */
.rowheader 
{
	font-weight:      bold;              /* Headers are in bold. */
  padding-left:     1px;
  padding-right:    1px;
  padding-top:      1px;
  padding-bottom:   1px;
  border-bottom:    solid #999999 1px;
}

/* 
 * Row that does not alternate in color.
 */
.row td /* you *must* add td here for the padding to have effect. */
{
  padding-left:     1px;
  padding-right:    1px;
  padding-top:      1px;
  padding-bottom:   1px;
  background-color: #ffffff;
}

/*
 * Row that alternates in color (color 0)
 */
.row0 td /* you *must* add td here for the padding to have effect. */
{
  border-bottom:    solid #999999 1px;  
  background-color: #ffffff;
  padding-left:     1px;
  padding-right:    1px;
  padding-bottom:   1px;
  padding-top:      1px;
}

/*
 * Row that alternates in color (color 1)
 */
.row1 td /* you *must* add td here for the padding to have effect. */
{
  border-bottom:    solid #999999 1px;
  background-image:  url("../img/cell.gif");
  padding-left:     1px;
  padding-right:    1px;
  padding-top:      1px;
  padding-bottom:   1px;
}

/*
 * Paging arrows and numbers.
 */
.pager
{
  width:            100%;              /* To fill up the bottom of the table. */
  color:            black;             /* Color of the text of the page numbers. */
  padding-top:      3px; 
  font-weight:      bold;
  font-size:        9px;
}

.pager a
{
  font-weight:      bold;
  font-size:        9px;
}
