@charset "UTF-8";

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*  COLORS  */

/* default closed tabs */
.AccordionPanelTab ,
.AccordionFocused .AccordionPanelTab {
	background-color:#669966;
}
.AccordionPanelTab {
	background-image:url(images/q.png);
	background-repeat:no-repeat;
	color:#CCFFFF;
}

/* panel tab that is currently open.*/
.AccordionPanelOpen .AccordionPanelTab,
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab  {
	background-image:url(images/qLight.png);
	background-color:#006600;
}

/* top tab only - 'title' */
#AccordionPanelTabTop {
	background-color:#66CC66;
}
#AccordionPanelTabTop h1 {
	text-align:center;
	color:#000099;
	font-size:20px;
}

/* HOVER COLORS */

/* panel tab as the mouse hovers over it. */
.AccordionPanelTabHover {
	color:#000066;
}
/* open panel tab as the mouse hovers over it. */

.AccordionPanelOpen .AccordionPanelTabHover {
	color:#ffFFFF;
}

/* panel content */
.AccordionPanelContent {
	background-color:#F0FDFF;
	background-image:url(images/blueGrad.jpg);
	background-repeat:repeat-y;
}
/* panel content color */
.APLeftContent {
	color:#333366;
}



/* This is the selector for the main Accordion container. 
 */
.Accordion {
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	overflow: hidden;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.

 */
.AccordionPanelTab {
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 0px;
	padding: 10px 10px 10px 45px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
    font-size: 18px;
	font-style: bold;
	text-align:left;
}

#AccordionPanelTabTop {
	background-image:url(images/nada.png);
	padding:5px 15px;
	border-bottom:groove 5px #004080;
	}

/* 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.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 230px;
}
.APCenterContent {
	text-align:center;
	}
.APLeftContent {
	text-align:left;
	padding:5px 15px 5px 40px;
	font-size:16px;
	line-height:20px;
	}

/* 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 {
}



.Q {
	font-size:24px; 
	font-family:Georgia, 'Times New Roman', Times, serif; 
	font-style:italic; 
	font-weight:bold;
}
