body {
	overflow-y: scroll; /* Show vertical scrollbar */
	padding:0px;
	margin:0px;
}
h2 {
padding:0px;
margin:0px;
}
 /* Style the header */
.header {
  padding: 0px;
  background: #FFFFFF;
  color: #c0c0c0;
}

/* Page content */
.content {
  padding: 16px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 102px;
} 