/* ============================================================================================== 
This copyright notice must be kept untouched in the stylesheet at all times.
The original version of this stylesheet and the associated (x)html 
is available at http://www.script-tutorials.com/html5-audio-player-with-playlist/
Copyright (c) Script Tutorials. All rights reserved.
This stylesheet and the associated (x)html may be modified in any way to fit your requirements.
================================================================================================= */
* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #FFF;
}
header {
    background-color:rgba(33, 33, 33, 0.9);
    color:#fff;
    display:block;
    font: 14px/1.3 Arial,sans-serif;
    margin-bottom: 10px;
    position:relative;
}
header h2{
    font-size: 22px;
    margin: 0px auto;
    padding: 10px 0;
    width: 80%;
    text-align: center;
}
header a, a:visited {
    text-decoration:none;
    color:#fcfcfc;
}


.example {
    margin: 50px auto 0;
    width: 400px;
}

/* HTML5 Audio player with playlist styles */
.player {
    background: transparent url("../images/spr2.png") no-repeat scroll center top;
    height: 162px;
    position: relative;
/*    width: 700px;  */
	width: 500px;
    z-index: 2;
}

/* Title and author currently playing    */
.title, .artist, .mdate {
    font-family: verdana;
 /*   left: 275px; */
	left: 275px;
 /*   position: absolute; */
	margin-left: 175px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
/*	width: 300px; */
	width: 300px;
	top: 23px;
}
.artist {
    color: #EEEEEE;
    font-size: 12px;
    top: 60px;
}
.mdate {
    color: #EEEEEE;
    font-size: 12px;
    top: 60px;
	left: 450px;
}

/* Music Note to show playlist 
.pl {
    background: transparent url("../images/spr2.png") no-repeat scroll -274px -175px;
    cursor: pointer;
    height: 34px;
    left: 550px;
    position: absolute;
    top: 50px;
    width: 32px;
}
.pl:hover {
    top: 51px;
}
*/

/* Album Cover */
.cover {
    background: transparent url(../data/cover1.jpg) no-repeat scroll center top;
    border-radius: 5px 5px 5px 5px;
    height: 94px;
/*    left: 120px; */
	left: 20px;
    position: absolute;
    top: 20px;
    width: 94px;
}

/* Rewind-Play-FF buttons */
.controls {
    cursor: pointer;
    height: 23px;
/*    left: 267px; */
	left: 167px;
    position: absolute;
    top: 90px;
    width: 138px;
}
.controls .play, .controls .pause, .controls .rew, .controls .fwd {
    background: transparent url("../images/spr2.png") no-repeat scroll 0 0;
    float: left;
    height: 100%;
    width: 33%;
}
.controls .play {
    background-position: -8px -171px;
}
.controls .pause {
    background-position: -8px -198px;
    display: none;
}
.controls .rew {
    background-position: -54px -171px;
}
.controls .fwd {
    background-position: -100px -171px;
}
.controls .play:hover {
    background-position: -8px -170px;
}
.controls .pause:hover {
    background-position: -8px -197px;
}
.controls .rew:hover {
    background-position: -54px -170px;
}
.controls .fwd:hover {
    background-position: -100px -170px;
}
.hidden {
    display: none;
}
.controls .visible {
    display: block;
}

/* Red Volume Control */
.volume {
    height: 11px;
 /*   left: 468px; */
	left: 365px;
    position: absolute;
    top: 96px;
    width: 112px;
}
.tracker {
    height: 15px;
    left: 20px;
/*	left: 120px; */
     position: absolute;
    top: 126px;
	width: 450px;
    /* width: 285px; */
}
.ui-slider-range {
    background: transparent url("../images/spr2.png") no-repeat scroll 5px -222px;
    height: 100%;
    position: absolute;
    top: 0;
}
.ui-slider-handle {
    cursor: pointer;
	height: 10px;
    margin-left: -5px;
    position: absolute;
    top: 2px;
    width: 10px;
    z-index: 2;
}
.volume .ui-slider-handle {
    background: url("../images/spr2.png") no-repeat scroll -201px -188px rgba(0, 0, 0, 0);
    height: 13px;
    width: 13px;
}

/* Playlist Positioning */
.playlist {
    background-color: #333333;
    border-radius: 5px 5px 5px 5px;
    list-style-type: none;
    margin: -10px 0 0 2px;
    padding-bottom: 10px;
    padding-top: 20px;
/*	left: 100px; */
    position: relative;
    width: 500px;
    z-index: 1;
/*	max-height: 150px; /* Maximum height of playlist window */
	max-height: 300px;
    overflow: auto; /* Makes playlist window scroll if content is big enough */
}
.playlist li {
    color: #EEEEEE;
    cursor: pointer;
    margin: 0 0 5px 10px;
}
.playlist li.active {
    font-weight: bold;
}
.playlist li:nth-child(even) {
    background-color: rgba(255, 255, 255, .2); /* Alternate color of playlist rows */
}

select {
   font-size: 20px;
   left: 100px;
{