html, body {
	margin:0;
	padding:0;
}
body { 
	font-family: Arial, sans-serif;
	font-size: 0.8em;
	width: 100%;
}
audio#player2 { 
	height: 1px;
}
#controls { 
	position: relative;
	background-color: #666666; 
	width: 464px; 
	height: 24px;
	line-height: 24px;
}
input { 
	border: 1px solid #666666; /* masked against background until input has focus*/
	position: absolute;
	background-position: center center;
	background-repeat: no-repeat;
}
input#playpause {
	top: 0px;
	left: 2px;
	width: 22px;
	height: 24px;
	background-color: transparent;
	background-image: url('../img/audio_play.gif');
	color: transparent;
	border-right-color: #848484; 
}
#seekBar { 
	top: 0px;
	left: 24px;
	width: 85px;
	height: 24px;
}
input#seekBack {
	top: 0px;
	left: 40px;
	width: 24px;
	height: 24px;
	background-color: transparent;
	background-image: url('../img/audio_rewind.gif');
	color: transparent;
}
input#seekForward {
	top: 0px;
	left: 80px;
	width: 24px;
	height: 24px;
	background-color: transparent;
	background-image: url('../img/audio_forward.gif');
	color: transparent;
}
span#timer { /* contains both span#currentTime and span#duration */
	position: absolute;
	left: 115px;
	width: 100px;
	color: #ffffff;
}
input#muteButton { 
	left: 180px; 
	top: 0px;
	width: 24px;
	height: 24px;
	background-color: transparent;
	background-image: url('../img/audio_volume.gif');
	color: transparent;
	display: none;
}
input#volumeControl {
	/* not used, but here for future reference */
	display: none;
	left: 360px;
	top: -105px;
	height: 100px;
	width: 30px;
	background-color: #666666;
	border: 2px solid #4c4c4c;
	color: #ffffff;
}
input#volumeUp { 
	top: 0px;
	left: 180px;
	width: 24px;
	height: 24px;
	background-color: transparent;
	background-image: url('../img/audio_volumeUp.gif');
	color: transparent;
}
input#volumeDown { 
	top: 0px;
	left: 205px;
	width: 24px;
	height: 24px;
	background-color: transparent;
	background-image: url('../img/audio_volumeDown.gif');
	color: transparent;
}
.offscreen { 
	position:absolute;
	left:-10000px;
	top:auto;
	width:1px;
	height:1px;
	overflow:hidden;
}