#videoscreen{
	display: block;
	position: relative;
}
video{
	position: relative;
	display: block;
}
.controls{
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content:space-between;
	width: 100%;
	height: 20px;
	bottom: 23px;
	margin-left: 3px;
}
.controls span {
	display:inline-block;
}

#playpause {
	height:20px;
	background-color:#eee;
	color:#333;
	padding: 1px 7px;
	display:inline-block;
	border-radius:3px;
	white-space:nowrap;
	-webkit-transition:0.3s;
	-o-transition:0.3s;
	transition:0.3s;
	font-size: 80%;
	text-transform:uppercase;
	cursor:pointer;
	border-color:#c5c5c5;
	border-color:rgba(0,0,0,0.15) rgba(0,0,0,0.15) rgba(0,0,0,0.25)
}
#progress{
	display:inline-block;
	height:20px;
	background:#999;
	opacity: .5;
}
#current {
	display:inline-block;
	position:relative;
	background:#ccc;
	height:100%;
	width:0px;
}
#time {
	left: 0;
	width: 100px;
	color:#999;
	font-size:90%;
}