﻿/* styles for printable forms */

* {margin: 0; padding: 0}

a img {border: none}
address {font-style: normal}
body {
	background: white;
	font-family: "Times New Roman", Times, serif;
}
table {width: 100%}
td, th {
	padding: 1em;
	vertical-align: top;
}

th, .th {
	font-style: italic;
	font-weight: normal;
}

.btm {vertical-align: bottom}
.center {text-align: center}
.form p {
	border-bottom: 1px gray dotted;
	width: 100%;
}


@media print {
	body {font-size: 10pt}
	.form {margin: 12pt 1in}
	.form p {line-height: 24pt}
	.screen {display: none}
}

@media screen {
	body {
		background: white;
		font-size: small;
		margin: 1em 3em;
	}
	.form {
		background: #EFE;
		border: 1px solid #CCC;
		margin: 2em 3em;
		padding: 2em 3em;
	}
	.form p {line-height: 3em}
}

