/* the styles and ids defined here are for example only, they can all be changed */
/* in particular, you give the ids of the chart, nav, popup, range and form to initChart (see below) */

/* "chart" must set width and height */
#chart {
	width: 590px;
	height: 300px;
	background: #ffffff;
	border: 1px solid #cecece;
	margin-bottom: 10px;
}

/* "nav" must set width and height */
#nav {
	width: 590px;
	height: 90px;
	background: #fffff;
	border: 1px solid #cecece;
	margin-bottom: 10px;
}

/* "range" may need to set width */
#range {
	width: 98.5%;
	background: #f7f7f7;
	border: 1px dashed #cecece;
	margin-bottom: 10px;
	text-align: center;
}

/* "popup" must set width */
/* the popup contains: the date/time as an H1, the legend as a TABLE, and news items as As in Ps */
/* the styles below are for example only */
#popup {
	background: white;
	width: 20em;
	border: 1px solid #cecece;
	padding: .5em;
	text-align: left;
	display: none;
	filter: alpha(opacity=90);
	opacity: .9;
}
#popup h1 {
	text-align: center;
	font-size: 9pt;
	margin: 0px;
}
#popup table {
	padding-left: 1em;
	padding-right: 1em;
}
#popup td {
	padding: 0px;
}
#popup p {
	margin: .5em;
}
#form select {
	font-family: inherit;
	letter-spacing: normal;
	background-color: #fafafa;
	border: 1px solid #edefef;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	padding: 18px;
}