.box{
	position:relative;
}
	ins.t,ins.f,ins.b,ins.r,ins.l{
		display:block;
	}
	ins.t,ins.f{
		position:relative;
		height:15px;
	}
	.l, .r{
		position:absolute;	
		width:50%;
		height:100%;
	}
	.b{
		background-image: url(/images/bg_box1.png);
		background-repeat: no-repeat;
	}
	.box .t {}
		.box .t .l{
			left:0;
			top:0;
			background-position:top left;
		}
		.box .t .r{
			right:0;
			top:0;
			background-position:top right;
		}
	.box .m {
		position:relative;
		height:auto;
	}
		.box .m .l,
		.box .m .r {
			background-image: url(/images/bg_box_vert.png);
			background-repeat: repeat-y;	
		}
		.box .m .l{
			left:0;
			top:0;
			background-position: 0 0;
		}
		.box .m .r{
			left:50%;
			top:0;
			background-position: 100% 0;
		}
		.box .m div.c{
			position:relative;
			padding:0 15px;
		}
		
	.box .f {}
		.box .f .l{
			left:0;
			top:0;
			background-position:bottom left;
		}
		.box .f .r{
			left:50%;
			top:0;
			background-position:bottom right;
		}