/*
	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
*/

.moodows_out{
	border:1px solid #258EE0;
}
/* The main window div, not much to mess with */
.moodows_win {
	/* required */
	position: fixed;
	border:1px solid #a5bec5;
	margin-bottom: 50px;
}

/* The Window Title table */
.moodows_title {
	/* required */
	display: block;
	height: 20px;
	line-height: 20px;
	width: 100%;
	cursor: move;
	
	/* To the user's discretion */
	background-color: #4480af;
	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%;
	background-color: #fff;
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	text-align: center;
	padding-top:1px;
	padding-bottom:1px;
}

/* 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: 15px;
	width: 55px;
	top: 3px;
	z-index: 2000;
	cursor: pointer;
	line-height: 15px;
	
	/* To the user's discretion */
	font-family: arial;
	color: #fff;
	background-color: #a00;
	border:1px solid  #500;
	text-align: center;
	
}

.moodows_minimize {
	/* required */
	position: absolute;
	height: 20px;
	width: 20px;
	top: 0px;
	z-index: 2000;
	cursor: pointer;
line-height: 20px;
	/* To the user's discretion */
	font-family: arial;
	color: #fff;
}
