/*
	Really basic stylesheet for moodows...
	Eventually much more will be editable (i.e. some kind of skinning)...
	TODO: add more support for customization and skinning
*/


/* The main window div, not much to mess with */
.moodows_win {
	/* required */
	position: absolute;
	border-width: 1px;
	border-style: solid;
	
	/* To the user's discretion */
	border-color: #000;
	background-color: #eee;
}

/* The Window Title table */
.moodows_title {
	/* required */
	height: 20px;
	width: 100%;
	cursor: move;
	
	/* To the user's discretion */
	background-color: #B481fe;
	font-weight: bold;
	text-align: center;
	font-family: Trebuchet, Verdana, sans-serif;
	font-size: 12px;
	color: #fff;
	border-bottom: 1px solid #000;
}

/* The window's body, nothing to mess with here */
.moodows_body {
	/* required*/
	overflow: auto;
	width: 100%;
	
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
}

/* Window's status bar */
.moodows_status {
	/* required */
	height: 20px;
	width: 100%;
	
	/* To the user's discretion */
	background-color: #ddd;
	font-family: arial;
	font-size: 9px;
	border-top: solid 1px #000;
	text-align: left;
}

/* Windpw's close button */
.moodows_close {
	/* required */
	position: absolute;
	height: 20px;
	width: 20px;
	top: 0px;
	z-index: 2000;
	cursor: pointer;
	
	/* To the user's discretion */
	font-family: arial;
	color: #fff;
}

.moodows_minimize {
	/* required */
	position: absolute;
	height: 20px;
	width: 20px;
	top: 0px;
	z-index: 2000;
	cursor: pointer;
	
	/* To the user's discretion */
	font-family: arial;
	color: #fff;
}
