@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 {
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	overflow: hidden;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	outline: none;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab_down {
	background-image: url(../images/button_down.gif);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #333333;
	border-top: solid 0px;
	border-bottom: solid 1px #999999;
	margin: 0px;
	font-weight: bold;
	font-size: 12px;
	padding-left: 6px;	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelTab {
	background-image: url(../images/button.gif);
	background-color:#999999;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #333333;
	border-top: solid 0px;
	border-bottom: solid 1px #999999;
	margin: 0px;
	font-weight: bold;
	font-size: 12px;
	padding-left: 6px;	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelContent {
	height: 150px;
	overflow: auto; 
	padding:3px 0px 3px 5px;
	font-size:11px;
}

.AccordionPanelContentSingle {
	position:absolute;
	left:999px;
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 0px;
}

.AccordionPanelContentHidden {
	overflow: hidden; /*changed from auto*/
/*	margin: 0px;
	padding: 0px;
	height: 130px;
	padding-left:5px;
	padding-top:5px;
	padding:bottom:5px;
	font-size:11px;
*/}

.AccordionPanelContent a:link, .AccordionPanelContentHidden a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	text-decoration: none;
}
.AccordionPanelContent a:visited, .AccordionPanelContentHidden a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
	color: #333333;
}
.AccordionPanelContent a:hover, .AccordionPanelContentHidden a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: underline;
/*	
  font-weight:bold;
  color: #dd0000;
*/	
}

.AccordionPanelContent a:active, .AccordionPanelContentHidden a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
	color: #333333;
}	

.AccordionPanelTab a {
display:block;
}

.AccordionPanelTab_down a{
display:block;
}

.AccordionPanelTab a:link {
	color: #333333;
	text-decoration: none;
}
.AccordionPanelTab a:visited {
	text-decoration: none;
	color: #333333;
}
.AccordionPanelTab a:hover {
	text-decoration: underline;
	color: #333333;
}

.AccordionPanelTab a:active {
	text-decoration: none;
	color: #333333;
}	

.sel{
font-weight:bold;
}

.AccordionPanelTab_down a:link {
	color: #333333;
	text-decoration: none;
}

.AccordionPanelTab_down a:hover {
	color: #333333;
	text-decoration: underline;
}

