@charset "UTF-8";

body { background:#DDDDDD; padding:50px; }

.Accordion {
	overflow: hidden;
	width:367px;
	font-family:Arial, Helvetica, sans-serif; font-size:12px;
}

/* 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;
	padding: 0px;
}

/* 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 {
	background:url(../images/plus-sign.gif) no-repeat right top #000;
	border-top: solid 0px #fff;
	border-bottom: solid 0px #fff;
	margin: 0px 0px 1px 0px;
	padding:2px 2px 2px 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-weight:bold;
	font-size:11px;
	color:#fff;
	line-height:25px;
}

.AccordionPanelTab span { background:#fff; color:#000000; padding:0px 1px 0px 4px; margin-right:8px; }

/* 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 {
	overflow:auto;
	margin:0px;
	padding:0px;
	height:290px;
	background:#FBFBFB;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	color: #fff;
	font-weight:bold;
	background:url(../images/minus-sign.gif) no-repeat right top #AF000E;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: #fff;
	font-weight:bold;
	background:url(../images/plus-sign.gif) no-repeat right top #3D3C3A;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #fff;
	font-weight:bold;
	background:url(../images/minus-sign.gif) no-repeat right top #AF000E;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused {
	/*background:#eee;*/
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	color:#fff;
	font-weight:bold;
	background:url(../images/minus-sign.gif) no-repeat right top #AF000E;
}





.gray-background { background:url(../images/plus-sign.gif) no-repeat right top #3D3C3A; }

.features-list-wrapper { margin:10px; padding:0; float:left; clear:both; width:345px; }
.features-list-wrapper ul { margin:0px; padding:0; list-style:none; float:left; clear:both; width:350px; }
.features-list-wrapper li { margin:0px 0px 10px 0px; padding:8px 0; border-bottom:1px dotted #222; border-top:1px dotted #222; background:#fff; float:left; clear:both; width:345px; }

.features-list-left-image { margin:0 0 0 0px; padding:0; float:left; width:110px; text-align:right; }
.features-list-right-text { margin:0 10px 0 0px; padding:0; float:right; width:200px; text-align:left; }
.features-list-right-text p { margin:0px; padding:0; line-height:16px; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#777; }
.features-list-right-text p span { color:#AF000E; font-weight:bold; }

