/*
CSS for NSA site Contact Page
*/

#header {
  background: #241374 url(fire.jpg);
  width: 797px;
}
 
#navigation, #community {
	border: 2px inset red;
	width: 160px;

} 

#navigation {
	padding-left: 0px;
}

h2 {
  color: #FF0000;
}

h1 {
  color: #FFFF33;
}

h4 {
  color: #3300CC
}
 
body {
  background: #FFCC33;
}

a {
  font-weight: bold;
}

a:link {
  color: navy;
}

a:visited {
  color: red;
}

a:hover {
  text-decoration: none;
  color: yellow;
}

a:active {
  color: purple;
}

.logo {
  float: left;
}

#form {
	border: #30C dotted
}

/*
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.
*/

#header, #copyright, #navigation, #community, #contactbody {
	position: absolute;
	left: 0px;
}

#header {
  width: 100%;
  height: 130px;
}


#navigation {
  top: 175px;
}

#community {
  top: 400px;
}

#copyright {
	top: 135px;
}

#contactbody {
  top: 175px;
  left: 250px;
}

#form {
	position: absolute;
	top: 600px;
	left: 250px;
	height: 327px;
}