/* --- Formatting of the Artists Catalogue. --- */

/* The default width of pages on the site are too narrow to have
	the CD Library TOC and each artist's bio side-by-side, so the
	page and page content are grown slightly to make more room.
	The width for table.albums later on is also dependent on the
	page size and must be modified. */

#page
{
	width: 58em;
}

#pageContent
{
	width: 44em;
}

div.artists_toc
{
	float: right;
	width: 13em;

	margin-left: 2em;
	margin-bottom: 2ex;
	padding-bottom: 1.2ex;
	border-left: 2px solid #E7E7E0;
}

div.artists_toc p
{
	margin-left: 1.5em;
}

div.artists_toc p.label
{
	margin-top: 0ex;
	margin-bottom: 2ex;
	text-align: left;
}

div.artists_toc p.title
{
	font-size: 11pt;
	margin-bottom: 0.5ex;
	margin-left: 1.2em;
}

table.artists
{
	border: 1px #C0C0D0 solid;
	border-top: none;
	margin-right: 0px;
	margin-bottom: 2ex;
	margin-top: 0ex;
	margin-left: 1.5em;
}

caption
{
	background: #F7F7F0;
	border: 1px #A0A097 solid;
	padding-top: 0.2ex;
	padding-bottom: 0.2ex;
	margin-bottom: 0px;
	padding-left: 0.5em;
	width: 13em;
	text-align: left;
}

table.artists a
{
	text-decoration: none;
}

table.artists a:hover
{
	text-decoration: underline;
}

table.artists a.favourite:after
{
	content: "*";
}

p.favourite:before
{
	content: "* ";
}

p.favourite
{
	font: 9pt Lucida Grande,Geneva,Arial;
	text-align: center;
}

table.artists td
{
	padding-left: 0.5em;
	font: 9pt Lucida Grande,Geneva,Arial;
}


/* --- Formatting for the table of albums associated with an artist. --- */

table.albums
{
	/* Separate from the profile body text. */
	margin-top: 4ex;

	/* Default column widths are too tight. */
	width: 36em;

	/* Eliminate gaps for alternating row backgrounds. */
	border-spacing: 0ex;
}

table.albums th
{
	text-align: left;
}

table.albums td, table.albums th
{
	text-align: left;
	border-bottom: 1px solid #C0C0D0;
}

table.albums tr td
{
	/* Default column widths make columns too close to each other */
	padding-right: 1em;
}

table.albums tr td:last-child, table.albums tr th:last-child
{
	/* Last column doesn't have a next column, so undo padding from
		previous rule so the table fills the width of the page. */
	padding-right: 0em;

	/* The Release Year doesn't look good left-aligned. */
	text-align: center;
}

div#pageHeight
{
	/* By placing a non-breaking space at the bottom of the page and
		makiing it clear floating elements on both sides, the page is
		always tall enough to contain the artists library, even when
		the profile isn't long enough. */
	clear: both;
}

span.h1
{
	/* The first line of an artist's profile is used to parse the title
		and H1 heading for this page. Therefore, each profile is expected
		to use a span.h1 line as the first line which will be hidden when
		displayed. */
	display: none;
}
