@media (min-width: 1024px){

				/*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: 1024px; /*CHANGED*/
					display: block;
					margin: 0 auto;
					background-color: black; /*Mainly for the background colour of the footer*/
				}

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

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

				nav ul{
					display: block;
					text-align: right;
					float: right;
					position: relative;
					top: 17px; /*CHANGED*/
					padding-right: 30px; /*CHANGED*/
				}

				nav li{
					display: inline-block;
					width: auto;
					height: 30px;
					border: none;
					color: white;
					font-size: 1.25em; /*CHANGED*/
					list-style: none;
					vertical-align: middle;
					padding-right: 20px; /*CHANGED*/
				}

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

				nav li a:hover{
					color: #c00022!important;
				}

				nav label{
					display: none; /*Hide hamburger menu*/
				}
}
/*End Nav styling*/