/*******************************************************************************
  TABLE DESIGN 
*******************************************************************************/
.table1 {
	font-size: 12px;
	margin: 0px;
	text-align: left;
	border-spacing: 0;
	border-collapse: separate;
	border-bottom:none;
	width: 100%;	
}

.table1 th {
	font-size: 13px;
	font-weight: bold;
	padding: 8px;
	background: #EFEFEF;
	border-top: 1px solid #FFF;
	color: #333;
	text-align: left;
}
.table1 td    
{    
	padding: 8px;
	background: none; 
	border-top: 1px solid #CCC;
	color: #666;
	border-bottom: none !important;
}

.table1 tr:hover td {
	background: #FBFBFB;
	color: #333;
}
.table1 tr.footer { background: none !important; }
.table1 tr.footer:hover td { background: none !important;  }

