/*
	Title: StyleMap v2 CSS
	Author: Scott Jehl, http://www.scottjehl.com
	Date: May 2007
	notes: this script will add classes and an inline width to the sitemap for centering
	USAGE: Free to use, please do not remove this top credits area.
--------------------------------------------------------------------------------------------------------*/
body {
	background: #fff;
	font-family: Verdana, "Trebuchet MS", sans-serif;
}
body.hasJS {
	font-size: 62.5%;
}
p#noJS {
	padding: .5em;
	font-size: .8em;
	border: 1px dotted #666;
	color: red;
}

/*
from here down, styles are scoped within body.hasJS to allow for styling differently for JS-enabled users.
*/
body.hasJS p#noJS {
	display: none;
}
body.hasJS div#contain {
	width: 100em;
	background: transparent;
}
body.hasJS ul#sitemap {
	float: none;
	margin: 0 auto;
}
body.hasJS ul {
	clear: left;
	margin: 2em 0 0 0;
	padding: 0;
	background: #fff;
}
body.hasJS ul ul {
	border-top: 1px solid #000;
	width: auto;
}
body.hasJS ul.solo {
	border-top: 0;
}
body.hasJS li {
	float: left;
	list-style: none;
	position: relative;
}
body.hasJS li li {
	margin: -1px 0 0 0;
}
body.hasJS div {
	background: url(../images/vLine.gif) repeat-y 50% 50%;
	padding: 2em 2px 0;
	margin: 0 0.2em -2em;
}
body.hasJS div.section {
	padding: 2em 5px 2em 5px;
}
body.hasJS div.first {
	background: url(../images/first.gif) 50% repeat-y;
	margin-left: 0;
}
body.hasJS div.last {
	background: url(../images/last.gif) 50% repeat-y;
	margin-right: 0;
}
body.hasJS div.root {
	padding-top: 0;
}
body.hasJS a { display: block; background: #fb4731; border: solid 1px #000; padding: 0.2em; color: white; text-decoration: none; margin: 0 auto; width: 128px; line-height: 2em; text-align: center; font-size: 1.2em; height: 96px; }
body.hasJS a:hover {
	background: black;
}
/*IE 6 (when comma-separated, IE6 didn't work, so these are duped for IE7)*/
*html body.hasJS {text-align: center;}
*html body.hasJS a {margin: 0; position: relative;}
/*IE 7*/
*:first-child+html body.hasJS {text-align: center;}
*:first-child+html body.hasJS a {margin: 0; position: relative;}