/* Containing block for the entire report */
#report {
	/* The background color of the report contents can be changed below */
	background: #e0f0ff;
	width: 35em;
	border-style: ridge;
	padding: 1em;
	margin-left: auto;
	margin-right: auto;
}

/* Currently not used by anything.  It basically works the same was <b> at the moment, though. */
#report em {
	font-weight: bold;
	font-style: normal;
}

/* Report heading */
#report h1 {
	color: #FD8304; /* Font color for date heading */
	font-family: sans-serif;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-color: black;
	margin-top: 0px;
	padding-bottom: 2px;
	margin-bottom: 0.5em;
}

/* Sub-section headings */
#report h2 {
	color: #498eaf; /* Font color for Tide / Buoy / Temp / etc... headings */
	font-family: sans-serif;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 18px;
}

/* Paragraphs within the report */
#report p {
	margin-top: 0px;
}

/* For the tables that hold the tide / temp / buoy data */
#report table {
	/* Nothing here.  Weee!  */
}
#report table th {
	/* Left align the table labels */
	text-align: left;	
}

/* Attributes common for various parts of the report */
#report #tide, #report #temperature, #report #buoys {
	float: left;
	clear: none;
	margin-right: 35px;
}

/*  Attributes for the description field */
#report #description {
	padding-top: 1em;
	clear: both;
}
