@media (min-width: 1367px){

				/*End of font specification*/

				/*Nav styling 1366px wide*/

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

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

				nav{
					width: auto;
					height: 127px; /*CHANGED*/
					background-color: black;
					text-align: center;
					z-index: 2;
				}

				#toolbarimagecircle{
					float: left;
					width: 231px; /*CHANGED*/
					height: 231px; /*CHANGED*/
					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: 160px; /*CHANGED*/
					height: 150px; /*CHANGED*/
					position: relative;
					top: 30px; /*CHANGED*/
					left: 35px; /*CHANGED*/
					z-index: 2;
					background-image: url("images/1920x1080/logonav.png");
					background-size: 160px 150px; /*CHANGED*/
				}

				nav ul{
					float: right;
					position: relative;
					top: 30px; /*CHANGED*/
					padding-right: 30px; /*CHANGED*/
				}

				nav li{
					display: inline-block;
					font-size: 1.6em; /*CHANGED*/
					list-style: none;
					vertical-align: middle;
					padding-right: 30px; /*CHANGED*/
				}

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

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