/* Universal selector */
/* Remove all default margins and padding */
*{
margin:0;
padding:0;
}

/* Element (type) selector */
/* Applies to all ul elements */
ul{
margin-left:3em;
}

/* Applies to id="lefty" */
#lefty{
width:30%;
float:left;

}

/* Applies to id="righty" */
#righty{
width:60%;
float:right;
background-color: #bfefebb; /*light green */
padding-left:10px;
}

/* Applies to id="footer" */
#footer{
clear:both;
background-color:#800000; /* red */
border-top:solid thin #000;
font-family:'Arial Black', Helvetica, Sans-Serif;
 
text-align:center;
color:#FFF
}
