html, body {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	font-size: 10pt;
}
* {
	margin: 0;
	padding: 0;
	font-weight: normal;
	text-decoration: none;
	color: #000;
	box-sizing: border-box;
}
a {
	color: rgba(86, 143, 215, 1);
}
a:hover {
	color: rgba(86, 143, 215, 0.6);
}
.responce {
	opacity: 0.7;
}
input[type='submit'], input[type='reset'] {
	cursor: pointer;
}
input[type='submit']:hover, input[type='reset']:hover {
	opacity: 0.7;
}

body {
	padding-top: 60px;
	background-color: rgba(0, 0, 0, 0);
}
header {
	position: fixed;
	top: 0; right: 0; left: 0;
	margin: 0;
	padding: 0;
	height: 30px;
	background-color: rgba(175, 200, 215, 0.8);
}
header h1 {
	position: relative;
	margin: 2px 0 0 10px;
	width: auto;
	line-height: 28px;
	font-size: 16px;
	color: #FFF;
}

nav {
	position: fixed;
	top: 30px; right: 0; left: 0;
	height: 24px;
	background-color: rgba(190, 202, 215, 0.8);
	box-sizing: border-box;
}
nav ul {
	position: relative;
	margin: 0 10px;
	list-style: none;
	letter-spacing: -0.5em;
}
nav ul li {
	display: inline-block;
	margin: 1px 10px 0 0;
	line-height: 23px;
	letter-spacing: normal;
}
nav.sub {
	position: relative;
	top: 0;
	margin-bottom: 10px;
	background-color: #FFF;
}
nav.sub ul{
	border-bottom: solid 1px #999;
	margin: 0;
}
nav.sub ul li {
	border: solid 1px #999;
	margin: 0 2px -1px;
	padding: 0 10px;
	border-radius: 3px 3px 0 0;
}
nav.sub ul li:first-child {
	margin-left: 10px;
}
nav.sub ul li.current {
	border-bottom-color: #FFF;
}
section {
	position: relative;
	margin: 0 0 10px 0;
	padding: 10px;
}
section h2 {
	margin: 0 0 10px;
	font-size: 1.2em;
}
section ul {
	position: relative;
}
section ul li {
	position: relative;
	border-bottom: dotted 1px #999;
	line-height: 20px;
}
section ul li:nth-child(2n+1) {
	background-color: rgba(0, 0, 0, 0.1);
}
section ul li.label {
	background-color: #FFF;
	border-bottom: solid 1px #999;
}
section ul li span {
	display: inline-block;
	padding: 0 5px;
	min-width: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #666;
}
section ul li span.edit {
	position: absolute;
	top: 0; right: 0;
	cursor: pointer;
}
section ul li:not(.label):not(.dialog) span.edit:hover {
	opacity: 0.7;
}
section ul li.dialog {
	display: none;
	background-color: rgba(190, 202, 215, 0.6);
}
section ul li.dialog span {
	padding: 0 1px;
}
section ul li span input[type='text']{
	border: solid 1px #CCC;
	margin: 0;
	padding: 0;
	/* background-color: yellow; */
	line-height: 16px;
	width: 100%;
}
section ul li span input[readonly] {
	border-color: rgba(255, 255, 255, 0);
	background-color: rgba(255, 255, 255, 0);
}
section ul li span textarea {
	border: solid 1px #CCC;
	margin: 0;
	padding: 0;
	/* background-color: yellow; */
	line-height: 16px;
	width: 100%;
	height: 40px;
	vertical-align: middle;
}


section .tool {
	position: relative;
	margin: 5px 0 0;
	text-align: right;
}
section .tool span {
	display: inline-block;
	border-radius: 3px;
	padding: 3px 7px;
	background-color: rgba(86, 143, 215, 0.6);
	color: #FFF;
	cursor: pointer;
}
section .tool span:hover {
	opacity: 0.7;
}

