@charset "UTF-8";

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0;
	padding: 0px;
	background-color: #000;
	background-image: url(../partes-fijas/pastilla-azul.png);
	background-repeat: no-repeat;
	border: 0px solid #ffff00;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border-radius: 10px;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px 0px 0px 5px;
	padding: 0px;
	height: inherit;
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
	text-align: left;
}

/* 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-color: #DADADA;
	background-image: url(../partes-fijas/pastilla-azul.png);
	background-position: 50%;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: none;
	background-image: url(../partes-fijas/pastilla-roja.png);
}

/* 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: none;
	background-image: url(../partes-fijas/pastilla-azul.png);
}
