@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
body{
  padding: 1em; margin:0;
  font-family: 'Open Sans';
}
.sticky{
  position: fixed;
  top: 0;
  width:100%;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  margin-left: -0.675em;
}

header {
  background-color:#e1f1f5;
	padding:0.1em;
	text-align:center;
	border-top-right-radius: 1em;
	border-top-left-radius:1em;
	transition: 0.2s;
  width: 100%;
  transition: 0.2s;
  height: 4em;
  margin:auto;
}


.sticky + .content {
  padding-top: 102px;
}
header h1{
	color:white;
	text-shadow: 2px 2px 2px #000000;
}
footer{
	background-color:#e1f1f5;
	text-align:center;
	padding:10px;
	font-size:12px;
	border-bottom-right-radius: 1em;
	border-bottom-left-radius:1em;
}
h2,h3{
	color:#0d89e0;
}

/************************
* menu is not used. If not used main should be 80% width
* else should not be more than 60%
*************************/
.menu {
  float: left;
  width: 20%;
}
.menuitem {
  padding: 8px;
  margin-top: 7px;
  border-bottom: 1px solid #f1f1f1;
}
.main {
  float: left;
  width: 80%;
  padding: 0 20px;
  overflow: hidden;
}
.right {
  float: left;
  width: 20%;
  padding: 10px 15px;
  background-color:#f0fafc;
}

@media only screen and (max-width:800px) {
  /* For tablets: */
  .main {
    width: 100%;/* with menu it is 80% */
    padding: 0;
  }
  .right {
    width: 100%;
  }
}
@media only screen and (max-width:500px) {
  /* For mobile phones: */
  .menu, .main, .right {
    width: 100%;
  }
 }

 @media only screen and (min-width:1440px) {
  /* For Desktops: the h1 is in the second div*/
  header>div>div:nth-child(2){
    padding-top: 1em;
  }
 }
 
 @media only screen and (max-width:1024px) {
  header h1{
    margin-top:0 !important;
  }
 }
 
