    a.n {
	color:black;
	/* To get the hover to work in Explorer, this trick changes the class name of the anchor title, then changes it back again. Thanks to several CSS discussion boards. */
	m: expression(this.onmouseover =  new Function("this.className = 'n-hover';"));
    }
    .n:hover,
    .n-hover {
         color: red;
  		border: thin solid gray;
  		padding: 0.05em;
        m: expression(this.onmouseout = new Function("this.className = 'n';"));
    }
    
    
    li {
    line-height: 1.6;
    }
    abbr
{
}

.tooltip
{
	position:absolute;
	background-color:lightyellow;
	border: 1px solid #aaaaca;
	padding:4px;
	width: 160px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
