﻿body {
	font-family:arial;	
}

.qitem {
	width: 126px;
	height: 126px;		
/*	border:4px solid #222;	*/
/*	margin:5px 5px 5px 0;*/
/*	background: url('bg.gif') no-repeat;*/
	
	
	/* required to hide the image after resized */
	overflow:hidden;
	
	/* for child absolute position */
	position:relative;
	
	/* display div in line */
	float:left;
	cursor:hand; cursor:pointer;
}

	.qitem img {
		border:0;
	
		/* allow javascript moves the img position*/
		position:absolute;
		z-index:200;
	}

	.qitem .caption {
		position:absolute;
		z-index:0;	
		color:#ccc;
		display:block;
	}

		.qitem .caption h4 {
			font-size:75%;
			padding:10px 5px 0 8px;
			margin:0;
			/*color:#369ead;*/
			color:#0000FF;
		}

		.qitem .caption p {
			font-size:62%;	
			padding:3px 5px 0 8px;
			margin:0;
                        color:#FF00FF;
                        line-height:1.2em;
		}

/* Setting for corners */

.topLeft, .topRight, .bottomLeft, .bottomRight {
	position:absolute;
	background-repeat: no-repeat; 
	float:left;
}

.topLeft {
	background-position: top left; 	
} 

.topRight {
	background-position: top right; 
} 

.bottomLeft {
	background-position: bottom left; 
} 

.bottomRight {
	background-position: bottom right; 
}

.clear {
	clear:both;	
}