@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 {
	
}

/* 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.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	width: 227px;
	padding: 5px 15px 5px 10px;
	text-align: right;
	font-weight: bold;
	border-bottom: 1px solid #E5E5E5;
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
}

/* 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: 0;
	width: 352px;
	position:absolute;
	left: 267px;
	top: -40px;
	text-align: justify;
}
	.AccordionPanelContent p {
		margin-bottom: 15px;
	}
	.AccordionPanelContent h4 {
		width: 348px;
		height: 42px;
		text-indent: -9999px;
	}
	.AccordionPanelContent h3 {
		width: 348px;
		height: 45px;
		text-indent: -9999px;
	}
	
	.AccordionPanelContent h4.chapter_01 { background: url(../images/chapters/images/chapter_01_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_01 { background: url(../images/chapters/images/chapter_01_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_02 { background: url(../images/chapters/images/chapter_02_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_02 { background: url(../images/chapters/images/chapter_02_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_03 { background: url(../images/chapters/images/chapter_03_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_03 { background: url(../images/chapters/images/chapter_03_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_04 { background: url(../images/chapters/images/chapter_04_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_04 { background: url(../images/chapters/images/chapter_04_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_05 { background: url(../images/chapters/images/chapter_05_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_05 { background: url(../images/chapters/images/chapter_05_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_06 { background: url(../images/chapters/images/chapter_06_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_06 { background: url(../images/chapters/images/chapter_06_02.gif) no-repeat; height: 105px; }
	
	.AccordionPanelContent h4.chapter_07 { background: url(../images/chapters/images/chapter_07_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_07 { background: url(../images/chapters/images/chapter_07_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_08 { background: url(../images/chapters/images/chapter_08_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_08 { background: url(../images/chapters/images/chapter_08_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_09 { background: url(../images/chapters/images/chapter_09_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_09 { background: url(../images/chapters/images/chapter_09_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_10 { background: url(../images/chapters/images/chapter_10_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_10 { background: url(../images/chapters/images/chapter_10_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_11 { background: url(../images/chapters/images/chapter_11_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_11 { background: url(../images/chapters/images/chapter_11_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_12 { background: url(../images/chapters/images/chapter_12_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_12 { background: url(../images/chapters/images/chapter_12_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_13 { background: url(../images/chapters/images/chapter_13_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_13 { background: url(../images/chapters/images/chapter_13_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_14 { background: url(../images/chapters/images/chapter_14_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_14 { background: url(../images/chapters/images/chapter_14_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_15 { background: url(../images/chapters/images/chapter_15_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_15 { background: url(../images/chapters/images/chapter_15_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_16 { background: url(../images/chapters/images/chapter_16_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_16 { background: url(../images/chapters/images/chapter_16_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_17 { background: url(../images/chapters/images/chapter_17_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_17 { background: url(../images/chapters/images/chapter_17_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_18 { background: url(../images/chapters/images/chapter_18_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_18 { background: url(../images/chapters/images/chapter_18_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_19 { background: url(../images/chapters/images/chapter_19_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_19 { background: url(../images/chapters/images/chapter_19_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_20 { background: url(../images/chapters/images/chapter_20_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_20 { background: url(../images/chapters/images/chapter_20_02.gif) no-repeat; height: 105px; }
	
	.AccordionPanelContent h4.chapter_21 { background: url(../images/chapters/images/chapter_21_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_21 { background: url(../images/chapters/images/chapter_21_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_22 { background: url(../images/chapters/images/chapter_22_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_22 { background: url(../images/chapters/images/chapter_22_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_23 { background: url(../images/chapters/images/chapter_23_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_23 { background: url(../images/chapters/images/chapter_23_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_24 { background: url(../images/chapters/images/chapter_24_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_24 { background: url(../images/chapters/images/chapter_24_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_25 { background: url(../images/chapters/images/chapter_25_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_25 { background: url(../images/chapters/images/chapter_25_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_26 { background: url(../images/chapters/images/chapter_26_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_26 { background: url(../images/chapters/images/chapter_26_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_27 { background: url(../images/chapters/images/chapter_27_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_27 { background: url(../images/chapters/images/chapter_27_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_28 { background: url(../images/chapters/images/chapter_28_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_28 { background: url(../images/chapters/images/chapter_28_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_29 { background: url(../images/chapters/images/chapter_29_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_29 { background: url(../images/chapters/images/chapter_29_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_30 { background: url(../images/chapters/images/chapter_30_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_30 { background: url(../images/chapters/images/chapter_30_02.gif) no-repeat; }
	
	.AccordionPanelContent h4.chapter_31 { background: url(../images/chapters/images/chapter_31_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_31 { background: url(../images/chapters/images/chapter_31_02.gif) no-repeat; height: 75px; }
	
	.AccordionPanelContent h4.chapter_32 { background: url(../images/chapters/images/chapter_32_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_32 { background: url(../images/chapters/images/chapter_32_02.gif) no-repeat; height: 105px; }
	
	.AccordionPanelContent h4.chapter_33 { background: url(../images/chapters/images/chapter_33_01.gif) no-repeat; }
	.AccordionPanelContent h3.chapter_33 { background: url(../images/chapters/images/chapter_33_02.gif) no-repeat; }

/* 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 {
	background: #a33b3b url(../images/wmcf_tab_back.jpg) repeat-x;
	color: #fff;
}

/* 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 {
	
}
.AccordionPanelOpen .AccordionPanelTabHover {
	
}

/* 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 .AccordionPanelTab {
	
}

/* 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 {
	background-color: #a33b3b;
}
