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

/********************************* image with dropshadow *********************************/


div.image {
	position: relative;

	padding: 0px;
	margin: 0px;

	background-color: #a5a5a5;
	border: 0px solid red;
}


div.image_left {
	padding: 0px;
	margin: 0px;
	position: absolute;
	left: -8px;
	top: 0px;
	background-image : url(../images/ds_image/left.jpg);
	background-position : top left;
	background-repeat : repeat-y;
	width: 8px;
	height: 100%;
	border: 0px solid blue;
}

div.image_tl-corner {
	padding: 0px;
	margin: 0px;
	position: absolute;
	left: -8px;
	top: 0px;
	background-image : url(../images/ds_image/tl-corner.jpg);
	background-position: top left;
	background-repeat: no-repeat;
	width: 8px;
	height: 8px;
	border: 0px solid green;
}

div.image_top {
	padding: 0px;
	margin: 0px;
	position: absolute;
	left: 0px;
	top: 0px;
	background-image : url(../images/ds_image/top.jpg);
	background-position : top left;
	background-repeat : repeat-x;
	width: 100%;
	height: 8px;
	border: 0px solid blue;
}

div.image_tr-corner {
	padding: 0px;
	margin: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	background-image : url(../images/ds_image/tr-corner.jpg);
	background-position: top right;
	background-repeat: no-repeat;
	width: 8px;
	height: 8px;
	border: 0px solid green;
}

div.image_right {
	padding: 0px;
	margin: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	background-image : url(../images/ds_image/right.jpg);
	background-position : top right;
	background-repeat : repeat-y;
	width: 8px;
	height: 100%;
	border: 0px solid blue;
}

div.image_br-corner {
	padding: 0px;
	margin: 0px;
	position: absolute;
	right: 0px;
	bottom: -8px;
	background-image : url(../images/ds_image/br-corner.jpg);
	background-position: bottom right;
	background-repeat: no-repeat;
	width: 8px;
	height: 8px;
	border: 0px solid green;
}

div.image_bottom {
	padding: 0px;
	margin: 0px;
	position: absolute;
	left: 0px;
	bottom: -8px;
	background-image : url(../images/ds_image/bottom.jpg);
	background-position : bottom left;
	background-repeat : repeat-x;
	width: 100%;
	height: 8px;
	border: 0px solid blue;
}

div.image_bl-corner {
	padding: 0px;
	margin: 0px;
	position: absolute;
	left: -8px;
	bottom: -8px;
	background-image : url(../images/ds_image/bl-corner.jpg);
	background-position: bottom left;
	background-repeat: no-repeat;
	width: 8px;
	height: 8px;
	border: 0px solid green;
}
