/* CSS for Lab 8 */
h1
{
   margin-left: 230px;
   color: green;
}

div.wrapper
{
   position: absolute;
   left: 10px;
   top: 10px;
   width: 830px;
   height: 602px;
   margin: 3px auto;
}

div.left
{
   position: absolute;
   left: 10px;
   top : 60px;
   width: 400px;
   height: 500px;
   border: 2px solid black;
   float: left;
   background: red;
}

div.buttons
{
   position: absolute;
   left: 10px;
   width: 400px;
   height: 30px;
   top: 470px;
}

div.right
{
   position: absolute;
   right: 10px;
   top: 60px;
   width: 400px;
   height: 500px;
   border: 2px solid black;
   float: right;
   background: blue;
}

div.right h3
{
   color: white;
}

div.footer
{
   top: 550px;
   position: absolute;
   right: 10px;
   width: 802px;
   height: 180px;
}
