/* Photo gallery template ||| Joshuaink.com ||| March 2005 ||| Free to use but this credit must remain in place */
/*Photo gallery template borrowed and slightly modified from http://joshuaink2006.johnoxton.co.uk/
blog/206/css-photo-gallery-template.*/

*{
	margin:0;
	padding:0;
	font-size:100%;

}

a{
	color:#666;
	text-decoration:none;
}

#wrap{
	width:100%;
	margin:0 auto;
	position:relative;
}

#header{
	margin-bottom:20px;
}

#header a{
	text-decoration:underline;
}



#main-content li{
	width:200px;
	border:solid #CCC;
	border-width:0 1px 1px 0;
/* uncomment and adjust this if you want a rounded frame in Mozilla browsers
	-moz-border-radius:20px;
 */
	background:#FFF;
	padding:10px;
	text-align:center;
	position:relative;
	float:left;
	display:inline;
	margin:5px;
}

#main-content a:hover { white-space: normal; }

#main-content  a span{
/*\*/
	position:absolute;
	left:-9999px;

}

#main-content a:hover span{	
	top:10px;
	left:10px;
	width:202px;
	font-weight:bold;
	background:#FFF;
	color:#999;
	padding:5px 0 5px 0;
	text-transform:uppercase;
	font-size:80%;
	border:1px solid #EEE;
	border-width:0 0 10px 0;
	/*filter: alpha(opacity=100);
	/*-moz-opacity:.8;
		opacity:.80;*/
/**/
} 


#main-content img{
	border:1px solid #EEE;
/* delete line above and uncomment this for an inset effect
	border:1px solid;
	border-color:#666 #EEE #EEE #666;
 */
}

#foot{
	padding-top:10px;
	margin-bottom:20px;
	clear:left;
	text-align:center;
}