@charset "UTF-8";
.AccordionPanelTab {
    background-color: #ebebeb;
    border-bottom: solid 10px #fff;
    margin: 0px;
    padding: 5px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    height: 35px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
    font-weight: bold;
    padding-left: 7px;
}
.AccordionPanelContent {
    overflow: auto;
    margin: 0px;
    padding: 0 0 10px 0px;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
}
.AccordionPanelContent a {
    padding: 0;
    line-height: 20px;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000000;
    text-decoration: none;
}
ul.AccordionPanelContent {
    /*font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000000;*/
    
    padding: 0px;
    margin: 0px;
    padding-left: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
}
ul.AccordionPanelContent li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #858789;
    list-style-type: none;
    padding-bottom: 3px;
}
ul.AccordionPanelContent li a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #858789;
    text-decoration: none;
    font-weight: bold;
}
ul.AccordionPanelContent li a:hover {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #373535;
    text-decoration: none;
    font-weight: bold;
}
ul.AccordionPanelContent li a.selected {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #373535;
    text-decoration: none;
    font-weight: bold;
}
/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */

.AccordionPanelOpen .AccordionPanelTab {
    background-color: #ebebeb;
}
/* 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: #000000;
}
.AccordionPanelOpen .AccordionPanelTabHover {
    color: #000000;
}
/* 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 {
    background-color: #ebebeb;
}
/* 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: #ebebeb;
}