/* BODY */
html, body {
    width: 100%;
    margin: 0;
    background-color: #D7D7D7;
    font-family: sans-serif;
}

/* LINKS */
a:link {
    color: #006400;
    text-decoration: none;
}
a:visited {
    color: #006400;
}
a:active {
    color: #006400;
}
a:hover {
    color: #A0A0A0;
    text-decoration: underline;
}

/* HEADER */
#header {
    overflow: hidden;
    width: 100%;
    z-index: 10;
}
#banner {
    background-color: #D7D7D7;
    text-align: center;
    height: 40px;
    padding-top: 5px;
}

/* MENU */
.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: Arial;
    font-size: 16px;
    color: #CCCCCC;
    background: #002200;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 1;
    position: absolute;
    width: 101%; /* Added when the PROJECTED INCOME SECTION is displayed on site. Otherwise, width: 100%: */
    margin-left: -4px;
}
.fixed {
    position: fixed;
    top: 0;
    margin-left: -4px;
    width: 102%; /* Added when the PROJECTED INCOME SECTION is displayed on site. Otherwise, left blank */
}
.nav li {
    display: inline;
}
.nav a {
    display: inline-block;
    color: #CCCCCC;
    padding: 10px;
}
.nav a:hover {
    display: inline-block;
    color: #B4B4B4;
    text-decoration: underline;
}
.nav a:active {
    display: inline-block;
    color: #CCCCCC;
    text-decoration: none;
}
.nav a:visited {
    display: inline-block;
    color: #CCCCCC;
    text-decoration: none;
}

/* HEADER TAGS AND CONTENT */
p {
    font-size: 16px;
    font-family: arial;
}
p a:link {
    font-size: 16px;
}
h1 { 
   font-size: 26px;
   color: #006400;
   padding-top: 10px;
}
h2 {
   font-size: 24px;
   color: #006400;
}
h3 {
    font-size: 22px;
}
h4 {
    font-size: 20px;
    color:#006400;
}
h5 {
    font-size: 16px;
    color: #006400;
}
h6 {
    font-size: 12px;
    color: #006400;
}

/* CONTENT */
#container {
    width: 100%;
    margin: 0 auto;
    margin-top: 95px;
}
#mobile-container {
    margin: 0 auto;
    background: #fff;
    width: 100%;
}
#content-area {
    width: 70%;
}
#img_div {
    overflow: hidden;
    margin: 0 auto;
    width: 95%;
    background: #fff;
    padding: 15px;
    border: solid 5px #EAF8E7;
    margin-bottom: 25px;
    margin-left: 15px;
}
#img_div:after {
    content: ""; 
    display: block; 
    clear: both;
}
.sideright {
    width: 30%;
    float: right;
    padding: 10px;
}
* {
  box-sizing: border-box;
}

/* FOOTER */
#footer {
    border: groove 3px #007A00;
    background-color: #002200;
    position: relative;
    font-size: 15px;
    font-family: arial;
    color: #EEEEEE;
    text-align: center;
    padding: 20px;
    clear: both;
}
#footer a {
    display: inline-block;
    color: #CCCCCC;
    text-decoration: none;
}
#footer a:hover {
    display: inline-block;
    color: #B4B4B4;
    text-decoration: underline;
}
#footer a:active {
    display: inline-block;
    color: #CCCCCC;
    text-decoration: none;
}
#footer a:visited {
    display: inline-block;
    color: #CCCCCC;
    text-decoration: none;
}

/* IMAGES */
img {
    max-width: 98%;
    height: auto;
}
a:link img {
   opacity: 1.0;
   filter: alpha(opacity=100); /* For IE8 and earlier */
}
 a:hover img {
   opacity: 1;
   filter: alpha(opacity=70); /* For IE8 and earlier */
}

/* SCROLL BACK TO TOP */
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 45px; /* Place the button at the bottom of the page */
    right: 35px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #60A860; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
    background-color: #003000; /* Add a dark-grey background on hover */
}

/* SEARCH */
.article-container {
    padding: 20px;
}
.article-container a:link {
    text-decoration: underline;
}
.article-box {
    padding-bottom: 30px;
}

/* HORIZONTAL LINE */
hr {
    border: solid 1px #CBCBCB;
}

/* META, SHARE */
#meta {
    font-size: 12px;
    color: #ab0000;
}
#meta:a:link {
    font-size: 12px;
}
.share-button {
  position: fixed;
  left: 0px; 
  margin: 0px 0px 0px 14%;
  z-index: 0;
}
.share-button img {
  border: solid 3px #fff;
}
.share-button-mobile {
  position: fixed;
  left: 0px; 
  margin: 0px 0px 0px 0px;
  z-index: 0;
}
.share-button-mobile {
  border: solid 3px #fff;
}

/* INPUT BUTTONS */
.input-button {
    background: #006400;
    color: #fff;
    width: 70px;
    height: 30px;
    font-size: 16px;
    border: none;
}

/* POPUPS */
html, body {
    width: 100%;
    height: 100%;
}
.fade {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index:1001;
    -moz-opacity: 0.7;
    opacity:.30;
    filter: alpha(opacity30);
}
.light {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    margin-left: -150px;
    margin-top: -100px;
    padding: 10px;
    border: 2px solid #FFF;
    background: #CCC;
    z-index:1002;
    overflow:visible;
}

.read-more {width: auto; height: auto; font-size: 14px; padding: 3px; color: #fff; background: #60A860; border: solid 2px #007A00;}
.read-more a {color: #fff;}
.read-more:hover {background: #007A00; border: solid 2px #60A860;}

/* MOBILE */
.iPadHide {display:inline;} 
.iPadShow {display: none;}
.mobileHide {display: inline;}
.mobileShow {display: none;}

/* iPnone */
@media only screen 
  and (min-device-width : 50px) 
  and (max-device-width : 710px){
      .mobileHide {display: none;}
      .mobileShow {display: inline;}
}

/* iPad */
@media only screen 
  and (min-device-width : 710px) 
  and (max-device-width : 710px){
     .iPadHide {display: none;}
     .iPadShow {display: inline;}
      .mobileHide {display: none;}
      .mobileShow {display: inline;}
}
#mobile-container {
    padding: 15px;
}