You can hook into admin_notices.
http://codex.wordpress.org/Plugin_API/Action_Reference/admin_notices (no
docs there yet)
Example:
add_action('admin_notices', 'function_name');
You can use the core WP styling with this HTML setup:
<div id="message">
<p>Aenean eros ante, porta commodo lacinia.</p>
</div>