/*
	style_artist.css
	Stylesheet for susanhobbs.com
	
	Copyright ©2010 Gordon Hicks, all rights reserved	
*/	


/* Photos */

	#photos {
		width: 420px;
		height: 540px;
		overflow: visible;
	}

	.photo {
		height: 100%;
		width: 100%; /* default; js updates to image width + 2px; */
		position: absolute;
		top: 0;
		right: 0;
		visibility: hidden;
		z-index: 1;
		
	}

	.photo:first-child { /* doesn't work in ie6 */	
		visibility: visible;
		z-index: 2;
	}



/* About, Biography, Bibliography */

	#about,
	#biography,
	#bibliography {
		display: none;
		width: 266px;
		overflow: visible;
		float: left;
		z-index: 1;
	}

	#about { display: block; z-index: 2; }

	#about p,
	#biography p,
	#bibliography p {
		margin-bottom: 8px;
	}

	#biography h3 {
		margin: 17px 0;
	}

	#biography .year {
		margin: 8px 0 0 0;
	}
	
	#biography .year:first-child {
		margin: 0 0 0 0;
	}

	#biography .item {
		margin: 0 0 0 12px;
		text-indent: -12px;
	}
	
	#bibliography .publication {
		margin: 0 0 12px 0;
		/* font-size: 12px; */
		/* line-height: 16px; */
	}

	#bibliography .publication p {
		margin: 0 0 0 0;
	}

	#bibliography .publication a {
	}

/* Footer */	
	
	.footer .copyright {
		right: 288px;
		text-align: right;
	}

	.footer .top-of-page {
		left: 442px;
	}


