.centerColumn {
    margin: auto;
    display: block;
    float: none;
}

.contentBox {
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.videoFrame {
    position: relative;
    padding-bottom: 56.25%;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.channelContainer {
    margin-bottom: 20px;
}

.textContainer {
    width: 100%;
    height: 18px;
    background-repeat: repeat;
    background-size: auto;
    overflow: hidden;
    position: relative
}

.slidingText {
    -moz-animation: example1 13s linear infinite;
    -webkit-animation: example1 13s linear infinite;
    animation: example1 13s linear infinite;
    font-size: 15px;
    position: absolute;
    height: 100%;
    margin: 0;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@keyframes example1 {
	0% {
		-moz-transform: translateX(10%);
		/* Firefox bug fix */
		-webkit-transform: translateX(10%);
		/* Firefox bug fix */
		transform: translateX(10%);
	}

	100% {
		-moz-transform: translateX(-100%);
		/* Firefox bug fix */
		-webkit-transform: translateX(-100%);
		/* Firefox bug fix */
		transform: translateX(-100%);
	}
}