/*You'll find notes below some items detailing their usefulness, and their characteristics.  
Style sheets make defaults; if you wish to change a default, you can do it with an in-line style 
command. */

body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #333666;
    line-height: 1.6;
	background-color: #EBEAE0;
	vertical-align: text-top;
    margin-top:30px;
    margin-bottom:30px;
	margin-left: 50px;
	margin-right: 50px;
  }

 /*The above means that unless otherwise specified, all body text will be 16px, 
 and there will be some spacing between lines, will occur on a white background, and will 
 be indented on either side just a smidge*/   

    a{}
    body {
      font-size: x-small;
      voice-family: "\"}\"";
      voice-family: inherit;
      font-size: x-small;
      }
      html>body {
         font-size: small;  }

/*The funny bit of code above tells different types of browsers to allow scaling of 
text, for accessibility.  */

.banner {
	padding: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
    line-height: 1.6;
    border-bottom-style: groove; 
    border-bottom-color: gray; 
    border-bottom-width: 3px; }
    
.content {
	padding: 10px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.6;
    vertical-align: text-center;
	margin-left : 2px;
	margin-right : 2px;  }

.maintable { 
    border-color: #333666; 
    border-style: double;  } 

.menu {
	padding: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
    line-height: 1.6;
    border-bottom-style: double; 
    border-bottom-color: #333666; 
      }
      
.sidemenu {
	padding: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
    line-height: 1.8;   }

.caption {
	padding: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
    font-style: italic;
    vertical-align: text-center;  }

.address {
	padding: 15px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
    font-weight:bold;
    text-align:center;
    border-top-style: double; 
    border-top-color: #333666;  }

.staffcontent {
	padding: 20px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    line-height: 1.6;
    vertical-align: text-center;
	margin-left : 10px;
	margin-right : 10px;  }

.table
{
border-collapse:collapse;
}

A:link  {
	color: #333666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration : none;  }
   
A:visited  {
	color: #333366;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration : none;  }

A:active  {
	color: #DD0005;
	font-family: Verdana, Arial, Helvetica, sans-serif;
      font-weight: bold;
	text-decoration : underline;  }

A:hover  {
	color: #DD0005;
	font-family: Verdana, Arial, Helvetica, sans-serif;
      font-weight: bold;
	text-decoration: underline;  }

/*All links will be in bold and not underlined . . . */

img.floatLeft { 
    float: left; 
    margin: 6px; 
}

img.floatRight { 
    float: right; 
    margin: 6px; 
}

