/*	Define tiled background for body, default font and colour	*/
body 	{
	background: white;
	font-family:   Georgia, Tahoma, Verdana, Arial, Geneva, sans-serif;
	color:  #003399;
}

/*	Define font size for paragraph, list */
p,ul	{
	font-size:  16px;
	line-height:  1.3em;
}

/*	Define heading 2 font size, bold and underlined	*/
h2	{
	font-size:  25px;
	font-weight:  bold;
	text-decoration:  underline;
	text-align: center;
}

/*	Define heading 3 font size, bold	*/
h3	{
	font-size:  18px;
	font-weight:  bold;
}

.listofitems
	{
	list-style-image: url(checkmark.jpg);
	list-style-position: outside;
}

/*	Define a class called signature, bold and italic, to display business manager's
	signature	*/
.signature
	{	
	font-style:  italic;
	font-weight: bold;
	letter-spacing: -1px;
	text-align: right;
	color: blue;
}

/*	Item toppage (link to top of page) will not be displayed	*/
#toppage
	{ 
	display: none;
}


