@charset "utf-8";
/* CSS Document */

.miniature_item {
	width:125px;
	height:125px;	
	border:2px solid #FFF;
	margin:0px 5px 20px 20px;
	
	/* required to hide the image after resized */
	overflow:hidden;
	
	/* for child absolute position */
	position:relative;
	
	/* display div in line */
	float:left;
}

.miniature_item .miniature_caption {
	width:125px;
	height:125px;
	background:#000;
		
	/* fix it at the bottom */
	position:absolute;
	left:0;

	/* hide it by default */
	display:none;

	/* opacity setting */
	filter:alpha(opacity=80);    /* ie  */
	-moz-opacity:0.8;    /* old mozilla browser like netscape  */
	-khtml-opacity: 0.8;    /* for really really old safari */  
	opacity: 0.8;    /* css standard, currently it works in most modern browsers like firefox,  */
}

.miniature_caption {
	padding:5px;
	text-align:center;
	font-size:12px;
	color:#FFFFFF;	
}

.miniature_item .miniature_caption a {
	text-decoration:underline;
	color:#FFFFFF;	
	font-size:10px;
	/* add spacing and make the whole row clickable*/
	padding:5px;
	display:block;
}

.miniature_item img {
	border:0;
	width:125px;
	height:125px;
	/* allow javascript moves the img position*/
	position:absolute;
}

.miniature_item, .miniature_caption, .miniature_item img {
	/* radius */
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.clear {
	clear:both;	
}
.miniature_caption a strong {
	font-size:14px;
	font-weight:bold;
	color:#FFF;
}

