/* CSS Document */
	
.grid-row{
	display:table-row;
	max-height:30px;
	overflow:hidden;
}

.grid-row:hover{
	background:#ddd;
}

.grid-cell{
	display:table-cell;
	padding:5px;
	margin:inherit;
	max-width:200px;
	max-height:30px;
	border: thin solid #000;
	word-wrap:break-word;
	overflow:hidden;
}

.lDiv{
	width:135px;
	display:inline;
	text-align:right;
}

.rDiv{
	width:150px;
	display:inline-block;
}

.cell1{
	width:165px;
	display:table-cell;
	margin:2px;
}

.cell2{
	width:330px;
	display:table-cell;
	margin:2px;
}

.cell3{
	width:495px;
	display:table-cell;
	margin:2px;
}

.resultColor{
	color:#00F;
	font-weight:bold;
}

.bold{
	font-weight:bold;
}

.red{
	color:red;
}

.right{
	text-align:right;
}

.center{
	text-align:center;
}

.sep{
	border-top:thin solid black;
}