/*
 *
 *	reszise div width behavoir;
 *	see also behaviordivresize.js
 *	
 *	
 *	
 *	
 *	
 *
 */
 
DIV.behaviorDivResize 
{
	position	:relative; 	/* MUST: 		be !relative! */ 
	width		:auto;		/* OPTIONAL: 	set start width */ 
	min-width	:400px; 	/* MUST: 		set min width (used by IE/moz) */
	padding:0;margin:0; 	/* MUST:		put padding on container element */
}
DIV.behaviorDivResize DIV.container 
{
	padding-right:40px; /* default reset for individual divs */ 
} 
DIV.behaviorDivResize DIV.container DIV.contents
{
	width:99%; /* IE bug fix */ 
} 
DIV.behaviorDivResize DIV.behaviorDivResizeHandle 	
{
	position: absolute;
	top:0;
	right:20px;
	z-index:1;
	cursor:w-resize;
	background-color:transparent;
	border-right:2px dashed #c0c0c0;
	padding:0!important;
	width:1px;
	font-size:1px;
}
DIV.behaviorDivResize DIV.behaviorDivResizeHandleActive 
{
	border-right:2px dashed #f00 !important;
}