/*
-----------------------------------------------
Client:The National Council on Crime and Delinquency
Project:Web Site Redesign (http://www.nccd-crc.org/)

File Name:table.css 
Notes:Styles all tables.

Author:Dayspring Technologies, Inc.
Email:info@dayspring-tech.com
Web:http://www.dayspring-tech.com/
----------------------------------------------- */

/* Default styles
----------------------------------------------- */
table {
  border:0;
	border-collapse:collapse;
  empty-cells:show;
  margin:0;
	width:100%;
  }
table td {
  border:0;
	overflow:auto;
  vertical-align:top;
  white-space:wrap;
	}
caption {
	display:none;
	}

/* Data table styles
----------------------------------------------- */
table.table-data {
  margin-bottom:15px;
	}
table.table-data caption {
	display:block;
	font-family:arial,helvetica,sans-serif;
	font-size:108%;
  font-weight:bold;
	margin-bottom:5px;
	}
table.table-data th {
  border:1px solid #d7c392;
	font-size:100%;
	padding:5px 10px;
	}
table.table-data th[scope="col"] {
  background-color:#f3efe2;
	font-weight:bold;
	}
table.table-data th[scope="row"] {
	font-weight:bold;
	}
table.table-data td {
  border:1px solid #d7c392;
  font-size:100%;
	padding:5px 10px;
	}