﻿


.NiceBoxSingle {
    float: right;
    border: 1px solid darkgray;
    padding: 10px;
    color: darkgray;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid darkgray;
}

    .NiceBoxSingle:hover {
        background: darkgray;
        color: white;
    }

    .NiceBoxSingle a {
        color: inherit;
    }


.NiceBoxMulti {
    color: darkgray;
    text-decoration: none;
    display: inline-block;
}
    .NiceBoxMulti .NoHover {
        background: inherit;
        color: inherit;
    }

    .NiceBoxMulti .Left {
        float: left;
        border-radius: 5px 0px 0px 5px;
        border: 1px solid darkgray;
        padding: 10px;
        color: inherit;
    }

        .NiceBoxMulti .Left:hover {
            background: darkgray;
            color: white;
        }

        .NiceBoxMulti .Left a {
            color: inherit;
        }

            .NiceBoxMulti .Left a:hover {
                background: darkgray;
                color: white;
            }

    .NiceBoxMulti .Right {
        float: left;
        border-radius: 0px 5px 5px 0px;
        border: 1px solid darkgray;
        padding: 10px;
        color: inherit;
    }

        .NiceBoxMulti .Right:hover {
            background: darkgray;
            color: white;
        }

        .NiceBoxMulti .Right a {
            color: inherit;
        }

            .NiceBoxMulti .Right a:hover {
                background: darkgray;
                color: white;
            }



/*Mobile Phones*/
.PadTop200IfNotiPhoneHorizontal {
            padding: 0px;
        }

/*Larger Devices*/
@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .PadTop200IfNotiPhoneHorizontal {
        padding: 200px 0px 0px 0px;
    }
}



@media screen and (max-width: 1024px) and (orientation: landscape) {
    .hiddenOniPhone {
        display: none;
    }
}




/*Main Page Logo*/
.centerParent {
    width: 99%;
    height: auto;
    padding: 0;
    margin: 0;
}

.centered3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    padding: 0;
    margin: 0;
    /*border: 1px dotted green;*/
}
@media screen and (orientation: landscape) {
    .centerParent {
        width: auto;
        height: 75%;
    }

    .centered3 {
        height: 100%;
        width: auto;
        /*border: 1px dotted blue;*/
    }
}





.expandBar {
    width: 50px;
}

.expandBarExpanded {
    width: 40px;
}

    .expandBarExpanded .collapsedMenu {
        visibility: hidden;
    }

.collapsedMenu {
    position: relative;
    left: -50px;
    top: 20px;
}