@charset "UTF-8";

/* SprySlidingPanels.css - version 0.1 - Spry Pre-Release 1.6 */

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

/* This is the selector for the main SlidingPanels 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 SlidingPanels widget, set a width on
 * the SlidingPanels container. By default, our sliding panels widget expands
 * horizontally to fill up available space.
 *
 * The SlidingPanels 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 SlidingPanels container
 * as they can affect the proper positioning and sliding animations of the contents
 * inside the container.
 *
 * The name of the class ("SlidingPanels") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * SlidingPanels container.
 */
.SlidingPanels {
	position: relative;
	width: 300px;
	height: 300px;
	padding: 0px;
	border: none;
}

/* This is the selector for the container that holds all of the content panels
 * for the widget. The SlidingPanelsContentGroup 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 SlidingPanels
 * container.
 *
 * You can make the panels within the SlidingPanelsContentGroup container layout
 * horizontally by giving the SlidingPanelsContentGroup 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 SlidingPanelsContentGroup container so they all appear
 * on the same line. You may also need to float the SlidingPanels and SlidingPanelsContentGroup
 * 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 SlidingPanels
 * container as they can affect the proper positioning and sliding animations of the
 * the container within the widget.
 *
 * The name of the class ("SlidingPanelsContentGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPanelsContentGroup container.
 */
.SlidingPanelsContentGroup {
	position: relative;
	margin: 0px;
	padding: 0px;
	min-height:0;
	border: none;
}


/* 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 (SlidingPanels) container. This ensures that only one
 * panel ever shows within the view port.
 *
 * Avoid placing any CSS border, margin, or padding properties on the SlidingPanels
 * 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 ("SlidingPanelsContent") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPanelsContent container.
 */
.SlidingPanelsContent {
	width: 300px;
	height: 300px;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	border: none;
}
.SlidingPanelsContent a {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#333;
}

.SlidingPanelsContent a:hover {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#333;
}

.SlidingPanelsContent a#activelink {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#333;
}

#panelwidget1 .SlidingPanelsContent a {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#CCC;
}

#panelwidget1 .SlidingPanelsContent a:hover {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#CCC;
}

#panelwidget1 .SlidingPanelsContent a#activelink {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#CCC;
}

#panelwidget8 .SlidingPanelsContent a {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#CCC;
}

#panelwidget8 .SlidingPanelsContent a:hover {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#CCC;
}

#panelwidget8 .SlidingPanelsContent a#activelink {
	text-decoration:none;
	font-size:12px;
	font-family: Georgia, Times New Roman, Times, serif;
	color:#CCC;
}


/* The class used in this selector is programatically added to the SlidingPanels 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.
 */
.SlidingPanelsAnimating * {
	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.
 */
.SlidingPanelsCurrentPanel {
}

/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime the SlidingPanels container is given focus. The class is automatically removed
 * once the SlidingPanels container loses focus.
 */
.SlidingPanelsFocused {
}
#p1 {
	background-color: #FFFF99;
}
#p2 {
	background-color: #FF99FF;
}
#p3 {
	background-color: #99FFFF;
}
#p4 {
	background-color: #0066FF;
}
#p5 {
	background-color: #FFCC66;
}
#p6 {
	background-color: #6666CC;
}

#panelwidget0, #panelwidget0 .SlidingPanelsContent {
width:2000px;
height:813px;
}

#panelwidget0 .SlidingPanelsContentGroup {
width: 16000px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget0 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p0-1 {}
#p0-2 {}
#p0-3 {}
#p0-4 {}
#p0-5 {}
#p0-6 {}

#panelwidget1, #panelwidget1 .SlidingPanelsContent {
width:670px;
height:350px;
}

#panelwidget1 .SlidingPanelsContentGroup {
width: 4020px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget1 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p1-1 {}
#p1-2 {}
#p1-3 {}
#p1-4 {}
#p1-5 {}
#p1-6 {}

#panelwidget2, #panelwidget2 .SlidingPanelsContent {
width:670px;
height:350px;
}

#panelwidget2 .SlidingPanelsContentGroup {
width: 1340px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget2 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p2-1 {}
#p2-2 {}

#panelwidget3, #panelwidget3 .SlidingPanelsContent {
width:670px;
height:350px;
}

#panelwidget3 .SlidingPanelsContentGroup {
width: 2680px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget3 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p3-1 {}
#p3-2 {}
#p3-3 {}
#p3-4 {}

#panelwidget4, #panelwidget4 .SlidingPanelsContent {
width:670px;
height:350px;
}

#panelwidget4 .SlidingPanelsContentGroup {
width: 13400px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget4 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p4-1 {}
#p4-2 {}
#p4-3 {}
#p4-4 {}
#p4-5 {}
#p4-6 {}
#p4-7 {}
#p4-8 {}
#p4-9 {}
#p4-10 {}
#p4-11 {}
#p4-12 {}
#p4-13 {}
#p4-14 {}
#p4-15 {}
#p4-16 {}
#p4-17 {}
#p4-18 {}
#p4-19 {}
#p4-20 {}

#panelwidget5, #panelwidget5 .SlidingPanelsContent {
width:670px;
height:350px;
}

#panelwidget5 .SlidingPanelsContentGroup {
width: 6700px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget5 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p5-1 {}
#p5-2 {}
#p5-3 {}
#p5-4 {}
#p5-5 {}
#p5-6 {}
#p5-7 {}
#p5-8 {}
#p5-9 {}
#p5-10 {}

#panelwidget6, #panelwidget6 .SlidingPanelsContent {
width:670px;
height:350px;
}

#panelwidget6 .SlidingPanelsContentGroup {
width: 12060px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget6 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p6-1 {}
#p6-2 {}
#p6-3 {}
#p6-4 {}
#p6-5 {}
#p6-6 {}
#p6-7 {}
#p6-8 {}
#p6-9 {}
#p6-10 {}
#p6-11 {}
#p6-12 {}
#p6-13 {}
#p6-14 {}
#p6-15 {}
#p6-16 {}
#p6-17 {}
#p6-18 {}

#panelwidget7, #panelwidget7 .SlidingPanelsContent {
width:670px;
height:350px;
}

#panelwidget7 .SlidingPanelsContentGroup {
width: 12060px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget7 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p7-1 {}
#p7-2 {}
#p7-3 {}
#p7-4 {}
#p7-5 {}
#p7-6 {}
#p7-7 {}
#p7-8 {}
#p7-9 {}
#p7-10 {}
#p7-11 {}
#p7-12 {}
#p7-13 {}
#p7-14 {}
#p7-15 {}
#p7-16 {}
#p7-17 {}
#p7-18 {}

#panelwidget8, #panelwidget8 .SlidingPanelsContent {
width:670px;
height:350px;
}

#panelwidget8 .SlidingPanelsContentGroup {
width: 8040px; /* misura sufficiente a contenere in orizzontale i 2 dei 6 pannelli larghi 400px */
}

#panelwidget8 .SlidingPanelsContent {
float:left; /* affianco orizzontalmente i pannelli */
}

#p8-1 {}
#p8-2 {}
#p8-3 {}
#p8-4 {}
#p8-5 {}
#p8-6 {}
#p8-7 {}
#p8-8 {}
#p8-9 {}
#p8-10 {}
#p8-11 {}
#p8-12 {}
