/* CSS Document */
.tbl {position: relative; display: table; width: 480px; margin-left: 7px; border: 3px inset gold;
}
.tblcaption {display:table-caption; text-align: center; font-size: 14px; font-weight: bold; 
}
.tblrow {display: table-row; 
}
.tblrowgp{display:table-row-group;
}
.tblcolumn {display:table-column; float: left;
}
.tblcolumngp {display: table-column-group;
}
.tblcell, .tblcellmed {display: table-cell; text-align: center; padding: 3px; border: 1px solid silver; border-spacing: 1px;
}
.tblcellmed {height: 150px; width: 140px;
}





/* Uses css codes to make divs that look like tables but that are not recognized as data tables by brail and audio readers. Site Point author of Everything you Thought you Knew about CSS is Wrong recommends using this kind of "css tables" for information that is not actually data for a data table. Class names are mine. 26dec09*/