﻿/*
CSS for Site
*/

#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 130px;  
  background-color:#999966;
   border: medium black;
}

h1, h2, h3, li {
  font-family: "Curlz MT", "castellar", "Trebuchet MS", "Helvetica", "Arial", "sans-serif";
}

h1 {
  font-size:xx-large ;
  color:#CC3300;
  padding-top: 0em;
  padding-left: 0em;
  margin: 0;
  width: 100%;
  height: 20px;
}

h2 {
  font-size:x-large ;
  font-weight: bold ;
  color:#CC3300;
  font-weight: normal;
  padding-top: 0em;
}


#header p {
	  padding-top: 0em;
	  padding-bottom: 0em;
	  margin-top: 0em;
	  margin-bottom: 0em;
	  background-color:white;
}

li {
  font-size:medium ;
  list-style-type: none;
   color:#CC3300;
}


em {
  text-transform: uppercase;
}

a {
  font-weight: bold;
}

a:link {
     color:#CC3300;

}

a:visited {
     color:#CC3300;

}

a:hover {
  text-decoration: none;
  color: white;
  background-color: navy;
}

a:active {
  color:#CC3300;

  background-color: navy;
}


h2, ul {
  margin-top: 15px;
}

form.contact fieldset {   
  border: 2px solid navy;   
  padding: 10px;
}  

form.contact legend {   
  font-weight: bold;   
  font-size: small;   
  color: navy;   
  padding: 5px; 
}

form.contact {   
  padding: 0;   
  margin: 0;   
  margin-top: -15px;
  line-height: 150%;
}

form.contact label {
  font-weight: bold;
  font-size: small;
  color: blue;
}

form.contact label.fixedwidth {   
  display: block;   
  width: 240px;   
  float: left; 
}

form.contact .buttonarea input {   
  background: navy;
  color: white;   
  font-weight: bold;   
  padding: 5px;   
  border: 1px solid white; 
}

form.contact .buttonarea {   
  text-align: center;   
  padding: 4px;   
  background-color: #0066FF; 
}

/*
This section deals with the position of items on the screen.
It uses absolute positioning - fixed x and y coordinates measured from the
top-left corner of the browser's content display.
*/

body {
  font-family: Verdana, Helvetica, Arial, sans-serif;
   background-color:white;
}

#navigation {
  position: absolute ;
  top: 130px;
  left: 0px;
  width: 100%;
  height: 1800px;
  background-color:#999966;
 
}

#bodycontent {
  position: absolute;
  background-color: white;
  top: 130px;
  left: 200px;
  width: 600px;
  height: 1800px;
}

#contact {
  position: absolute;
  background-color: white;
  top: 10px;
  left: 0px;
  width: 600px;
  height: 600px;
}

#form {
  position: absolute;
  background-color: white;
  top: 300px;
  left: 0px;
  width: 600px;
  height: 600px;
}

