I'm trying to create a shadow under the lower nav bar on this site. But the CSS below doesn't seem to be working.
Any ideas?
Thanks,
Tara
#catmenucontainer {
height:25px;
background:#333333;
display:block;
padding:0px 0 0px 0px;
font: 18px helvetica, sans-serif, Arial;
font-weight:normal;
border-bottom:1px solid #000;
-moz-box-shadow: 10px 10px 5px #888;
-webkit-box-shadow: 10px 10px 5px #888;
box-shadow: 10px 10px 5px #888;
}