MySplitterBig{
	/* Height is set to match window size in $().ready() below */
	border: 1px solid Gray;
	min-width:  100px;
	min-height: 1000px;
}

.MySplitter {
	/* Height is set to match window size in $().ready() below */
	border: 1px solid Gray;
	min-width:  100px;
	min-height: 700px;
}
.SplitterPane {
	background: White;
	overflow: auto;
	height:100%;
}

.LeftPane {
	background: White;
	width: 70px;
	min-width:70px;
	max-width: 300px;
	overflow: auto;		/* Scroll bars appear as needed */
}
.TopPane {				/* Top nested in right pane */
	background: White;
	height: 200px;		/* Initial height */
	min-height: 75px;	/* Minimum height */
	overflow: auto;	
}
.BottomPane {			/* Bottom nested in right pane */
	background: White;
	min-height: 100px;
	overflow: auto;
}

.vsplitbar {
	width: 3px;
	background: Gray url(img/vgrabber.gif) no-repeat center;
}
.vsplitbar.active, .vsplitbar:hover {
	background-color: Gray;
	width: 3px;
	opacity: 0.5;
	filter: alpha(opacity=50); /* IE */
}

.hsplitbar {
	height: 3px;
	background: Gray url(img/hgrabber.gif) no-repeat center;
}
.hsplitbar.active, .hsplitbar:hover {
	background: #c66 url(img/hgrabber.gif) no-repeat center;
}
