.StandardButton
{
	position: relative;
    width: 60px;
    height: 30px;

	display: inline-block;
	padding: 0px 0px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #000;
    opacity: 0.5;
	background-color: #FFFFFF;
	border: solid;
	border-radius: 8px;
	border-width: 1px;
	box-shadow: 3px 2px #555555;
}

.StandardButton:hover
{
    background-color: #FFFFAA;
}

.StandardButton:active
{
    background-color: #FFFFFF;
    transform: translateY(2px);
}

.StandardLabel
{
	position: relative;
    width: 160px;
    height: 30px;

	display: inline-block;
	padding: 2px 0px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #000;
    opacity: 0.5;
	background-color: #FFFFFF;
	border: solid;
	border-radius: 2px;
	border-width: 1px;
}

.StandardInput
{
	position: relative;
    width: 160px;
    height: 30px;

	display: inline-block;
	padding: 2px 2px;
	font-size: 16px;
	cursor: pointer;
	text-align: left;
	text-decoration: none;
	outline: none;
	color: #000;
    opacity: 0.5;
	background-color: #FFFFFF;
	border: solid;
	border-radius: 2px;
	border-width: 1px;
}

.TitleLabel
{
	position: relative;
    height: 80px;
	left: 0px;
	right: 0px;

	display: inline-block;
	padding: 2px 0px;
	font-size: 48px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
    opacity: 0.5;
	background-color: rgba(0, 0, 0, 0);
}

table
{
	width:100%;
	table-layout: fixed;
    opacity: 0.5;
}

table, th, td
{
	border: 1px solid black;
	border-collapse: collapse;
}

th
{
	padding: 2px;
	text-align: center;
}

td
{
	padding: 2px;
	text-align: left;
}

.tc0
{
	width: 5%
}
.tc1
{
	width: 10%
}
.tc2
{
	width: 30%
}
.tc3
{
	width: 30%
}
.tc4
{
	width: 30%
}

table#t01 tr:nth-child(even)
{
	background-color: #aaa;
}

table#t01 tr:nth-child(odd)
{
	background-color: #fff;
}

table#t01 th
{
	background-color: #222;
	color: white;
}

#overlay
{
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(1, 0, 0, 0.5);
	z-index: 2;
	cursor: pointer;
}
