		.podcast {
			position: absolute;
			width: 224px;
			height: 327px;
			background: url(../imagens/bg_podcast.png) no-repeat;
		}
		
		.podcast-seek,
		.podcast-play,
		.podcast-pause {
			position: absolute;
		}
		
		.podcast-seek {
			top: 138px;
			/*left: 25px;*/
			left: 0;
			right: 0;
			margin: 0 auto;
			padding: 0;
			width: 175px;
			height: 12px;
			/*background-color: #FFFFFF;*/
			border-radius: 6px;
		}

		.podcast-play {
			top: 176px;
			left: 55px;
			cursor: pointer;
		}
		
		.podcast-pause {
			top: 176px;
			left: 126px;
			cursor: pointer;
		}

		/* Esconde e serão mostrados se passar pelo check de audio do modernizr */
		.podcast-play,
		.podcast-pause,
		.podcast-seek,
		.podcast-download {
			display: none;
		}
		
		.podcast-download {
			position: relative;
			width: 160px;
			display: block;
			text-align: center;
			margin: 145px auto 0 auto;
			color: #FFFFFF;
		}

		input {
			/*display: none\9 !important;*/
		}
		
		input[type="range"] {
			-webkit-appearance: none;
			overflow: hidden;
			outline: none;
			cursor: pointer;
		}

		::-webkit-slider-runnable-track {
    		background: #FFFFFF;
		}
		
		::-webkit-slider-thumb {
			-webkit-appearance: none;
			width: 12px;
			height: 12px;
			border-radius: 6px;
			background-color: #CA454B;
			box-shadow: -206px 0 0 200px #CA454B;
			border-color: #CA454B;
		}
		
		::-moz-range-track {
			height: 12px;
			background: #FFFFFF;
			border-radius: 6px;
		}

		::-moz-range-thumb {
			background: #CA454B;
			height: 12px;
			width: 12px;
			border-radius: 6px !important;
			box-shadow: -206px 0 0 200px #CA454B;
			box-sizing: border-box;
			border-color: #CA454B;
		}

		::-ms-fill-lower { 
			background: #CA454B;
		}

		::-ms-thumb { 
			background: #CA454B;
			height: 12px;
			width: 12px;
			box-sizing: border-box;
			border-radius: 6px;
			border-color: #CA454B;
		}

		::-ms-ticks-after { 
			display: none; 
		}

		::-ms-ticks-before { 
			display: none; 
		}
		
		::-ms-track { 
			background: #FFFFFF;
			color: transparent;
			height: 12px;
			border: none;
			border-radius: 6px;
		}

		::-ms-tooltip { 
			display: none;
		}