﻿/*************************************************************
 * Module:	 CssBasePanelBar.css
 *
 * Comments:
 *
 *************************************************************
 *
 * Current implentation:
 *
 * AKKERMANS EN PARTNERS WEBSITE
 *  
 *************************************************************/


/**********************************************
 * STYLES FOR GENERAL LAYOUT 
 * (cascaded to styles set in CssModules)
 **********************************************/
.BasePanelBarMainTable
{		
}
.BasePanelBarMainTableHeader
{
   padding-left: 4px;
}
.BasePanelBarMainTableFooter
{
}
.BasePanelBarMainTableContent
{
}
.BasePanelBarMainTableSpacer
{
}


/**********************************************
 * MODULE SPECIFIC STYLES  
 **********************************************/

/***** RAD PANEL BAR GENERAL: *****/

.BasePanelBarPbContainer		
{
	/* class to set width of panelbar */
   width: 100%;
   
}

/***** RAD PANEL BAR GROUPS: *****/
.BasePanelBarPbHeader			
{ 		
	/* Class is currently not in use by module */
}
.BasePanelBarPbHeaderHover 
{ 			
	/* Class is currently not in use by module */
}
.BasePanelBarPbHeaderSelected
{
	/* Class is currently not in use by module */
}
.BasePanelBarPbHeaderExpanded
{
	/* Class is currently not in use by module */
}
.BasePanelBarPbHeaderDisabled
{
	/* This is the style used for group header, since groups are not expandable and therfor disabled */
	COLOR: #000000;	
	background-color: #cccccc;
	font-weight: bold;
	font-size: 120%;
	cursor:text;
	padding: 4px;	
	/* border: 1px solid #666666; */
	height: 25px;
	white-space:normal;
	margin: 0px 0px 0px 0px;
}

/***** RAD PANEL ITEMS: *****/
.BasePanelBarPbItem
{
	COLOR: #000000;
	background-color: #e0e0e0;
	width: 100%;
	cursor: hand;
	padding: 3px;
	padding-left: 16px;	
	/* border: 1px solid #666666; */
	text-decoration: none;
	display: block;
	white-space:normal;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0px 0px 0px 0px;
}
.BasePanelBarPbItemHover
{
	COLOR: #000000;	
	width: 100%;
	cursor: hand;
	padding: 3px;
	padding-left: 16px;
	background-color: #f0f0f0;
	/* border: 1px solid #666666; */
	text-decoration: underline;
	white-space:normal;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0px 0px 0px 0px;
}
.BasePanelBarPbItemSelected		/* not used */
{
}
.BasePanelBarPbItemExpanded		/* style applied to item wtitle when shown */
{	
	COLOR: #000000;
	font-weight: bold;
	background-color: #ffffff;
	width: 100%;
	cursor: hand;
	padding: 3px;
	padding-left: 16px;	
	/* border: 1px solid #666666; */
	white-space:normal;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0px 0px 0px 0px;
} 
/* Note:
   no ItemDisabled style available, since that is actually the content style 
*/

/***** RAD PANEL ITEM CONTENT: *****/
.BasePanelBarPbItemContent
{
	COLOR: #000000;
	width: 100%;
   cursor: text;
	padding: 3px;
	padding-left: 16px;	
	border: 1px solid #F0F0F0; 
	border-top: 0px;	
	text-decoration: none;
	display: block;
	white-space:normal;
	box-sizing: border-box;
	-moz-box-sizing: border-box;	
	margin: 0px 0px 0px 0px;
}

.BasePanelBarPbIntroductionText
{
	font-style:italic;
}
/***** END PANEL BAR *****/


