body
{
	width: 100%;
	margin: 0 auto;
	font: 12px;
	font-family: "Lato", sans-serif;
}

h1
{
	font-size: 24px;
}

h2
{
	font-size: 18px;
	margin-top: 0;
}

a
{
	color: #333;
}

a:focus, a:hover
{
	text-decoration: none;
}

table
{
	width: 100%;
	margin-bottom: 0px;
	border-spacing: 0;
	border: 0px solid #FFF;
	border-radius: 0px;
}

table.center
{
    margin-left:auto; 
    margin-right:auto;
}

caption
{
	margin-bottom: 10px;
	font-size: 14px;
	color: #FFF;
	text-align: left;
}

th, td
{
	padding: 0 10px 0 0;
	text-align: center;
}

div
{
    resize: both;
    overflow: auto;
    box-sizing:border-box
}

.logo
{
	margin: 10px 0;
	padding: 20px 20px 20px 200px;
	border: 0px solid #FFF;
	background-position: center center;
	background-repeat: no-repeat;
}

.jglg
{
	background-image: url(Components/Logos/01/jglg_logo.gif);
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 12px 27px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.sidenav
{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #ccc;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.sidenav a
{
    padding: 11px 20px 11px 20px;
    text-decoration: none;
    font-size: 21px;
    color: #333366;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover, .offcanvas a:focus
{
    color: #f1f1f1;
    background-color: #4CAF50;
}

.sidenav .closebtn
{
    position: absolute;
    top: 0;
    right: 0px;
    font-size: 27px;
    margin-left: 0px;
    text-align: center;
    border-radius: 100%;
    padding: 0px 9px 0px 9px;
}

#main
{
    transition: margin-left .5s;
    padding: 16px;
}

@media screen and (max-height: 450px)
{
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


/* Slideshow container */
.slideshow-container
{
  position: relative;
  width: 100%;
  z-index: 0;
  margin: auto;
}

.mySlides
{
    display: none;
}

/* Next & previous buttons */
.prev, .next
{
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 27px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* 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: 17px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext
{
  color: #f2f2f2;
  font-size: 17px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot
{
  cursor:pointer;
  position: relative;
  top: -2px;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  color: #333366;
  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;
}

@-webkit-keyframes fade
{
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade
{
  from {opacity: .4} 
  to {opacity: 1}
}