
/* this file contains ONLY the CSS for the recent work image on every page.
 * to change the recent work image, simply change the file name in the background style below, 
 * for example, from tenoclock.jpg to mynewfile.jpg,
 * so instead of: 	background: no-repeat center top url(../graphics/recentwork/tenoclock.jpg) ;
 * it will be:		background: no-repeat center top url(../graphics/recentwork/mynewfile.jpg) ;
 * and place the file in graphics/recentwork
 * 
 * the image must not be wider than 234px or it will be clipped. if it wasn't clipped, it would break the layout.
 * the image can be taller than 196px and should display correctly automatically.
 * 
 * finally, if it gets messed up, just copy the original tag that is commented at the bottom and replace the tag below.
 */


#recentWork {
	width: 234px; 
	height: auto;		
	min-height: 600px;
	overflow: hidden; 
	background: no-repeat center top url(../graphics/recentwork/tenoclock.jpg) ;
}
/* Hack for IE */
* html #recentWork {
    height: 600px;
}
/* End IE Hack */ 

/* #recentWork {
	width: 234px; 
	height: auto;		
	min-height: 600px;
	overflow: hidden; 
	background: no-repeat center top url(../graphics/recentwork/tenoclock.jpg) ;
} */