I have 2 or more sets inside, and wants to only make first UL set to bold. in fact, this is a menu with multiple sub menus, and I
You'll have to use the child selector and make the top-level unique by giving it some class:
ul.top-level > li > a { font-weight: bold; }
Demo: http://jsfiddle.net/kJJw9/