/*  VIDEOS PLAYLIST 
 		############################### */
		.vid-list-container {
			width: 92%;
			overflow: hidden;
			margin-top: 20px;
			margin-left:4%;
			padding-bottom: 20px;
		}

		.vid-list {
			width: 1344px;
			position: relative;
			top:0;
			left: 0;
		}

		.vid-item {
			display: block;
			width: 148px;
			height: 148px;
			float: left;
			margin: 0;
			padding: 10px;
		}

		.thumb {
			/*position: relative;*/
			overflow:hidden;
			height: 84px;
		}

		.thumb img {
			width: 100%;
			position: relative;
			top: -13px;
		}

		.vid-item .desc {
			color: #000;
			font-size: 0.85em;
			margin-top:5px;
		}

		.vid-item:hover {
			background: #eee;
			cursor: pointer;
		}

		.arrows {
			position:relative;
			width: 100%;
		}

		.arrow-left {
	color: #fff;
	position: absolute;
	padding: 15px;
	z-index: 99;
	cursor: pointer;
	left: 300px;
	top: -45px;
		}

		.arrow-right {
	color: #fff;
	position: absolute;
	padding: 15px;
	z-index:100;
	cursor: pointer;
	left: 348px;
	top: -45px;
		}



		@media (max-width: 624px) {
			.caption {
				margin-top: 40px;
			}
			.vid-list-container {
				padding-bottom: 20px;
			}

			/* reposition left/right arrows */
			.arrows {
				position:relative;
				margin: 0 auto;
				width:96px;
			}
			.arrow-left {
			color: #fff;
			position: absolute;
			padding: 15px;
			z-index: 99;
			cursor: pointer;
			left: 100px;
			top: 45px;
				}
		
				.arrow-right {
			color: #fff;
			position: absolute;
			padding: 15px;
			z-index:100;
			cursor: pointer;
			left: 348px;
			top: -145px;
				}
		}
