/*
	The DIV that contains the window
*/	
	.WindowObject {
		position: absolute;
		border: 1px solid #3d5f77;
		-moz-box-sizing: content-box;
	}

	/*
		The DIV that contains the title to a window
	*/
		.WindowObject_title {
			background-color: #83acca;
			font-size: 11px;
			font-weight: bold;
			color: #FFFFFF;
			font-family: Arial;
			text-align: left;
			border-bottom: 1px solid #3d5f77;
			-moz-box-sizing: content-box;
		}

	/*
		The DIV that contains the content of a window
	*/
		.WindowObject_content {
			background-color: #FFFFFF;
			
		}