@charset "utf-8";
/* CSS Document */

/*	Website defaults	*/
/* author: Julie Berlin */

/*	***********************************
	TYPE selectors
	basic/default styling for entire website	
	***********************************	*/

/*	zero out basic values	*/
html, body, 
h1, h2, h3, h4, h5, h6, 
ul, ol, li, 
p, a, blockquote, address,
table, tr, th, td,
form, fieldset, input, textarea, legend, label {
	margin: 0;
	padding: 0;
	border: 0;
}

html { 
	font-size: 82%;
}

body {
	font-size: 100.01%;	
}

body {
/*	background-color: #E5E5CD;		changed at Helena's request	*/
	background-color: #CC9;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}




a,
a:link,
a:visited {
	color: #990000;
	text-decoration: none;
}
/*
a:visited {
	color: #666;
	text-decoration: underline;
}*/

a:hover,
a:active {
	text-decoration: underline;
	color: #990000;	
	cursor: pointer !important;		/*	don't know why this seems to be necessary.. something to do with all of the controls	*/
}

