/**
 * Generic stylesheet to use on multiple websites.
 * @filename generic.css
 * @author Jeffrey Arcand <jeffrey_arcand@hotmail.com>
 * @version 0.4
 * @date 2005-07-12 19:20
 */

a:link,
a:visited {
	color : #00e;
}

a:focus,
a:hover {
	color : red;
	text-decoration : underline;
}

acronym {
	border-bottom : 1px dotted;
	cursor : help;
}

blockquote {
	margin : 1em 20px;
}

del {
	color : #666;
}

form {
	margin : 0;
}

h1 {
	display : none;
}

@media print {
	h1 {
		display : block;
	}
}

h2 {
	border-bottom : 1px dashed black;
	font-size : 1.12em;
	margin : 0.66em 0;
}

h3 {
	border-bottom : 1px dotted black;
	font-size : 1em;
	margin : 0.66em 0;
}

html {
	font-family : Verdana, sans-serif;
	font-size : 10pt;
	text-align : justify;
}

img {
	border : 0;
}

img.center {
	display : block;
}

input[type="submit"] {
	font-weight : bold;
}

ol.spaced li,
ul.spaced li {
	margin-bottom : 0.5em;
}

table {
	margin : 1em 0;
}

table caption {
	font-size : 1.5em;
	margin-top : 1em;
}

table.border {
	border : solid black;
	border-width : 1px 2px 2px 1px;
}

table.border caption {
	border : solid black;
	border-width : 2px 2px 1px 2px;
}

table.border td,
table.border th {
	border : solid black;
	padding : 2px;
	vertical-align : top;
}

table.border td {
	border-width : 1px 0 0 1px;
}

table.border th {
	border-width : 1px 0 1px 1px;
}

th {
	text-align : center;
}

.strike {
	text-decoration : line-through;
}


