/*
	Adds mouse-over action to menus created with the tags:

				<UL class="menu"> <LI>...</LI> <LI>...</LI> <LI>...</LI> ... </UL>
*/
.menu { margin: 0px; padding: 0px; list-style-type: none; width: 100px; }
.menu li { display: inline; }
.menu a, .menu a:visited { color:  black; font: bold 11px Verdana; text-decoration: underline; display: block; padding: 2px; }
.menu a:hover { border-left	: 10px solid red; background-color: yellow; color: red; }

.link a:link { color:  black; font: bold 11px Verdana; text-decoration: underline; padding: 2px; }
.link a:visited { color:  black; font: bold 11px Verdana; text-decoration: underline; padding: 2px; }
.link a:hover { border-left	: 10px solid red; background-color: yellow; color: red; }
