@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 {
	width: 220px;
	background-image: url(../img/bg2.jpg);
	background-repeat: repeat;
	background-position: right bottom;
	float: none;
	height: auto;
	outline: none;
	z-index: 1000;

}
.Accordion2 {
	width: 220px;
	background-image: url(../img/bg2.jpg);
	background-repeat: repeat;
	background-position: center bottom;
	float: none;
	height: auto;
	outline: none;
	z-index: 1000;
	margin-top: 150px;
}




/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px 0px 10px 0px;
	padding: 0px;
	height: auto;
	width: 218px;
	position: relative;
	float: right;
	-moz-border-radius:5px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 10px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #666;
	border-left-color: #666;
}

/* 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.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 */
.AccordionPanelTab {
	color: #CC8224;
	-khtml-user-select: none;
	background-repeat: repeat-x;
	width: 220px;
	float: right;
	padding-right: 0%;
	padding-left: 0px;
	border-bottom-color: #333;
	border-bottom-width: 1px;
	height: 33px;
	border-bottom-style: inset;
	font-size: small;
	text-align: right;
	text-decoration: none;
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-image: url(../images/bar_bg_50x50.png);
	background-position: right top;
	-moz-border-radius:3px;
	line-height: 33px;
}
.AccordionPanelTab2 {
	color: #CC8224;
	-khtml-user-select: none;
	background-repeat: repeat-x;
	width: 220px;
	float: left;
	padding-left: 0%;
	border-bottom-color: #333;
	border-bottom-width: 1px;
	height: 33px;
	border-bottom-style: inset;
	font-size: small;
	text-align: left;
	text-decoration: none;
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-image: url(../images/bar_bg_50x50.png);
	background-position: right top;
	-moz-border-radius:3px;
	line-height: 33px;
}

.accordion_255_tab         {
	background-image: url(../images/icon_res.png);
	background-repeat: no-repeat;
	background-position: right center;
	height: 33px;
	width: 174px;
	padding-right: 46px;
}
.accordion_255_tab2 {
	background-image: url(../images/icon_res.png);
	background-repeat: no-repeat;
	background-position: left center;
	height: 33px;
	width: 174px;
	padding-left: 46px;
}



/* 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.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	margin: 0px 0px 0px 0px;
	padding: 10px 10px 10px 10px;
	width: 200px;
	float: left;
	background-image: url(../images/webtablebg_1000_2.png);
	background-repeat: repeat-y;
	background-position: center 0px;
	text-align: justify;
	height: auto;
}
.acontent {
	font-size: x-small;
	margin: 0px;
	padding: 0px;
	height: auto;
}
01.a:hover {   
    background:#ffffff;     /*BG color is a must for IE6*/  
    text-decoration:none;   
}  
