@charset "UTF-8";

/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */

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

/* Horizontal Tabbed Panels
 */

/* This is the selector for the main TabbedPanels container.
 */
.TabbedPanels {
	margin: 10px;
	padding: 0px;
	float: right;
	clear: none;
	width: 250px;
}

/* This is the selector for the TabGroup. [slb: need specificity for this style]
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}
#pagecontent ul.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel. [slb: need specificity for text rendition]
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 2px 0px 0px;
	background-color:  #a5997f;
	list-style: none;
	border: solid 1px #85b5e5;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
}
#pagecontent li.TabbedPanelsTab {
	font: bold 0.88em sans-serif;
		color: #fbffe3; /* icicle at 100% bright*/
	}	
/* This selector changes the appearance of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container. 
 */
.TabbedPanelsTabHover {
	background-color: #7f7662;		/*sand 3 at 50% bright*//*#CCC;*/
}

/* This selector changes the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.  [slb: need specificity for text rendition]
 */
.TabbedPanelsTabSelected {
	background-color: #e3f1fa;
	border-bottom: 1px solid #e3f1fa;
}
#pagecontent li.TabbedPanelsTabSelected {
	color:#2c83ae; /* water 3 at 68% dark: h1 color for site */
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 */
.TabbedPanelsContentGroup {
	clear: both;
	border: solid 1px  #85b5e5; border-bottom:none;
	background-image:url(../images/photo_250slicebackground.jpg); background-repeat:repeat-y;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 */
.TabbedPanelsContent {
	padding: 4px;
}
#pagecontent .TabbedPanelsContent p {
	margin-top: 1em; margin-bottom: 1em;
}
#pagecontent .TabbedPanelsContent p.tiny {
	font-size: 9px; margin-top: .4em; margin-bottom: -.5em;text-align: center;
}

/* This selector is an example of how to change the appearance of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}
#pagecontent div.TabbedPanelsContentVisible ul {
	margin: -5px 0 0 20px; padding: 0;
}
#pagecontent div.TabbedPanelsContentVisible ul.only {
	margin: 5px 0 0 20px; padding-top: 5px;
}

#pagecontent div.TabbedPanelsContentVisible ul li {
	line-height: 1.35;
	}

