CSS styling for the editors is handled by the body.wysiwygeditor selector. Take a look at the style-artisteer-overrides.css file in one of the delivered Artisteer skins under /Data/skins, and you can put all of the CSS for that selector into your own skin to clear up your issues.
For instance, the fix for the editor width is:
body.wysiwygeditor
{
min-width: 100px;
}
Jamie