/*
 * Album style. The format is like this:
 *
 *	------------
 *	| T        |
 *	|----------|
 *	| i |   t  |
 *	|---|------|
 *	| p |   d  |
 *	|   |   d  |
 *	|   |   d  |
 *	------------
 * Where T = album title
 *		i = album image / date / link to credits 
 *		p = album itemnumber / price / purchase button
 *		t = album tracks with track links (table.tracks)
 *		d = album description
 */
div.albums div.entry {
	padding-bottom: 1em;
	border-bottom: solid 1px;
	margin-bottom: 1em;
}
div.albums div.entry div.title {
	font-size: 120%;
	font-weight: bold;
	margin-bottom: 0.5em;
}
/* 
 * A width must be specified for the 'misc' section or else things will
 * not be properly aligned until the album cover image is cached. The
 * width should be just enough to accomodate the album plus the border. 
 */
div.albums div.entry div.misc {
	width: 122px; 
	float: left;
	text-align: center;
	overflow: hidden;
}
div.albums div.entry div.misc div.thumbnail {
	margin: 0px !important;
	float: none !important;
	margin-bottom: 0.5em !important;
}
div.albums div.entry div.misc div.thumbnail div.caption {
	display: none;
}
div.albums div.entry div.misc div.clicknote {
	font-size: 80%;
	font-style: italic;
	margin-bottom: 0.5em;
}
div.albums div.entry div.misc div.date {
	font-size: 90%;
	font-weight: bold;
	margin-bottom: 0.5em;
}
div.albums div.entry div.misc div.advertised_price {
	font-weight: bold;
	margin-bottom: 0.5em;
}
div.albums div.entry div.misc div.out_of_stock {
	font-weight: bold;
	margin-bottom: 0.5em;
}
div.albums div.entry div.misc div.retailer {
	margin: auto;
	margin-bottom: 0.5em;
}
div.albums div.entry div.misc div.retailer img {
	margin: auto;
	border: none !important;
	display: block;
}
div.albums div.entry div.misc div.moreinfolink {
	margin-bottom: 0.5em;
}
div.albums div.entry div.misc div.creditslink {
	font-size: 90%;
	margin-bottom: 0.5em;
}
div.albums div.entry div.misc div.playall_link {
	font-size: 90%;
	font-weight: bold;
	margin-bottom: 0.5em;
}
div.albums div.entry div.misc div.podcast_link {
	font-size: 90%;
	margin-bottom: 0.5em;
}
div.albums div.entry div.main {
	margin-left: 125px;
	padding-left: 0.5em;
}
div.albums div.entry div.main table.tracks {
	border: solid 1px;
	border-collapse: collapse;
	margin-bottom: 0.75em;
}
div.albums div.entry div.main table.tracks tbody tr {
}
div.albums div.entry div.main table.tracks tbody tr.even {
}
div.albums div.entry div.main table.tracks tbody tr.odd {
}
div.albums div.entry div.main table.tracks tbody tr td {
	vertical-align: middle;
	border: none;
	border-collapse: collapse;
	border-top: solid 1px;
	border-bottom: solid 1px;
	padding: 4px 4px;
	font-size: 80%;
}
div.albums div.entry div.main table.tracks tbody tr td.track {
	text-align: left;
	padding-right: 1.5em !important;
}
div.albums div.entry div.main table.tracks tbody tr td.link {
	padding: 3px 0px;
}
div.albums div.entry div.main table.tracks tbody tr td.link a {
	padding: 0px 6px;
}
div.albums div.entry div.main table.tracks tbody tr td.title {
	padding-right: 1em;
}
div.albums div.entry div.main table.tracks tbody tr td.track_number {
	padding-left: 0.5em;
}
div.albums div.entry div.main table.tracks tbody tr td.track_title {
}
div.albums div.entry div.main table.tracks tbody tr td.link {
	border-left: none;
	border-right: none;
	border-collapse: collapse;
	text-align: center;
}
div.albums div.entry div.main div.buy_digital_album {
	font-weight: bold;
	font-size: 90%;
	margin-bottom: 1em;
	margin-left: 1em;
}
div.albums div.entry div.main div.description {
}


/*
 * The following style is for the download area.
 * Right now it is duplicated in downloads/style.css, but I'm
 * trying to migrate the paths. If successful, then eventually
 * downloads/style.css can be deleted.
 */

/*
 * The transaction listing on the 'you have paid' page.
 */
table#transaction {
	border: solid 1px;
	border-collapse: collapse;
}
table#transaction th {
	border: solid 1px;
	border-collapse: collapse;
	padding: 2px 8px;
}
table#transaction td {
	border: solid 1px;
	border-collapse: collapse;
	padding: 2px 8px;
}


/*
 * The file listing when a user is logged in
 */
table#files {
	border: solid 1px;
	border-collapse: collapse;
}
table#files th {
	border: solid 1px;
	border-collapse: collapse;
	padding: 2px 8px;
}
table#files td {
	border: solid 1px;
	border-collapse: collapse;
	padding: 4px 8px;
	text-align: center;
}



/*
 * The "Show Details" link that appears when descriptions are hidden by default.
 */
div.details_link {
	font-weight: bold;
	font-size: 90%;
	padding: 1em;
}
