@media screen, handheld {

.nodisplay	{	display: none;
			}
}

@media print {

.noprint	{	display: none;
			}
A:link		{	text-decoration: none;
				color: inherit;
			}
A:visited	{	text-decoration: none;
				color: inherit;
			}
}

@media screen, print, handheld {

	body		{	color: black;
					background-color: #FFFFCC;
					font-family: "Lucida Grande", "Arial", sans-serif;
					font-size: 14px;
				}
	
	h1			{	color: teal;
					font-size: xx-large;
					font-weight: bold;
					font-family: "Arial Black", "Lucida Grande", "Arial", sans-serif;
					margin-top: 0px;
					margin-bottom: 0px;
				}
	
	
	h2			{	color: teal;
					font-size: x-large;
					font-weight: bold;
					font-family: "Arial Black", "Lucida Grande", "Arial", sans-serif;
					margin-top: 0px;
					margin-bottom: 0px;
				}
	
	
	h3			{	color: teal;
					font-size: large;
					font-weight: bold;
					font-family: "Arial Black", "Lucida Grande", "Arial", sans-serif;
					margin-top: 0px;
					margin-bottom: 0px;
				}
	
	h4			{	color: teal;
					font-size: medium;
					font-weight: bold;
					font-family: "Arial Black", "Lucida Grande", "Arial", sans-serif;
					margin-top: 0px;
					margin-bottom: 0px;
				}
	
	hr			{	color: black;
					background-color: black;
					height: 1px;
				}
	
	span.hilite	{	background-color: yellow;
				}
				
	div.footer	{	background-color: white;
				}
	
	.desc		{	background-color: yellow;
					font-size: 12pt;
					font-weight: bold;
					text-align: justify;
					font-family: "Lucida Grande", "Arial", sans-serif;
					font-variant: small-caps;
					border: 5px dashed red;
					padding: 5px;
				}
	
	.picLeft	{	float: left;
					text-align: center;
					margin-left: 10px;
					margin-right: 10px;
					margin-bottom: 10px;
					font-size: smaller;
					font-style: italic;
				}
				
	.picRight	{	float: right;
					text-align: center;
					margin-left: 10px;
					margin-right: 10px;
					margin-bottom: 10px;
					font-size: smaller;
					font-style: italic;
				}
				
	.picCenter	{
					text-align: center;
					margin-left: 10px;
					margin-right: 10px;
					margin-bottom: 10px;
					font-size: smaller;
					font-style: italic;
				}
	
	.headline	{
					text-transform: uppercase;
					background-color: white;
					border: 5px solid black;
					padding: 5px;
					margin-bottom: 10px;
					float: left;
					font-size: 14pt;
					font-weight: bold;
				}
				
	A:hover		{	text-decoration: underline;
					color: red;
					background-color: white;
					cursor: pointer;
				}
}