/*
  Exam 1 - Part 2
  Layout Style Sheet
  Angela Garrett
  10/12/2015 
*/
/* Page Font */
*{font-family:"Trebuchet MS", Helvetica, sans-serif;}

/* Nav Bar Menu Styles */
div#menu { 
   padding: 8px 8px 8px 8px; 
   background: #FFAAAA; 
   width: 100%; 
   font-size: 25px;
   font-weight: bold;
   text-align: center; 
} 
div#menu ul { 
   height: auto;
   padding: 8px 0px;
   margin: 0px;
} 

div#menu ul li { 
   display: inline; 
   padding: 100px; 
} 
#menu a {
    text-decoration: none;
    color: #550000;
    padding: 8px 8px 8px 8px;
}
#menu a:hover {
    color: #FFAAAA;
    background-color: #801515;
}

/*  Body Style */
body {
  font-family:"Trebuchet MS", Helvetica, sans-serif;
  background-color: #FFE4E4;
  margin-right: 7em;
  margin-left: 7em;
}
/*  h1 Style */
h1 {
  text-align: center;
  color: #801515;
}
/*  h2 & h3 Style */
h2, h3 {
  color: #AA3939;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.3em;
}
/*  h4 Style */
h4 {
  text-align: left;
  color: #801515;
}
/* Paragraph style */
p {
  line-height: 1.5em;
}
/* image format */
div.img {
    margin: 5px;
    padding: 5px;
}

/* unvisited link */
a:link {
    color: #550000;
}
/* visited link */
a:visited {
    color: #801515;
}
/* mouse over link */
a:hover {
    color: #D46A6A;
}
/* selected link */
a:active {
    color: #FFAAAA;
}
