
/* force scroll bar to show
to avoid content shifting when dynamic content displays scrollbar */
html {
  overflow-y: scroll;
}

/* Remove href link when printing page*/
a[href]::after {
    content: none !important;
}

body{
    background-image: url("../images/bg-bottom.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

#ticker_banner
{
    width: 100%;
    height: 150px;
    background-image: url('../images/gentlewave_notag.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.ticker_primary
{
    color: #0062A5;
    font-size: 100px;
}

.ticker_secondary
{
    color: #0062A5;
    font-size: 85px;
}

.ticker_tertiary
{
    color: #00A0DF;
    font-size: 65px;
}

.box
{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-family: Raleway;
}

.presentation_text_left
{
    text-align: left;
}

.presentation_text_right
{
    text-align: right;
}

.presentation_text_center
{
    text-align: center;
}

.presentation_header
{
    padding-top: 80px;
}

.presentation_content
{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-grow: 1;
}

.presentation_footer
{
    color: #777;
}

.grade_green
{
    background-color: #008000;
    color: #fff;
}

.grade_yellow
{
    background-color: #ffff00;
}

.grade_orange
{
    background-color: #ffa500;
    color: #fff;
}

.grade_red
{
    background-color: #ff0000;
    color: #fff;
}
.grade_cyan
{
    background-color:darkcyan;
    color: #fff;
}
.grade_goldenrod
{
    background-color:darkgoldenrod;
    color: #fff;
}
.grade_gray
{
    background-color:lightgrey;
    color: #fff;
}