/** 
 *	WordPress Theme 'Dylan'
 *	Tables CSS
 *	
 *	pages: If tabular data is ever required here's the table design
 *	media: all
 *	
 *	written by: Phil Thompson hello@philthompson.co.uk November 2007
 *	last edited: 27/11/07 by Phil Thompson
 */

table{
	border: none;
	border-collapse: collapse;
	clear: left;
	font-size: 100%;
	margin: 1em 10px 1em;
}

	table caption{
		background: #FFF;
		border-bottom: 1px solid #EEE;
		color: #333;
		font-size: 110%;
		margin: 1em 10px;
		padding: .5em;
	}
	
	th{
		background: #EEE;
		border-bottom: 1px solid #DDD;
		color: #333;
		padding: .4em;
		text-align: left;
		text-transform: capitalize;
	}
	
		th[scope="col"]{
			
		}
		
		th[scope="row"]{
			
		}
	
		th a:hover, td a:hover{
			text-decoration: none;
		}
	
	
	td{
		background: #FFF;
		border: 1px solid #EEE;
		border-width: 0 0 1px;
		color: #333;
		padding: .4em;
	}

	tr:hover td{
		/*background:#444;*/
	}
	
	tr.even td{
		background: #EFEFEF;
		border-color: #DEDEDE;
		color: #333;
	}
	
	tr:hover td{
		/*background:#444;*/
	}
	
	tfoot th, tfoot td{
		background: #EEE;
		color: #333;
		text-align: center;
	}