This should take care of hiding the rating.
.ow_photo_item_info .ow_rates_wrap.ow_small, .ow_photoview_info_wrap .ow_photoview_info .ow_rates_wrap {
display: none !important;
}
I'm guessing you would want to also hide the "Toprated" tab on the photo page as well since you don't want ratings. Here is a custom css that should hide the tab on that page.
a[href*="/photo/"][list-type="toprated"] {
display: none;
}