body {
	font-family:arial;	
}

.qitem {
	/* width and height must be even number */
	width: 270px;
	height: 270px;	
	
	/* some styling for the item */
	border: 0px;	
	margin: 0px;
	background: url('images/slider_background.jpg');
	background-repeat: no-repeat;
	
	/* make sure the four divs are hidden after changing the position */
	overflow: hidden;
	
	/* absolute position enabled for children elements*/
	position: relative;
	
	/* display item in single row */
	float: left;
	
	/* hand symbol for ie and other browser */
	cursor: pointer;
}

.qitem img {
	border: 0;
}

/* styling for caption, position absolute is a must to set the z-index */
.qitem .caption {
	position: absolute;
	z-index: 0;	
	color: #444444;
	display: block;
	text-align: center;
}

.qitem h2 {
	padding-top: 20px;
	padding-bottom: 10px;
	margin: 0;
	line-height: 100%;
}

.qitem .caption p {
	font-size: 10px;	
	padding: 3px 5px 0 8px;
	margin: 0;
}

/* Generic setting for corners */
.topLeft, .topRight, .bottomLeft, .bottomRight {
	/* allow javascript to move the corners */
	position: absolute;
	background-repeat: no-repeat; 
	z-index: 200;
}

/* set the background position for different corners */
.topLeft {
	background-position: top left; 	
} 

.topRight {
	background-position: top right; 
} 

.bottomLeft {
	background-position: bottom left; 
} 

.bottomRight {
	background-position: bottom right; 
}

.clear {
	clear:both;	
}