input:required {					/* 必須入力の色を変える */
	background-color: #ffffa8;
}

input:valid {						/* 必須入力の色を戻す */
	background-color: white;
}

.imgfile {							/* 親div */
	position: relative;
}

.imgfile div {
	position: absolute;
	background-color: gray;
	color: white;					/* 文字は白に */
	font-weight: bold;				/* 太字に */
	font-size: 2em;					/* サイズ2倍 */
	top: 0;
	left: 0;
}

.imgfile img {
	width: 100%;
}

.camera a {
	background-color: pink;
}

.ws-movie {
	width: 640px;
	height: 480px;
	margin: 0;
	padding: 0;

	/* ----------------------------------------
		zoom など画像上でﾏｳｽ操作する場合に、
		ﾏｳｽﾀﾞｳﾝ～ｱｯﾌﾟを有効にするため、
		ﾄﾞﾗｯｸﾞやｾﾚｸﾄ出来ないようにしておく。

		-webkit-user-select: none;
		-ms-user-select: none;
		-moz-user-select: none;
	----------------------------------------- */
	user-select: none;

	/* user-drag はありません */
	-webkit-user-drag: none;
}

.right {							/* 右寄せ */
	float: right;
	vertical-align: middle;
	margin-right: 10px;
}
