Ok...this is just a guess. I am not a programming genius by a long shot. But I bet you that submenus are something other than
ul.rMenu-ver li
maybe they would be called something like
ul.sMenu or something.
Not sure why you have your visited links the same as your regular links.
And there is something, too about the order. I was taught to remember "
lo
ve
hate"
This is from
HTML Code:
http://www.w3schools.com/CSS/css_pseudo_classes.asp
a:link {color:#FF0000;} /* unvisited link */
a:visited {color:#00FF00;} /* visited link */
a:hover {color:#FF00FF;} /* mouse over link */
a:active {color:#0000FF;} /* selected link */
Hope this helps