@import "print.css" print;
@import "screen.css" screen;

/* General HTML tag styles */
h1 { text-align: center; }

body {
    color: black;
    font-family: helvetica, sans-serif;
    background: white;
    margin: 1em;
}

table {
	border-top: 2px solid;
	border-bottom: 2px solid;
	border-collapse: collapse;
	border-spacing: 0px;
	margin: 0.75em;
	font-size: 85%;
}

/* Sub-tables have the same size font */
table table {
	font-size: 100%;
}

td {
	background-color: white;
	padding: 0.25em;
}

td, th {
	text-align: left;
	vertical-align: middle;
	border: none;
	border-spacing: 0px;
}

th {
	background-color: rgb(255,255,240);
	border-top: 2px solid;
	border-bottom: 2px solid;
	font-weight: bold;
}

caption {
	width: auto;
	text-align: left;
	margin-left: 1em;
	margin-bottom: 0.25em;
}

caption:before {
	content: "Table " counter(tableno) ": "
	counter-increment: tableno;
	counter-reset: tableno;
	font-weight: bold;
}

dt:after { content: ":"; }

/* General styles that would also have meaning outside this document */

.latin { font-style: italic; }

cite { font-size: 90%; font-style: normal; }
cite:before { content: "("; }
cite:after { content: ")"; }

img { border: 0; }

