/*   The body tag controls all the basic settings for your page like font 			*//*   size & colour, page background, and also to get rid of the page margin.		*/body {	font-family: Arial, Helvetica, sans-serif;	font-size: small;	color: #333333;	background-color: #FFFFFF;	margin: 0px;}/*   The a tag controls what default links look like, the a:hover tag controls		*//*   what the default links will look like when a cursor is hovered over.			*/a {	color: #330066;}a:hover {	color: #CC0066;}/*   h1 and h2 tags control the style of Heading 1 and Heading 2 formats.			*//*   Heading 1 is used for the main page title, Heading 2 is used for subtitles.	*/h1 {	font-size: large;	color: #330066;	margin: 0px;}h2 {	font-size: medium;	color: #330066;	margin: 0px;	background-color: #DDDDDD;	width: 98%;	padding: 2px;	border: 1px solid #999999;}/*   The following styles are class styles (they begin with a full stop)			*//*   they can be applied to specific elements of a web page.				 		*/.address {	font-size: 0.9em;	color: #FFFFFF;	background-color: #330066;	padding-top: 1px;	padding-right: 0px;	padding-bottom: 1px;	padding-left: 8px;}.ttlbg1 {	background-image: url(images/ttlbg1.gif);	background-repeat: repeat-x;	background-position: center center;	height: 39px;}.ttlbg2 {	background-image: url(images/ttlbg2.jpg);	background-repeat: no-repeat;	background-position: center center;	height: 39px;}.xsmalltxt {	font-size: x-small;}
