#photobanner {
	position: relative;
	width: 90%;
	margin: auto;
	/*
	height: 80px;
	width: 90%;
	padding: 0px;
	margin: 0px auto;
	text-align: center;
	overflow: hidden;
	z-index: 10;
	*/
}
#photobanner:before {
	content: ""; 
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 100px;
	height: 80px;
	background-image: linear-gradient(90deg, rgba(255,255,255,1.0) 0%, rgba(255,255,255,0.0) 100%);
	z-index: 1;
}
#photobanner:after {
	content: "";
	position: absolute;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 100px;
	height: 80px;
	background-image: linear-gradient(90deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,1.0) 100%);
	z-index: 1;
}
#photoslide {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
	flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
}
#photoslide .logos {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    grid-column-gap: 1vw;
}
#photoslide .startPic div {
	position: relative;
	height: auto;
	width: auto;
	max-width: 180px;
	max-height: 75px;
	margin: 0px 28px;
	vertical-align: middle;
	display: inline-block;
	font-size: 0px;
}
#photoslide .startPic div img {
	height: auto;
	width: auto;
	max-width: 180px;
	max-height: 75px;
	margin: 0px;
	vertical-align: middle;
	display: block;
	font-size: 0px;
}
.startPic {
	animation: bannermove 40s linear infinite;
	animation-delay: 1000ms;
}
.slideSpacer {
	clear: both;
	position: realtive;
	height: 80px;
}
@keyframes bannermove {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 1px)); }
}