/*
<div class="mep-container">
	<div class="mep-video">
		<video></video>
	</div>
	<ul class="mep-controls">
		<li class="mep-playpause-button mep-play"><span></span></li>
		<li class="mep-time mep-current-time"></li>
		<li class="mep-time-rail">
			<span class="mep-time-total"></span>
			<span class="mep-time-loaded"></span>
			<span class="mep-time-current"></span>
		</li>
		<li class="mep-time mep-duration"></li>
		<li class="mep-volume-button mep-mute">
			<span></span>
			<div class="mep-volume-slider">
				<div class="mep-volume-rail"><div class="mep-volume-handle"></div></div>							
			</div>
		</li>
		<li class="mep-fullscreen-button"><span></span></li>
	</ul>
</div>
*/

.mep-container {
position: relative;
background: #ccc;
font-family: Helvetica, Arial;
margin-bottom: 10px;
}

.mep-container-fullscreen { 
position: fixed; 
left: 0; 
top: 0; 
right: 0; 
bottom: 0; 
overflow: hidden; 
}
.mep-container-fullscreen .mep-video,
.mep-container-fullscreen video { 
width: 100%; 
height: 100%; 
}
.mep-video {
position: absolute;
top: 0;
left: 0;
}
.mep-poster {
position: absolute;
top: 0;
left: 0;
}
.mep-overlay {
position: absolute;
top: 0;
left: 0;
display: table;
background: url(ajax-loader.gif) center middle no-repeat;
}
.mep-overlay-message {
display: table-cell;
text-align: center;
vertical-align: middle;
color: #fff;
text-shadow: #000 1px 1px 1px;
font-size: 24px;
font-weight: bold;
}
.mep-container ul.mep-controls {
position: absolute;
background: none;
list-style-type: none;
margin: 0;
padding: 0;
bottom: 0;
left: 0;
background: #333;
background: rgba(0, 0, 0, 0.5);
height: 30px;
width: 100%;
}
.mep-container ul.mep-controls li {
list-style-type: none;
background-image: none;
display: inline-block;
float: left;
margin: 5px 0 5px 5px;
padding: 0;
width: 20px;
height: 20px;
font-size: 11px;
line-height: 11px;
background: #999;
background: rgba(100, 100, 100, 0.8);

-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.mep-container ul.mep-controls .mep-time {
color: #fff;
display: block;
width: 80px;
height: 17px;
padding: 3px 0 0 0 ;
overflow: hidden;
text-align: center;
}
.mep-container ul.mep-controls .mep-time span {
font-size: 11px;
color: #fff;
line-height: 1em;
display: inline-block;

}

.mep-controls .mep-playpause-button, 
/*.mep-controls .mep-volume-button, */
.mep-controls .mep-fullscreen-button {

}
.mep-controls .mep-playpause-button span, 
.mep-controls .mep-volume-button span, 
.mep-controls .mep-fullscreen-button span {
cursor: pointer;
display: block;
font-size: 0px;
line-height: 0;
text-decoration: none;
margin: 2px;
height: 16px;
width: 16px;
background: transparent url(controls.png) 0 0 no-repeat;
}

.mep-controls .mep-play span {
background-position:0 0;

}
.mep-controls .mep-pause span {
background-position:0 -16px;
}
.mep-controls .mep-time-rail {
width: 200px;
}
.mep-controls .mep-time-rail span {
display: block;
position: absolute;
width: 180px;
height: 10px;
margin: 5px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
cursor: pointer;
}
.mep-controls .mep-time-rail .mep-time-total {
background: #333;
background: rgba(0,0,0,0.2);
}
.mep-controls .mep-time-rail .mep-time-loaded {
background: #66c;
background: rgba(60,170,200,0.2);
}
.mep-controls .mep-time-rail .mep-time-current {
background: #fff;
background: rgba(255,255,255,0.9);
}


.mep-controls .mep-fullscreen-button span {
background-position:-32px 0;
}

.mep-controls .mep-unfullscreen span {
background-position:-32px -16px;
}

.mep-controls .mep-volume {

}

.mep-controls .mep-mute span {
background-position:-16px -16px;
}

.mep-controls .mep-unmute span {
background-position:-16px 0;
}

.mep-controls .mep-volume-button .mep-volume-slider {
display: none;
height: 115px;
width: 20px;
background: #333;
background: rgba(100, 100, 100, 0.8);
-webkit-border-radius: 4px 4px 0 0 ;
-moz-border-radius: 4px 4px 0 0 ;
border-radius: 4px 4px 0 0 ;
top: -110px;
position: absolute;
}
.mep-controls .mep-volume-button:hover {
-webkit-border-radius: 0 0 4px 4px ;
-moz-border-radius: 0 0 4px 4px ;
border-radius: 0 0 4px 4px ;
}
.mep-controls .mep-volume-button:hover .mep-volume-slider {
display: block;
}

.mep-controls .mep-volume-button .mep-volume-slider .mep-volume-rail {
position: absolute;
left: 9px;
top: 8px;
width: 2px;
height: 100px;
background: #ddd;
background: rgba(255, 255, 255, 0.8);
}

.mep-controls .mep-volume-button .mep-volume-slider .mep-volume-rail .mep-volume-handle {
position: absolute;
left: -7px;
top: -3px;
width: 16px;
height: 6px;
background: #ddd;
background: rgba(255, 255, 255, 0.9);
cursor: N-resize;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
}

