html,body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 36px;
} 

#column1 { position: absolute; left: 0px; top: 0px; bottom: 0px; width: 75%; overflow: auto; } 
#column2 { position: absolute; right: 0px; top: 0px; bottom: 0px; width: 25%; overflow: auto; }

ul {
  width: 24em;  /* room for 3 columns */
}
ul li {
  float: left;
  width: 11em;  /* accommodate the widest item */
}
/* stop the floating after the list */
br
{
  clear: left;
}
/* separate the list from what follows it */
div.wrapper
{
  margin-bottom: 1em;
}

/* anchor styling */
ul li a
{
  display: block;
  width: 10em;
  text-decoration: none;
  color: #666;
}
ul li a:hover
{
  color: #FFF; /* white */
  background-color: #A52A2A; /* brown */
}
