update wp_styles set name = :name, css = :css, text_color = :text_color,
background_color = :background_color, background_image = :background_image,
link_color = :link_color, alink_color = :alink_color,
vlink_color = :vlink_color, public_p = :public_p
where style_id = :style_id
insert into wp_styles
(style_id, name, css, text_color, background_color, background_image,
link_color, alink_color, vlink_color, public_p, owner)
values (:style_id, :name, :css, :text_color, :background_color, :background_image,
:link_color, :alink_color, :vlink_color, :public_p, :user_id)
update cr_wp_presentations set style = :style_id where presentation_id = :presentation_id