/*
  Author:        Heather Uthoff
  Creation Date: 03/17/2013
  Doc Version:   1.0
  Website URL:   http://webtrain.austincc.edu/~huthoff/css/exercise2.html
  Additional Comments: 
  You can view the page using this css online at the url above
*/
/* header */
ul.horizontal{
  list-style-type:none;
  margin:0;
  padding:0;
  overflow:hidden;
 }
 li.horizontal{
  float:left;
 }
 a.horizontal1{
  display:block;
  width:80px;
 }
 a.horizontal2{
  display:block;
  width:100px;
 }
 a.horizontal3{
  display:block;
  width:120px;
 }
 body {
  margin-top: 1in;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  position:relative;
  width:7in;
  background: grey;
  font-family: verdana;
  font-size: 14.5px;
  color: black;
 }
 h1{ font-size: 2em; }
 hr {
  display: block; 
  height: 3px;
  border: 0; 
  border-top: 3px solid #40c0c0;
  margin: 0 fixed; 
  padding: 0; 
 }
 p {
  padding-left: 1em;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 1em;
  border:2px solid;
  border-radius:25px;
  -moz-border-radius:25px;
 }
 p.first { 
  width: 3in;
  background-image:url("../../image/ex2img.jpg");
  color: blue;
  font-family: arial;
  font-size: 12px;
 }
 p.second {
  width: 4in;
  background-color: #40c0c0;
  color: white;
  font-family: courier;
  font-size: 16px;
 }
 a:link { 
  color:#40c0c0;
  text-decoration: none;
 }
 a:active { color:#40c0c0; }
 a:visited { color:#40c0c0; }
 a:hover { color:white; }
 #footer {
  width:7in;
  height: 50px;
  margin: 0 auto;
  padding: 0px 0 15px 0;
  }
#footer p {
  margin: 0;
  padding-top: 20px;
  line-height: normal;
  font-size: 9px;
  text-transform: uppercase;
  text-align: center;
  color: lightgrey;
  border:none;
  }
