/* override browser default */
html,
body {
  margin: auto;
  
}
/* use viewport-relative units to cover page fully */
body, h1, h2, h3, h4, h5, h6, p {
  height: 100%;
  width: 100%;
  font-family: Tahoma, "Trebuchet MS", sans-serif;
}
/* include border and padding in element width and height */
* {
  box-sizing: border-box;
}
/* center text */
.center {
  text-align: center;
}
.centerContainer {
  margin: auto;
  width: 70%;
  padding: 10px;
}
/* navigation */
nav {
    background-color: #DFDFDF;
    z-index: 10000;
	position: fixed;
    top: 10px;
    left: 10px;
	width: 1780px;
}
.navList {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
}
.navListItem {
    float: left;
}
.navListItem a {
	text-decoration: none;
    padding-top: 14px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    display: block;
	color: #878787
}
.navListItem a:hover {
	color: #000000;
	background-color: aqua;
}
.navListItem a:active {
	color: #5B0809;
}
/* header */
.headercontainer {
  height:auto;
  max-width: 1800px;
  margin-top: 50px;
  padding: 10px;
}
/* body */
.mainbodycontainer {
  background-color: #5a5a5a;
  height: auto;
  max-width: 1780px;
  margin: 100px;
  display: block;
  margin: 10px;
  padding: 20px;
}
/* manuals */
.manualsContainer{
  
  margin: auto;
  width: 100%;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}
brand {
    position: relative;
    top: 0px;
    left: 0px;
    max-width: 1800px;
}
.brandList {
    margin: 0;
    padding: 0;
	list-style-type: none;
}
.brandListItem {
    float: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    overflow: hidden;
}
.brandListItem a {
	text-decoration: none;
	padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.brandListItem a:hover {
	color: #000000;
	background-color: aqua;
}
.brandListItem a:active {
	background-color: #5B0809;
}
/* model */
model {
    position: relative;
    top: 0px;
    left: 0px;
    max-width: 1800px;
}
.modelList {
    margin: 0;
    padding: 0;
	list-style-type: none;
}
.modelListItem {
    float: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    overflow: hidden;
}
.modelListItem a {
	text-decoration: none;
	padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.modelListItem a:hover {
	color: #000000;
	background-color: aqua;
}
.modelListItem a:active {
	background-color: #5B0809;
}
/* tutorials */
tutorials {
    position: relative;
    top: 0px;
    left: 0px;
    max-width: 1800px;
}
.tutorialsContainer{
  width: 100%;
  margin: auto;
  display: inline-block;
  padding-left: 100px;  
}

.tutorialsList {
    margin: 0;
    padding: 0;
	list-style-type: none;
}
.tutorialsListItem {
    float: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    overflow: hidden;
}
.tutorialsListItem a {
	text-decoration: none;
	padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.tutorialsListItem a:hover {
	color: #000000;
	background-color: aqua;
}
.tutorialsListItem a:active {
	background-color: #5B0809;
}
/* slideshow */
.slideshowContainer{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
  width: 70%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-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);
}

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

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px 2px 16px;
  color: white;
}

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

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}
/* contact */
 /* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.containerContact {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
} 
/* myCameras */
.image-container{
  width: 100%;
  margin: auto;
  display: inline-block;
  padding-left: 10px;  
}

.image_list {
    margin: 0;
    padding: 0;
	list-style-type: none;
}
.image_list_item {
    float: left;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    overflow: hidden;
}
.image_list_item a {
	text-decoration: none;
	padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.image_list_item a:hover {
	color: #000000;
	background-color: aqua;
}
.image_list_item a:active {
	background-color: #5B0809;
}


/* donate */
.donatecontainer {
  background-color: #BFBFBF;
  
  height: auto;
  display: block;
  margin: 10px;
  max-width: 1780px;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.form {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 8%;
  padding-right: 10px;
  padding-left: 10px;
}
#btn_p {
  width: 100px;
}
/* footer */
.footercontainer {
  height: auto;
  max-width: 1800px;
  padding: 10px;
}