/* 
	Able Player playlist styles
	http://terrillthompson.com/ableplayer
*/

/* 
 *
 * playlist embedded into player 
 *
 */
 
.able .able-playlist { 
	font-size: 0.9em;
	list-style-type: none;
	margin: 0;
	background-color: #FFFFFF;
	padding: 5px 0;
}
.able .able-playlist li { 
	background-color: white; /* default background color of each item in playlist */
	margin: 0;
	padding: .5em .8em;
	border-bottom: 1px solid black;
}
.able .able-playlist li:hover, 
.able .able-playlist li:focus, 
.able .able-playlist li:active { /* playlist items when they have mouse or keyboard focus */
	color: black; 
	background-color: #FFCB05;  
	text-decoration: none;
	cursor: pointer;
}
.able .able-playlist li.able-current { /* currently selected playlist item */
	color: white; 
	background-color: black; 
	font-weight: normal;
	outline: none;
	text-decoration: none;
}
.able .able-playlist li.able-current:after { 
	content: ' *';
}

/* 
 *
 * external playlist 
 *
 */
 
.able-playlist { 
}
.able-playlist li { 
}
.able-playlist li:hover, 
.able-playlist li:focus, 
.able-playlist li:active { /* playlist items when they have mouse or keyboard focus */
	background-color: #FFCB05; 
	text-decoration: none;
	color: black;
}
.able-playlist li.able-current { /* currently selected playlist item */
	color: white; 
	background-color: black; 
	font-weight: bold; 
	text-decoration: underline;
}
.able-playlist li.able-current:after { 
	content: ' *';
}

