
/* Basic CSS four panel page format */
/* - header, footer, left menu panel, content panel  */

/* This defines all of the page wide styles */
#container
   {
   position: absolute;
   width: 100%;
   margin: 0;
   padding: 0;
   color: #000;
   background-colour: #fff;
   text-align: center;
   font-family: Verdana, Arial, Helvetica, sans-serif;
   line-height: 130%;
   border: 1px;
   border-color: #ccc;
   }

   
/* end of container statements */

/* this has all the style rules for the header section */
#header
   {
   width: 100%;
   height: 100px;
   margin: 0;
   padding: 0;
   color: #000;
   background-colour: #ddd;
   }

/* this defines the main site title that will appear on all pages */
.s_title
   {
   text-align: center;
   color: #099;
   font-size: 30pt;
   vertical-align: bottom;
   padding: 50px 0 20px 0;
   }   

/* this defines the site logo   */   
.s_logo
   {
   float: left;
   clear: right;
   width: 100px;
   height: 100px;
   border: 0;
   padding: 0;
   }

/* horizontal nav bar  */   

#hnav_list
   {
   list-style-type: none;
   text-align: center;
   }

/* This defines the appearance of normal link  */

#hnav_list li
   {
   display: inline;
   background-color: #fc3;
   color: #000;
   margin: 0 0 0 0;
   width: 15%;
   border: 1px;
   border-style: solid;
   padding: 0 2px 0 2px;
   }

#hnav_list a
   {
   display: block;
   text-decoration: none;
   font-size: 12pt;
   }
   
#hnav-list a:hover
   {
   display: block;
   font-size: 14pt;
   background-color: #000;
   color: #fff;
   }           
      
/* this defines the container para for the nav bar */

#headp
   {
   margin: 10px 0 0 0;
   padding: 0;
   }
/* end of header section  */

/*  these are the style rules for the columns  */

.list_div
   {
   margin: 0;
   padding: 0;
   margin: 0 0 0 0;
   width: 90%;
   text-align: left;
   }

.sector_title
	{
	list-style-type: none;
	font-size: 130%;
	font-weight: bold;		
	color: #A0522D;}  
	
.item_spacer
	{
		line-height: 200%;
	}	
/* class for normal text paragraphs */   
.normal
   {
   text-align: justify;
   }
   
/* end of the columns section */

/*  This contains formatting for the footer section - copyright etc */
#footer
   {
   clear: both;
   width: 100%;
   text-align: center;
   font-size: 10pt;
   margin: 10px 0 0 0;
   }
   
/* end of the footer section */        