@charset "UTF-8";
/*
  ***********************************************
  * @author: Yarkan SAC							*
  * @desing: Jhonatan Acuña						*
  * @email: info@yarkan.com.pe					*
  * @site: www.yarkan.com / www.yarkan.com.pe	*
  *												*
  ***********************************************
  */
.Accordion {
	border-left: solid 1px #FFFFFF;
	border-right: solid 1px #FFFFFF;
	border-bottom: solid 1px #FFFFFF;
	overflow: hidden;
}
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab {
	background-color: #A5CF5A;
	border-top: solid 1px FFFFFF;
	border-bottom: solid 1px #FFFFFF;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	padding-left:10px;
	padding-right:10px;
	height: 220px;
}

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #AFDFF2;
}

.AccordionPanelTabHover {
	color: #555555;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #555555;
}

/* 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: #A5CF5A;
}

/* 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:#AFDFF2;
}
