@charset "UTF-8";

/* SprySlidingPicsContainer.css - version 0.1 - Spry Pre-Release 1.5 */

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

/* This is the selector for the main SlidingPicsContainer container. This selector
 * defines the width and height of the view port for the widget. Note that
 * this selector does not set the overflow property since that is done programatically
 * by the widget. Setting the overflow property programatically ensures that
 * the contens of the widget will be fully visible should JavaScript be disabled
 * in the browser.
 *
 * If you want to constrain the width of the SlidingPicsContainer widget, set a width on
 * the SlidingPicsContainer container. By default, our sliding panels widget expands
 * horizontally to fill up available space.
 *
 * The SlidingPicsContainer container is positioned relative so that content inside it
 * can be positioned relative to its upper left corner.
 *
 * Avoid placing any CSS border or padding properties on the SlidingPicsContainer container
 * as they can affect the proper positioning and sliding animations of the contents
 * inside the container.
 *
 * The name of the class ("SlidingPicsContainer") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * SlidingPicsContainer container.
 */
.SlidingPicsContainer {
	position: relative;
	left:40px;
	width: 100%;
	height: 500px;
	padding: 0px;
	border: none;
}

/* This is the selector for the container that holds all of the content panels
 * for the widget. The SlidingPicsContainerContentGroup container is what gets programtically
 * positioned to create the slide animation. It is also what governs the layout of
 * the panels.
 *
 * By default, the width of the container is the same as its parent, the SlidingPicsContainer
 * container.
 *
 * You can make the panels within the SlidingPicsContainerContentGroup container layout
 * horizontally by giving the SlidingPicsContainerContentGroup container a width that is as wide
 * or larget than the sum of the widths of all of the content panels, and then floating
 * the content panels inside the SlidingPicsContainerContentGroup container so they all appear
 * on the same line. You may also need to float the SlidingPicsContainer and SlidingPicsContainerContentGroup
 * containers to insure that none of the content panels "leak" outside of the widget.
 *
 * Avoid placing any CSS border, margin, or padding properties on the SlidingPicsContainer
 * container as they can affect the proper positioning and sliding animations of the
 * the container within the widget.
 *
 * The name of the class ("SlidingPicsContainerContentGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPicsContainerContentGroup container.
 */
.SlidingPicsContainerContentGroup {
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
	visibility: visible;
	height:500px;
}


/* This is the selector for the container that holds content for a given panel. In our
 * default style implementation, the dimensions of each content panel exactly match the
 * dimensions of the view port (SlidingPicsContainer) container. This ensures that only one
 * panel ever shows within the view port.
 *
 * Avoid placing any CSS border, margin, or padding properties on the SlidingPicsContainer
 * container as they can affect the proper positioning and sliding animations of the
 * the panel within the widget. You can place border, margins and padding on any content
 * *inside* the content panel.
 *
 * The name of the class ("SlidingPicsContainerContent") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPicsContainerContent container.
 */
.SlidingPicsContainerContent {
    width: 100%;
	height: 500px;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	border: none;
}

/* The class used in this selector is programatically added to the SlidingPicsContainer container
 * anytime we are animating between panels. This rule makes sure that *all* content inside
 * the widget is overflow:none to avoid a rendering glitch that occurs in FireFox 1.5 whenever
 * there is an element inside the widget that displays a scrollbar.
 *
 * The class is automatically removed once the animation has stopped so that the overflow
 * properties of the content inside the widget should be restored.
 */
.SlidingPicsContainerAnimating * {
	overflow: hidden !important;
}

/* The class used in this selector is programatically added to the SlindingPanelsContent
 * container that is currently visible in the view port. The class is automatically removed
 * when the widget switches to a different panel.
 */
.SlidingPicsContainerCurrentPanel {
}

/* The class used in this selector is programatically added to the SlidingPicsContainer container
 * anytime the SlidingPicsContainer container is given focus. The class is automatically removed
 * once the SlidingPicsContainer container loses focus.
 */
.SlidingPicsContainerFocused {
}


hr, .clearAll {
	clear: both;
}

.SlidingPicsContainer {
	width: 508px;
	height: 408px;
}
.SlidingPicsContainerContent {
	width: 508px;
	height: 400px;
}



#picSliderBox.SlidingPicsContainer {
	float: left;
}
#picSliderBox .SlidingPicsContainerContentGroup {
	float: left;
	width: 10000px;
}
#picSliderBox .SlidingPicsContainerContent {
	float: left;
}

#picSliderBox.SlidingPicsContainer {
	float: left;
}

#picSliderBox .SlidingPicsContainerContent {
	float: left;
}

#picSliderBox {
background-color:#FFFFFF;
color:#6DAB10;
border-bottom:1px;
border-bottom-color:#6DAB10;
border-bottom-width:1px;
border-color:#6DAB10;
border-left:0px;
border-top:0px;
border-right:0px;
border-style:solid;

}

