/* Basic styles for Font Resizer demo
 * Ben Hayes, January 2010
 * info@jackfruitdesign.com
 */

/* Eric Meyer's reset styles: */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, em, img, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; } input, textarea { font-family: inherit; } body { color: black; background: white; } ol, ul { list-style: none; } table { border-collapse: separate; border-spacing: 0; } caption, th, td { text-align: left; font-weight: normal; } blockquote:before, blockquote:after, q:before, q:after { content: ""; } blockquote, q { quotes: "" ""; }

body { background-color: #fff; padding: 12px 0; }

/* =typography
 * =========================================== */
body, input, textarea, select {
	font-size: 14px;
	line-height: 1.5em;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #000;
}

p {
	margin: 1em 0;
}

h1 {
	font-size: 2em; /* 28px */
	margin: 0.8571em 0 -0.10714em; /* 24px 0 -3px */
	font-weight: bold;
}

h2 {
	font-size: 1.5em; /* 21px */
	margin: 1.142857em 0 -0.142857em; /* 24px 0 -3px */

	font-weight: bold;
}

h3 {
	font-size: 1.2857em; /* 18px */
	margin: 1.333em 0 -0.16667em; /* 24px 0 -3px */
	font-weight: bold;
}

a:link, a:visited {
	color: #0367B1;
	text-decoration: underline;
}

a:hover { color: #000; }

a#back { font-size: 14px; line-height: 21px; }

pre {
	color: #444;
	font-family: Courier, monospace;
}


/* =layout (main layout styles)
 * =========================================== */

#page {
	width: 972px;
	margin: 0 auto;
	background-color: #fff;
}

#top {
	padding: 14px 0;
}

#mainnav {
	height: 31px;
	clear: both;
	background-color: #333;
}

#mainnav ul {
	height: 31px;
}

#mainnav ul li {
	float: left;
	height: 31px;
	line-height: 31px;
}

#mainnav ul li a:link, #mainnav ul li a:visited {
	color: #bbb;
	display: block;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	height: 31px;
	padding: 0 12px;
}

#mainnav ul li a:hover {
	color: #fff;
}

#mainnav ul li.current a:link, #mainnav ul li.current a:visited {
	color: #fff;
}

#content {
	overflow: auto;
	width: 100%;
}

#footer {
	background-color: #666;
	clear: both;
}

#footer p {
	color: #fff;
	font-size: 12px;
	padding: 10px 12px;
	margin: 0;
}

#footer a:link, #footer a:visited { color: #fff; }
#footer a:hover, #footer a:active { color: #ddd; }


/* =font resizing stuff:
 * ================================================== */
.fontresize {
	display: none; /* hide from non-Javascript browsers */
}

#accessibility {
	text-align: center;
}

#accessibility li {
	line-height: 28px;
	display: inline;
	margin-right: 0.3em;
}

#accessibility .current a {
	color: #555;
	text-decoration: none;
}

#small { font-size: 18px; }
#large { font-size: 28px; }



