/* NOTE: THIS FILE INCLUDES 1 STAGE OF MEDIA QUERIES AT BOTTOM */

.playerbox {
	text-align: left;
	height: 35px;
	background-color: transparent;
	padding: 8px 0px 8px 0px;
	position: relative;
	}

#songTime {
	visibility: hidden;
	position: absolute;
	margin-bottom: 0px;
	left: -999em;
	}

#songPlay {
	cursor: pointer;
	opacity: 1.0;
	position: absolute;
	left: 0px;
	padding: 0px 0px 0px 0px;
	}

#songPause{
	cursor: pointer;
	opacity: 1.0;
	position: absolute;
	left: 34px;
	padding: 0px 0px 0px 0px;
	}

#songStop {
	cursor: pointer;
	opacity: 1.0;
	position: absolute;
	left: 68px;
	padding: 0px 0px 0px 0px;
	}

#songPlay, 
#songPause, 
#songStop, 
#songPlay img, 
#songPause img, 
#songStop img
	{
	width: 30px;
	height: auto;
	}

#songPlay:hover, 
#songPause:hover, 
#songStop:hover {
	opacity: 0.6;
	}

#songSlider {
	width: 100%;
	max-width: 393px;
	height: 10px;
	background-color: #000000;
	border: #000000 0px solid;
	vertical-align: top;
	margin-top: 10px;
	position: absolute;
	left: 102px;
/* CORNER ROUNDING */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
	}

#trackProgress {
	width: 0px;
	height: 10px;
	background-color: #FF0000;
	vertical-align: top;
/* CORNER ROUNDING */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
	}



/*Play/Pause button*/
#songPlayPause{
background-color: transparent;
}
/*Volume Up Button*/
#volumeUp{
background-color: transparent;
}
/*Volume Down Button*/
#volumeDown{
background-color: transparent;
}
/*Volume Meter*/
#volumeMeter{
    width: 500px;
    height: 10px;
    background-color: black;
}
/*Volume Location Meter*/
#volumeStatus{
    height: 10px;
    background-color: green;
}




/***************
START Media Queries #1 - WHEN PAGE WIDTH LESS THAN 1050 IS ACTIVE (FOR BELOW TABLET)
***************/
@media handheld and (max-width: 1050px),
   screen and (max-device-width: 1050px),
   screen and (max-width: 1050px) 
	{


#songPlay, 
#songPause, 
#songStop, 
#songPlay img, 
#songPause img, 
#songStop img
	{
	width: 30px;
	height: auto;
	}

#songSlider { max-width: 145px; }


	}
/***************
END Media Queries #1
***************/
