.qitem {
	width: 560px; /* 幅指定 */
	height: 350px; /* 高さ指定 */
	margin: 5px 0;
	background: url('http://e-maga.com/PIC/paper.jpg') 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 p.caption {
	position: absolute;
	z-index: 0;	
	display: block;
	font-size: 14px;
	color: #555555;
	padding: 10px 0;
	margin: 0;
	width: 560px;
	text-align: center;
}
.qitem p.caption .morelarge {
	line-height: 50px;
	font-size: 200%!important;
	margin: 0;
	color: #DD0000!important;
}

/* 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;	
}
