  /* 
	--------------------------------------------------------------------------------------
	Style for everything contained within <body> (including background color, image etc.
	Also, default font (if no style is defined) - usually set this the same as .maintext)
	--------------------------------------------------------------------------------------
  */
	.bodystyle

  {	
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: #ffffff;
	margin: 0px;

	font-family : Verdana, Tahoma, Arial, Verdana, Times New Roman;
	font-size : small;
	font-weight : normal;
	letter-spacing : 0px;
	color : Black;
	line-height : 120%;

  }

  /* 
	--------------------------------------------------------------------------------------
	Main paragraph text
	--------------------------------------------------------------------------------------
  */ 	
	.maintext, li, blockquote, font

  {
	font-family : Verdana, Tahoma, Arial, Verdana, Times New Roman;
	font-size : small;
	font-weight : normal;
	letter-spacing : 0px;
	color : Black;
	line-height : 120%;
  }
 
  /* 	
	--------------------------------------------------------------------------------------
	Size of larger paragraph text.
	--------------------------------------------------------------------------------------
  */	

	.largetext
       
  {
	font-size : medium;
  }

  /* 
	--------------------------------------------------------------------------------------
	Size of smaller paragraph text.
	--------------------------------------------------------------------------------------
  */
	.smalltext 

  {
  	font-family : Verdana, Tahoma, Arial, Verdana, Times New Roman;
	font-size : x-small;
  }


  /* 	
	--------------------------------------------------------------------------------------
	Hyperlinks
	--------------------------------------------------------------------------------------
  */
	A:link 

  {
        color: #2376C3; 
        text-decoration: none; 
  }

	A:visited 

  {
        color: #2376C3; 
        text-decoration: none; 
  }

	A:hover 

  { 
        color: #CF2533; 
        text-decoration: none; 
  }

	A:active 
 
  { 
        color: #2376C3; 
        text-decoration: none; 
  }

  /* 
	--------------------------------------------------------------------------------------
	Content area - e.g. bg colour for area/cell with content 
	--------------------------------------------------------------------------------------
  */ 	
	.content_area

  {
	background-color: #ffffff;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Main page heading ('About Us', 'News' etc)
	--------------------------------------------------------------------------------------
  */

	h1, .pagetitle
  {
	font-family : Trebuchet MS, Arial, Verdana, Times New Roman;
	font-size : large;
	font-weight : bold;
	letter-spacing : 1px;
	color : #9797FF;
	line-height : 150%;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Paragraph sub-headings
	--------------------------------------------------------------------------------------
  */

	h2, .heading

  {
	font-family : Trebuchet MS, Arial, Verdana, Times New Roman;
	font-size : 12pt;
	font-weight : bold;
	color : #1A528D;
  }
  
  .heading1
  {
	font-family : Trebuchet MS, Arial, Verdana, Times New Roman;
	font-size : 14pt;
	font-weight : bold;
	color : #000000;
  }
  
    .heading2
  {
	font-family : Trebuchet MS, Arial, Verdana, Times New Roman;
	font-size : 9pt;
	font-weight : bold;
	color : #CF2533;
  }
    .telheader
  {
	font-family : Trebuchet MS, Arial, Verdana, Times New Roman;
	font-size : x-large;
	font-weight : bold;
	color : #FFCC01;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Same as subheading, but highlighted (example usage is on gallery paging, to show 
	current page number)
	--------------------------------------------------------------------------------------
  */
	.heading_highlighted

  {
	font-family : Trebuchet MS, Arial, Verdana, Times New Roman;
	font-size : medium;
	font-weight : bold;
	letter-spacing : 1px;
	color : navy;
	line-height : 150%;
  }

  /* 	
	--------------------------------------------------------------------------------------
	If extra columns of text are to be shown on the side of the page. Ignore if not.
	--------------------------------------------------------------------------------------
  */
	.side_text

  {
  	font-family : Verdana, Tahoma, Arial, Verdana, Times New Roman;
	font-size : x-small;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Header style for side paragraphs (see above).
	--------------------------------------------------------------------------------------
  */
	.side_heading

  {
	font-family : Verdana, Tahoma, Arial, Verdana, Times New Roman;
	font-size : small;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Overall page header text (not usually used)
	--------------------------------------------------------------------------------------
  */
	.page_header  

  {
	font-size : x-small;
	font-weight : bold;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Overall page footer (e.g. copyright information)
	--------------------------------------------------------------------------------------
  */
	.page_footer

  {
	font-size : x-small;
	font-weight : normal;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Tables for displaying information, within the paragraphs
	--------------------------------------------------------------------------------------
  */
	.tablestyle

  {
	border: 1px solid navy;
	background-color: #C0C0FF;
  }

  /* 	
	--------------------------------------------------------------------------------------
	If borders are enabled for images, style set here
	--------------------------------------------------------------------------------------
  */
	.image_border   
     
  {
	border: 2px solid silver;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Style for <hr> lines - color is for Internet Explorer, 
	background-color is used by Mozilla
	--------------------------------------------------------------------------------------
  */
	hr
  {
	color: navy;
	background-color: navy;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Form boxes (e.g. contact us form)
	--------------------------------------------------------------------------------------
  */
	input, textarea
  {
        background-color: #FFCC01;
        border: 0px solid silver;
  }

	.button
  {
        background-color: #CF2533;
	color: #ffffff;
        border: 1px solid #000000;
	font-family : Trebuchet MS, Arial, Verdana, Times New Roman;
	font-size : 9pt;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Highlighted text (for highlighting search key words in results)
	--------------------------------------------------------------------------------------
  */
	.texthighlight
  {
	color: red;
  }

  /* 	
	--------------------------------------------------------------------------------------
	Style for popup windows
	--------------------------------------------------------------------------------------
  */
	.popupstyle

  {	
        padding: 10px;

        background-image: no-image;
        background-color: #ffffff;

	margin: 0px;

  }