﻿@charset "UTF-8";


/* SprySlidingPanels.css - version 0.1 - Spry Pre-Release 1.6.1 */

/* 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.
 */
 
#PageContent img {border: none;}
#PageContent a {outline: none;}


.SlidingPanels {
	float:left;
	position: relative;
	width: 100%;
	min-height: 100px;
	padding: 0px;
	border: none;
}

.SlidingPanelHome {
	float:left;
	position: relative;
	width: 904px;
	height: 154px;
	border: none;
  margin-top: 20px;
}


#PageContent .SlidingPanels {
margin-bottom:5px;
border-style: hidden;
}

/* 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 {
	float:left;
	position: relative;
	width: 10000px;
	margin: 0px;
	padding: 0px;
	border: none;
}
.SlidingPanelsContentGroupHome {
	float:left;
	position: relative;
	width: 10000px;
	margin: 0px;
	padding: 0px;
	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 {
	float:left;
	width: 210px;
	min-height: 100px;
	overflow: hidden;
	margin: 0px;
	padding:0px;
}
#SlidingHome .SlidingPanelsContentHome{
	float:left;
	width: 181px;
	min-height: 100px;
	overflow: hidden;
	margin: 0px;
	padding: 20px 0px 0px 0px;
	border: none;
	text-align:center;
	//background:transparent url(../images/slider-bg.jpg) no-repeat right 20px;
}
#SlidingHome h4, #SlidingHome a{
	font-size:10px;
	line-height:12px;
	text-decoration:none;
	border-style: hidden;
}
#SlidingHome a:hover{
	color:white;
	border-style: hidden;
}

.SlidingHomeBtnLeft a:hover, .SlidingHomeBtnRight a:hover,span.SlidingHomeBtnLeft a img,span.SlidingHomeBtnRight a img {
	background:none;
}

#SlidingHome p a {
	background:none;
}



/* 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 {
}


#PageContent a {
	color:#23486D;
}
#PageContent a:visited {
	color:#369;
}
#PageContent h2 {
	color:#333;
	font-size:16px;
	font-weight:bold;
	margin:0 0 5px 0;
	display:block;
}
#PageContent h3 {
	font-size:12px;
	font-weight:bold;
}
#PageContent h4 {
	font-size:11px;
	color:#c00;
	font-weight:bold;
}
#PageContent h4.grey {
	margin:2em 0 .5em 0;
	line-height:1;
	color:#808080;
	font-size:14px;
	font-weight:normal;
}
#PageContent p {
	margin-bottom:8px;
}

/* End Page structure and Page Title */

/**** Begin Body and Tab Content ****/
/* Note:Additional Tab stylings in SpryTabbedPanels.css */

#PageContent .SlidingPanelsContent ul {
	margin-top:0em;
	margin-bottom:.7em;
	margin-left:.1em;
	list-style-type:none;
}
#PageContent .SlidingPanelsContent ul li {
	list-style:none;
	padding:5px 0 5px 70px;
	margin-top:0em;
	margin-bottom:0em;
	line-height:15px;
	font-size:11px;
	padding-right:4px;
}

/**** End Body and Tab Content ****/

.SlidingHomeBtnLeft {
	margin:55px 0px 0px -927px;
	position:absolute;
}
.SlidingHomeBtnRight {
	padding:0px;
	margin:55px 0px 0px 0px;
	position:absolute;
}

#SliderContent .yui-u{
	width: 95%;
	text-align:center;
}

#PageContent {
	display:inline;
	min-height:180px;
	max-height:180px;
	overflow:hidden;
}

#SlidingHome{
	
	background:transparent url(../images/slider-bg.jpg) no-repeat;
}
