I need help trying to convert this LESS nested CSS to standard CSS. Can anybody help?
.leftNav { a.TopLevel { float:none; } ul#topnav {
The whole point of LESS is that you write the LESS-style CSS, and the LESS interpreter converts it to normal CSS.
So just run your LESS code through LESS, and you'll get the equivalent normal CSS.
Simple.