@charset "UTF-8";


.Accordion {
	overflow: hidden;
	width: 173px;
	text-align: left;
}


.AccordionPanel {
	margin: 0px;
	padding: 0px;
}


.AccordionPanelTab {
	margin: 0px;
	padding:3px 0px 0px 0px;
	cursor: pointer;
	text-indent:25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #363636;
	line-height: 18px;
	font-weight:bold;
	display:block;
	height:20px;
	background:url(img/plus.jpg) 1px 0px no-repeat;
}

.AccordionPanelTab a{
	color: #363636;
	text-decoration:none;
}
.AccordionPanelOpen .AccordionPanelTab a:visited {
	color: #fff;
	text-decoration:none;
}
.AccordionPanelTab a:hover, .AccordionPanelTab a:active{
	color: #FFFFFF;
	text-decoration:none;
	
}




.AccordionPanelContent {
	overflow:hidden;
	height: 100%;
	margin: auto;
	padding: 0px;
	background:url(img/show_border.jpg) bottom left no-repeat;

}


.AccordionPanelOpen .AccordionPanelTab {
	color: #FFFFFF;
	font-weight: bold;
	font-size: 12px;
	background:url(img/minus.gif) 1px 0px no-repeat;
}


/* 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: #FFFFFF;
	background:url(img/minus.gif) 1px 0px no-repeat;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #FFFFFF;
	background:url(img/minus.gif) 1px 0px no-repeat;
}
.AccordionPanelClosed .AccordionPanelTabHover a {
	color: #FFFFFF;
}

/* 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: #FFFFFF;
}








.AccordionPanelContent li {
	list-style-type: none;
	margin-top: 0px;
	margin-bottom:2px;
}
.AccordionPanelContent ul {
	padding: 4px 0px 4px 17px;
	margin:0px;
}

.AccordionPanelContent li a {
	display:block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px 4px 0px 10px;
	margin-top: 0px;
	color: #000000;
	background:#FFFFFF;
	height:17px;
	display:block;
	text-decoration:none;
	background:url(img/arrow1.gif) no-repeat 0px 5px;
}
.AccordionPanelContent li a:hover {
	display:block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px 4px 0px 10px;
	margin-top: 0px;
	display:block;
	height:17px;
	color: #000000;
	text-decoration:underline;
}
.AccordionPanelContent .active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #DC0E10;
	text-decoration: none;
}
