.video-poster-phone {
	display: inline; position: relative; width: 160px;
}
.video-poster-phone span {
	z-index:100; position:absolute; top:15px; left:1px;
}
.video-poster-phone img {
	height: 90px; padding-right: 10px;
}

.video-poster {
	display: inline; position: relative; width: 160px;
}
.video-poster span {
	z-index:100; position:absolute; top:15px; left:1px;
}
.video-poster img {
	height: 120px; padding-right: 20px;
}

.video {
	position: relative;
	overflow: hidden;
	float: center;
	padding-top: 10px;

	/*
	-moz-box-shadow: 0 0 3px #FFF;
	-webkit-box-shadow: 0 0 3px #FFF;
	box-shadow: 0 0 3px #FFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	*/
}
.video video {
	display: block;
	opacity: .6;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.video:hover video {
	opacity: .8;
}

.video-on video,.video-on:hover video {
	opacity: 1;
}

/* Button */
.video-button {
	position: absolute;
	z-index: 1;
	border: none;
	background: #CCC;
	text-indent: -9999px;
	cursor: pointer;
	-webkit-transform: scale(1.0);
	-moz-transform: scale(1.0);
	-o-transform: scale(1.0);
	transform: scale(1.0);
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.video-button:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.video-button:after {
	position: absolute;
	background: url(../images/icons/player-buttons.png) no-repeat;
	content: '';
}

/* Play */
.video-play {
	bottom: 30px;
	left: 50px;
	-moz-box-shadow: 0 0 50px #FFF, inset 5px 5px 20px #444, inset 0 -20px 40px #000;
	-webkit-box-shadow: 0 0 50px #FFF, inset 5px 5px 20px #444, inset 0 -20px 40px #000;
	box-shadow: 0 0 50px #FFF, inset 5px 5px 20px #444, inset 0 -20px 40px #000;
	width: 50px;
	height: 50px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.video-play:after {
	top: 15px;
	left: 16px;
	width: 21px;
	height: 21px;
	background-position: 0 0;
}

.video-play-on:after {
	background-position: -23px 0;
}

/* Mute */
.video-mute {
	bottom: 35px;
	left: 120px;
	-moz-box-shadow: 0 0 30px #FFF, inset 4px 4px 15px #444, inset 0 -15px 35px #000;
	-webkit-box-shadow: 0 0 30px #FFF, inset 4px 4px 15px #444, inset 0 -15px 35px #000;
	box-shadow: 0 0 30px #FFF, inset 4px 4px 15px #444, inset 0 -15px 35px #000;
	width: 38px;
	height: 38px;
	-webkit-border-radius: 19px;
	-moz-border-radius: 19px;
	border-radius: 19px;
}

.video-mute:after {
	top: 13px;
	left: 11px;
	width: 17px;
	height: 14px;
	background-position: 0 -21px;
}

.video-mute-on:after {
	background-position: -18px -21px;
}