@charset "utf-8";
h1 {
	font-size:100%;
	}
/* .bkg と .dom を重ねるためのフレーム */
.frm {
	position:relative;
	margin:10px;
	float:left;
	}
/* 背景用 */
.bkg {
	border:solid #f00 1px;/* 赤枠 */
	width:200px;
	height:100px;
	opacity: 0.5;/* chrome,safari,opera */
	-moz-opacity: 0.5;/* firefox */
	filter:alpha(opacity=50);/* IE */
	}
/* 文字用 */
.dom{
	position:absolute;
	top:0px;
	left:0px;
	border:solid #000 1px;/* 黒枠 */
	width:200px;
	height:100px;
	}

