How can I target the ul elements highlighted below in my HTML markup without using a class or id for reference?
Here is the relevant portion of my HTML code:
<div id="mainmenu">
<ul class="menu">
<li class="item-472">
<a href="#">Accueil</a>
</li>
<li class="item-475 current active deeper parent">
<a href="#" class="drop">Produits</a>
**<ul> <!--Here is the first ul I'm tryin to style --> **
<li class="item-519 deeper parent" >
<h3>Fenêtres</h3>
<p>PVC</p>
<a href="#">Fenêtres</a>
** <ul> <!-- the second ul to style -->**
<li class="item-521 deeper parent">
<a href="#">PVC</a>
<ul >
<li class="item-522"><a href="#">Arcade</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>