>>694-696
1つのテーマだけでいいなら、テーマディレクトリにCSSファイルを
用意してtemplate.phpに以下のように書くこともできるよ

function phptemplate_preprocess_page(&$vars) {
if ($vars['logged_in']) {
drupal_add_css(path_to_theme() . '/login-user.css', 'theme');
} else {
drupal_add_css(path_to_theme() . '/anonymouse.css', 'theme');
}
$vars['styles'] = drupal_get_css();
}