<style type="text/css">

#container {
	width: 1000px;
}

#container div {
	width: 500px;
	height: 20px;
}

/* Below turns off the display of the span tag contents. */

#container a span {
   display: none;
}

#container a {
    display: block;
	padding: 0 0 0 0;
    text-decoration: none;
}

/* Below displays the span tag contents upon hovering over the a tags and positions the span tag contents. */

#container a:hover span {
   display: block;
   position: absolute; 
   top: 200px; 
   left: 400px; 
   z-index: 10;
   color: black;
}


</style>
