@font-face {
  font-family: ModernSansLight;
  src: url(ModernSans-Light.otf);
}

body {
  margin: 0;
  font-family: ModernSansLight;
  font-size:18px;
}

#content-right {
  background-image: url("images/background-left.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom left;
}
#content-left {
  background-image: url("images/background-right.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom right;
}

h1 {
    font-family: ModernSansLight;
    font-size:60px;
    color: #4064ae;
}
h2 {
    font-family: ModernSansLight;
    font-size:40px;
    color: #4064ae;
}

.bluetext {color: #4064ae; font-weight: 600;}

/* unvisited link */
a:link {
  color: #4064ae;
  text-decoration: none;
  font-weight: 600;
}

/* visited link */
a:visited {
   color: #4064ae;
   text-decoration: none;
   font-weight: 600;
}


/* mouse over link */
a:hover {
   color: #4064ae;
   text-decoration: underline;
   font-weight: 600;
}

/* selected link */
a:active {
   color: #4064ae;
   text-decoration: none;
   font-weight: 600;
}


.navbar {
  overflow: hidden;
  background-color: #333;  
  background-image: url("images/nav-bg.png");
  position: fixed;
  bottom: 0;
  width: 100%;
}

.navbar #line {background-image: url("images/nav-bg-line.png");}

.navbar a {
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 0px 0px;
  text-decoration: none;
  font-family: ModernSansLight;
  font-size: 26px;
  height: 64px;
  line-height: 64px;
}

.navbar a:hover {
  background-color: #333;
  color: white;
}

.navbar a.active {
  background-color: #04AA6D;
  color: white;
}

.navbar .icon {
  display: none;
}


  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    text-align: center;
    display: block;
  }


  .navbar.responsive a {
    float: none;
    display: block;
    text-align: center;
  }

.divtext {background-color: #fff;}

.titlespan {background: #fff;padding: 7px;}

.button {
  background-color: #4064ae; /* Blue */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition-duration: 0.4s;
  cursor: pointer;
}
.button:hover {
  background-color: #555555;
  color: white;
}

/*greater than */
@media (min-width: 1300px) {
	#container {display: flex;}
	#leftdiv { flex: 0 0 40%; padding: 0px 35px 0px 100px;}
	#rightdiv { padding: 0px 70px 100px 35px;}
}

/*less than */
@media (max-width: 1299px) {
	#container {display: block;}
	#leftdiv { padding: 0px 35px 35px 35px;}
	#rightdiv { padding: 0px 35px 100px 35px;}
        .imgsize  {width: 100%;}

}



