div#html_alert { display: none; }
td { vertical-align: top; }

/*css styles to be displayed when looking at the document on the screen*/
@media screen {

	* {
		margin: 0;
		padding: 0;
	}
	
	body {
		font-family: Helvetica;
		font-size: 12px;
		behavior: url(/_css/csshover2.htc);
	}
	
	a img { border: none; }
	
	a, a:link, a:visited {
		text-decoration: none;
		font-weight: bold;
		color: #025942;
	}
	
	a:focus, a:hover, a:active {
		text-decoration: underline;
	}
	
	.left {
		float: left;
		margin-right: 20px;
	}
	
	.right {
		float: right;
		margin-left: 20px;
	}
	
	.print {
		display: none;
	}
	
	.display_none {
		display: none;
	}

}

/*css styles to be displayed when printing the document*/
@media print {

	.screen {
		display: none;
	}
	
	a, a:link, a:visited, a:focus, a:hover, a:active {
		font-weight: bold;
		color: #000000;
		text-decoration:none;
	}
	
	a[href]:after {
		content: " [link to: " attr(href) "]";
	}

}