/*
 * This style sheet is provides two DIV
 * style definitions that allow authors to
 * create two-column pages.
 *
 * 26-May-2005 / Alex van Oostenrijk
 * 
 */

div.left
{
  border:         solid 0px #999999;
  float:          left;
  clear:          none;
  width:          48%;
  padding-top:    3px;
  padding-left:   3px;
  padding-right:  3px;
  padding-bottom: 3px;
  margin-right:   12px;
}

div.right
{
  border:         solid 0px #999999;
  float:          right;
  clear:          right;
  width:          48%;
  padding-left:   3px;
  padding-right:  3px;
  padding-top:    3px;
  padding-bottom: 3px;
  margin-left:    3px;
}

div.end
{
  clear:          both; 
  float:          none; 
  display:        block;
}



