/**
 * Lucida Grande doesn't have italics, but is preferable for its small size awesomeness.
 * Lucida Sans has lovely italics.
 * Let's use @font-face to combine them
 */
body {
	font-family:'Lucida Improved','Lucida Grande','Lucida Sans','Lucida Sans Unicode',Verdana,sans-serif;
}
@font-face {
	font-family:'Lucida Improved';
	src: local('LucidaSans-DemiItalic'), local('Lucida Sans Demibold Italic');
	font-weight:bold;
	font-weight:italic;
}
@font-face {
	font-family:'Lucida Improved';
	src: local('LucidaGrande-Bold'), local('Lucida Grande Bold'), local('LucidaSans-Demi'), local('Lucida Sans Demibold Roman');
	font-weight:bold;
	font-style:normal;
}
@font-face {
	font-family:'Lucida Improved';
	src: local('LucidaSans-Italic'), local('Lucida Sans Italic'), local('LucidaGrande'), local('Lucida Grande');
	font-style:italic;
	font-weight:normal;
}
@font-face {
	font-family:'Lucida Improved';
	src: local('LucidaGrande'), local('Lucida Grande');
	font-style:normal;
	font-weight:normal;
}