/* MP3 Player Styles */
.player {
    position: relative;
    box-sizing: border-box;
	display: block;
    z-index: 1;
	border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 3px rgba(13, 25, 32, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.6), inset 0 -1px 0 rgba(255, 255, 255, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.2);
    text-align:left;
	width: 100%; 
	max-width: 400px;
	margin: 0 auto;
	padding: 3px;
	background-color: #204d74;
    border-color: #122b40;
}
.nowPlaying, .playerProgress, .playerControls, .volumeControls {
	position: relative;
	width:100%;
	padding: 0px;
	display: table;
	text-align:center;
}
.centralSection {
	background: #e3e6e8;
	background-image: linear-gradient(to bottom, #e3e6e8 0%, #c2cdd5 100%);
	margin: 2px;
	border-radius: 5px;
}
.nowPlaying-Center {
	text-align: center;
}
.player-row {
	display: table-row;
}
.player-row > * {
	display: table-cell;
}
.spacer {
	#width: 50% !important;
}
.title, .artist, .format, .dateRecorded {
    font-family: verdana;
    position: relative;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.title {
    #color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    #top: 23px;
}
.artist, .format, .dateRecorded {
    #color: #EEEEEE;
    font-size: 12px;
    #top: 40px;
}
.marquee {
    width: 450px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee span {
    display: inline-block;
    padding-left: 100%;  /* show the marquee just outside the paragraph */
    animation: marquee 15s linear infinite;
}
.marquee span:hover {
    animation-play-state: paused
}
/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.currentTime {
	text-align: right;
	width: 10%;
	#overflow: hidden;
}
.songDuration {
	width: 10%;
	#overflow: hidden;
}
.btn {
	border-radius:0;
}
.btn-primary.active {
	color: #ffffff;
	background-color: #204d74;
    border-color: #204d74;
}
.volumeControls-left {
	text-align: left;
	width: 50%;
}
.volumeControls-right {
	text-align: right;
	width: 50%;
	display: table-row;
}
.volumeControls-right > * {
	display: table-cell;
}
.hidden {
    display: none;
}
.volume-wrap {
	width: 100%;
	padding-left:5px;
	padding-right:5px;
}
.volume.ui-slider-horizontal {
	#height: 8px;
	width: 100%;
	min-width: 100px;
}
.tracker-wrap {
	width: 80%;
	padding-left:5px;
	padding-right:5px;
}
.tracker.ui-slider-horizontal {
	#height: 10px;
	width: 100%;
}
.ui-slider-horizontal .ui-slider-range {
    height: 100%;
    background-color: #337ab7;
}
.ui-slider-horizontal .ui-slider-handle {
    cursor: pointer;
    z-index: 2;
	border-radius: 4px;
	width: 8px;
	height: 200%;
	top:-50%;
	margin-left:-3px;
	background-color: white;
}
.playlist {
    display: none;
	text-align:left;
	max-height: 200px;
	max-width: 400px;
	overflow-y: auto;
	background-color: #e3e6e8;
    border-radius: 0 0 4px 4px;
    border: 1px solid #c2cdd5;
    border-top: none;
	padding:0;
	margin: 0 auto;
	list-style:none;
}
.playlist li {
    #color: #EEEEEE;
    cursor: pointer;
    margin: 0 0 5px 15px;
}
.playlist li.active {
    font-weight: bold;
}
.playlist li:hover {
	background-color:#c2cdd5;
}