@charset "UTF-8";
.Accordion {
	overflow: hidden;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-right-color: #666;
	border-bottom-color: #666;
	border-left-color: #666;
}

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

.AccordionPanelTab {
	background-color: #E1E1E1;
	margin: 0px;
	padding: 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dotted;
	border-bottom-style: dotted;
	border-top-color: #333;
	border-bottom-color: #333;
	font-size: 1.2em;
}

.AccordionPanelTab:hover{
	background-color: #CCCCCC;
	color: #000;
	text-decoration: underline;
}

.AccordionPanelContent {
	overflow: auto;
	height: 250px;
	padding-top: 0px;
	padding-right: 40px;
	padding-bottom: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.AccordionPanelTab {	background-color: #EEEEEE;}
.AccordionPanelTabHover {	color: #555555;}
/*.AccordionPanelOpen .AccordionPanelTabHover {	color: #555555;}*/
.AccordionPanelOpen .AccordionPanelTab {	background-color: #5774a5;	color: #FFF;}



/* Rules for Printing */

@media print {

  .Accordion {
  overflow: visible !important;
  }
  
  .AccordionPanelContent {
  display: block !important;
  overflow: visible !important;
  height: auto !important;
  }
}