/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


body {
    font-family: 'Inconsolata', Monaco, "Lucida Console", Consolas, "Courier New";
}
#main-wrapper {
  width: 720px;
	margin: 10px auto;
}
.clr { clear: both; }


.note {
	width: 495px;
	position: absolute;
	top: 0px;
	right: 20px;
	
    font-family: "Mercury SSm A", "Mercury SSm B";
    font-style: italic;
    font-weight: 400;
	font-size: 14px;
	line-height: 1.4em;
	
	background: #fff;
	padding: 0 0 7px 10px;
}
h1 {
	font-family: 'Inconsolata', Monaco, "Lucida Console", Consolas, "Courier New";
	font-size: 24px;
	font-style: normal;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: center;
}
.note p {
	margin-bottom: 15px;
	background: #fff;
}
.centered {
	text-align: center;
	color: #999;
}

/* Controls
============================ */

#buttons {
	margin: 0 auto;
	width: 270px;
}

.button {
	width: 68px;
	padding: 6px 6px;
	margin-right: 10px;
	cursor: pointer;
	text-align: center;
	font-size: 16px;
	border: 1px solid #e0e0e0;
	float: left;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.button:hover {
	background: #e0e0e0;
}
.button.current {
	background: #000;
	color: #fff;
}



/* Chart
============================ */



svg {
  font: 14px 'Inconsolata', Monaco, "Lucida Console", Consolas, "Courier New";
}

text.descrip tspan {
    font-size: 1em;
}

.axis text {
	font-size: 14px;
}
.axis path,
.axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

.x.axis path {
  display: none;
}
.y.axis path {
  display: none;
}
.y.axis line {
	stroke: #e0e0e0;
}
.baseline line {
    stroke: #000;
    stroke-width: 2px;
}
#older.area {
  fill: #6DC124;
}
#younger.area {
	fill: #CE4070;
}


/* Annotation
============================ */

.catlabel {
	font-size: 24px;
	text-anchor: middle;
	fill: #fff;
}
.overlay {
  fill: none;
  pointer-events: all;
}
.focus line {
	stroke: #000;
	stroke-width: .7px;
}
.focus text.agevalue {
	fill: #ccc;
}





