$(document).ready(function() {
    // Targets the h3's in the star product sections specifically
    $("iframe").closest("li").children("h3").css({
        'text-align'  : 'center',
        'line-height' : '14px'
    });
    
    // Sorts out the forms
    $("form.wpcf7-forminput[type='submit']").parent("p").css({
        'clear' : 'right'
    });

    $("form.wpcf7-form input[type='submit']").css({
        'width' : '75px'
    });
});

