@charset "UTF-8";

/* 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;
	width:255px;
	
}


.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab {
	color: #394867;
	margin: 0px;
	cursor: pointer;
	padding: 10px 30px 10px 20px;
	font-weight: bold;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-repeat: no-repeat;
	background-image: url('images/accord_tab.gif');
	
}


.AccordionPanelContent 
{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url('images/accord_tile.gif');
	
}

.AccordionPanelOpen .AccordionPanelTab {
	color: #d88a37;
	background-image: url('images/accord_tab_down.gif');
}

.AccordionPanelTabHover {
	background-image: url('images/accord_tab_over.gif');
}

.AccordionFocused .AccordionPanelTab {
	background-color: #000000;
}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #000000;
}


/* Custom AUC classes */

#accordion_255 {
	background-image: url('images/accord_tile.gif');
	background-repeat: repeat-y;
	background-position: 0px 0px;
}

.tabTop {
	background-position: 0px 0px;
	padding-top: 15px;
}
.middleTab {
	background-position: 0px -151px;
}

.accordion_255_tab {
	margin: 0px;
	font-weight: bold;
}

.acontent {
	height:150px;
	width:220px;
	overflow: auto;
	padding: 5px 10px 10px 20px;
}


.bottomTab
{
	width:255px;
	height: 33px;
	background-repeat: no-repeat;
	background-position: 0px top;
	background-image: url(images/accord_bottom.gif);
}