@media (min-width: 1921px){

    #outer-container { width: 100%; position: absolute; display: block; background-color: #000; /*Banding on devices outside of explicitly supported resolutions*/ }

                #main-container{
                    width: 1920px;
                    display: block;
                    margin: 0 auto;
                    background-color: black; /*Mainly for the background colour of the footer*/
                }

                nav{
                    width: auto;
                    height: 179px;
                    background-color: black;
                    text-align: center;
                    z-index: 2;
                }

                #toolbarimagecircle{
                    float: left;
                    width: 328px;
                    height: 328px;
                    background-color: black;
                    border-radius: 50%;
                    z-index: 2;
                }

                #toolbarimagecircle-image{	/*The actual image in the header is loaded in CSS to separate from HTML*/
                    width: 226px;
                    height: 216px;
                    position: relative;
                    top: 45px;
                    left: 48px;
                    z-index: 2;
                    background-image: url("images/1920x1080/logonav.png");
                    background-size: 226px 216px;
                }

                nav ul{
                    float: right;
                    position: relative;
                    top: 45px;
                    padding-right: 40px;
                }

                nav li{
                    display: inline-block;
                    font-size: 2.2em;
                    list-style: none;
                    vertical-align: middle;
                    padding-right: 40px;
                }

                nav li a{
                    text-decoration: none;
                    color: white;
                }

                nav li a:hover{
                    color: #c00022!important;
                }
}
/*End Nav styling*/