/*
// silveracorn.nz MXUI website - Version MX_2.1.1 - 5-Jul-2020
// MX version 3086

 * default stylesheet for NOAA Style Reports ala beteljuice
 * overall container
*/
body {
    padding-top: 158px;
}

.noaa_rep_container {
    font-family: courier new, courier, monospace;
    width: 760px;
    margin: 0 auto;
}

.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: #000000; 
    text-decoration: none;
/*    background-color: white; */
    background-color: #DCDCDC;
}

/* container for nav buttons */
.noaa_rep_nav_container {
    font-family: lucida console, courier new, courier, monospace;
    font-size: 10pt;
    font-weight: bold;
/*    text-align: left; -- BCJKiwi redundant */ 
    line-height: 2.5;
    text-align: center;
}

/* the nav buttons themselves */
.noaa_rep_nav {
    text-align: left;
    border: 1px solid #000000;
    border-radius: 0 0 0 0;   /* 10px 10px 10px 10px; BCJKiwi NOT IE8 and below */
    padding: 2px 7px 2px 7px;
    color: #808080;
    background-color: #DDDDDD;
    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:  0 0 0 0;  /* 0px 10px 10px 0px; */ /* NOT IE8 and below */
    padding: 2px 5px 2px 5px;
    color: #808080;
    background-color: #DDDDDD;
    font-weight: bold;
}

/* expand - collapse button (single line) */
.noaa_expand {
    color: #000000;
    border-radius:  0 0 0 0;  /* 0px 10px 10px 0px; */ /* NOT IE8 and below */
    background-color: #FFFF00; /* Yellow #DDC81D; */ /* dirty yellow */
    cursor: pointer;
}

/* expand - collapse button (full menu) */
.noaa_expand_alt {
    color: #808080;
    border-radius:  0 0 0 0;  /* 0px 10px 10px 0px; */ /* NOT IE8 and below */
    background-color: #FFFF00; /* Yellow #DDC81D; */ /* dirty yellow */
    cursor: pointer;
    visibility: hidden; 
}

/* nav button hover color - NOT IE8 and below */
a.noaa_rep_nav:hover {
    box-shadow: 3px -3px #00FF00; /* Lime */ /*  #007EBF; */
}

/* nav button hover color - NOT IE8 and below */
a.noaa_rep_nav_alt:hover {
    box-shadow: 0 0 7px #007EBF;
}

/* highlight selected year or month button - NOT IE8 and below */
.noaa_selected {
    box-shadow: 3px -3px #DC143C; /* Crimson; */ /*#FF0000; /* red */
}

/* highlight selected year line */
.noaa_selected_line {
    background-color: #FFFF00; /* yellow */
}

/* container for the actual report file */
.noaa_rep_container pre {
    color: #000000;
    font-family: monospace;
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    border: 1px solid #000000;
    border-radius:  0 0 0 0;  /* 0px 10px 10px 0px; */ /* NOT IE8 and below */
    padding: 20px 0px 25px 20px;
    background-color: #DCDCDC; /* background-color: #f9f8EB; */
}

/* Instructions line */
.noaa_instructions {
    text-align: left;
}
