@charset "UTF-8";
/* SpryAccordion.css - Revision:Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* This is the selector for the main Accordion container. For our default style,
* we draw borders on the left,right,and bottom. The top border of the Accordion
* will be rendered by the first AccordionPanelTab which never moves.
*
* If you want to constrain the width of the Accordion widget,set a width on
* the Accordion container. By default,our accordion expands horizontally to fill
* up available space.
*
* The name of the class ("Accordion") used in this selector is not necessary
* to make the widget function. You can use any class name you want to style the
* Accordion container.
*/
.Accordion{
overflow:hidden;
}

.AccordionPanel{
margin:0px;
padding:0px;
}

.AccordionPanelTab{
margin:0px;
padding:6px 20px;
cursor:pointer;
font-size:1.2em;
font-weight:bold;
display:block;
-moz-user-select:none;
-khtml-user-select:none;
background-image:url(../images/buttons/btExpand.gif);
background-repeat:no-repeat;
background-position: left 12px;
border-top:#df6f1d dotted 1px;
}

.AccordionPanelContent{
overflow:hidden;
margin:0px;
padding:0px 0px 0px 20px;
}
.AccordionPanelContent input{
}

.AccordionPanelOpen .AccordionPanelTab{
background-image:url(../images/buttons/btCollapse.gif);
background-repeat:no-repeat;
background-position: left 12px;
padding:6px 20px;
}

.AccordionPanelTabHover{
padding:6px 20px;
}
.AccordionPanelOpen .AccordionPanelTabHover{
padding:6px 20px;
}

.AccordionFocused .AccordionPanelTab{
padding:6px 20px;
}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab{
background-image:url(../images/buttons/btCollapse.gif);
background-repeat:no-repeat;
background-position: left 12px;
}





