/* canvas要素 */
canvas {
	border-style: solid;
	border-color: #aaaaaa;
	border-width: 0 0 1px 0;

	background-color: #000000;
}


/* body要素 */
body {
	font-size: 12px;
	background-color: #000000;
	color: #ffffff;
	padding: 0;
	margin: 0;
}


/* a要素 */
a {
	text-decoration: none;
	color: #aaaaaa;
	font-size: 1.3em;
	line-height: 0;

	margin: 0 0 0 0.3em;
}
a:hover {
	position: relative;
	top: 1px;
	left: 1px;
}


/* input要素 */
input {
	border: solid #ffffff 1px;
	background-color: #000000;
	color: #ffffff;

	margin: 0 2px;
}


/* コントロールボタン */
#ctrl_button > input[type=button] {
	background-color: #333333;
	margin: 0.03em 0.04em;
	width: 3.8em;
	height: 2em;
}

/* 時間入力欄 */
.min,
.sec {
	width: 1.5em;
}

/* 入力欄 */
#time_setting {
	line-height: 1.8;
	list-style-type: none;
	list-style-position: inside;

	border-color: #eeeeee;
	border-style: solid;
	border-width: 1px 0;
}
#time_setting li {
	border-color: #eeeeee;
	border-style: solid;
	border-width: 0 0 1px 0;

	padding: 0.5em 0;
}
#time_setting li:last-child {
	border:none;
}


/* 項目入力欄 */
.label {
	width: 7em;
}


/* inputのlabel */
#time_setting label {
	width: 5em;
	display: block;
	float: left;
}
#time_setting .input_form {
	float: left;
}
.br {
	clear: both;
	width: 1px;
	height: 1px;
	line-height: 0;
	padding: 0;
	margin: 0;
}