/* gallery photoalbums etc */

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

.gallery .caption {
	width:125px;
	height:auto;
	background:#000;
	color:#fff;
		
	/* fix it at the bottom */
	position:absolute;
	bottom:-1px; /* fix IE issue */
	left:0;

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

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

}

.gallery .caption  {
	color:#fff;
	font-size:12px;	
	
	/* add spacing and make the whole row clickable*/
	padding:5px 5px 6px 5px;
	display: none;
}

.gallery img {
	border:0;
	
	/* allow javascript moves the img position*/
	position:absolute;
}


/* gallery2 makers etc */

.gallery2 {
	width:75px;
	height:75px;	
	border:1px solid #222;	
	margin:5px;
	
	/* required to hide the image after resized */
	overflow:hidden;
	
	/* for child absolute position */
	position:relative;
	
	/* display div in line */
	float:left;
}

/* thumbs rightside */
#thumbs-rightcolumn img {
	margin-right: 8px;
	margin-bottom: 8px;	
}

