@charset "UTF-8";

.Accordion {
	width: 555px;
	overflow: hidden;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab {
	background-color: #F5F5FA;
	border-top:1px dotted #999;
	text-align:right;
	vertical-align:text-top;
	font-variant:small-caps;
	font-size:13px;
	height:17px;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelContent {
	overflow: auto;
	background-color:#FFF;
	margin: 0px;
	padding: 0px;
	height: 359px;
	font-size:12px;
	margin-left:7px;
	margin-right:7px;
}

/* 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-image:url(../congreso/images/tab_select.jpg);
	color: #FFF;
	font-weight: bold;
	letter-spacing:3px;
	text-align:left;
	text-indent:125px;
	font-size:14px;
}

/* 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 {
	font-weight: bold;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #FFF;
	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: #F5F5FA;
	/*background-image:url(../congreso/images/tab_unselect.jpg)*/
}

/* 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: #fff;*/
	background-image:url(../congreso/images/tab_select.jpg);
	color: #FFF;
	font-weight: bold;
	letter-spacing:3px;
	text-align:left;
	text-indent:125px;
	font-size:14px;
}

