/**
 * tf Song List Styles
 *
 * Thorsten Frommen
 * http://ipm-frommen.de
 */


/**
 * Please DO NOT EDIT this file directly, or your changes will be undone on the next update.
 * If you want to customize some/all of the CSS, either define it inside your own CSS file,
 * or put a copy of this very file inside your theme folder (keeping the name tf-song-list.css).
 * The plugin first loads the default file and then the file from inside your theme folder.
 */


/* Introduction before the actual song list */
#tfsl-introduction {
	margin-bottom: 1.5em;
}

/* Song list wrapper */
#tfsl-wrapper {
	cursor: pointer;
}

/* Song list table */
#tf-song-list {
	margin: 0 auto;
	width: 100%;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
}

/* Song list table cells */
#tf-song-list td {
	border: 0 none transparent;
}

/* Song list headings */
#tf-song-list thead td {
	font-size: 150%;
	line-height: normal;
}

/* First song list column */
#tf-song-list .col1 {
	border-right-width: 1px;
	padding-right: 7px;
	text-align: right;
}

/* Second song list column */
#tf-song-list .col2 {
	border-left-width: 1px;
	padding-left: 7px;
	text-align: left;
}

/* Actual listing of the songs */
#tfsl-the-list {
}

/* Song row hover style */
#tfsl-the-list tr:hover {
	background: rgba(128, 128, 128, .1);
}

/* Song row style for new first letter */
#tfsl-the-list tr.new-first-letter td {
	padding-top: .75em;
}