* {
  box-sizing: border-box;
  list-style: none;
	margin: 0;
	padding: 0;
}

.column {
  float: left;
  padding: 20px;
  height: 500px;
}

.contain {
 margin: 25px;
}

.left {
  width: 20%;
}

.right {
  width: 25%;
}

.middle {
  width: 55%;
  background-color: rgba(0, 0, 0, .25);
  border-radius: 5px;
  border: 0px green solid;
}

.left .box {
  width: 100%;
  height: 100%;
   border-radius: 5px;
   padding: 10px;
  border: 0px green solid;
  background-color: rgba(0, 0, 0, .25);
}

.right .box {
  width: 100%;
  height: 100%;
  padding-left: 25px;
  border: 0px red solid;
  border-radius: 5px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, .25);
}

.middle .box {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  background-color: rgba(0, 0, 0, .25);
 
}

.middle .box img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footerP {
	/*background-color: skyblue;*/
	height: 150px;
	margin-top: 20px;
	padding: 0px 75px;
}

.footerP .box {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px grey solid;
}

.columnP1 {
  width: 35%;
  height:120px; /*testing*/
  padding: 5px;
  float: left;
  border: 1px dashed blue;
  border-radius: 5px;
}

.columnP2 {
  width: 25%;
  height:120px; /*testing*/
  padding: 5px;
  float: left;
  border: 1px dashed blue;
  border-radius: 5px;
}

.columnP3 {
  width: 15%;
  height:120px; /*testing*/
  padding: 5px;
  float: left;
  border: 1px dashed blue;
  border-radius: 5px;
}


/* Clear floats after the columns */
 .row:after {
  content: "";
  display: table;
  clear: both;
}

/*SEARCH BOX*/
#myInput {
  /*background-image: url('/css/searchicon.png');*/
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 16px;
  padding: 12px 20px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

#myTable {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
  font-size: 18px;
}

#myTable th, #myTable td {
  text-align: left;
  padding: 12px;
}

#myTable tr {
  border-bottom: 1px solid #ddd;
}

#myTable tr.header, #myTable tr:hover {
  background-color: #f1f1f1;
}

/* IMAGE VIEWER*/

.middle .box img {
	vertical-align: middle;
	max-width:100%;
	max-height: 460px;
}

.right .box img {
	vertical-align: middle;
	max-width:100%;
}							

/* ----------------------------------------------------------------------------------------- */
                               /* MOBILE SCALING (Resources) */
/* ----------------------------------------------------------------------------------------- */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

} 
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}

