@charset "UTF-8";

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

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

.Accordion {
	overflow: hidden;
	width: 500px;
	height: 630px;
	padding-left: 30px;
	text-align: center;
}

/*----------------------PANELS--------------------------*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}



/*-------------------TABS-------------------------------*/

.Tab01 {
	background: url(../images/sewee-visitor-center.jpg);
	border-top: 3px solid #2F736D;
	border-bottom: 1px solid #4C4A3F;
	width: 496px;
	height: 64px;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 64px;
	text-indent: 10px;
	vertical-align: middle;
}
.Tab02 {
	background: url(../images/cape-roman-wolf-pups.jpg);
	border-top: 3px solid #2F736D;
	border-bottom: 1px solid #4C4A3F;
	width: 496px;
	height: 64px;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 64px;
	text-indent: 10px;
	vertical-align: middle;
}
.Tab03 {
	background: url(../images/francis-marion-national-forest.jpg);
	border-top: 3px solid #2F736D;
	border-bottom: 1px solid #4C4A3F;
	width: 496px;
	height: 64px;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 64px;
	text-indent: 10px;
	vertical-align: middle;
}
.Tab04 {
	background: url(../images/waccamaw-refuge.jpg);
	border-top: 3px solid #2F736D;
	border-bottom: 1px solid #4C4A3F;
	width: 496px;
	height: 64px;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 64px;
	text-indent: 10px;
	vertical-align: middle;
}
.Tab05 {
	background:url(../images/ernest-hollings-ACE-basin.jpg);
	border-top: 3px solid #2F736D;
	border-bottom: 1px solid #4C4A3F;
	width: 496px;
	height: 64px;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 64px;
	text-indent: 10px;
	vertical-align: middle;
}
/*----------------CONTENT---------------*/
.AccordionPanelContent {
	overflow:auto;
	margin: 0px;
	padding: 10px;
}

/* 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-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 {
	color: #2F736D;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #2F736D;
}

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

/* 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: #FFF;
}

