/*does the Year container*/
:root {
    --year_FontColor: #020242;
}
.year_level_0_container {
    overflow: auto;
    height: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
    -webkit-appearance: textfield;
}

.year_HierarchyConatiner {
    /*border: 1px solid red;*/
    padding-top: 10px;
    padding-bottom: 10px;
    font: bold 16px Arial, Helvetica, sans-serif;
    color: var(--year_FontColor);
    text-align: center; /*This centers the divs within it*/
}

.year_Hierarchy {
    display: inline-block; /*This places the div in a row*/
}

.year_HierarchyMake a, .year_HierarchyLine a {
    text-decoration: underline;
    /*border: 1px solid blue;*/
    cursor: pointer; /*Mouse becomes hand when hovering*/
    color: var(--year_FontColor);
}

.year_level_1_container {
    /*	border: 2px solid green;*/
    position: relative;
    width: 99%;
    overflow: auto;
    display: block;
}

.year_level_2_container {
    /*Need width and margin set to center the div within*/
    /*Can be max-width but this is handled in the js file so all
    control for width is done there. JS overrides CSS. Once you make a JS
    change, CSS cannot change it, even in media queries
    Because I want these centered and I have no idea how many columns there
    could be, I had to handle resizing in javaScript for this div*/
    width: 680px; /*Need to set to a width to get to center*/
    margin: 0 auto; /*This centers everything in it*/
    padding: 0;
    overflow: auto;
    display: block;
}

.year_main_container {
    /*	border: 1px solid black;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.year_container {
    align-self: flex-start;
    /*align-self: auto;*/
    margin: 10px;
    min-width: 200px;
    max-width: 200px;
    border: 2px solid #e0e9f5;
    border-radius: 10px;
    font: bold 14px Arial, Helvetica, sans-serif;
    color: var(--year_FontColor);
    text-align: center;
    cursor: pointer;

}
.year_container a{
    text-decoration: none;
    color: var(--year_FontColor);
}

.year_Name {
    padding: 5px;
    /*background-color: #e0e9f5;*/
    border-bottom: 1px solid #e0e9f5;
    font: bold 16px Arial, Helvetica, sans-serif;
}

.year_Name a {
    text-decoration: none;
    color: var(--year_FontColor);
}

.year_Name:hover {
    background-color: #e0e9f5;
}
@media screen and (max-width: 700px) {
    #mnHLSM_MenuBar_Items_ContactUs{
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .year_container {
        /*Have to reset the min/max setings */
        min-width: initial;
        max-width: initial;
        width: 93%;
    }
}


