.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: #fff;
	background-color: #BB1100;
    opacity: 1.0;
	border: solid;
	border-radius: 8px;
	border-width: 1px;
	box-shadow: 3px 2px #555555;
}

.StandardButton:hover
{
    background-color: #BB1100;
}

.StandardButton:active
{
    background-color: #BB1100;
    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: #fff;
	background-color: #DD2200;
    opacity: 1.0;
	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: #fff;
	background-color: #BB1100;
    opacity: 1.0;
	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: 1.0;
	background-color: rgba(0, 0, 0, 0);
}

table
{
	width:100%;
	table-layout: fixed;
    opacity: 1.0;
}

table, th, td
{
	border: 1px solid black;
	border-collapse: collapse;
}

th
{
	padding: 2px;
	text-align: center;
}

td
{
	padding: 2px;
	text-align: left;
}

.tc0
{
	width: 25%
}
.tc1
{
	width: 25%
}
.tc2
{
	width: 25%
}
.tc3
{
	width: 25%
}
.tc4
{
	width: 25%
}

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;
}

.StandardSelect {
	position: relative;
    width: 60px;
    height: 30px;

	display: inline-block;
	padding: 0px 0px;
	font-size: 16px;
	line-height: 10px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background-color: #BB1100;
    opacity: 1.0;
	border: solid;
	border-radius: 8px;
	border-width: 1px;
	box-shadow: 3px 2px #555555;
}

.StandardSelect select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #fff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  z-index: 99;

	display: inline-block;
	padding: 0px 0px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background-color: #BB1100;
    opacity: 1.0;
	border: solid;
	border-radius: 8px;
	border-width: 1px;
	box-shadow: 3px 2px #555555;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.5);
}
