﻿.PanedView 
{
	position: relative;
}

.PanedView .Pane
{
	overflow: auto;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.PanedView .VSeparator, .PanedView .HSeparator, .PanedView .VSeparatorGrabbed, .PanedView .HSeparatorGrabbed
{
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
}

.PanedView .VSeparator, .PanedView .VSeparatorGrabbed
{
	width: 100%;
	height: 1px;
	cursor: n-resize;
}

.PanedView .HSeparator, .PanedView .HSeparatorGrabbed
{
	width: 1px;
	height: 100%;
}

.PanedView .VSeparator, .PanedView .HSeparator
{
	background-color: #cccccc;
}

.PanedView .VSeparatorGrabbed, .PanedView .HSeparatorGrabbed
{
	background-color: #cccccc;
}

.PanedView .HHandle, .PanedView .VHandle, .PanedView .HHandleCover, .PanedView .VHandleCover
{
	position: absolute;
	left: 0;
	top: 0;
	margin: auto;
}

.PanedView .VHandle
{
	left: 47%;
	width: 32px;
	height: 10px;
	background-image: url("../Images/DividerHandle.png");
	cursor: n-resize;
}

.PanedView .HHandle
{
	display: none;
}

.PanedView .VHandleCover
{
	width: 100%;
	height: 10px;
	cursor: n-resize;
	z-index: 1;
}

.PanedView .HHandleCover
{
	display: none;
}
