@charset "UTF-8";

.Accordion {
	border-left: solid 2px gray;
	border-right: solid 2px gray;
	border-bottom: solid 2px gray;
	overflow: hidden;
	background-color:#b8d5dc;
	width:625px;	
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab {
	margin: 0px;
	padding: 4px 0px 0px 10px ;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	color: #fff;
	height:33px;
	font-size:18px;
	line-height:24px;
	padding: 4px;
	background-color: #3f536e;
	border:#EEE solid thin;
}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px 5px 0px 5px;
	padding: 0px 0px 0px 0px;
	font-size:14px;
	line-height:16px;
	height: 360px;
}

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #3f536e;
	color: #fff;
}

.AccordionPanelTabHover {
	color: #3f536e;
	background-color: #b3b3b3;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #3f536e;
	background-color: #b3b3b3;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
		color: #3f536e;
	background-color: #b3b3b3;
}

/* 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: #3f536e;
	color: #fff;
}
