@charset "utf-8";
/* CSS Document */

	/**********************************************************************

	Tables style sheet
		This file provide all CSS instructions for rendering tables

	@Package:		Silverfox CSS Framework
	@Link: 			http://www.internotredici.com
	@Author: 		Fabrizio Menghini Calderón <fabrizio@internotredici.com>
	@Copyright:		Copyright (c) 2007 Fabrizio Menghini Calderón
	@Change Log:

		[R001] ~ 2007-10-26: Creation
		[R002] ~ 2007-11-06: Optimized CSS

	**********************************************************************/





	/*
	==============================================
		General elements
	==============================================
	*/



	table 
	{ 
		margin: 0; 
		caption-side: top;
		empty-cells: hide;
		margin-bottom:1.6em;
	}

	caption 
	{
		padding-bottom: .5em;
		font-style: italic;
		text-align: right;
	}



	/*
	==============================================
		Cells
	==============================================
	*/



	th	
	{ 
/*		background-color: #69207E;*/
		font-weight: bold;
/*		color: #fff;*/
		text-align: center;
		padding: 3px 3px 3px 3px;
	}

	td 
	{
		border: 1px solid #fff;
		border-top-width: 0;
		background-color: #fff;
/*		padding: 3px 3px 3px 3px;*/
		color: #333;
	}

	tr.SF_even td { background: #ebebeb; }

	table.SF_highlighted tr:hover td
	{
		background-color: #ff6;
		color: #000;
	}

	table.SF_highlighted tfoot tr:hover td
	{
		background-color: transparent;
		*background-color: inherit; /* IE7 has problems with transparent background */
		color: inherit;
	}



	/*
	==============================================
		Cell groups
	==============================================
	*/

	tfoot { font-style: italic; }

	
	
	/* Vhi Coloured Table */
	table.colouredTable {
		width:100%;
		line-height:1.6em;
		vertical-align:middle;
		border:1px solid #ccc;
	}
	table.colouredTable tr td{
		vertical-align:middle;
		border:1px solid #ccc;
		background-color:transparent;
		padding:0.6em;
	}
	table.colouredTable tr td {
		background-color:#eee;
	}
	table.colouredTable tr td.odd { 
		background-color:#f7f7f7;
	}
	table.colouredTable tr th{text-align:left;}
	
	
	
