@charset "utf-8";
/* CSS Document */
.divTable{ display: table; width: 100%; }
.divTableRow { display: table-row; height:15px; }
.divTableCell-1, .divTableCell-2, .divTableCell-3 {
	display: table-cell;
	/*border: 1px solid #999999;*/
	padding: 3px 10px;
}
.divTableCell-1 { width: 50px; text-align: right; }
.divTableCell-2 { width: 10px; text-align: center; }
.divTableCell-3 { width: 150px; text-align: left; }
.divTableHeading {
	display: table-caption;;
	height: 30px;
	width: 100%;
	text-indent: 0.8em;
	padding-top: 5px;
	background-color: #CCCCCC;
	font-weight: bold;
	text-align: left;
	font-size:18px;
	font-weight: bold;
	border-left: 2px solid white;
}
.divTableBody { display: table-row-group; }
/*
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}

.divTableBody .divTableRow .divTableCell:first-child {
    width: 25%;
}
.divTableBody .divTableRow:last-child .divTableCell {
    height: 200px;
}
*/

