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

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


div.left
{
  border:        solid 0px blue;
  float:         left;
  clear:         none;
  width:         48%;
  padding-right: 15px;
}

div.right
{
  border:        solid 0px red;
  float:         right;
  clear:         right;
  width:         48%;
  padding-left:  3px;
}


