auto nav ul

Permalink
is there a way to style a nav item that is under another one?

I have ABOUT US and under about us i have GUIDING PRINCIPALS but guiding principals look sthe same as about us and i want to style them differently.

my css looks like this ...

#sidenav{
   margin:20px 0 0 40px;
}
#sidenav a{
   color: #ffffff;
   text-transform: uppercase;
   font-size: 12px;
}
#sidenav a:hover{
   color: #496c0f;
   text-transform: uppercase;
   font-size: 12px;   
}
#sidenav ul{
   color: #000;


But in my default.php i have
<div id="sidenav" style="background: url(<?=$this->getThemePath().'/'.$c->getAttribute('bkgd_nav');?>) no-repeat">
                <?php 
            $f = new Area('New Nav');
            $f->display($c);
             ?>
              </div>


I didn't know if auto nav would auto find the ul and li's or how that would work.If you want to see the url itshttp://crcc.turnpostadmin.com/index.php/contact_us/... its the navigation on the left side under about us.

bryanlewis