I created css for RadMenu and it does some things right. However, some issues remain, such as selected tab css, and end of menu css. In addition separation between tabs looks a little incomplete. Can you please take a look? Code and Pic attached
Thank you
.RadMenu .rmItem{
font-family: 'Open Sans', sans-serif;
font-size:13px;
font-weight:bolder;
text-decoration:none;
text-align:center;
position:relative;
padding:5px;
outline: none;
background-image: linear-gradient(bottom, #7B1342 0%, #DB4D8D 100%);
background-image: -o-linear-gradient(bottom, #7B1342 0%, #DB4D8D 100%);
background-image: -moz-linear-gradient(bottom, #7B1342 0%, #DB4D8D 100%);
background-image: -webkit-linear-gradient(bottom, #7B1342 0%, #DB4D8D 100%);
background-image: -ms-linear-gradient(bottom, #7B1342 0%, #DB4D8D 100%);
background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #7B1342),color-stop(1, #DB4D8D));
-pie-background: linear-gradient(#DB4D8D, #7B1342);
behavior: url(/styles/pie/PIE.htc);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: inset 0px 1px 0px #DB4D8D, 0px 5px 0px 0px #661A3C, 0px 10px 5px #999;
-moz-box-shadow: inset 0px 1px 0px #DB4D8D, 0px 5px 0px 0px #661A3C, 0px 10px 5px #999;
-o-box-shadow: inset 0px 1px 0px #DB4D8D, 0px 5px 0px 0px #661A3C, 0px 10px 5px #999;
box-shadow: inset 0px 1px 0px #DB4D8D, 0px 5px 0px 0px #661A3C, 0px 10px 5px #999;
}