﻿/* ==========================================================================
   Basic Layout Theme
   
   This theme uses the default layout class-names for all classes
   Add any 'custom class-names', from options: paneClass, resizerClass, togglerClass
   v 1.0
   ========================================================================== */
.ui-layout-pane
{
	/* all 'panes' */
	background: #FFF;
	border: 1px thin #BBB;
	padding: 10px;
	overflow: auto;
} 
.ui-layout-resizer { /* all 'resizer-bars' */ 
	background: #DDD;
	background-image: url(images/10_pix_pile.png);
} 
.ui-layout-resizer, .ui-layout-toggler
{
	width: 10px!important;
}
.ui-layout-west
{
	padding: 0px;
	margin-left: -20px;
	height:		100%;
	overflow: hidden;				
	overflow-y: auto;
}
#container {
	background:	777;
	/* HEIGHT */
	height:		100%;					
	min-height:	300px;
	_height:	300px; /* min-height for IE6 */
	/* WIDTH */
	max-width:	1920px;
	min-width:	700px;
	_width:		700px; /* min-width for IE6 */
	/* HORIZONTAL CENTERING */
	/* margin:		0 auto; */
	overflow: visible;
	width:		100%;
}
/*
 *	Container sizing
 *
 *	Borders and padding are normally *added* to the width/height of the DIV
 *	However you can get height:100% AND padding/borders by using a nested layout. 
 *	The outer-layout is just a single pane: center, which is where you add your vertical padding.
 *	Inside this is your *real layout*. 
 */
#paddingWrapper
{
	/*padding:	20px 10px;*/
	border-style: solid;
	border-width: 1px 0px 0px 0px;
	border-color: #BBB;
	background: white;
}
.pane {
	display:	none; /* will appear when layout inits */
}
#resulttreeindex
{
	overflow-y: auto;
}