/* 画像サムネイル表示 */
.thumb {
	display:inline-block;
/*	margin:0.5px;*/
	max-height: 120px;
	max-width: 120px;
/*	border: 1px solid #999;*/
	border-radius: 4px;
}

/* サムネイル画像設定 */
#thumbnail-input {
  display:none;
}
#thumbnail-show {
/*	display:block;*/
	float: left;
	margin:0 5px;
	height: 120px;
	width: 120px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 10px;
	color: #999;
	text-align: center;
/*	background-color: #ccc;*/
	//padding-top:50px;
}
#thumbnail-show.selected {
	padding: 0;
}

/* メイン画像設定 */
.mainimage-input {
  display:none;
}
.mainimage-show {
	display:inline-block;
	float: left;
	margin:0 5px;
	min-height: 120px;
	min-width: 120px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 10px;
	color: #999;
	text-align: center;
/*	background-color: #ccc;*/
	//padding-top:50px;
}
.mainimage-show.selected {
	padding: 0;
}

