.rsbtn_ncldskin {
	position: relative;
	padding: 0px;
	width: 26px;
	height:24px;
	overflow:hidden;
	display: inline-block;
	vertical-align: top;
	margin:0px;
}

/************************************************ GENERAL CLASSES */

/**
 * These are a couple of classes that apply to many object or redefine elements
 */
.rsbtn_ncldskin a, .rsbtn_ncldskin span {
	position: relative;
	display: block;
	text-decoration: none;	
}

/**
 * Use the predefined CSS sprite for all graphical elements.
 */
.rsbtn_ncldskin .rsimg {
	/*background: transparent url(ReadSpeakerSampleSkin.png) no-repeat scroll 0 0;*/
}

/**
 * All the player elements should float.
 */
.rsbtn_ncldskin .rspart {
	float: left;
	margin-left: 2px;
}

.rsbtn_ncldskin .rsdefloat {
	clear: both;
}

/**
 * This goes for all buttons
 */
.rsbtn_ncldskin .rspart.rsbutton {
	background-color: #999;
	width: 18px;
	height: 18px;

	/**
	 * This is just to make the rollover effect a little smoother.
	 */
	-moz-transition: background-color .2s ease;
	-webkit-transition: background-color .2s ease;
	-o-transition: background-color .2s ease;
	transition: background-color .2s ease;
}

/**
 * Add a subtle rollover effect to the buttons.
 */
.rsbtn_ncldskin .rspart.rsbutton:hover {
	background-color: #aaa;
}

/**
 * Add a little pressed-down effect as well
 */
.rsbtn_ncldskin .rspart.rsbutton:active {
	background-color: #888;
}

/**
 * Hide all text labels. They will still be visible to non-CSS browsers
 */
.rsbtn_ncldskin .rspart .rsbtn_btnlabel {
	display: none;
}

/************************************************ PLAYER BOX */
.rsbtn_ncldskin .rsbtn_box {
	/*margin: 1px;*/
}

/************************************************ LISTEN BUTTON + ICON */
.rsbtn_ncldskin .rsbtn_play {
	/*float: right;*/ /* val change */
	text-align: center;
}

.rsbtn_ncldskin .rsbtn_left .rsbtn_text {
	/*background: transparent url(ReadSpeakerSampleSkin.png) no-repeat scroll 0 0;
	padding-left: 20px;*/
	width:40px;
	color:#58585A !important;
}

/************************************************ EXPANDING AREA */
.rsbtn_ncldskin .rsbtn_exp.rsimg.rspart {
	background: none;
	float: right;
	display: none;
}

/**
 * We want the expanding area to be visible only when the player
 * is expanded, hence the .rsexpanded class.
 */
.rsbtn_ncldskin.rsexpanded .rsbtn_exp.rsimg {
	display: block;
}

/************************************************ PLAY/PAUSE BUTTON */
.rsbtn_ncldskin .rsbtn_pause {
	display:none;
	background-position: 0 -34px;
}

.rsbtn_ncldskin.rspaused .rsbtn_pause,
.rsbtn_ncldskin.rsstopped .rsbtn_pause {
	background-position: 0 -16px;
}

/************************************************ STOP BUTTON */
.rsbtn_ncldskin .rsbtn_stop {
	/*background-position: 0 -52px;*/
	background:none !important;
	width:auto;
}

.rsbtn_ncldskin .rsbtn_stop .fa-volume-off {
	font-size:26px;
	color:#58585A;
}

/************************************************ PROGRESS CONTAINER */
.rsbtn_ncldskin .rsbtn_progress_container {
	display:none;
	border: 1px solid #999;
	width: 50px;
	height: 8px;
	margin-top: 4px;
	margin-left: 4px;
	background-image: none;
}

/************************************************ PROGRESS DRAG HANDLE */
.rsbtn_ncldskin .rsbtn_progress_handle.rsimg {
	position: absolute;
	background-color: #666;
	top: -3px;
	left: -2px;
	width: 4px;
	height: 14px;
	background-image: none;
}

/************************************************ PROGRESS BAR */
.rsbtn_ncldskin .rsbtn_progress_played {
	position: absolute;
	height: 100%;
	background-color: #ccc;
	background-image: none;
}

/************************************************ VOLUME BUTTON */
.rsbtn_ncldskin .rsbtn_volume {
	display:none;
	margin-left: 4px;
	background-position: 0 -70px;
}

/************************************************ VOLUME SLIDER CONTAINER */
.rsbtn_ncldskin .rsbtn_volume_container {
	position: absolute;
	display: none;
	top: 100%;
	width: 16px;
	height: 40px;
	border: 1px solid #999;
	background: #fff;
}

/************************************************ VOLUME SLIDER SLIDER AREA */
.rsbtn_ncldskin .rsbtn_volume_slider {
	width: 6px;
	height: 30px;
	margin: 5px;
	background: #ccc;
}

/************************************************ VOLUME SLIDER SLIDE HANDLE */
.rsbtn_ncldskin .rsbtn_volume_handle.rsimg {
	position: absolute;
	top: -2px;	
	left: -3px;	
	width: 12px;
	height: 4px;
	background: #666;
}

/************************************************ SETTINGS BUTTON */
.rsbtn_ncldskin .rsbtn_settings {
	display:none;
	background-position: 0 -88px;
}

/************************************************ CLOSE BUTTON */
.rsbtn_ncldskin .rsbtn_closer {
	display:none;
	margin-left: 4px;
	background-position: 0 -106px;
}

/************************************************ POPUP BUTTON */
/**
 * This is the style of the listen button that popups when the user
 * makes a text selection on the page.
 */
.rsbtn_ncldskin.rspopup {
	position: absolute;
	background: #fff;
	border: 1px solid #555;
	box-shadow: 0 0 5px #777;
	display: none;
	width: auto;
	text-align: center;
}

/* About-page link */
.rsbtn_ncldskin a.rsbtn_abouthelp {
	background: url(ReadSpeakerSampleSkin.png) no-repeat scroll 0px -124px transparent;
	background-color: #999999;
	transition: background-color 0.2s ease 0s;
	height: 18px;
	width: 18px;
	float: left;
	margin: 1px;
}

.rsbtn_ncldskin a.rsbtn_abouthelp:hover {
	background-color: #aaa;
}

.rsbtn_ncldskin a.rsbtn_abouthelp span {
	display: none;
}