@charset "utf-8";
/* CSS Document */

body {
	background-color: #fff;
}

table.data {
	width: 730px;
	border-collapse: collapse; /* so we can control cellspacing in a practical way */
	border-bottom:0; /* you may not want the bottom of your table have spacing */
}

table.data th,
table.data td {
	padding: 5px;
/*	text-align: center;*/
	font-family: Arial, Verdana, sans-serif;
/*	font-size: 12px;*/
	border: 1px solid #000;
	line-height: 1.5em;
}

/* you may not want the top of your table have spacing */
table.data th {
	border-top: 0;
}

/* you may not want the left most and right most side of your table have spacing */
table.data th.first,
table.data td.name {
	border-left: 0;
}

table.data th.last,
table.data td.dateOfBirth {
	border-right: 0;
}

table.data tr.odd {
	background-color: #DDFFFF;
}

table.data tr.even {
	background-color: #CCCCCC;
}
table.data   tr.title {
	background-color: #ddd;
	color: #BB0000;
	text-align: center;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
table.data tr.image {
	color: #BB0000;
	text-align: center;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
}
table.data tr.product {
	background-color: #fff;
	color: #000;
	text-align: center;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
table.data tr.description {
	background-color: #fff;
	color: #000;
	text-align: left;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
table.spec {
	width: 400px;
	border-collapse: collapse; /* so we can control cellspacing in a practical way */
	border-bottom:0; /* you may not want the bottom of your table have spacing */
}
table.spec th, table.spec td {
	padding: 5px;
	/*	text-align: center;*/
	font-family: Arial, Verdana, sans-serif;
	/*	font-size: 12px;*/
	border: 1px solid #000;
	line-height: 1.5em;
}
table.spec th {
	border-top: 0;
}
table.spec th.first, table.spec td.name {
	border-left: 0;
}
table.spec tr.title {
	background-color: #ddd;
	color: #BB0000;
	text-align: center;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
table.spec tr.product {
	background-color: #fff;
	color: #000;
	text-align: left;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
table.spec tr.description {
	background-color: #fff;
	color: #000;
	text-align: left;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
