/* player style */

/* container has a background image */

a.player {
display: block;
background: url(video/splash.jpg) no-repeat;
width: 640px;
height: 420px;
text-align: center;
color: #fff;
text-decoration: none;
cursor: pointer;
}

/* splash image */
a.player img {
border: 0;
margin-top: 150px;
}

#player {
margin: 0;
}

/* playlist style */

#playlist {
width: 640px;
border: 0px solid #ccc;
padding: 4px 10px 12px 10px;
background-color: none;
margin: 10px 0 0 0;
}

/* playlist entry */

#playlist a {
display: block;
width: 193px;
height: 70px;
padding: 3px;
background-color: #5e0a03;
border: 1px solid #B8786E;
font: 11px "Arial Narrow", Arial, Helvetica, Geneva, sans-serif;
line-height: 1em;
text-decoration: none;
margin: 1px;
margin-top: 7px;
color: #CCC;
text-align: left;
float: left;
}

/*#playlist a.left {
float: left;
margin-left: 20px;
}

#playlist a.right {
float: right;
margin-right: 20px;
}*/

 /*different states of a playlist entry*/ 

#playlist a:hover {
background-color: #690c04;
}

#playlist a.progress {
/*	background-color: #efefef;*/
}

#playlist a.playing {
border: 1px solid #d48b7f;
background-color: #a9190c;
}

#playlist a.paused {
border: 1px solid #d48b7f;
background-color: #934338;
}

/* elements inside playlist entry */

#playlist a img {
border: 0;
float: left;
margin-right: 4px;
}

#playlist a strong {
color: white;
padding-bottom: 5px;
}

#playlist a strong:hover {
color: white;
}