$(document).ready(function()
	{
		$("#Bicolore tr:even").css("background-color", "#D0D0D0");
		$("#Bicolore tr:odd").css("background-color", "#EFF1F1");
		$(".Bicolore tr:even td").css("background-color", "#D5D5D5");
		$(".Bicolore tr:odd td").css("background-color", "#F4F4F4");
		$(".Bicolore th").css(
			{
			backgroundColor: '#FF0000',
			borderRadius: '8px',
			textAlign: 'center'
			}
		);
	}
);
