
div#nobody
{
	border: 1px solid #888888;
	border-top-right-radius: 10px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 10px;
	box-shadow: 10px 10px 5px #cccccc;
	padding: 10px;
	background-image: url(bkg.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	column-count: 3;
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-gap: 20px;
	column-rule: 30px outset #ff00ff;
	display: flex;
	flex-direction: column;
}

button {
	height: 40px;
	background-color: #4772fc;
	border: #eeebef solid 1px;
	color: #ffffff;
	font-size: 17px;
	margin-top: 20px;
	margin-left: 15px;
	border-radius: 5px;
}

div {
	line-height: 30px;
}

.tbl1 {
	border: 1px solid;
	border-collapse: collapse;
}
th {
	background-color: #d3d3d3;
}
td, th {
	border: 1px solid black;
	padding: 10px;
	text-align: center;
}
tr:nth-child(odd) {
	background-color: lightblue;
}
tr:nth-child(even) {
	background-color: white;
}

#name {
	font-size: 18px;
	color: blue;
}

input[type='text'] {
	border: 1px solid green;
	width: 40%;
	padding: 5px;
	color: green;
	font-weight: bold;
}
input[type='button']:hover {
	background-color: gray;
}
label {
	font-weight: bold;
	color: green;
}

.fixedRightAside {
	position: fixed;
	right: -1px;
	top: auto;
	bottom: 60px;
	border: 1px solid #e5e5e5;
	background-color: #ffffff;
	padding: 4px 0;
}