@charset "utf-8";
/* CSS Document */


.marquee {
    margin: 0 auto;
    white-space: nowrap;
    overflow:hidden;
    box-sizing: border-box;
	display:block;


	
}

.marquee span {
	display:inline-block;
    padding-left: 0%;  /* show the marquee just outside the paragraph */
    animation: marquee 15s linear infinite;
	-webkit-animation: marquee 15s linear infinite;

}


/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-50%, 0); }
}

/* Make it move */
@-webkit-keyframes marquee {
    0%   { -webkit-transform: translate(0, 0); }
    100% { -webkit-transform: translate(-50%, 0); }
}


.marquee img {
	display:inline-block !important;
	padding:5px;
	margin:0px;
	max-width:200px;
	max-height:150px;
	}


.marquee a {
	text-decoration:none !important;
	border:none !important;
	}
	.marqueeitem {
		display:table-cell;
		width:200px;
		height:150px;
		text-align:center;
		vertical-align:middle;
		cursor:pointer;
	}
		