/*Accordion styling classes*/

.Accordion {
 font-family: Arial, Helvetica, sans-serif;
 font-size: 12px;
 width: 100%;
 float: left;
 margin: 4px;
 border-left: solid 1px gray;
 border-right: solid 1px gray;
 border-bottom: solid 1px gray;
 overflow: scroll;
 }

.AccordionPanel {
}

.AccordionPanelLabel {
	background-color: #DCD5CD;
	border-top: solid 1px gray;
	border-bottom: solid 1px gray;
	border-left: none;
	border-right: none;
	cursor: pointer;

 -moz-user-select: none;
 -khtml-user-select: none;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 5px;
}
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 2px;
	height: auto;
	color: #503434;
}
:focus .AccordionPanelOpen  .AccordionPanelTab {
  background-color: #B8AA9C;
}

/*Accordion behaviors  classes*/

.AccordionPanelLabelHover{

}

.AccordionPanelOpen{
}

.AccordionPanelClosed{
}

.AccordionPanelFocused{
}
