Can you please not register your styles globally. All your CSS is global and conflicting with plugins that use the jQuery.UI because they are not registered as plugin specific.
$your_plugin = add_submenu_page( ...
add_action("admin_print_styles-$your_plugin", 'some_function');
function some_function() {
wp_enqueue_script(...
}