Thanks for pointing me in the right direction. I found that my wp-content directory is protected with .htaccess so I had to add the file extensions to the Allow and it worked.
Order deny,allow
Deny from all
<Files ~ ".(xml|css|jpe?g|png|gif|js|eot|svg|ttf|woff)$">
Allow from all
</Files>
Thanks Again.