<style>
/*This is how the text will look before mouse over*/
.colc{
	font-family: Verdana;
	color: #456745;
	font-size : 100%;
	font-style : italic;
	font-weight : bolder;
}

/*This is how the text will look on mouse over. Note "hover" is the most important change here*/
.colc:hover
{
	font-family: sans-serif;
	color: #8A2BE2;
	font-size : 105%;
	background : Yellow;
}
</style>
