/* CSS Document */

body {
	background-color: #FFFFFF;
	margin: 0px;
}

.top-container {
	background-color: #5461C8;
	font-size: 1.5em;
	color: white;
	padding: 5px;	
}

/* Style the header */
.header {
  padding: 10px 16px;
  background: #2F7ECE;
  color: #f1f1f1;
}

/* 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;
}
