body
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	background-color: #FFFFFF;
}

td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}

h1
{
	font-size: 8pt;
	font-weight: normal;
	margin-bottom: 0px;
}

h2
{
	font-size: 14pt;
}

#noexpressUpdate
{
	margin: 0 auto;
	font-family:Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #003300;
	text-align: left;
	background-image: url(DeskPhoto+Demo3_nofp_bg.gif);
	background-repeat: no-repeat;
	width: 210px; 
	height: 200px;	
	padding: 40px;
}

a
{
	text-decoration: underline;
}
/* because of some browsers the element A must be defined */
a[name]
{
	color: #275C21 !important;
	background-color: transparent !important;
}
/* CSS2-compliant browsers implement a:hover also for named anchors; in order to avoid a:hover to change properties of named anchors they must define as important; in this solution a:hover should not use the !important rule */
a:link
{
	color: #275C21;	
	text-decoration: underline;
}
/* unvisited link */
a:visited
{
	color: #275C21;
	text-decoration: underline;
}
/* visited link */
a:hover
{
	color: #275C21;
	text-decoration: underline;
	background-color: yellow;
}
/* the mouse "hovers" over the link */
a:active
{
	color: #275C21;
	text-decoration: underline;
	background-color: yellow;
}
/* according to CSS2-specification :active should work between on-mouse-down and on-mouse-up events but according to CSS1 the link stays marked until the user click with mouse to another place */
a:focus
{
	color: #275C21;
	text-decoration: underline;
	background-color: yellow;
}
/* :active and :focus are different states; Only :focus should leave the link marked until the next click of the mouse (:focus is designed primary into keyboard navigation and form control elements; browsers are not obliged to support it with the A element) */

