body, html {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 12px;
}

#main {
    width: 480px;
    margin: auto;
}

.audioArtwork {
    width: 480px;
	height: auto;
	-o-object-fit: contain;
}

.mediaView {
    text-align: center;
    font-size: 12em;
    color: #EDEDED;
    margin-top: 10px;
	margin-bottom: 10px;
}

.current {
    display: inline-block;
    width: 80px;
    text-align: center;
}

.remainingTime {
    display: inline-block;
    width: 80px;
    text-align: center;
}

progress {
    width: 320px;
    line-height: 30px;
    display: inline-block;
    vertical-align: middle;
    border: 0;
    border-radius: 5px;
    margin-left: -7px;
}

progress::-webkit-progress-bar {
    border: 1px solid #aaa;
    background-color: rgba(51, 51, 51, 0.3);
    height: 8px;
    border-radius: 5px;
    margin-left: 7px;
}

progress::-webkit-progress-value {
    background-color: #f3f3f3;
    border: 0;
    height: 6px;
    border-radius: 5px;
}

.backward, .playpause, .forward {
    display: inline-block;
    width: 32%;
    text-align: center;
}

.backward, .forward {
    font-size: 3em;
    width: 60px;
    line-height: 60px;
	vertical-align: middle;
}

.playpause {
    font-size: 6em;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
	vertical-align: middle;
}

.controls {
    text-align: center;	
}

.speedControl {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	vertical-align: middle;
	text-align: center;	
}

.speedControl label {
    width: 100%;
    text-align: center;
    display: block;
}

input[type=range] {
    -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    width: 100%; /* Specific width is required for Firefox. */
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent; /* Hides the slider so custom styles can be added */
    border-color: transparent;
    color: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 1px solid #000000;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #333333;
    cursor: pointer;
    margin-top: -5px;
    box-shadow: 1px 1px 1px #000000;
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #888;
    border: 1px solid #000000;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #888;
    background: #f3f3f3;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #EFEFEF;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #888;
    background: #f3f3f3;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #f3f3f3;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #888;
}
input[type=range]:focus::-ms-fill-lower {
    background: #f3f3f3;
}
input[type=range]::-ms-fill-upper {
    background: #f3f3f3;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #f3f3f3;
}

video {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.actionButtons {
    text-align: center;
    margin-top: 20px;
	margin-bottom: 20px;
}

.actionButton {
	display: inline-block;
	text-align: center;
    margin-right: 10px;
}

.titlestack {
    position: relative;
    top: 50%;
    overflow: hidden;
    max-height: 100%;    
}

.titlestack div {
    margin: 0.075em 0;
}

.centertext { text-align: center; }
.verticalalign { vertical-align: middle; }
.inlineblock { display: inline-block; }
.inline { display: inline; }


.caption {
	font-family: concourse_c3, Helvetica, sans-serif;
	display: inline-block;    
    color: #fc7e0f;
}


h1, h2, h3, h4, h5, h6, .title { font-family: concourse_t4, Helvetica, sans-serif; font-weight: normal; }

h2 { margin-top: 1.5em; }

a, .linkcolor, .extendedepisodecell.usernewepisode .title {
    color: #fc7e0f;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .title a { text-decoration: none; }


.leaderboardContainer {
    margin-top: 10px;
	margin-bottom: 10px;
}

.margintop1 {
    margin-top: 10px;
}

.marginbottom1 {
    margin-bottom: 10px;
}

.marginbottom2 {
    margin-bottom: 20px;
}

.marginright2 {
    margin-right: 20px;
}

.socialNetworks {
	display: inline-block;
	text-align: center;
	margin-bottom: 10px;
}

.label {
	margin-left: 10px;
	margin-right: 10px;
}

.buttons { cursor: pointer; }