Hi You can change the main navigation background for menu in style.css line 367 like below:
nav {
background: #DDDDDD;
border-bottom: 1px solid #DFDFD0;
border-top: 1px solid #DFDFD0;
line-height: 36px;
margin: 30px 0 auto;
padding: 20px 0;
text-align: center;
}
also you can change the menu item background color with lie 401 like this:
ul.sub-menu {
background: url(“images/sub-nav-bg.png”) no-repeat scroll 20px top #CCC;
margin-left: -15px;
margin-top: 20px;
padding: 10px 0;
position: absolute;
text-align: left;
width: 250px;
z-index: 999;
}
I hope this helps to you.