root {
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
}
html {
	height: 100%;
	width: 100%;
}
body {
	background-color: #000;
	color: #888;
	font-family: sans-serif;
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
}
table tr {
	vertical-align: top;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid rgba(205,255,225,0.25);
    margin: 1em 0;
    padding: 0; 
}
h1, h2 {
	text-shadow: 0 2px 3px #000;
	font-family: sans-serif;
}
h1 {
	font-size: 200%;
}
h2 {
	font-size: 175%;
	color: #CBA;
	padding: 1em 2em;
	margin: 0;
}
h3 {
	font-size: 150%;
	color: rgba(120,140,110,1.0);
	text-shadow: 0 2px 3px rgba(0,0,0,0.8);
	padding: 0 0;
	margin: 0.5em 0;
}
button {
	width: 100%;
	padding: 0.5em 1em;
	border-radius: 0px;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
	background: rgba(0,0,0,0.25);
	color: rgba(255,255,255,1.0);
	font-size: 125%;
	font-weight: bold;
	text-align: left;
}
button:disabled, button:disabled:hover, button.focus:disabled {
	background: rgba(0,0,0,0.25);
	color: rgba(255,255,255,0.25);
	cursor: not-allowed;
}
button:disabled:hover, button.focus:disabled {
	border-color: rgba(255,255,255,0.2);
}
button:hover, button.focus {
	border-color: rgba(255,175,25,0.5);
	background: rgba(0,0,0,0.5);
	cursor: pointer;
}
button.selected {
	background: rgba(255,255,0,0.5);
}
input[type=button] {
	border: #F00 solid 2px;
	background-color: rgba(255,175,25,0.5);
}
ul {
	margin: 0;
	padding: 0;
}
ul li {
	list-style-type: none;
	margin: 1em;
}
a {
	text-decoration: none;
	color: #EDC;
}
a:hover {
	color: #FFF;
}

/*
* Message Layer
*/
#message-layer {
	display: none;
	position: fixed;
	top: 10%;
	left: 5%;
	width: 90%;
	height: 85%;
	overflow: auto;
	background-color: #FFEFA0;
	border-radius: 10px;
	padding: 10px 20px;
	box-shadow: 1px 1px 5px 1px #000;
	z-index: 1000;
}
#message-layer table {
	margin-top: 20px;
	border-top: #CCC solid 1px;
	border-left: #CCC solid 1px;
}
#message-layer table td {
	border-bottom: #CCC solid 1px;
	border-right: #CCC solid 1px;
	padding: 2px 10px;
}
#message-layer table thead td {
	font-weight: bold;
	text-align: left;
	vertical-align: top;
}
#unread-count {
	display: none;
	position: absolute;
	top: 2px;
	left: 3px;
	line-height: 12px;
	height: 18px;
	padding: 3px;
	border-radius: 3px;
	background-color: #F00;
	color: #FFF;
}
.has-messages {
	display: none;
}
#debug-menu {
	position: fixed;
	top: 0;
	right: 0;
}

/*
* Remote Task List
*/
#task-list {
	position: fixed;
	right: 0;
	top: 150px;
	min-width: 200px;
	/*border: #000 solid 1px;*/
	z-index: 2000;
}
#task-list li {
	color: #000;
	height: 2em;
	background-color: rgba(255,200,0,0.8);
	margin: 2px 0px;
	padding: 2px 10px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.5em;
	text-align: left;
	vertical-align: middle;
	border-radius: 5px 0px 0px 5px;
	border: #CCC solid 1px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.task-exec-time {
	float: right;
	padding: 0px 5px;
}
button.task-cancel {
	float: right;
	font-size: 12px;
	padding: 1px 5px;
}

/*
*
*/
#language-select {
	position: fixed;
	top: 0;
	right: 0;
	text-align: right;
}

/*
*
*/
#ui {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
#ui > div {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: 1920px;
	max-height: 1080px;
	min-width: 800px;
	min-height: 600px;
	color: #FFF;
	display: none;
	width: 100%;
	height: 100%;
}


#ui div.top-left {
	position: absolute;
	top: 5%;
	left: 5%;
}
#ui div.middle-left {
	position: absolute;
	top: 25%;
	left: 5%;
}
#ui div.bottom-left {
	position: absolute;
	bottom: 14%;
	left: 7%;
}
#ui div.bottom-middle {
	position: absolute;
	bottom: 25%;
	left: 25%;
	width: 50%;
}
div.desc {
	text-align: left;
	font-size: 105%;
}

#ui div.popup {
	background: #000;
	border-radius: 10px;
	border-width: 3px;
	border-color: #FFF;
	border-style: solid;
	padding: 30px 50px;
	text-align: center;
}
#ui div.middle {
	position: absolute;
	top: 25%;
	left: 5%;
	right: 5%;
	text-align: center;
}

#music {
	position: absolute;
	bottom: 0;
	right: 0;
}