@charset "UTF-8";


.Accordion {
	
	overflow: hidden;
	width: 490px;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
	}

 
 /* off state */
.AccordionPanelTab {
	background: #f3f7fc url(/img/plus.gif) no-repeat left center;	
	margin: 0px;
	padding: 2px 0 2px 15px;	
	border-left: solid 1px #d5dff1;
	border-right: solid 1px #d5dff1;
	border-top: solid 1px #d5dff1;
	color: #042f5b;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 200px;
}

.AccordionPanelOpen .AccordionPanelTab {
	background: #bbd9f9 url(/img/minus.gif) no-repeat left center;
	border: solid 1px #7db8fb;
	color:#042f5b;
	font-weight:bold;	
}

/* 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: #004f9a;
	font-weight:bold;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	background: #f3f7fc;
	color: #042f5b;
	font-weight:bold;
}


/* 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: #023161;
	color: #CCC
}*/

/* 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: #bbd9f9;
	color:#042f5b;
}

