Change the background-position to left and make it apply only to the second and following items:
Code:
#navEZPagesTop ul a {
background-image: none;
background-repeat: no-repeat;
background-position: left;
padding-right: 10px;
padding-left: 10px;
display: block;
line-height: 75px;
text-decoration: none;
font-size: 1.5em;
font-weight: bold;
color: #008aff;
}
#navEZPagesTop ul li+li a {
background-image: url('../images/sitenavdivider.png');}
Tested on your site.
Also, you should delete the original rules that apply to these links, as they are completely overridden by your new rules.
Code:
#navEZPagesTop a {
color: #008aff;
text-decoration: none;
}
#navEZPagesTop a:hover {
color: #b8def0;
}