What is the selector to reach the ul markups highlighted below? (no class or id is possible i need a selector to the html markup)
Here is 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>