/*PAGE */
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
 }
body, html {
	margin:auto;
    height: 100%;
    width: 100%;
    min-width: 200px;
    font: 1em/1.5 'Open Sans', sans-serif;
    color: #333;
}
.pageWrapper {
    margin:0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: min-content;
    background-color:#eee;
}
/*TEXT AND HEADINGS*/
.tinytext { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 9px;}
.smalltext { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 10px;}
.bluetext {font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 14px; color:#000033; font-weight:bold;}
.smallbluetext {font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 12px; color:#000033; font-weight:bold;}
.lineHeading {font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 18px; color:#4747BE; font-weight:bold; }
h1 {
    font-family: Times, Times New Roman, Georgia, serif;
    font-size: 2.6rem;
    margin-bottom: 0px;
}
h2 {
    font-size:1.8rem;
    color:#2A5190;
    font-weight:700;
    margin-bottom:0.5rem;
}
h4 {
    font-size:1.2rem;
    color:#2A5190;
    font-weight:700;
    margin-bottom:0.3rem;
}
h5 {
    font-size:2rem;
    color:#2A5190;
    font-weight:700;
    margin-bottom:0.3rem;
}
.divider {
    grid-column: 1/13;
    display:block;
    margin:auto;
    width:100%;
    max-width:1380px;  
}
#slogan {
   
}
/*HEADER */
.logo {
    grid-column: 1/4;
    grid-row-start: 1;
    padding-left: 10%;
    align-self: end;
    z-index: 9;
    background-color: #ffffff;
}
.heading {
    width: 100%;
    overflow:auto;
    position:relative;
    grid-column: 4/10;
    grid-row-start: 1;
    z-index: 9;
    background-color: #ffffff;
}
.heading h1 {
    text-align:center;
    
}
.headerPic {
    grid-column: 10/13;
    grid-row-start: 1;
    z-index: 9;
    padding-right: 10%;
    background-color: #ffffff;
}
/*MENU BAR */
.menuBar {
    height: 41px;
    grid-column: 1/-1;
    grid-row-start: 2;
    z-index: 9;
    background-color: #5d5d5d;
    background-image: linear-gradient(to bottom, #4e4e4e, #626262);
    color: #ffffff;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
    padding-left: 40px;   
}
.icons {
    float:right;
    margin-right:40px;
}
.dropdown-menu {
    float:left;
}
/* SLIDER  */
.slider {
    
    grid-column: 1/13;
    display:block;
    height:100%
    max-height:1000px;
    overflow:auto;
    padding: 10px 0px;
}
/* BLOCK HEADLINE  */
.block-headline {
    grid-column: 1/13;
    display:block;
    width:100%;
    background-color: #5d5d5d;
    background-image: linear-gradient(to bottom, #4e4e4e, #626262);
    color: #ffffff;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
}
.block-headline h1 {
    font-size:42pt;
    color: #eee;
    text-align:center;
}
/* ARTICLE  */
.art2 {
    grid-column: 1/13;
    display:flex;
    flex-wrap:nowrap;
    max-width:1400px;
    margin:auto;
}
.article-2L {
    flex:0 1 680px;
    padding: 10px 10px 10px 10px;
}
.article-2R {
    flex:0 3 680px;
    padding: 10px 10px 10px 10px;
}
.art1T {
    grid-column: 1/13;
    display:block;
    margin:auto;
    max-width:1380px;
    padding: 10px 10px 10px 10px;
}
.textBox {
    padding: 0 1em;
    max-width:1380px;
    margin: 0 auto;
    column-width: 18em;
    column-gap: 2em;
    column-rule: 1px solid #ccc;
}
.art4 {
    grid-column: 1/13;
    max-width:1400px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
}
.article {
    flex:0 1 25%;
    padding: 10px 10px 10px 10px;
}
/*  SLOGAN  */
.slogan { 
    grid-column: 1/13;
    display:block;
    width:100%;
    height:1000px;
    background:transparent;
}        
/* FOOTER  */
.footer {
    grid-column: 1/13;
    display:block;
    width:100%;
    height:100px;
    background-color: #5d5d5d;
    background-image: linear-gradient(to bottom, #4e4e4e, #626262);
    color: #ffffff;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
    padding: 1em;
}
/* PARALLAX BACKGROUND  */
.parallax {
grid-column: 1/13;
    display:block;
    width:100%;
    height:1500px;
  /* The image used */
  background-image: url("images/back2.jpg");

  /* Set a specific height */
  /*min-height: 500px; */

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* HEADER DYNAMICS */
@media (max-width: 990px){/* drop header font size to stop new line  */
    .heading h1 {
        font-size: 32px; 
    }
    .logo {
        grid-column: 1/3;
    }
    .heading {
        grid-column: 3/10;
    }
}
@media (max-width: 900px){/* drop headerPic  */
    .heading h1 {
        font-size: 28px; 
    }
    .logo {
        grid-column: 1/4;
    }
    .heading {
        grid-column: 4/13;
    }
    .headerPic {
        display: none;
    }
    .parallax img {
        display: none;
    }
}
@media (max-width: 600px){/* resize logo  */
    .heading h1 {
        font-size: 26px; 
    }
    .logo img {
        width: 100%;
    }
    .headerPic {
        display: none;
    }
}
/* ARTICLE DYNAMICS  */
@media screen and (max-width: 1000px) {
    .article {
        flex:50%;
    }
    h2 {
        font-size:1.4rem;
    }
    h3 {
        font-size:1.0rem;
    }
    
}
@media screen and (max-width: 640px) {
    .article {
        flex:100%;
    }
}
/* SLOGAN DYNAMICS  */
@media screen and (max-width: 1100px) {
    #slogan1 {
        font-size:2.6rem;
    }
}
@media screen and (max-width: 700px) {
    #slogan1 {
        font-size:2.0rem;
    }
}
/* 1060 to 700 is tablet mode  */
@media (max-width: 1060px){
       
       
}
@media (max-width: 950px){
            
}

@media (max-width: 700px){
           
}
@media (min-width: 768px){
    
}
@media (max-width: 670px){
    
}      
/* SLIDER  */
 /*jssor slider bullet skin 131 css*/
        .jssorb131 {position:absolute;}
        .jssorb131 .i {position:absolute;cursor:pointer;}
        .jssorb131 .i .b {fill:#000;fill-opacity:0.6;stroke:#fff;stroke-width:2000;stroke-miterlimit:10;stroke-opacity:0.7;}
        .jssorb131 .i:hover .b {fill:#fff;fill-opacity:.5;stroke:#000;stroke-width:2000;stroke-opacity:0.7;}
        .jssorb131 .iav .b {fill:#fff;stroke:#000;stroke-width:2000;fill-opacity:1;stroke-opacity:1;}
        .jssorb131 .i.idn {opacity:0.3;}

        /*jssor slider arrow skin 051 css*/
        .jssora051 {display:block;position:absolute;cursor:pointer;}
        .jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
        .jssora051:hover {opacity:.8;}
        .jssora051.jssora051dn {opacity:.5;}
        .jssora051.jssora051ds {opacity:.3;pointer-events:none;}


/* LIGHTBOX */
body.lb-disable-scrolling {
  overflow: hidden;
}
.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}
.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}
.lightbox a img {
  border: none;
}
.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}
.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(images/loading.gif) no-repeat;
}
.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.lb-container > .nav {
  left: 0;
}
.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}
.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}
.lb-data {
  padding: 0 4px;
  color: #ccc;
}
.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}
.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}
.lb-data .lb-caption a {
  color: #4ae;
}
.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}
.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
