/* Copyright (c) 2006-2009, Apple Inc. All rights reserved. */
/**
* @title Tables
* Data table styles
*/
table.data{
	clear:both; /* for image alignment */
	color:#666;
	background-color:transparent;
	border-spacing:0;
	border-collapse:collapse;
	font-size:1em;
	border-style:solid;
	border-width:0 1px 1px 0;
	border-color:#ddd;
	width:99.5%; /* leave this 0.5% space so user can click to insert more content after the table */
	margin:1px; /* Beware adding margins on data tables. Firefox Midas editor puts handles on margin area instead of element area. */
	padding:0;
}
.data th, .data td{
	font-size:1em;
	font-weight:normal;
	border-style:solid;
	border-width:1px 0 0 1px;
	border-color:#ddd;
	color:#333;
	background-color:transparent;
	text-align:left;
	vertical-align:top;
	margin:0;
	padding:2px 4px 3px;
}
.data th{
	background-color:#eee;
}
