/**
 * ReadSpeaker jQuery plugin v2.0
 * http://folha.com
 * Copyright 2015, Folha de S.Paulo
 * Author: Evandro Santos <evandro.santos@grupofolha.com.br>
 * Library: jQuery 1.8.3
 * 
 * CSS Readspeaker
 *
 * Date: Tue Dez 01 2015 10:35:09 GMT-0300
 *
 */

.rsbtn_sampleskin {
	border: 1px solid #ccc;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.3em;
	margin-bottom: 10px;
	position: relative;
}

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

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

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

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

.rsbtn_sampleskin .rsdefloat {
	clear: both;
}

/**
 * This goes for all buttons
 */
.rsbtn_sampleskin .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_sampleskin .rspart.rsbutton:hover {
	background-color: #aaa;
}

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

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

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

/************************************************ LISTEN BUTTON + ICON */
.rsbtn_sampleskin .rsbtn_play {
	float: left;
	margin: 1px 0;
}

.rsbtn_sampleskin .rsbtn_left .rsbtn_text {
	background: transparent url(ReadSpeakerSampleSkin.png) no-repeat scroll 0 0;
	padding-left: 20px;
}

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

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

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

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

/************************************************ STOP BUTTON */
.rsbtn_sampleskin .rsbtn_stop {
	background-position: 0 -52px;
}

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

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

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

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

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

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

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

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

