/*Accordion styling classes*/
.Accordion {
	overflow: hidden;
	width: 690px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #394D9B;
	border-bottom-color: #394D9B;
	border-left-color: #394D9B;
}
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}
.AccordionPanelTab {
	background-color: #D3D9EF;
	cursor: pointer;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 3px;
	padding-right: 2px;
	padding-bottom: 3px;
	padding-left: 10px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #394D9B;
	border-bottom-color: #394D9B;
}

.AccordionPanelTabExpand {
	background-color: #D3D9EF;
	cursor: pointer;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 2px;
	font-size: 9px;
	text-align: right;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #394D9B;
	border-bottom-color: #394D9B;
}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 380px;
}
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #D3D9EF;
}
.AccordionPanelClosed .AccordionPanelTab {
	background-color: #D3D9EF;
	color: #394D9B;
}

/*Accordion behaviors  classes*/
.AccordionPanelTabHover {
	color: #000000;
	background-color: #394D9B;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #000000;
	/*background-color: #26266c;*/
	background-color: #394D9B;
}
.AccordionFocused .AccordionPanelTab {
	background-color: #D3D9EF;
	color: #000000;
}

/* This is an example of how to change the appearance of the panel tab that is
 currently open when the Accordion has focus. 
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #d2d2de;
}*/