﻿h3.GroupHeader
{
	font-weight: bold;
	margin-bottom: 0;
	padding-bottom: 0; /* for IE7 */
	clear: both;
}

/* a single column of song names */
dl.songList
{
	position: relative;
	float: left;
	width: 50%;
	margin: 0;
	padding: 0; /* for IE7 */
	margin-top: 0.40625em;		/* a half height character (change if font size changes) */
	margin-bottom: 0.8125em;	/* a full height character (change if font size changes) */
}

/* the song name link */
dl.songList dt
{
	font-size: 0.8125em; /* 13/16 */
}
dl.songList dt a {
	text-decoration: none;
}
dl.songList dt a:hover {
	text-decoration: underline;
}

/* the song details popup */
dl.songList dd
{
	font-size: 0.625em; /* 10/16 */
	background: #333;
	border: 2px solid #D00;
	border-radius: 8px; /* CSS3 rounded corners */
	-moz-border-radius: 8px; /* Mozilla rounded corners */
	-webkit-border-radius: 8px; /* Safari rounded corners */
	color: #FFF;
	padding: 4px;
	width: 250px;
	position: absolute;
	left: -9999px;
	z-index: 1;
}

dl.songList dd .bold
{
	color: #FC0;
}

dl.songList dd .Close
{
	/* move it to the upper right hand corner */
	position: absolute;
	top: -2px;
	right: -2px;
	margin: 0;
	border-style: none;
}