@charset "UTF-8";
/* CSS Document */
	
	
	table.viewer {
		border: 1px 1px 1px 1px #003366;
		padding: 0;
		background-color: #D1D3C1;
				
	}
	
	tr.viewer td.viewer {
		paddind: 0;
		background: #D1D3C1;
		background-color: #D1D3C1;
		
		}
	
	tbody td.viewer{
			border-left: 0px;
	}
	
	
	table{
		border: 1px solid #666; text-align:left;
	}
	caption{
		padding-bottom:10px;
		font-weight:bold;
		color:#2c3b43;
		font-size:1.25em;
		text-align:left;
		}
		
	tr td{
		padding: 3px 8px;
		background: #fff;
		}
		
	thead th, thead td{ /*Table Head */
		background:#42555C;
		color:#F3F4F8;
		padding:3px 8px;
		text-align:left;
		}
	
	th.left {
		background:#eee; /* Same color as background for First Row and Alternating */
		font-weight: bold;
		padding:3px 8px;
		text-align:center;
		}
		
	tfoot td{ /*Table Footer */
		background:#6C7E8A;
		color:#F3F4F8;
		padding:3px 8px;
		text-align:left;
		}
		
	
	tbody td{
			border-left: 1px solid #D9D9D9;
	}
	
	
	/* BACKGROUND FOR FIRST ROW and ALTERNATING */
	tbody tr.even td{
		background: #eee;
	}

	/* FOR SELECTED ROWS */
	tbody tr.selected td{
		background: #3d80df;
		color: #ffffff;
		font-weight: bold;
		border-left: 1px solid #346DBE;
		border-bottom: 1px solid #7DAAEA;
	}
	
	/* RULED HIGHLIGHT */
	tbody tr.ruled td{
		color: #2c3b43; /* FONT COLOR */
		background-color: #89B86B; /* HIGHTLIGHT COLOR */
		/* font-weight: bold; */
		border-color: #89B86B;
	}
	
	/* Opera fix */
	head:first-child+body tr.ruled td{
	background-color: #89B86B; /* HIGHTLIGHT COLOR */
	}