/* podcast.css
   Podcast blurb component for the main index (three podcast entries
   under the Archive column, above/around the show tickets). Class
   names kept exactly as-is (accountContainer / thumb / textBlurb) --
   genrss.py parses the page by these names, so renaming them would
   mean touching that script too.

   Pulled out of root.css, which had this component buried under a
   pile of x-prefixed dead properties (old IE width-wrangling history,
   see the comments below) -- only one declaration in the original
   div.accountContainer rule was ever actually live: the margin.
*/

div.accountContainer {
	margin: 10px 0px 0px 20px;
}

img.thumb {
	/* no left margin/padding -- accountContainer's margin handles that */
	border: 2px solid darkorange;
	border-radius: 25px 0px 0px 25px;
	background-color: grey;
	width: 139px;
	height: 139px;
	float: left;
	margin-right: 5px;
}

div.textBlurb {
	height: 139px;
	overflow: auto;
	background-color: black;
	color: white;
	font-family: courier;
	font-size: 12px;
	border: 2px solid darkorange;
	border-radius: 0px 25px 25px 0px;
}

/* This padding used to come for free from root.css's global p{padding:1em}
   rule -- now that that's gone (intentionally, it was a page-agnostic
   default that didn't belong bundled into this component), textBlurb
   needs its own explicit spacing or the text sits flush against the
   border. */
div.textBlurb p {
	margin: 0;
	padding: 1em;
}
