body {
	background-color: #eee;
	font-family: Arial, Helvetica, sans-serif;
}

#intro {
	display: inline-block;
    position: relative;
    left: 20%;
    width: 60%;
	color: #999;
	font-size: 12pt;
	text-align: justify;
	margin-bottom: 10px;
}

#intro h1 {
	text-align: center;
	font-size: 18pt;
	color: #ddd;
}

#intro p {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 15px;
}

a {
    color: #fff;
    font-size: 11pt;
}

a:visited {
    color: #fff;
}

#container {
	display: inline-block;
    position: relative;
    left: 5%;
	width: 90%;
}

div.gallery {
	margin-bottom: 5px;
    background-color: #666;
    color: #fff;
    border-radius: 8px;
    opacity: 0.95;
}

div.gallery:hover {
    opacity: 1;
    background-color: #4C7F50;
}

div.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0px 0px;
}

div.desc {
    padding: 0px 3px 4px 3px;
    text-align: center;
    font-size: 12px;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 19.999%;
}

@media only screen and (max-width: 900px){
    .responsive {
        width: 24.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 700px){
    .responsive {
        width: 33.33333%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px){
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 300px){
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}


.input-controls {
  border: 0px solid #aaa;
  border-radius: 8px;
  display: inline-block;
  width: 69%;
  padding: 12px;
  margin: 20px 0px 0.5% 2px;
  position: relative;
  vertical-align: top;
  background: #666; /*#ffe6cc;*/
}

#visualize {
  width: 30%;
}

.cheader {
  font-size: 14pt;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  position: absolute;
  top: -22px;
  left: -5px;
  padding-left: 10px;
  padding-right: 10px;
}

h5 {
  font-size: 14pt;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #000;
  margin-bottom: 7px;
}

.info_left {
  float: left;
  display: inline-block;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 11pt;
  color: #fff;
}

.info_right {
  float: right;
  display: inline-block;
  position: relative;
  padding: 0px;
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 11pt;
  color: #f77;
  font-style: italic;
}

.info_right b {
  color: #4CAF50;
}



/* Customize the label (the container) */
.cboxcontainer {
  display: block;
  position: relative;
  float: left;
  padding-left: 17px;
  padding-right: 10px;
  margin-bottom: 5px;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.8;
}

/* Hide the browser's default checkbox */
.cboxcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 13px;
  width: 14px;
  background-color: #eee;
}

.cboxcontainer:hover {
  opacity: 1;
}

/* On mouse-over, add a grey background color */
.cboxcontainer:hover input ~ .checkmark {
  background-color: #eee;
}

/* When the checkbox is checked, add a blue background */
.cboxcontainer input:checked ~ .checkmark {
  background-color: #4CAF50;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cboxcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cboxcontainer .checkmark:after {
  left: 4px;
  top: 1px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


