
/*--------------------------------------------------------------------------------------------------*/
/* CSS file of the module AutoTable 																*/
/*--------------------------------------------------------------------------------------------------*/

div.autotable
{
	/* Size */
	height				:			100%;
	
	/* Scrollbars */
	overflow			:			scroll;
}

table.autotable
{
	/* Font */
	font-family			:			arial,sans-serif;
	font-size			:			8pt;
	
	/* Size */
	width				:			100%;
	
	/* Border */
	border				:			1px solid;
	
	/* Color */
	background-color	: 			white;
	
	/*Empty cells */
	empty-cells			:			show;
}

th.autotable, td.autotable, td.autotable-dropdown
{
	/* Size */
	width				:			115px;
	padding				:			5px;
	
	/* Border */
	border				:			1px solid;
}	

th.autotable
{
	/* Color */
	background-color	:			#eaeaea;
}

td.autotable
{
	/* Color */
	background-color	:			white;
}

td.autotable-dropdown
{
	/* Color */
	background-color	: 			#cacaca;
}

td.autotable select
{
	/* Color */
	background-color	:			white;
	
	/* Border */
	border				:			0px none;
}

td.autotable-dropdown input, td.autotable-dropdown select
{
	/* Color */
	background-color	:			#ffff99;
}

td.autotable-dropdown input
{
	/* Width */
	width				:			115px;
}

td.autotable-icon
{
	/* Size */
	width				:			25px;
	padding				:			5px;
	
	/* Border */
	border				:			1px solid;
	
	/* Color */			
	background-color	:			#eaeaea;
}

tr.autotable:hover, td.autotable-icon
{
	/* Color */
	color				:			green;
	
	/* Cursor */
	cursor				:			pointer;
}



