

body {
  background-color:	#FFF5EE;
  background-image: linear-gradient(rgba(143, 188, 143,.3), 1px, transparent 1px),
  linear-gradient(90deg, rgba(143, 188, 143,.3), 1px, transparent 1px),
  linear-gradient(rgba(143, 188, 143,.3) 1px, transparent 1px),
  linear-gradient(90deg, rgba(143, 188, 143,.3) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position:-1px -1px, -1px -1px, -1px -1px, -1px -1px;
  color: #000000;
  font-family: sans-serif;
  font-size: 0.9em;
  }
  
center {
  text-align: center;
  }
  
/*Contains everything*/
.wrapper {
  width: 1150px;
  background: none;
  top: 0;
  margin: 0 auto;
  }
  
/*Contains main and sidebar divs*/
.wrapper-2 {
  position: relative;
}
  
/*Header and footer images*/
.header {
  background:none;
  height: 50px;
  }
  
.footer {
  height: 0px;
  }
  
.header img {
  border-top: 0px;
  }
  
  
/*Big title at the top of the page.*/  
.title {
  padding: 15px 10px 10px 20px;
  color: #0C4940;
  }
  
/*Override default margins/padding for headings.*/
.title h1, .title h2, .title h3 {
  padding:0;
  margin: 0;
  }

/*Container for top row of links.*/
.links {
  text-align: center;
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 5px;
  }
  
/*Div style for individual links.*/
.link {
  text-align: center;
  display: inline-block;
  list-style-type: none;
  float: none;
  font-weight: bold;
  font-size: 1.5em;
  padding: 3px;
  margin-right: 10px;
  margin-left: 10px;
  color: #000000;
  text-decoration: none;
}
    /* unvisited link */
a:link {
  color: #006666;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #006666;
  text-decoration: none;
}

/*These three classes are just for defining the boundaries and size of the main and sidebar columns. Most fancy styling goes in the 'box' class.*/
.main, .sidebar-right {
  display: inline-block;
  }
  
.sidebar-left, .sidebar-right {
  width: 200px;
  position: absolute;
  top: 0;
  }

.sidebar-left {
  margin-left: 10px;
  }
  
.main {
  margin-left: 220px;
  width: 710px;
  }
  
.sidebar-right {
  margin-right: 10px;
  margin-left: 10px;
  }
  
/*Box used for individual sections in the sidebar, center column, etc.*/
.box {  
  padding: 5px 10px 0px 10px;
  background: #ffffff;
  color: #000000;
  border: 4px double #0C4940;
  border-radius: 8px;
  margin: 10px 0px 15px 0px;
  }
  
/*Prevent overflow of large images in main text areas.*/
.box img {
  max-width: 100%;
  height: auto;
  }
  
.button {
    padding: 3px;
    text-decoration: none;
	  text-align: center;
    background-color: #8FBC8F;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    margin: 5px;
    cursor: pointer;
    }
    
.inner {
  
  }
  
/* For narrow screens. Makes the sidebars narrower, and makes width of the 
 * center/main div 50% of the viewport width.
 */
@media(max-width:1180px) {
  .wrapper {
    width: calc(440px + 50vw);
    }
  .main {
    width: 50vw;
    }
  }
  
@media(max-width:910px) {
  .wrapper {
    width: calc(360px + 52vw);
    }
  .sidebar-left, .sidebar-right {
    width: 160px;
    }
  .main {
    margin-left: 180px;
    width: 52vw;
    }
  }
  
/* Mobile compatibility. Puts everything into a standard vertical layout. */
@media(orientation:portrait) {
  .wrapper {
    width: 96vw;
    margin: 0 auto;
    padding:0;
    position: relative;
    }
  .wrapper-2 {
    width: 94vw;
    margin: 0 auto;
    padding:0;
    position: relative;
    }
  .sidebar-left, .main, .sidebar-right {
    position: relative;
    width: 92vw;
    margin: 0.25rem 1vw;
    }
  .sidebar-left, .sidebar-right {
    font-size: 0.95em;
    }
  }