/*hover effect on links*/

a#tip:hover {
position: relative;
}


a#tip span {
display: none;
}

a#tip{
	color: #c27765;
	}
	
a#tip:hover{
	color: #d57d48;
	}

a#tip:hover span {
display: block;
position: absolute;
top: 0;
left: 0;
width: 320px;
text-decoration: none; /*for IE6*/
}

a#tip:hover {
position: relative;
}

a#tip span {
display: none;
}


a#tip:hover span {
display: block;
position: absolute;
top: 0px;
left: -80px;
padding: 5px;
margin: 10px;
z-index: 100;
background: #f0f0f0;
border: 1px solid silver;
opacity: 0.9;

}

#tip p{
	width: 320px;
	padding: 5px 5px;
	margin: 0;
	font-size: 0.9em;
	}