/*	Define tiled background image for body, default font and colour	*/
body 	{
	background: white url(ibewwatermark.gif);
	font-family:   Georgia, Tahoma, Helvetica, Geneva, sans-serif;
	color:  #330099;
}

/*	Define font size for paragraph, list */
p,ul,td,ul,ol,li	{
	font-size:  16px;
	line-height:  1.3em;
	margin-left:  20px;
	margin-right: 20px;
}

/*	Define heading 2 font size, bold and small-caps	*/
h2	{
	font-size:  22px;
	font-weight:  bold;
	font-variant: small-caps;
	text-align: center;
	background:  #cccccc;
	border: #cc0033 3px solid;
	clear:  both;
}

/*	Define heading 3 font size, bold	*/
h3	{
	font-size:  18px;
	font-weight:  bold;
	background:  #cccccc;
	border: #cc0033 2px solid;
	text-align: center;
	clear: both;
}

#toppage
	{
	border: none;
}

/*	Define a class called listofnames */
.listofnames
	{
	list-style-image: url(redsquare.jpg);
}

.listofitems
	{
	list-style-image: url(checkmark.jpg);
	list-style-position: outside;
}

.listoflinks
	{
	list-style-image: url(redarrow.jpg);
}


/*	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;
}

.quote
	{
	font-style:  italic;
	font-size:  20px;
	font-weight: bold;
	letter-spacing: -1px;
	text-align: centre;
	margin-left:  100px;
	margin-right: 100px;
}


/*	Define link styles with pseudo-classes 
	There are 4 pseudo-classes:  link, visited, hover, active */

a:link
	{
	color:  #0033ff;
	font-weight:  bold;
}

a:visited
	{
	color:  #0033cc;
	font-weight:  normal;
	text-decoration:  none;
}

a:hover
	{
	color:  #cc0000;
	font-weight:  bold;
}

a:active
	{
	color:  #0033cc;
	text-decoration:  none;
}

