body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	margin: 0;
	font-size: 15px;
}

main {
	display: block;
	margin: 20px auto;
	max-width: 900px;
	position: relative;
}

.lock {
	position: absolute;
	opacity: 1;
	top: 0px;
	left: 0;
	right: 0;
	transition: opacity ease 0.3s,
				top ease 0.3s;
}
.lock.open{
	top:-70px;
	opacity: 0;
}

.content {
	display: block;
	height: 0;
	overflow: hidden;
	position: relative;
	top: 30px;
	opacity: 0;
	transition: opacity ease 0.5s,
				top ease 0.5s;
}
.lock.open+.content{
	height: auto;
	top:0px;
	opacity: 1;
}

h1,p {
	margin: 0 0 10px 0;
	font-weight: 400;
}

p:before {
	content: attr(class) ": ";
}

h1 {
	font-size: 25px;
}

input[type=text],
input[type=password],
textarea{
	display: block;
	width: 100%;
	border: none;	
	box-sizing:border-box;
	padding: 5px;
	min-height: 20px;
	line-height: 20px;
	font-size: 16px;
	background: #eee;
}

data {
	display: none;
}

a {
	color: #000;
	text-decoration: none;
}

table{
	border-spacing: 0;
	width: 100%;
	margin: 10px 0 0 0;
	line-height: 20px;
}

table td{
	padding: 5px;
	margin: 0;
}
table tr:nth-child(2n) td{
	background: #eee;
}

table thead td {
	background: #999;
	font-weight: bold;
}
table thead td a {
	display: block;
	color: #fff;
}

.dynatable-arrow {
	font-size: 10px;
	float: right;
}