/*
CSS for Action Sources site
*/

body {
 font-family: "Times New Roman", Verdana, sans-serif;
 background-color: white;
 line-height: 125%;
 padding-top: 6px;
 padding-bottom: 4px;
}

#tagline p {
 font-size: 40pt; 
 line-height: 70px;	
 font-style: italic;
 font-weight: bold;
 font-family: Georgia, Times, sans-serif;
 color: navy;
 border: 4px solid navy;
 padding-left: 440px;
 background-color: red;
 
}

#navigation a {
 text-decoration: none;
}

#footer p {
 line-height: 150%;
}

h1 {
 font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
 font-size: 26pt;
}

li {
 font-size: large;
 line-height: 125%;
}

h2 {
 font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
 font-size: 18pt;
	
}

h3,h4 {
 font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
 font-size: 16pt;
	
}

h1, h2, h3, h4 {
 color: blue;
 line-height: 100%;
 padding-top: 1px;
 padding-bottom:2px;
}

p {
 font-size: 12pt;
 color:black;
 line-height: 150%;
}

a {
  font-weight: bold
}

a:link {
  color: navy
}

a:visited {
  color: navy;
}

a:hover {
  text-decoration: none;
  color: white;
  background-color: navy;
}

a:active {
  color: white
  background-color: navy;
}

#navigation {
 background-color: red;
 font-weight: bold;
 width: 210px;
 height: 150px;
 border: 5px solid navy;
}



/*
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 corener of the browser's content display.
*/

#tagline {
  width: 100%;
 
}

#header, #sitebranding, #navigation, #bodycontent {
  padding: 1px;
  margin-bottom: 1px;
}



#navigation, #bodycontent, #header {
  position: absolute;
}

#navigation {
  top: 240px;
}

#bodycontent {
  left: 270px;
  top: 240px;
}



#header {
  width: 100%;
  font-style: italic;
  font-weight: bold;
}

li {
  list-style-type: none;
}


