body{
	margin:0px;
	font-family: Arial, sans-serif;
	font-weight: normal;
}
#piccontainer{ /* gallery container */
	width:900px;
	margin:10px auto;
	padding:20px;
	background-color:white;
	overflow:hidden; /* necessary to display the frame around the gallery */
}
#main_image{ /* main image container */
	width:320px; /* same width of all big pictures */
	height:400px; /* same height of all big pictures */
	float:left;
	position:fixed; /* necessary to display the caption over the photo */
	top:200px;
	right:150px;
	overflow:hidden;
	background-repeat: no-repeat;
}
#caption{ /* image caption */
	background-color:black;
	color:white;
	width:300px; /* necessary to display properly in IE - don't set it on 100& but 640 (#main_image width) - 20 (left+right #caption padding)*/ 
	
	padding:0px 10px 10px 10px;
	position:absolute; /* placing it at the bottom of the big image */
	bottom:0;
	left:0;
}
#caption p, h2{
	margin:0; /* necessary for Firefox */
	font-size: 0.8em;
} 
#thumbnails{ /* right thumbnails container */
	float:left;
	width:550px;
	/*f0f0f0*/
	background-color:#f0f0f0;
}
#thumbnails ul{ /* list with thumbnails and titles */
	margin:0;
	padding:0;
	list-style-type:none;
}
#thumbnails h2 {
	font-size: 12px;
}
#thumbnails ul li{
	margin:0;
	padding:12px 10px;
	background-color:#f0f0f0;
	width:110px;
	float:left;
}
#thumbnails ul li img{ /* the "real" thumbnails... the images */
	border:1px solid #cccccc;
	padding:5px;
	background-color:#ffffff;
	float:left;
}
#thumbnails ul li.hover{ /* hover effect */
	background-color:#dddddd;
	cursor:pointer;
}
#thumbnails ul li.current{ /* applying a different style for the current image */
	background-color:white;
	cursor:default;
}
#thumbnails ul li.current a{
	cursor:default; /* don't show the hand on links in the current image */
}
#thumbnails ul li .description{ /* thumbnail title */
	float:left;
	/*margin-left:10px;*/
	font-weight: 3px;
	padding:0;
	/*width:160px;*/
} 
#thumbnails ul li p{ /* thumbnail description... hidden because I'll show it elsewhere (in the caption) */
	display: none;
}

.tdtext {
	font-weight: bold;
	font-size: 12px;
}