@charset "UTF-8";


.Accordion {
	overflow: hidden;
	width: 240px;
	text-align: left;
	padding:15px 0 0 8px;
}


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


.AccordionPanelTab {
	margin: 0 0 1px;
	padding:0 0 5px 8px;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #1d6b8d;
	font-weight:bold;
	line-height:18px;
	width:240px;
	border-bottom:1px dotted #1d6b8d;
}
.AccordionPanelContent {
	overflow:hidden;
	height: 100%;
	margin: auto;
	padding: 0px 0 0 10px;
}


.AccordionPanelOpen .AccordionPanelTab {
	color:#E3A809;
	padding:5px 0 0 8px;
	width:240px;
}



/* 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:#442F31;
	text-decoration:none;
}
.AccordionPanelTab a {
	text-decoration:none;
	color:#1d6b8d;
}

.AccordionPanelTab a:hover{
	text-decoration:none;
	color:#442F31;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color:#E3A809;
	text-decoration:none;
		
}

/* 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:#442F31;
}
.AccordionPanelContent li {
	list-style-type: none;
	margin: 0;
	padding:0;
	display:block;
	font-size:12px;
	background:url(../images/black-arrow.jpg) 0 6px no-repeat;
	border-bottom:1px dotted #000000;
	padding:0 0 0 15px;
}
.AccordionPanelContent li a {
	font:12px Arial, Helvetica, sans-serif;
	color:#333333;
	line-height:22px;
	background:none;
}
.AccordionPanelContent li a:hover {
	text-decoration:none;
	color:#1d6b8d;
}
.AccordionPanelContent li.noBorder {
	border-bottom:none;
}
.AccordionPanelContent li h3 {
	font-size:11px;
	margin-bottom:3px;
}
.AccordionPanelContent li p {
	line-height:15px;
	padding-bottom:0;
}
.AccordionPanelContent ul {
	padding: 0;
	margin:0;
}
.AccordionPanelContent ul.leftMargin {
	padding: 0;
	margin:0 0 0 10px;
}
.AccordionPanelTab.bottomBorderNone{
	border-bottom:none;
}
.AccordionPanelContent .active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FF0000;
	text-decoration: none;
}
