/* =Replace tables by DIVs
--------------------------------------------------------------- */
.rTable { display: table; }
.rTableRow { display: table-row; }
.rTableHeading { display: table-header-group; }
.rTableBody { display: table-row-group; }
.rTableFoot { display: table-footer-group; }
.rTableCell, .rTableHead { display: table-cell; }

.rTable {
  	display: block;
  	width: 100%;
}
.rTableHeading, .rTableBody, .rTableFoot, .rTableRow{
  	clear: both;
}
.rTableHead, .rTableFoot{
  	background-color: #DDD;
  	font-weight: bold;
}
.rTableCell, .rTableHead {
  	font-family: "Ubuntu", sans-serif; 
    font-size: 14px;
	border: 0px solid #FFF;
  	float: left;
  	overflow: hidden;
  	padding: 3px 3px;
  	width: 125px;
	height: 180px;
}
.rTableCell2 {
  	font-family: "Ubuntu", sans-serif; 
    font-size: 14px;
	border: 0px solid #FFF;
  	float: left;
  	overflow: hidden;
  	padding: 3px 3px;
  	width: 400px;
	height: auto;
}
.rTableCell3 {
  	font-family: "Ubuntu", sans-serif; 
    font-size: 14px;
	border: 0px solid #FFF;
  	float: left;
  	overflow: hidden;
  	padding: 3px 3px;
  	width: 125px;
	height: 125px;
}
.rTableCell4 {
  	font-family: "Ubuntu", sans-serif; 
    font-size: 14px;
	border: 0px solid #FFF;
  	float: left;
  	overflow: hidden;
  	padding: 3px 3px;
  	width: 125px;
	height: auto;
}
.rTable:after {
  	 visibility: hidden;
  	 display: block;
  	 font-size: 0;
  	 content: " ";
  	 clear: both;
  	 height: 0;
}