/* LINKS */
a:link {
    color: #00B050;
    text-decoration: none;
}
a:hover {
    color: #0050B0;
    text-decoration: underline;
}
a:visited {
    color: #00B050;
}
a:active {
    color: #00B050;
}

/* BODY */
body {
    background-color: #E2EAF5;
    overflow-x: hidden;
}

/* CONTENT AREA */
#container {
}
#content-area {
    background-color: #E2EAF5;
    margin-left: 360px;
}

/* LEFT SIDEBAR/HEADER */
.sideleft {
    float: left;
    position: fixed;
    border-right: solid 5px #00B050;
    border-left: solid 5px #00B050;
    padding: 10px 10px 10px 10px;
    background: #B8CCE4;
    font-size: 14px;
    font-family: arial;
    color: #000030;
    width: 300px;
    padding-bottom: 2000px;
    margin-top: -70px;
    margin-left: -9px;
}
.sideleft:after {
    position: absolute;
    width: 20px;
    height: 20px;
    border-top: solid 5px #00B050;
    border-right: solid 5px #00B050;
    top: 3%;
    right: -5%;
    margin-left: -25px;
    content: '';
    transform: rotate(45deg);
    background: #B8CCE4;
}

/* VERTICAL MENU-LEFT SIDEBAR/HEADER */
.vertical-menu {
    font-size: 14px;
    font-family: arial;
    padding-top: 25px;
    padding-left: 20px;
}

.vertical-menu a {
    background-color: #B8CCE4;
    color: #00B050;
    display: block;
    padding: 5px;
    text-decoration: none;
}

.vertical-menu a:hover {
    background-color: #B8CCE4;
    color: #0050B0;
}

.vertical-menu a.active {
    background-color: #B8CCE4;
    color: #00B050;
}

.vertical-menu a.visited {
    background-color: #B8CCE4;
    color: #00B050;
}

/* FOOTER */
#footer {
    text-align: center;
    font-size: 12px;
    padding-top: 20px;
}

/* HEADER AREA-SOCIAL MEDIA ICONS */
#header {
    text-align: left;
    margin-left: 305px;
}

/* HEADER TAGS AND CONTENT */
p {
    font-size: 18px;
    margin-right: 50px;
    margin-left: 50px;
    padding-bottom: 20px;
    
}
h1 { 
   font-size: 14px;
   color: #002060;
   text-align: center;
}
h2 {
   font-size: 25px;
   color: #002C14;
   text-align: center;
   padding-top: 40px;
}
h3 {
    font-size: 22px;
    color:#002C14;
    text-align: center;
}
h4 {
    font-size: 18px;
    color:#002C14;
    text-align: center;
}
h5 {
    font-size: 16px;
    color: #002C14;
    margin-left: 50px;
}
h6 {
    font-size: 16px;
    color: #002C14;
    margin-left: 50px;
}

/* HORIZONTAL LINE */
hr {
    border: solid 2px #B8CCE4;
}

/* RESPONSIVE IMAGES */
img {
    max-width: 98%;
}

/* IMAGE DIVISION */
#img_div {
    width: 80%;
    background: #fff;
    padding: 15px;
    margin: 0 auto;
    border: solid 4px #B8CCE4;
    margin-bottom: 25px;
}
#img_div:after {
    content: ""; 
    display: block; 
    clear: both;
}

/* 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: 5px groove #ececec;
    background: #CCC;
    z-index:1002;
    overflow:visible;
}

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

  /* IPAD */
  @media only screen 
    and (min-device-width : 710px) 
    and (max-device-width : 1215px){
        .nav {width: 1280px;}
        #banner {width: 1280px; margin-left: 0; margin-right: 0;}
        p a:link {font-size: 15px;}
        #footer {width: 1280px;}
       .iPadHide {display: none;}
       .iPadShow {display: inline;}
  } 

  /* IPHONE */
  @media only screen
    and (min-device-width : 50px)
    and (max-device-width : 709px){
        #banner {background: none; padding-bottom: 0;  margin-top: 0;}
        .mobileHide {display: none;}
        .mobileShow {display: inline;}
  }