<?php require_once( '../../../../wp-load.php' );
	Header("Content-type: text/css");
	$font_family = get_option('font_family', 'Arial,Helvetica,Garuda,sans-serif');
	echo "body {font-family:{$font_family};}";
	echo stripslashes(get_option('custom_css'));
	if (theme_check_custom_background()) {
		echo 'body { background:url(../images/bg.jpg) #F4F5FF; }';
	}
