/*
     this style places a menu on the left and an item section in
     the center.  Intended for use with CMS demos for
     PHP/MySql for the Abs. Beg, Andy Harris
*/

body {
  background-image: url("backgroundRed.png");
}

h1 {
  color: #FFFFFF;
  font-family: "Comic Sans MS";
  text-align: right;
  background-image: url("andyGoofy.gif");
  background-position: left;
  background-repeat: no-repeat;
  height: 100px;
  border-bottom: 3px double white;

}

.menuPanel {
  float: left; 
  width: 22%;
  color: white;
}

.menuPanel li {
  list-style-type: none;
  margin-left: -2em;
  text-align: center;
}

.menuPanel a {
  color: white;
  border: 5px red outset;
  text-decoration: none;
  display: block;
}

.menuPanel a:hover {
  border: 5px red inset;
}

.item {
  float: left;
  width: 70%;
  padding-left: 3%;
  margin-left: 2%;
  background-color: white;
}
