@charset "UTF-8";


.Accordion {
	overflow: hidden;
	width: 100%;
	text-align: left;
}


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


.AccordionPanelTab {
	margin: 0px;
	padding:5px 0 0 0;
	cursor: pointer;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
	color: #666;
	line-height: 18px;
	font-weight:bold;
	height:23px;
	width:612px;
}
.AccordionPanelContent {
	overflow:hidden;
	height: 100%;
	margin: auto;
	padding: 0px 0 0 20px;

}
.AccordionPanelContent p {
	font-size:12px;
	color:#666;
	font-weight:normal;
	line-height:18px;
	text-align:justify;
	padding:0 0 23px 20px;
}

.AccordionPanelOpen .AccordionPanelTab {
	color: #000;
	font-weight: bold;
	font-size: 13px;
}


/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #666;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #666;
}

/* 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 {

}

/* 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 {
	color: #000;
}
.AccordionPanelContent li {
	list-style-type: none;
	margin-top: 0px;
	margin-bottom:2px;
}
.AccordionPanelContent ul {
	padding: 0px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
}

.AccordionPanelContent li a {
	display:block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 4px 4px 4px 10px;
	margin-top: 0px;
	color: #000;
	line-height: 18px;
	background:#FFFFFF;
	width:237px;
	text-decoration:none;
}
.AccordionPanelContent li a:hover {
	display:block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:bold;
	padding: 4px 4px 4px 10px;
	margin-top: 0px;
	color: #000;
	line-height: 18px;
	background:#C9D9F2;
	width:237px;
	text-decoration:none;
}
.AccordionPanelContent .active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FF0000;
	text-decoration: none;
}

