Need Help Determing Which CSS Declaration is Causing the Bullets to Not Be Appearing

This Drupal site stylesheet is a nightmare. Can anyone help me determine what is causing the bullet-ed text in the middle to not display their bullets? Is there a good tool out there that helps with problems like this?

Thanks.

http://low.herrmanneasyedit.com/careers/new-associate-benefits

It’s easy to answer this with the standard tools on browsers like Chrome. Just right click on an element and choose Inspect Element. You’ll see that there is a rule—duplicated in two style sheets—causing the problem:


ol, ul {list-style: none;}

This appears in two style sheets at the specified lines:

screen.css, line 7
foundation.css, line 52

Thanks ralph.m!!