/**
 * (./) AudioVideoSupport.css
 * (by) cousot stéphane @ http://www.ubaa.net/
 * (cc) some right reserved
 *
 * AudioVideoSupport plugin for LionWiki
 * HTML5 audio and video support
 * Custom remote styles
 *
 * THIS CODE ARE RELEASED UNDER A CREATIVE COMMONS ATTRIBUTION 3.0 LICENSE
 * @ http://creativecommons.org/licenses/by/3.0/
 */ 



.audio_remote
{
	display: inline-block;
	vertical-align: baseline;
}



.audio_remote span:hover
{
	opacity: 0.5;
	cursor: pointer;
}

.audio_remote span
{
	display: inline-block;
	margin-right: 3px;
}

/* disable stop button
.audio_remote span.audio_stop
{
	display: none;
}*/


/* comment all next rules to have a text based remote  */
/* if you change images, modify the width and height properties */
.audio_remote span
{
	width: 16px;
	height: 16px;
	text-indent: 100%;
  	white-space: nowrap;
  	overflow: hidden;
	background-repeat: no-repeat;
}

.audio_remote span.audio_play
{
	background-image: url("img/play.png");
}

.audio_remote span.audio_pause
{
	background-image: url("img/pause.png");
}

.audio_remote span.audio_stop
{
	background-image: url("img/stop.png");
}

.audio_remote span.audio_mute
{
	background-image: url("img/mute.png");
}

.audio_remote span.audio_unmute
{
	background-image: url("img/unmute.png");
}

.audio_remote span.audio_loop
{
	background-image: url("img/loop.png");
}

.audio_remote span.audio_noloop
{
	background-image: url("img/noloop.png");
}

