/**
* Stylesheet title
*
* Your stylesheet description would go here.
*
* @project Name
* @version 1.0
* @author Mike Badgley, iStudio
* @copyright 2009
* @license Type
*
* @colordef #000 Content
* @colordef #000 Hyperlinks
*/

@import "reset.css";
@import "navigation.css" screen, projection;
@import "screen.css" screen, projection;
@import "print.css" print;
@import "handheld.css" handheld;


html {
	font-size: 100.01%;
}

body {
	background-color: #fff;
	color: #000;
	font: normal 12px/16px Arial, Helvetica, sans-serif;
}

body a:link,
body a:visited,
body a:hover,
body a:active {
	color: #000;
	text-decoration: none;
}
body a:hover,
body a:active {
	text-decoration: underline;
}

body address, body p, body hr {
	margin: 16px 0;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
	margin: 0 0 16px 0;
}
body blockquote, body dl, body ol, body ul {
	margin: 16px 0 16px 30px;
}

/**
* @subsection Headers - level 1
*/
#header h1.bg {
	color: #403b33;
	font: normal 32px/34px Georgia, "Times New Roman", serif;
	margin-top: 0;
}
	#header h1.bg strong {
		color: #e84c51;
		font-weight: normal;
	}

/**
* @subsection Headers - level 2
*/
body h2 {
	color: #403b33;
	font: normal 26px/30px Georgia, "Times New Roman", serif;
}

/**
* @subsection Headers - level 3
*/
body h3 {
	color: #403b33;
	font: normal 20px/22px Georgia, "Times New Roman", serif;
}

/**
* @subsection Unordered lists
*/
body ul { list-style-type: square; }
	body ul li { margin-bottom: 0.5em; }