Cleanup Body_Class

You can use the body class filter to add, edit, remove classes from the body class. Here’s what the function will look like:

function edit_body_classes($classes) {
    // Add conditionals here...

    return $classes;
}
add_filter('body_class', 'edit_body_classes');

Looks like there’s plenty of Documentation in The Codex