@charset "UTF-8";
.Accordion {
	overflow: hidden;
	width: 236px;
	text-align:left;
	margin:0;
}
.AccordionPanel {
	margin: 0px;
	padding: 0px;
	border-bottom:1px solid #efefef;
}
.AccordionPanelTab {
	margin: 0px;
	padding:0 0 0 8px;
	cursor: pointer;
	font-family: "Trebuchet MS",Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #628a22;
	line-height:30px;
	height:30px;
	width:228px;
}
.AccordionPanelContent {
	overflow:hidden;
	height: 100%;
	margin: auto;
	padding: 0px;
}
.AccordionPanelOpen .AccordionPanelTab {
	color: #df6c06;
}
/* 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: #df6c06;
	background: url(../images/fourdot-green.gif) no-repeat scroll 0 12px;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #df6c06;
	background: url(../images/fourdot-green.gif) no-repeat scroll 0 12px;
}
/* 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: #df6c06;
}
.AccordionPanelContent li {
	list-style-type: none;
	margin:0;
	float:left;
	padding:5px 0 5px 18px;
}
.AccordionPanelContent ul {
	margin:0;
	padding:0 0 15px 0;
	width:228px;
	overflow:hidden;
}

.AccordionPanelContent li a {
	display:block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding:0;
	margin-top: 0px;
	color: #749c0f;
	line-height:15px;
	width:212px;
	text-decoration:none;
}
.AccordionPanelContent li a:hover {
	color: #df6c06;
	text-decoration:none;
}
.AccordionPanelContent .active {
	color: #df6c06;
}
