.topMenu {
	list-style: none;
	height: 44px;
	background: url(../menu/menubg.png);
	padding: 0 0 0 44px; /*forth number is left padding of entire menu*/
	margin-top: 0px;
	margin-left: 0px;
	display: inline-block;
}
.topMenu li {
	float: left;
}
.topMenu li a {
	display: block;
	float: left;
	height: 44px;
	line-height: 44px;
	color: #FFF;
	text-decoration: none;
	font-size: 14px;
	font-family: Trebuchet MS, Trebuchet, Arial, Helvetica, sans-serif;
	cursor: pointer;
	text-align: center;
	background: url(../menu/menuoffbg.png);
	padding: 0 0 0 12px;
}
.topMenu li a b {
	float: left;
	display: block;
	background: url(../menu/menuoffbg.png) no-repeat right top;
	padding: 0 32px 0 20px; /*forth number needs to be second number take away forth number under li a*/
	font-weight: normal;
}
.topMenu li.current a {
	color: #FFF;
	background: url(../menu/menucurrent.png);
}
.topMenu li.current a b {
	background: url(../menu/menucurrent.png) no-repeat right top;
}
.topMenu li a:hover {
	background: url(../menu/menuonbg.png);
}
.topMenu li a:hover b {
	background: url(../menu/menuonbg.png) no-repeat right top;
}
.topMenu li.current a:hover {
	background: url(../menu/menucurrent.png);
	cursor: default;
}
.topMenu li.current a:hover b {
	background: url(../menu/menucurrent.png) no-repeat right top;
}