

body 
{ 
    margin:0; 
    padding:0; 
    width:100%; 
    color:#5f5f5f; 
    font:normal 14px/1.8em Arial, Helvetica, sans-serif;
}


.fbg_resize, .footer_resize
{
    margin:0 auto; 
    padding:0 40px; 
    width: 75%;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
}


span.a {
  display: inline; /* the default for span */
  width: 100px;
  height: 100px;
  padding: 4px;
  margin:2px;
  border-radius: 4px;
  border: 2px solid black;  
  background-color: gold; 
}


/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

.short_intro{
	box-sizing: border-box;
	color: #333;
	font:normal 16px/1.8em Arial, Helvetica, sans-serif;
	padding-top: 40px;
	padding-right: 40px;
	float: right;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
}

.center {
  padding-bottom:5px;
  padding-right:20px;
}

.sidenav {
    height: auto; /* Full-height: remove this if you want "auto" height */
    width: 14%; /* Set the width of the sidebar */
    top: 500; /* Stay at the top */
    left: 20;
    background-color: #ddd; /* Black */
    display: block;
    float:left;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 6px;
  margin: 10px 20px 0px 0px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}
.mySlides {display: none}
img {vertical-align: middle;
}

.head{
	text-align: center;
	margin-bottom: 32px;

}
.head h2 { margin:0; 
	padding:16px 0 0 0; 
	font:bold 24px/1.5em Arial, Helvetica, sans-serif; 
	color:#333; }

.hbd {
	background:url(../images/hbg_bg.jpg) repeat-x top; 
	margin-bottom: 32px;
	width: 100%;
	height: 340px;
}

.hbd_m {
	width: auto;
	height: 310px;
    position: relative;
	left: 10%;
}

/* Slideshow container */
.slideshow-container {
    width: 320px;
    height: 240px;
    position: relative;
    margin-top: 30px;
    float: left;
}

.slideshow-container img {
    width: 100%; 
    height: 100%;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}


/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}


@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.btn_dwnld {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 12px 30px;
  margin: 20px 30px 20px 30px;
  cursor: pointer;
  font-size: 20px;
}

.btn_dwnld:hover {
  background-color: #82e0aa ;
} 

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}