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

.itemBlockLogos {
	width:150px;
	height:150px;	
	border:2px solid #cc0000;	
	margin:8px 8px 8px 8px;
	
	/* required to hide the image after resized */
	overflow:hidden;
	
	/* for child absolute position */
	position:relative;
	
	/* display div in line */
	float:left;
}

.itemBlockLogos .captionBlockLogos {
	width:150px;
	height:150px;
	background:#000;
	color:#fff;
	font-weight:bold;
		
	/* 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,  */

}

.itemBlockLogos .captionBlockLogos a {
	text-decoration:none;
	color:#0cc7dd;
	font-size:16px;	
	text-align:center;
	
	/* add spacing and make the whole row clickable*/
	padding:16px;
	display:block;
}

.itemBlockLogos .captionBlockLogos p {
	padding-top:0;
	padding-right:10px;
	padding-left:10px;
	margin:0;
	font-size:10px;
	text-align:left;
	line-height:12px;
}

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

.clear {
	clear:both;	
}