/* Glider */
div.scroller { 
	/* modify width and height of scrolling section if necessary	*/		
	margin:auto;
	width:540px; 
	overflow:hidden;
	border:0px solid #e0e0e0;
	padding:0px;		
	}
	div.scroller div.section {
		/* modify width and height of each section as needed (should match the size of the scroller window)	*/		

		margin:auto;
		width: 540px;
		overflow:hidden;
		float:left;
		padding:0px;		
		}
	div.scroller div.content {
		width: 10000px;
		}

	div#section1 {
		background:#ffffff;
		color:#6c7c97;
		}
	div#section2 {
		background:#ffffff;
		color:#6c7c97;
		}

div.scroller_1 { 
	/* modify width and height of scrolling section if necessary	*/		
	margin:auto;
	width:540px; 
	overflow:hidden;
	border:0px solid #e0e0e0;
	padding:0px;		
	}
	div.scroller_1 div.section_1 {
		/* modify width and height of each section as needed (should match the size of the scroller window)	*/		
		margin:auto;
		width: 540px;
		overflow:hidden;
		float:left;
		padding:0px;		
		}
	div.scroller_1 div.content_1 {
		width: 10000px;
		}

	div#section_1 {
		background:#ffffff;
		color:#6c7c97;
		}
	div#section_2 {
		background:#ffffff;
		color:#6c7c97;
		}


/************************************************************************************************************
*	Tab view class	(CSS for the DHTMLSuite_tabView class)
*
*	Created:			August, 21st, 2006
*	Purpose of class:	Tab view class - transfors plain HTML into tabable layers.
*
*
* 	Update log:
*
************************************************************************************************************/
/* The tab widget */
.DHTMLSuite_tabWidget{
	margin-bottom:5px;	/* A little space below the tab pane */
}

.DHTMLSuite_tabContainer{
	height:21px;	/* Height of tabs */
	border-bottom:none;
}
.DHTMLSuite_aTab{
	border-left:0px solid #e0e0e0;
	border-right:0px solid #e0e0e0;
	border-bottom:0px solid #e0e0e0;
	font-family: arial, sans-serif;
	font-size:10px;
	padding:5px;	
	background-color:none;	
	background-repeat:no-repeat;
	
}
.DHTMLSuite_tabContainer DIV{
	float:left;
	height:21px;	/* Height of tabs */
	padding-left:0px;
	vertical-align:middle;
	background-repeat:no-repeat;
	background-position:bottom left;
	cursor:pointer;
	position:relative;
	margin-left:0px;
	margin-right:0px;
	
}
.DHTMLSuite_tabContainer .tabActive{
	background-repeat:no-repeat;
	margin-left:0px;
	margin-right:0px;	
	z-index:10;	
}
.DHTMLSuite_tabContainer .tabInactive{
	background-repeat:no-repeat;
	margin-left:0px;
	margin-right:0px;
	z-index:1;
}

.DHTMLSuite_tabContainer .inactiveTabOver{
	background-repeat:no-repeat;
	margin-left:0px;
	margin-right:0px;
}
.DHTMLSuite_tabContainer span{
	background-repeat:no-repeat;
	font-family:arial;
	font-weight:bold;
	font-size:9px;
	color:#577ebc;
	padding-left:1px;
	padding-right:1px;		
	line-height:21px;
	float:left;
}
.DHTMLSuite_tabContainer .tabActive span{
	background-repeat:no-repeat;
	padding-bottom:0px;
	line-height:20px;
}

.DHTMLSuite_tabContainer img{
	float:left;
}
