.shadow {
	position: relative; 
	top: 0px; 
	left: 0px; 
	padding: 0px; 
	margin: 0px; 
	/* Width and height should be set to image width and height */
}

.LT, .L, .BL-corner, .BL, .B, .BR-corner, .R, .RT, .TR-corner, .T{
	font-size: 1px;
}

.LT {
	position: absolute; 
	top: 0px; 
	left: -4px; 
	height: 5px; 
	width: 4px; 
	background: url(LT.png) no-repeat scroll right bottom;
}

.L {
	position: absolute; 
	top: 5px; 
	left: -4px; 
	height: 5px; /* Height should be set to image height - 5 */
	width: 4px; 
	background: url(L.png) repeat-y scroll right center;
}

.BL-corner {
	position: absolute; 
	top: 10px; /* Top should be set to image height */
	left: -4px; 
	height: 7px; 
	width: 4px; 
	background: url(BL-corner.png) no-repeat scroll right top;
}

.BL {
	position: absolute; 
	top: 10px; /* Top should be set to image height */ 
	left: 0px; 
	height: 7px; 
	width: 5px; 
	background: url(BL.png) no-repeat scroll center top;
}

.B {
	position: absolute; 
	top: 10px; /* Top should be set to image height */
	left: 5px; 
	height: 7px; 
	width: 5px; /* Width should be set to image width - 5 */
	background: url(B.png) repeat-x scroll center top;
}

.BR-corner {
	position: absolute; 
	top: 10px; /* Top should be set to image height */
	left: 10px; /* Left should be set to image width */
	height: 7px; 
	width: 6px; 
	background: url(BR-corner.png) no-repeat scroll left top;
}

.R {
	position: absolute; 
	top: 5px; 
	left: 10px; /* Left should be set to image width */
	height: 5px; /* Height should be set to image height - 5 */
	width: 6px; 
	background: url(R.png) repeat-y scroll left center;
}

.RT {
	position: absolute; 
	top: 0px; 
	left: 10px; /* Left should be set to image width */
	height: 5px; 
	width: 6px; 
	background: url(RT.png) no-repeat scroll left bottom;
}

.TR-corner {
	position: absolute; 
	top: -3px; 
	left: 10px; /* Left should be set to image width */
	height: 3px; 
	width: 6px; 
	background: url(TR-corner.png) no-repeat scroll left bottom;
}

.T {
	position: absolute; 
	top: -3px; 
	left: 0px; 
	height: 3px; 
	width: 10px; /* Width should be set to image width */
	background: url(T.png) repeat-x scroll center bottom;
}