/*
== css used to format the songs list table (not the full table, only the table containing list of songs ==
== Gives alternate rows different bands of colours. Uses css3
== Bands Can work only in browsers with following versions or higher: Chrome 4.0,  IE  9.0, Fox  3.5,  Opera 9.6
== Provision is made so that for lower version, eg. ie8, etc. only one colour appears and at least it is readable.
*/
	.TFtable{
		width:100%; 
		border-collapse:collapse; 
	}
	.TFtable td{ 
		padding:7px; border:#4e95f4 1px solid;
	}
	/* provide some minimal visual accomodation for IE8 and below */
	.TFtable tr{
		background: #dae5f4;
	}
	/*  Define the background color for all the ODD background rows  */
	.TFtable tr:nth-child(odd){ 
		background: #b8d1f3;
	}
	/*  Define the background color for all the EVEN background rows  */
	.TFtable tr:nth-child(even){
		background: #dae5f4;
	}
	/*  Define the background color for all the First row  */
	.TFtable tr:first-child(even){
		background: #3580DA;
	}
