@charset "UTF-8";
/* CSS Document */
body {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	background: black;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
#container {
	width: 80%;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 2px solid red; /* debug */
	padding: 0px 20px;
	text-align: center; 
	color: silver;
	font-weight: bold;
}
#header {
	/* border: 2px solid purple; /* debug */
}
#header .menu {
	padding-bottom: 20px;
	font-weight: bold; 
	font-size: .85em;
	color: #74A7E8;
}
#header a {
	text-decoration: none; 
	color: #74A7E8; 
}
#header a:hover {
	text-decoration: underline; 
	color: silver;
}

#mainContent {
	/* border: 2px solid white; /* debug */
}

#mainContent .title {
	padding: 15px 0px;
	font-size: 1.5em;
}
#mainContent .subtitle {
	padding-top: 40px; 
	padding-bottom: 25px; 
	text-align: left; 
	font-size: 1.00em;
}
#mainContent .description {
	padding: 10px 20px;
	text-align: left; 
	font-size: .85em;
	font-weight: normal;
}
#mainContent .caption {
		padding-top: 10px;
		padding-bottom: 11px;
		font-weight: bold; 
		font-size: 1.0em;
		color: silver;
}
#mainContent .artistbio td{
	text-align: left;
	vertical-align: top;
	margin-left: 27px;
	font-weight: normal;  
	font-size: .85em; 
	padding: .9em .5em .9em .5em;
}
#mainContent a {
	text-decoration: none; 
	color: #74A7E8; 
}
#mainContent a:hover {
	text-decoration: none; 
	color: silver;
}
#mainContent .clickupdatetext {
	padding: 10px 0px; 
	font-style: italic;
	font-size: .75em; 
}
#mainContent .invbox {
	padding: 7px; 
	margin: 12px;
	border: 1px solid #333333;
}
#mainContent .invbox img {
	border: 2px solid; 
	border-color: #333333;
	margin: 11px;
}
#footer { 
		padding: 9px 0px;
		font-size: x-small;
		color: gray;
}

