/* Basic screen stylesheet, basic.css 
*/

/* ------------------------------------------------------
   Layout rules
   ------------------------------------------------------
*/

#top {
   width: 700px;
   height: 170px;
   margin: 5px 100px 5px 100px;
   background-image: url(./images/aac_logo4.png);
   background-repeat: repeat-y;
   background-position: top left;
	}

#sidebar {
  width: 100px;
  margin: 5px 5px 5px 5px;
  position: absolute;
  top: 75px;
  right: 0px;
  padding: 10px;
  border-left: 1px solid gray;
	}

#content {
  width: 700px;  
  margin: 5px 100px 5px 100px;    
  font-family: verdana, sans-serif;
	}
	
#bottombar {
  width: 700px;
  margin: 5px 100px 5px 100px;
  font-family: verdana, sans-serif;
  border-top: 1px solid gray;
  text-align: center;
	}
	
/* ------------------------------------------------------
   Typography and color rules
   ------------------------------------------------------
*/

a, p, h1, ul, table {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-family: verdana, sans-serif;
}

h2, h3, h4 {
  color: #9D9E36;
  text-decoration: none;
  font-weight: bold;
  font-family: verdana, sans-serif;
}

a:link {
  color: #B76639;  /* Gold Ayem color */
}

a:active {
  color: #B76639;  /* Gold Ayem color */
}

a:hover {
  color: #B76639; /* Red Adem color */
  text-decoration: underline;
}

p:first-letter {
		font-size: 120% 
}


	
	
