

	/* default stylesheet for NOAA Style Reports ala beteljuice */
	/* overall container */
	.noaa_rep_container {
		font-family: sans-serif;
		width: 675px;
		margin: 0 auto;
		color: #000000;
		background-color: #808080;
	}

	body {
    background-color: #808080;
    }
	
	.noaa_rep_container a, .noaa_rep_container a:link, .noaa_rep_container a:visited, .noaa_rep_container a:hover, .noaa_rep_container a:active {
		color: #FFFFFF;
		text-decoration: none;
		background-color: #595959;
	}
	
	
	/* container for nav buttons */
	.noaa_rep_nav_container {
		font-family: sans-serif;
		font-size: 8pt;
		font-weight: bold;
		text-align: left;
		line-height: 2.2;
		text-align: center;
	}
	
	
	/* the nav buttons themselves */
	.noaa_rep_nav {
		text-align: left;
		border: 1px solid #000000;
		border-radius: 0px 0px 0px 0px; /* NOT IE8 and below */
		padding: 2px 5px 2px 5px;
		color: #808080;
		background-color: #595959;
		font-weight: bold;
	}
	
	/* modified year button when used with expand - collapse (same as above but 'flattened' left-hand side) */
	.noaa_rep_nav_alt {
		text-align: left;
		border: 1px solid #000000;
		border-radius: 0px 0px 0px 0px; /* NOT IE8 and below */
		padding: 2px 5px 2px 5px;
		color: #808080;
		background-color: #595959;
		font-weight: bold;
	}
	
	/* expand - collapse button (single line) */
	.noaa_expand {
		color: #000000;
		border-radius: 0px 0px 0px 0px; /* NOT IE8 and below */
		background-color: #595959; /* dirty yellow */
		cursor: pointer;
	}
	
	/* expand - collapse button (full menu) */
	.noaa_expand_alt {
		color: #808080;
		border-radius: 0px 0px 0px 0px; /* NOT IE8 and below */
		background-color:rgb(17, 17, 15); /* dirty yellow */
		cursor: pointer;
		visibility: hidden;
	}
	
	/* nav button hover color - NOT IE8 and below */
	a.noaa_rep_nav:hover {
		box-shadow: 0 0 7px #595959;
	}
	
	/* nav button hover color - NOT IE8 and below */
	a.noaa_rep_nav_alt:hover {
		box-shadow: 0 0 7px #595959;
	}
	
	/* highlight selected year or month button - NOT IE8 and below */
	.noaa_selected {
		box-shadow: 0 0 7px #595959; /* red */
	}
	
	/* highlight selected year line */
	.noaa_selected_line {
		background-color: #595959;
	}
	
	
	/* container for the actual report file */
	.noaa_rep_container pre {
		color: #FFFFFF;;
		font-family: monospace;
		font-size: 9pt;
		font-weight: normal;
		text-align: left;
		border: 1px solid #000000;
		border-radius: 0px 0px 0px 0px; /* NOT IE8 and below */
		padding: 20px 0px 25px 20px;
		background-color: #595959;
	}
	