/*
 * 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;

	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 img {
	display: block;
	margin: auto;
}
div.albums div.entry div.misc img.albumimg {
	margin-bottom: 0.5em;
	border: solid 1px;
}
div.albums div.entry div.misc div.clicknote {
	font-size: 85%;
	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-bottom: 0.5em;
}
div.albums div.entry div.misc div.retailer img {
	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.mainTbl {
	margin-left: 125px;
	padding-left: 0.5em;
}
div.albums div.entry div.mainTbl table.tracks {
	border: solid 1px;
	border-collapse: collapse;
	margin-bottom: 0.75em;
}
div.albums div.entry div.mainTbl table.tracks tbody tr {
}
div.albums div.entry div.mainTbl table.tracks tbody tr.even {
}
div.albums div.entry div.mainTbl table.tracks tbody tr.odd {
}
div.albums div.entry div.mainTbl table.tracks tbody tr td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 85%;
	vertical-align: middle;
	border: none;
	border-collapse: collapse;
	border-top: solid 1px;
	border-bottom: solid 1px;
	padding: 4px 4px;
}
div.albums div.entry div.mainTbl table.tracks tbody tr td.track {
	text-align: left;
	padding-right: 1.5em !important;
}
div.albums div.entry div.mainTbl table.tracks tbody tr td.link {
	padding: 3px 0px;
}
div.albums div.entry div.mainTbl table.tracks tbody tr td.link a {
	padding: 0px 6px;
}
div.albums div.entry div.mainTbl table.tracks tbody tr td.title {
	padding-right: 1em;
}
div.albums div.entry div.mainTbl table.tracks tbody tr td.track_number {
	padding-left: 0.5em;
}
div.albums div.entry div.mainTbl table.tracks tbody tr td.track_title {
}
div.albums div.entry div.mainTbl table.tracks tbody tr td.link {
	border-left: none;
	border-right: none;
	border-collapse: collapse;
	text-align: center;
}
div.albums div.entry div.mainTbl div.buy_digital_album {
	font-weight: bold;
	font-size: 90%;
	margin-bottom: 1em;
	margin-left: 1em;
}
div.albums div.entry div.mainTbl div.description {
}


/*
 * The extended info popup windows.
 */
body.popup {
	font-size: 90%;
}
body.popup div.sublinks {
	text-align: center;
	margin: 1.5em auto 1.5em auto;
}
body.popup div.viewcart {
	text-align: center;
	margin: 1.5em auto 1.5em auto;
}

body.popup div.title {
	font-weight: bold;
	text-align: center;
	margin-bottom: 0.5em;
}
body.popup div.photo {
	text-align: center;
	margin: auto;
}
body.popup div.photo img {
	border: solid 1px;
}
body.popup div.sub_heading {
	margin-top: 1em;
	margin-bottom: 0.25em;
	font-weight: bold;
}

/*
 * 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;
}

/*
 * Album Details
 */
 
div.albumdetails table.tracks {
	border: solid 1px;
	border-collapse: collapse;
	margin-bottom: 0.75em;
	display: table;
	margin-right: auto;
	margin-left: auto;
}

div.albumdetails table.tracks tbody tr td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 85%;
	vertical-align: middle;
	border: none;
	border-collapse: collapse;
	border-top: solid 1px;
	border-bottom: solid 1px;
	padding: 4px 4px;
}
