html, body
{
	margin: 0;			/* Remove body margin/padding */
	padding: 0;
	overflow: hidden;	/* Remove scroll bars on browser window */
}
#header { padding: 1em; }

#MySplitter {
	/* Height is set to match window size in $().ready() below */
	border: 4px solid #5f93b1;
	min-width: 500px;	/* Splitter can't be too thin ... */
	min-height: 550px;	/* ... or too flat */
}
#LeftPane {
	background: #ebf4f8;
	padding: 8px;
	overflow: auto;		/* Scroll bars appear as needed */
}
#RightPane {
	background: #fff;
}
#TopPane {				/* Top nested in right pane */
	background: #fff;
	padding: 0;
	height: auto;		/* Initial height */
	min-height: 300px;	/* Minimum height */
	overflow: auto;	
}
#BottomPane {			/* Bottom nested in right pane */
	background: #FFF;
	/*height: 200px;*/
	padding: 0;
	overflow: auto;
	display:none;
}
#MySplitter .vsplitbar {
	width: 6px;
	background: #5f93b1 url(../img/vgrabber.gif) no-repeat center;
}
#MySplitter .vsplitbar.active, #MySplitter .vsplitbar:hover {
	background: #c66 url(../img/vgrabber.gif) no-repeat center;
}
#MySplitter .hsplitbar {
	height: 6px;
	background: #5f93b1 url(../img/hgrabber.gif) no-repeat center;
}
#MySplitter .hsplitbar.active, #MySplitter .hsplitbar:hover {
	background: #c66 url(../img/hgrabber.gif) no-repeat center;
}
.network { 
	float:left;
	margin-right:15px;
}