<!--

/*
 *  This style sheet implements the required mechanics to have a container
 *  which has two content columns.
 *
 *  Note: To ensure that the alignment is correct after the parent div, the 
 *  clear div must be the last child of the parent.
 */

div.two_column_layout_parent
{
  width: 100%;
}

div.two_column_layout_lhs
{
  vertical-align: top;
  float: left;
  width: 50%;
}

div.two_column_layout_rhs
{
  vertical-align: top;
  float: right;
  width: 50%;
}

div.two_column_layout_clear
{
  width: 100%;
  height: 0px;  
  clear: both;
}

-->