/* Large desktop (PC) */
@media (min-width: 1200px) {

    nav#menu        { position: fixed; top: 65px; }	
    header          { position: fixed; z-index: 1000; }
    section#content { margin-top: 65px; padding-top: 30px; }
	
}

/* Portrait tablets and medium desktops (tablet landscape) */
@media (min-width: 992px) and (max-width: 1199px) {
	 
    nav#menu        { position: fixed; top: 65px; }	
    header          { position: fixed; }
    section#content { margin-top: 65px; padding-top: 30px; }
	
}

/* Portrait tablet to landscape and desktop (tablet portrait) */
@media (min-width: 768px) and (max-width: 991px) {
	                  
	
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
    
    
}

/* Landscape phones and down (phone portrait & landscape) */
@media (max-width: 480px) {
	
}