@import "explore.css";
@import "equipment.css";
@import "tags.css";
@import "characters.css";
@import "GlobalStyle.css";

html, body {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	
	padding: 0px;
	margin: 0px;
	color: #FFFFFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	
}

body {
	position: relative; /* You'll note, we want this to only be on body, not on html. This is hopefully an IE fix. */
}



input, textarea {
	background-color: #333333;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}

.window {
	width: 500px;
	height: 500px;
	position: absolute;
	top: 40px;
	left: 40px;
	background-color: #AAAAAA;
	border: 1px solid #AAAAAA;
}

.windowContent {
	/* Content inside a window. This way, the actual window content won't stretch the window boundaries. */
	position: absolute;
	overflow: auto;
	top: 15px;
	bottom: 5px;
	left: 0px;
	right: 0px;
	background-color: #FFFFFF;
}

.titlebar {
	float: left;
	width: 100%;
	height: 14px;
	border-bottom: 1px solid #AAAAAA;
	background-image: url('title_normal.png');
	cursor: move;
	overflow: hidden;
	font-weight: bold;
}

.resizeArea {
	/* This is a transparent div, designed to allow resizing of the window at the corner, as with most windowing programs. */
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 10px;
	height: 10px;
	cursor: se-resize;
}

.closeWindow {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 14px;
	height: 14px;
	border-left: 1px solid #AAAAAA;
	background-image: url('close.png');
}

.maskLayerThing {
	/* This makes sure the *entire* window will trigger mouseover events when dragging stuff, to prevent iframes from messing everything up. */
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 10000000000;
	background-color: white;
	opacity: 0;
}

.menuBox {
	/* An expandable container for menu buttons */
	height: 30px;
	position: absolute;
	top: 0px;
	left: 0px;
	border-left: 1px solid #AAAAAA;
	border-bottom: 1px solid #AAAAAA;
}

.menuItem {
	float: left;
	position: relative;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	border-right:  1px solid #AAAAAA;
	background-image: url('menu_button.png');
	padding-right: 20px;
	padding-left: 20px;
	color: #FFFFFF;
}

.menuLogo {
	float: left;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	border-right:  1px solid #AAAAAA;
	background-image: url('menu_button.png');
	padding-right: 5px;
	padding-left: 5px;
	color: #FFFFFF;
}

.menuItem:hover {
	color: #CCFFFF;
	background-image: url('menu_button_hover.png');
	cursor: pointer;
}

.subMenu {
	display: none;
	position: absolute;
	top: 30px;
	left: -1px;
	width: 150px;
	z-index: 999999999; /*Fun numbers are fun. In *front* of the window dammit! ^_^ */
	border: 1px solid #AAAAAA;
	background-color: #111111;
}

.subItem {
	padding-left: 20px;
	padding-right: 20px;
	border-bottom: 1px solid #AAAAAA;
	color: #FFFFFF;
}

.subItem:hover {
	background-color: #333333;
	color: #CCFFFF;
}

.logInArea {
	position: absolute;
	height: 30px;
	line-height: 30px;
	top: 0px;
	right: 24px;
	vertical-align: middle;
}

.userButton {
	display: none;
}

.adminButton {
	display: none;
}

.throbber {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 0;
	display: none;
}

.dragHolder {
	display: none;
	position: absolute;
	top: -100px;
	left: -100px;
	width: 50px;
	height: 50px;
	opacity: .5;
	background-color: black;
	border: 1px solid white;
	z-index: 5000000;
}