@charset "UTF-8";

.Accordion {
	 border-left: none;
    border-right: none;
    border-bottom: none;
    overflow: hidden;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab {
	background: #FFFFFF url('../../images/close-arrow.jpg') no-repeat 95% center;
    border-top: none;
    border-bottom: solid 1px #eaeaeb;
    margin: 10px 0px 0px 0px;
    padding: 10px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 16px;
    color: #898989;
}


.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 10px;
}

.AccordionPanelOpen .AccordionPanelTab {
	background: #FFFFFF url('../../images/open-arrow.jpg') no-repeat 95% center;
	color:  #4e80b1;
	
}

/*.AccordionPanelTabHover {
	
	background: #FFFFFF url('../../images/close-arrow.jpg') no-repeat 95% center;
    padding: 10px;
    color: #4e80b1;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	
	background: #FFFFFF url('../../images/open-arrow.jpg') no-repeat 95% center;
}*/

/* 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 {

}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {

}

.AccordionPanelContent ol li a{font-size: 14px;
    line-height: 30px;
    color: #898989;
}
.AccordionPanelContent ol li a span.count { color: #7bb049; }
    
    
/* Rules for Printing */

@media print {

  .Accordion {
  overflow: visible !important;
  }
  
  .AccordionPanelContent {
  display: block !important;
  overflow: visible !important;
  height: auto !important;
  }
}