/* photo_gallery_index.css
 * ------------------------
 * Dylan Schwilk 
 * Two column style sheet layout for web gallery index pages.
 * text/description column on left and main box for thumbnails on right 
 */

@import "photo_main.css"; 

/* all middle content boxes are members of .content class.  This allows multiple instances and separate borders of so desired. */
.content {
	position:relative;
	width:auto;
	min-width:230;
	margin: 20px 20px 20px 20px;
	padding: 10px 10px 10px 10px;
	border: none /*1px solid #ccc*/;
	background: white;
	z-index:3;
	}

#left {
	position: absolute;
	top: 60px;
	left: 0px; 
	margin: 20px;
	padding: 10px 10px 10px 10px;
	border: none /*1px solid #ccc*/;
	background: white;
	z-index:2;
	width: 190px; /* ie5win fudge begins */
	voice-family: "\"}\"";
	voice-family:inherit;
	width: 170px;
	}
html>body #left {
	width: 170px; /* ie5win fudge ends */
	}

	

	
