Just in case someone ever reads this far. I noticed that there are two other pieces of .js and .css that will still load. The following took care of that.
add_action( 'wp_print_scripts', 'clean_scripts');
function clean_scripts() {
wp_dequeue_script( 'frontjs' );
wp_dequeue_script( 'nivo-lightbox' );
}
add_action( 'wp_print_styles', 'clean_styles');
function clean_styles($post_id, $post) {
wp_dequeue_style( 'wpdm-front' );
}