@charset "UTF-8";

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

/* 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;
	float: right;
	clear: none;
	width: 835px;
	margin-right: 10px;
	margin-bottom: 20px;
	display:inline; /*IE 6 Fix*/
}
.accordian_header {
	font-size: 17px;
	font-weight: bold;
	color:#2E4A8C;
	padding-bottom:3px;
	margin-left:0px;
	margin-top:0px;
}
.Accordion .Tab {
	font-size: 14px;
	font-weight: bold;
	color: #32529B;
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-image: url(../images/products/features_background.png);
	background-position: right bottom;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#accordian_bottomBorder {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.Accordion .Content {
	font-size: 12px;
	font-weight: bold;
	overflow: auto;
	height: 200px;
	margin: 0px;
	padding: 0px;
}
.Content ul {
	padding-top: 10px;
	padding-bottom: -10px;
	padding-left: 30px;
	margin:0px;
}
.Content li {
	padding-bottom: 10px;
	padding-right: 20px;
	margin:0px;
	line-height: 17px;
}
.Accordion .hover {
	color: #FFFFFF;
	text-decoration: underline;
	background-image: url(../images/products/features_background_hover.png);
	background-position: right bottom;
}

.Accordion .open {
	/* Add properties here. */
}

.Accordion .closed {
	/* Add properties here. */
}

.Accordion .focused {
	/* Add properties here. */
}