/************************************************ CLOSE BUTTON */
.rsbtn_sampleskin .rsbtn_closer {
	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_sampleskin.rspopup {
	position: absolute;
	background: #fff;
	border: 1px solid #555;
	box-shadow: 0 0 5px #777;
	display: none;
}

/* About-page link */
.rsbtn_sampleskin 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_sampleskin a.rsbtn_abouthelp:hover {
	background-color: #aaa;
}

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

/************************************************ POWERED BY READSPEAKER */
.rsbtn_sampleskin .rsbtn_powered {
	position: absolute;
	width: 210px;
	right: -10px;
	top: 22px;
	height: 10px;
	z-index: 110;
	color: #999;
	font-family: "Lucida Grande", "Lucida Sans", "Lucida", sans-serif;
	font-weight: normal;
	font-style: normal;
	line-height: 10px;
	font-size: 10px;
	background: none;
	cursor: pointer;
}

.rsbtn_sampleskin .rsbtn_powered a, .rsbtn_sampleskin .rsbtn_powered span {
	font-family: "Lucida Grande", "Lucida Sans", "Lucida", sans-serif;
	font-weight: normal;
	font-style: normal;
	line-height: 10px;
	font-size: 10px;	
	display: inline;
}

.rsbtn_sampleskin .rsbtn_powered .rsbtn_btnlabel {
	display: inline;
	float: right;
}

.rsbtn_sampleskin .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_read {
	color: #e60;
}

.rsbtn_sampleskin .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_speaker {
	color: #33a;
}

.rsbtn_sampleskin .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_icon.rsimg {
	position: relative;
	top: 1px;
	width: 11px;
	height: 9px;
	margin-left: 2px;
	padding-right: 11px;
	background-position: -137px -490px;
}

.rsbtn_sampleskin.rs_whitelogo .rsbtn_powered,
.rsbtn_sampleskin.rs_whitelogo .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_read,
.rsbtn_sampleskin.rs_whitelogo .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_speaker {
	color: #fff;
}

.rsbtn_sampleskin.rs_whitelogo .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_icon.rsimg {
	background-position: -285px -490px;
}

.rsbtn_sampleskin.rs_blacklogo .rsbtn_powered,
.rsbtn_sampleskin.rs_blacklogo .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_read,
.rsbtn_sampleskin.rs_blacklogo .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_speaker {
	color: #000;
}

.rsbtn_sampleskin.rs_blacklogo .rsbtn_powered .rsbtn_btnlabel a span.rsbtn_label_icon.rsimg {
	background-position: -433px -490px;
}

.rsbtn_sampleskin.rspopup .rsbtn_powered  {
	display: none;
}




/*** CUSTOM SHOP ***/ 
.toolbar .read-speaker {
	right: 115px;
}

.rsbtn_sampleskin {
			border: 0;
			width: 200px;
		}
		.rsbtn_sampleskin .rsimg {
			background:none;
		}

		.rsbtn_sampleskin .rsbtn_left.rsimg {
			background: none;
		}

		.rsbtn_sampleskin .rspart.rsbutton {
			background-color: #000;
			-moz-transition: background-color .2s ease;
			-webkit-transition: background-color .2s ease;
			-o-transition: background-color .2s ease;
			transition: background-color .2s ease;
		}

		.rsbtn_sampleskin .rspart .rsbtn_btnlabel {
			display: block;
		}

		.rsbtn_sampleskin .rsbtn_left .rsbtn_text {
			background: transparent  url(http://f.i.uol.com.br/folha/furniture/5.4/images/btn-readspeaker.png) no-repeat scroll 0 0;
			padding-left: 0;
			height: 25px;
			width: 113px;
		}

		.rsbtn_sampleskin .rsbtn_left .rsbtn_text span {
			display: none;
		}

		.rsbtn_sampleskin .rsbtn_exp.rsimg.rspart {
			background: #f5f5f5;
		}

		.rsbtn_sampleskin .rsbtn_pause,
		.rsbtn_sampleskin .rsbtn_closer,
		.rsbtn_sampleskin .rsbtn_settings,
		.rsbtn_sampleskin .rsbtn_dl {
			background: url(http://f.i.uol.com.br/folha/furniture/5.4/images/btn-readspeaker-pause.png) no-repeat 2px 4px;
			color: #333;
			font-size: 16px;
			border-right: #fff 3px solid;
			padding: 3px 1px;
			border: 0;
			outline: none;
		}

		.rsbtn_sampleskin .rsbtn_pause .rsbtn_btnlabel,
		.rsbtn_sampleskin .rsbtn_closer .rsbtn_btnlabel,
		.rsbtn_sampleskin .rsbtn_settings .rsbtn_btnlabel,
		.rsbtn_sampleskin .rsbtn_dl .rsbtn_btnlabel {
			visibility: hidden;
		}
		
		.rsbtn_sampleskin.rspaused .rsbtn_pause,
		.rsbtn_sampleskin.rsstopped .rsbtn_pause {
			background: url(http://f.i.uol.com.br/folha/furniture/5.4/images/btn-readspeaker-play.png) no-repeat 2px 4px;
		}

		.rsbtn_sampleskin .rsbtn_closer,
		.rsbtn_sampleskin.rspaused .rsbtn_closer,
		.rsbtn_sampleskin.rsstopped .rsbtn_closer {
			background: url(http://f.i.uol.com.br/folha/furniture/5.4/images/btn-readspeaker-close.png) no-repeat 2px 4px;
		}

		.rsbtn_sampleskin .rsbtn_settings,
		.rsbtn_sampleskin.rspaused .rsbtn_settings,
		.rsbtn_sampleskin.rsstopped .rsbtn_settings {
			background: url(http://f.i.uol.com.br/folha/furniture/5.4/images/btn-readspeaker-config.png) no-repeat 2px 4px;
		}

		.rsbtn_sampleskin .rsbtn_dl,
		.rsbtn_sampleskin.rspaused .rsbtn_dl,
		.rsbtn_sampleskin.rsstopped .rsbtn_dl {
			background: url(http://f.i.uol.com.br/folha/furniture/5.4/images/btn-readspeaker-download.png) no-repeat 2px 4px;
		}

		.rsbtn_sampleskin .rspart.rsbutton,
		.rsbtn_sampleskin .rspart.rsbutton:hover {
			background-color: transparent;
		}

		.rsbtn_sampleskin .loading {
			background: url(http://f.i.uol.com.br/folha/furniture/5.4/images/loading-alternate.gif) no-repeat 0px 4px;
			width: 16px;
			height: 18px;
			float: left;
		}

		/*
		*
		* Progress Bar 
		*
		*/
	
		.rsbtn_sampleskin .rsbtn_progress_container {
			margin: 0;
			margin-top: 4px;
			background: #ebebeb;
			border: 0;
			width: 20px;
			height: 14px;
			background: -moz-linear-gradient(top, #ebebeb 0%, #f5f5f5 99%);
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb), color-stop(99%,#f5f5f5));
			background: -webkit-linear-gradient(top, #ebebeb 0%,#f5f5f5 99%);
			background: -o-linear-gradient(top, #ebebeb 0%,#f5f5f5 99%);
			background: -ms-linear-gradient(top, #ebebeb 0%,#f5f5f5 99%);
			background: linear-gradient(to bottom, #ebebeb 0%,#f5f5f5 99%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#f5f5f5',GradientType=0 );
		}
		
		.rsbtn_sampleskin .rsbtn_progress_container .rsbtn_progress_played {
			background: #9d9d9d;
			background: -moz-linear-gradient(top, #9d9d9d 0%, #727272 100%);
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9d9d9d), color-stop(100%,#727272));
			background: -webkit-linear-gradient(top, #9d9d9d 0%,#727272 100%);
			background: -o-linear-gradient(top, #9d9d9d 0%,#727272 100%);
			background: -ms-linear-gradient(top, #9d9d9d 0%,#727272 100%);
			background: linear-gradient(to bottom, #9d9d9d 0%,#727272 100%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#727272',GradientType=0 );
		}
		.rsbtn_sampleskin .rsbtn_progress_handle.rsimg {
			display: none;
		}

		.rsbtn_sampleskin .rsbtn_progress_current,
		.rsbtn_sampleskin .rsbtn_progress_total {
			font-size: 10px;
			display: inline-block;
			float: left;
			margin: 3px;
			margin-left: 5px;
		}

		.rsbtn_sampleskin .rspart.rsbutton {
			width: 16px;
		}


#rslightbox_contentcontainer{ 
	z-index: 999999999 !important;
}