/*
CSS for Wisdom of the Owl site
*/

body {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  background-color: #99FFCC;
  line-height: 125%;
  padding: 0;
  border: 0 solid navy;
}

h1 {
   font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
   font-size: x-large;
   background-color: navy;
   color: white;
   padding-top: 2em;
   padding-bottom: .2em;
   padding-left: .4em;
   margin: 0;
}

li {
   font-size: medium;
}

h2 {
   color: blue;
   font-size: 130%;
   font-weight: normal;
   padding-top: 15px;
}

li {
   font-size: medium;
   list-style-type: circle;
}
   
p {
   font-size: medium;
   color: blue;
}

#tagline p {
  font-style: italic;
  font-family: Georgia, Times, serif;
  background-color: #CCFFCC;
  border-top: 3px solid #7DA5D8;
  border-bottom: 3px solid #7DA5D8;
  padding-top: .2em;
  padding-bottom: .2em;
  padding-left: .8em;
  margin: 0;
}

h1, h2, h3 {
   font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
   background-color: navy;
   color: white;
}

a {
  font-weight: bold;
  color: black;
}
 
a:link {
  color: black;
}

#navigation {
  background-color: #FFFF66;
  color: navy;
  font-weight: bold;
  width: 180px;
  height: 2800px;
  border: 1px dotted navy;
}

a:visited {
  color: navy;
}

a:hover {
  text-decoration: none;
  color: white;
  background-color: navy;
}

a:active {
  color: aqua;
  background-color: navy;
}
 
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.
*/

#navigation, #bodycontent, #header {
  position: absolute;
}

#navigation, #bodycontent {
  top: 148px;
}

#bodycontent {
  left: 200px;
}

#header {
  width: 100%;
}

#navigation {
  width: 180px;
}

#header {
  border-top: 3px solid #7DA5D8;
}

#search {
  position: absolute;
  top: 3px;
  right: 10px;
  font-size: x-small;
  font-weight: bold;
}
