@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6 */

/* 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 {
	background: url(../img/sidebar/shadow_top.gif) top left repeat-x;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.AccordionPanelTab p{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	margin: 0px;
	padding: 12px 10px;
}
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 300px;
}

.AccordionPanelContent ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
}
.AccordionPanelContent ul li{
	border-bottom: 1px solid #CCCCCC;
}
.AccordionPanelContent ul li a{
	display: block;
	padding: 7px 10px;
	color: #666666;
	text-decoration: none;
}
.AccordionPanelContent ul li a:hover{
	display: block;
	padding: 7px 10px;
	color: #666666;
	text-decoration: none;
	background: #dddad5;
}
.AccordionPanelContent input{
	width: 227px;
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #666666;
}

.AccordionPanelTabHover {
	background: url(../img/sidebar/tab_hover.gif) top left repeat-x;
}
.AccordionPanelOpen .AccordionPanelTab {
	background: url(../img/sidebar/tab_open.gif) top left repeat-x;
}
