body {
	background-color: #111122;
/*	-moz-transform: scale(2);*/
/*	-webkit-transform: scale(2);*/
/*	-o-transform: scale(2);*/
/*	-ms-transform: scale(2);*/
/*	transform: scale(2);*/
/*	-webkit-transform-origin: 0 0;*/
/*	width: 50%;*/
}
table {
	margin: auto;
}
button {
	float: left;
}
input, button, select {
	border: 0px;
	border-radius: 4px;
}
#menu {
	position: absolute;
	right: 0px;
	left: 0px;
	top: 0px;
	height: 30px;
	background-color: #124;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#020A15), to(#103565))
	color: white;
}
#menu img {
	height: 30px;
}
#menu div {
	color: white;
	font-size: 1.5em;
	float: left;
}
#menu div:before {
	margin: 2.5px;
	vertical-align: -4px;
	opacity: 0.75;
}
#main > * {
	clear: both;
}
td {
	white-space: nowrap;
}
.mission_equip {
	width: 100%
}
/*
 * Progress bar
 */
.progress, .bar, .bar_value {
	width: 100%;
	height: 15px;
}
.bar {
	position: absolute;
	border-radius: 4px;
}
.bar_value {
	position: relative;
	text-align: center;
}
/*
 * Body
 */
#body {
	position: absolute;
	right: 0px;
	left: 0px;
	top: 30px;
	bottom: 0px;

	background-color: #111122;
	color: #CCCCFF;
	text-align: left;
}

#notification {
	position: fixed;
	bottom: 20px;
	z-index: 1;
	border: 1px solid #000011;
	background-color: #222244;
	color: #DDDDFF;
	text-align: center;
	width: 80%;
	padding: 2px 10px;
	border-radius: 5px;
}
#popup_frame {
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	/* Fallback for web browsers that don't support RGBa */
	background-color: rgb(0, 0, 0);
	/* RGBa with 0.6 opacity */
	background-color: rgba(0, 0, 0, 0.6);
	/* For IE 5.5 - 7*/
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
	/* For IE 8*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";

}

.hide {
	opacity:0;
	filter: alpha(opacity = 0); /* IE */
	transition-property: all;
	transition-duration: 0.5s;
	transition-timing-function: ease-in;
	-moz-transition-property: all;
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease-in;
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-in;
}

.show {
	opacity:1;
	filter: alpha(opacity = 100); /* IE */
	transition-property: all;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
	-moz-transition-property: all;
	-moz-transition-duration: 0.5s;
	-moz-transition-timing-function: ease-out;
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
}

table {
	min-width: 300px
}

#chat_box {
	float: left;
	width: 500px;
	margin-right: 12px;
}
#chat_history {
	height: 300px;
	float: left;
	border: solid 2px #445;
	border-radius: 8px;
	padding: 4px;
	overflow: auto;
}
#chat_message {
	width: 100%;
}
.red {
	color: red;
}

#prefs input[type="radio"], #prefs input[type="checkbox"] {
	clear:both;
	float:left;
}
input[type="radio"] + label, input[type="checkbox"] + label {
	clear:none;
	float:left;
}
#prefs input[type="text"], #prefs input[type="password"] {
	float:left;
}


@-webkit-keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.0; }
}
.css3-blink {
  -webkit-animation-name: blinker;  
  -webkit-animation-iteration-count: infinite;  
  -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  -webkit-animation-duration: 1s; 
}