/* 	
	Master CSS File
	This is where al the basic defaults are set
	Links to accessibility.css, layout.css, and hacks.css
*/

/* Links */

@import "accessibility.css";
@import "layout.css";
@import "hacks.css";

/* Basic Defaults */

* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 75.5%;
	font-family: Verdana, Arial, "MS Trebuchet", sans-serif;
	color: #333;
}

h1, h2, h3, h4, h5, h6, p, dt, dd, td, blockquote {
	margin-bottom: 10px;
}
blockquote {
	font-style: italic;
	padding: 0 10px;
}
acronym {
	border-bottom: 1px dotted #00f;
}
a:link, a:visited {
	color: #2D8691;
	text-decoration: none;
}

a:hover, a:active {
	text-decoration: underline;
}
img {
	border: 0;
}

/*	Accessibility Block 
	Default style for accessibility block (Hidden by accessibility.css) */
	
#accessibility {
	background: #ccc;
	color: #333;
	border: 1px solid #aaa;
	padding: 5px;
	margin: 10px;
}

#accessibility #statement{
	background: #fcc;
	border: 1px solid #f00;
	padding: 10px;
	margin: 0;
	color: #f00;
}
#accessibility p {
	font-size: 1.4em;
}
#accessibility ul {
	list-style: none;
	font-size: 1.4em;
}
/* Notes */
p.note {
	font-weight: bold;
	background-color: yellow;
}