/* =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: 180px;
  height: 200px;
}
.rTable:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.fb {
  float: right;
  width: 60%;
  text-align: right;
  margin: 0px 30px 0px 0px;
}