/* moved here from main.css 10 november 2012 */
	
 /* Clear floats after the columns */
 /* in two column environment there is only one row */
.row:after {
content: "";
display: table;
clear: both;

}

/* Create two equal columns that floats next to each other */
 .leftpanelcontent  {

 	position: relative;
	width: 30%;

	float: left;
	margin: 10px;

}
 .leftpanelcontent p {
     width: 90%;
  margin: 10px;   
 }
 .rightpanelcontent  {
 	position: relative;
	width: 60%;
	float: left;

}


