/* MZ Styles */
html, body {
	font-size: 16px;
    height: 100%;
    font-family: "Verdana", Geneva, sans-serif;
    line-height: 1.4;
    color: #212529;
}

h1 {
	font-size: 1.8rem; 
	font-weight: bold;
    font-variant: small-caps;
	
}
h2 {
	padding-top: 1em;
	font-size: 1.3rem;
	font-weight: bold;
	color: #333333;		
}
h3 {
	padding-top: 1.2em; 
	font-size: 1.1rem;
	font-weight: bold;
	color: #333333;		
}
h4 {
	padding-top: 1.1em; 
	font-size: 1.1rem;
	font-weight: bold;
	color: #333333;		
}


/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {

  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
   box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
   border-bottom: 1px dashed #ffffff;
   animation-duration: 4s;
   transition-timing-function: ease;
   transition: 1s;
}


.no-stick img {
    max-height: 80px;
	margin: 5px;
	animation-duration: 4s;
   transition-timing-function: ease;
   transition: 1s;
}


.sticky img {
  -webkit-transition: max-height 1s; 
  -moz-transition: max-height 1s; 
  -ms-transition: max-height 1s; 
  -o-transition: max-height 1s; 
  transition: max-height 1s;  
  	max-height: 50px;
}
.sticky .invis {
    transition-timing-function: ease-in;
    animation-duration: 4s;
    transition: 1s;   
 	display: visible;
	}


.sticky .invis {
	display: none;
  }
.no-stick  .vis {
    display: none;
}
.sticky .vis {
    display: visible;
    animation-duration: 4s;
    transition: 1s;
	transition-timing-function: ease-in;
 }
.no-stick .vis {display: none; }
.no-stick .infobox {color: white;padding: 5px;   font-size: 1.1em; font-weight: bold; background-color: #006699;}
.sticky .infobox {color: white;padding: 1px;  font-size: 0.9em; }

.no-stick { /* NAVBAR NOSTICK */
    animation-duration: 4s;
    top: 0px;
    z-index: 9966 !important;  	
    position: fixed;
    background-color: white;	
}


/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}


a.white:link {color: White; font-size: 1.0rem; font-weight: 450;}
a.white:visited {color: White;}
a.white:hover {color: #cccccc; transition: 0.31s; text-decoration: none; }

a.grey:link {color: #444444; font-size: 1.0rem; font-weight: bold;}
a.grey:visited {color: #444444; font-weight: bold; }
a.grey:hover {color: #cccccc; transition: 0.31s; text-decoration: none;  font-weight: bold; }

a:link {color: #222222; font-size: 1.0em; font-weight: bold;}
a:visited {color: #222222;}
a:hover {color: #cccccc; transition: 0.31s; text-decoration: none; }



/* FONTS */
.white {color: white; }


ul.toplist {
 list-style-type: none;
 list-style-image: url(/img/icons/thumbupg.png); 
 text-align: left;
 margin: 0px auto 0px 30px;
 list-style-position: outside;
}

ul.toplist-green {
 list-style-type: circle;
 }

ul.infolist {
 list-style-type: none;
 list-style-image: url(/img/icons/eye.png); 
 text-align: left;
 margin: 0px auto 0px 30px;
 list-style-position: outside;
}


#footer {
	background-color: #006699;
	color: white;
	border-top: 2px double #333333;
	
}
.is-hidden {visibility: hidden; }


.parallax {
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}