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

@media screen
{
	div#nameplate
	{
		position: relative;
		background: #FFF url(/_elements/nameplate_repeat.gif) repeat-x;
		padding-bottom: 10px;
		height: 96px;
	}
	
	table#nameplate_layout { width: 100%; }
	td#nameplate_left img { float: left; }
	td#nameplate_right img { float: right; }
	
	a#nameplate_logo
	{
		position: absolute;
		top: 11px;
		left: 25px;
	}
	
	a#large_button, a#large_button:link, a#large_button:visited
	{
		position: absolute;
		bottom: 20px;
		right: 10px;
		width: 190px;
		height: 47px;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 16px;
		line-height: 47px;
		text-align: center;
		color: #FFF;
		text-decoration: none;
		background: url(/_elements/large_button.jpg);
	}
	
	a#large_button:focus, a#large_button:hover, a#large_button:active { background: url(/_elements/large_button_hover.jpg); }
			
}

/*css styles to be displayed when printing the document*/

@media print
{
	div#nameplate, table#nameplate_layout, a#nameplate_logo, a#large_button { display: none; }
}