При загрузке страницы удалим стили из тегов <p> и <span>.
$(function () {
$(".item-attr p").each(function()
{
$(this).removeAttr("style");
});
$(".item-attr p span").each(function()
{
$(this).removeAttr("style");
});
});