/* This is the css code needed to make the list of teacher appear when you put the pointer of the mouse over the instrument */

/*this  set the teachers list's position and invisible*/
/* class teachers is common to all the instruments */
.teachers {
	display: none;
	position: absolute;
	width: 250px;
	padding:5px;
	margin:0px;
	border: 1px solid #502;
	/*background-color: #e9afc6;*/
	background-image: url(image/guitarfondo.png);
	top: 300px;
	left: 300px;
	color: white;
}


/* When you hover the mouse over the instrument it show the teachers for that instrument */

#instruments ul li:hover .teachers {display: block;}

li.teachers {
	list-style-type: none;
}
	
/* Style for elements on the teachers class */

