/*!
 * DecafMUD v0.9.0
 * http://decafmud.kicks-ass.net
 *
 * Copyright 2010, Stendec <stendec365@gmail.com>
 * Licensed under the MIT license.
 */

/**
 * @fileOverview DecafMUD Basic Styling
 * @author Stendec <stendec365@gmail.com>
 * @version 0.9.0
 */

.decafmud.mud-pane, .decafmud .input {
	font-family: Consolas, Courier, 'Courier New', 'Andale Mono', Monaco, monospace;
}

.decafmud.interface {
	position: relative;
	height: 450px;
	overflow: hidden;
	
	border: 1px solid;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

/* Splash Screen */
.decafmud.splash {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	padding: 50px 50px 10px;
	text-align: center;
	overflow: hidden;
}

.decafmud.splash .heading {
	padding: 5px;
	border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
}

.decafmud.splash .status {
	padding: 5px;
	border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
}

.decafmud.splash .progress {
	position: relative;
	height: 20px;
	padding: 5px;
}

.decafmud.splash .progress-text {
	position: absolute;
	top: 5px;
	left: 5px; right: 5px;
	line-height: 20px;
}

.decafmud.splash .inner-progress { height: 20px; }

.decafmud.splash .old {
	margin: 0 20px;
	padding: 10px;
	border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
}

/* Pane Display */
.decafmud .primary-pane {
	height: 100%;
}

.decafmud .mud-pane {
	margin: 5px;
	overflow-y: scroll;
	word-wrap: break-word;
	outline: 0;
}
.decafmud .mud-pane:focus {
	outline: 1px dotted; }

.decafmud .input-cont {
	display: block;
	position: absolute;
	bottom: 5px;
	left: 5px;
	right: 5px;
	padding-top: 5px;
	border: none;
	border-top: 1px solid;
	
}

.decafmud .scroll-button {
	position: absolute;
	z-index: 8;
	right: 25px;
	bottom: 5px;
	height: 16px;
	line-height: 16px;
	padding: 3px 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	cursor: pointer;
}

.decafmud .scroll-point {
	height: 0px;
	margin-right: 5px;
	border: none;
	border-bottom: 1px dashed;
}

.decafmud .input {
	width: 100%;
	outline: 0;
	margin: 2px 0;
	border: none;
}

.decafmud .icon-tray {
	position: absolute;
	right: 0;
	top: 7px;
	
}

.decafmud .status-icon {
	float: left;
	margin-left: 5px;
	height: 16px;
	width: 16px;
	line-height: 16px;
	text-align: center;
	cursor: default;
}

.decafmud .status-icon.connectivity {
	color: #000;
}

.decafmud .status-icon.icon-click {
	cursor: pointer;
}

/* Settings Pane */
.decafmud.window {
  position: absolute;
  z-index: 9;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 0px;
}

.decafmud.window-header {
  background-color: #005;
  margin-bottom: 5px;
}

.decafmud.window-middle {
  margin: 40px;
  background-color: #ffc;
  border-color: #888;
  border-style: solid;
  border-width: 3px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  font-size: 120%;
}

.decafmud.window-inner {
  padding: 10px 5px 0px 10px;
  color: black;
}

.decafmud.mud-pane.side-pane {
	position: absolute;
	z-index: 8;
	top: 0px;
	right: 0px;
        padding: 10px;
        margin-right: 30px;
	margin-top: 10px;
        overflow-x: visible;
        overflow-y: visible;
        border: thin solid white;
        background-color: black;
        display: none;
}

/* Info Bar */
.decafmud.infobar {
    position: absolute;
    z-index: 10;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 17px 26px 5px;
    min-height: 16px;
    line-height: 16px;
    border-bottom: 1px solid;
}
.decafmud.infobar.clickable {
	cursor: pointer; }
.decafmud.infobar .close {
    position: absolute;
	top: 5px;
    right: 5px;
	width: 16px;
	height: 16px;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	-moz-border-radius: 5px;
}
.decafmud.infobar .btncont {
	float: right;
}
.decafmud.infobar .button {
	margin-left: 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 3px 5px;
}
.decafmud.infobar .button:hover,.decafmud.infobar .button:focus {
	text-decoration: none; }
.decafmud.infobar .button:last-of-type {
	border-left: none; }

/* Center Notification */
.decafmud.note.center {
	position: absolute;
	top: 50%;
	margin-top: -15px;
	height: 20px;
	padding: 5px;
	left: 25%;
	right: 25%;
	text-align: center;
	line-height: 20px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	border-width: 1px;
	border-style: solid;
}

/* Toolbar */
.decafmud.toolbar .button {
	display: block;
	text-decoration: none;
	float: left;
        height: 16px;
	line-height: 16px;
	padding: 3px 5px;
	margin-right: 5px;
	
	border-radius: 5px;
	-moz-border-radius: 5px;
	
	-webkit-transition: color 0.1s linear, background-color 0.1s linear;
	-moz-transition: color 0.1s linear, background-color 0.1s linear;
	-o-transition: color 0.1s linear, background-color 0.1s linear;
	transition: color 0.1s linear, background-color 0.1s linear;
	
	cursor: pointer;
}

.decafmud.toolbar .button.toggle-depressed {
  padding: 2px 4px;
  border: 1px outset;
  background-color: #555;
}

.decafmud.toolbar {
	position: absolute;
	z-index: 15;
	border: 1px solid;
        left: 5px;
	top: 0px !important;
	
	padding: 5px;

	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-top: none;
}

/* Fullscreen Mode */
.decafmud.fs {
	position: absolute;
	top: 5px;
	right: 25px;
	padding: 3px 5px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	cursor: pointer;
}

.decafmud.interface.fullscreen {
	position: fixed;
	top: 0;
	left: 0; right: 0;
	height: 100%;
	z-index: 9999;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0 !important;
	-moz-border-radius: 0 !important;
}

#bugexplanation {
  background-color: black;
  margin: 2em;
  padding: 2em;
  color: white;
  border: thick solid white;
}

.closebutton {
  float: right;
  margin-right: 5px;
  width: 25px;
  height: 25px;
}


