@charset "utf-8";
/* CSS Document */

a.catmenu {
	-moz-background-clip:border;
	-moz-background-inline-policy:continuous;
	-moz-background-origin:padding;
	background:#5B5B5B none repeat scroll 0 0;
	clear:right;
	color:white;
	display:block;
	float:right;
	font-family:Arial,Helvetica,sans-serif;
	font-size:16px;
	font-weight:bold;
	margin:0;
	padding:5px;
	text-align:right;
	text-decoration:none;
	text-transform:uppercase;
}
a.catmenu:hover {
	color: #fff200;
	text-decoration: none;
}
a.submenu{
	clear:right;
	color:#5B5B5B;
	display:block;
	float:right;
	font-family:Arial,Helvetica,sans-serif;
	font-size:11px;
	padding:2px 5px 2px 0;
	text-align:right;
	text-decoration:none;
}
a.submenu:hover {
	color: black;
	text-decoration: none;
}
.hide{
	display: none;
}
I'll also create the style that will show the hidden div tags (submenus):
.show{
	display: block;
}
a.submenuselect {
	padding: 2px 5px 2px 0;
	float:right;
	clear: right;
	display: block;
	color: black;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: right;
	text-decoration: none;
}
a.submenuselect:hover {
	color: red;
	text-decoration: none;
}
