 
  .stickyheader {
	position: fixed;
	top: 0px; /* WAS: -20px */
	background: purple;
	width: 100%; /* WAS: 100% */
	transition:all 0.0s linear;
	}


.stickyheader + .content {
	/*padding-top: 75px;  /*Should be dynamically set! */ 
	background: #fff;
	transition:all 0.0s linear; /* Placeholder */

}	

/*@media (max-width: 768px) {
.stickyheader + .content {
	padding-top: 75px; 
		}
}*/
	
		

