/* CSS Document */

	/* Start layout CSS */
	.tableWidget_headerCell,
	.tableWigdet_headerCellOver,
	.tableWigdet_headerCellDown{	
		/* General rules for both standard column header and mouse on header of sortable columns */
		cursor:pointer;	
		border-right:1px solid #ACA899;	
		background-color: #DDD;
	}
		
	.tableWidget thead {
		height:25px !important;
	}
	.tableWidget thead td{
		margin:0px;
		padding:5px 10px 5px 10px;
		font-size:12px;
		height:25px !important;
		border-bottom:0px;	/* Border bottom of table data cells */		
	}
	.tableWidget tbody td{
		padding:5px 10px 5px 10px;
		border-bottom:1px solid #EAE9E1;	/* Border bottom of table data cells */		
		height:50px !important;
	}
	.tableWidget .scrollingContent td{
		cursor:pointer;
	}
	.tableWidget .scrollingContent tr:hover{
		background:#eee;
	}
	.tableWidget tbody{
		background-color:#FFF;
	}
	
		
	/* End layout CSS */
	
	
	div.widget_tableDiv {
		border:1px solid #ACA899;	/* Border around entire widget */
		height: 200px;
		overflow:auto;
		overflow-y:auto;
		overflow:-moz-scrollbars-vertical;
	}
	
	html>body div.widget_tableDiv {
		overflow: hidden;
	}
	.tableWidget thead{
		position:relative;
	}
	.tableWidget thead tr{
		position:relative;
		top:0px;
		bottom:0px;
	}

	.tableWidget .scrollingContent{
		overflow-y:auto;
		overflow:-moz-scrollbars-vertical;
		width:100%;
	}

