@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
  }
}

@keyframes zoom {
  from {
    transform: scale(1,1);
  }
  to {
    transform: scale(1,1);
  }
}

.carousel-inner .item > img {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

* {
  box-sizing: border-box;
  
}
table {
  border: 0px solid black;
  border-collapse: collapse;
}
td { border-bottom: 1px solid #97A6C7; }
th { border-bottom:1px solid ivory; }

.menu {
  float:left;
  width:21%;
  padding:10px;
  text-align:center;
  margin-top:-10px;
  
}
.menuitem {
  background-color:#e5e5e5;
  padding:10px;
  margin-top:10px;
}
.main {
  float:left;
  width:79%;
  padding:0 8px;
  
}


ul.ppt {
	position: relative;
}

.ppt li {
	list-style-type: none;
	position: absolute;
	top: 0;
	left: 50px;
}

.ppt img {
	/*border: 1px solid #e7e7e7;*/
	padding: 5px;
	/*background-color: #ececec;*/
}



@media only screen and (max-width:620px) {
  /* For mobile phones: */
  .menu, .main {
    width:100%;
  }
}

