/* @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.
 */
.SlidingPanelsContainer {
	float:left;
	position: relative;
	width: 560px;
	height: 309px;
	padding: 0px;
	background-color:#FFFFFF;
	border:solid 1px #CCCCCC;
	border-bottom:none;
	overflow: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: 100000px;
	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: 540px;
	height: 309px;
	overflow: hidden;
	margin: 0px;
	padding: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	border: none;
	background-color:#FFFFFF;
}

/* 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 {
}

.FirstSlide {
	float:left;
	/* width: 530px;
	height: 267px;
	*/
	width: 540px;
	height: 277px;
	overflow: hidden;
	margin: 0px;
	/*padding: 5px 5px 5px 5px; */
	padding:0px;
	background-image:url(../images/Solution_OpeningSlide.jpg);
}

.ITFirstSlide {
	float:left;
	/* width: 530px;
	height: 267px;
	*/
	width: 540px;
	height: 277px;
	overflow: hidden;
	margin: 0px;
	/*padding: 5px 5px 5px 5px; */
	padding:0px;
	background-image:url(../images/investment_trust_solutions_slide.gif);
}


.FirstSlideHeader {
	float:left;
	width:250px;
 	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:22px;
	font-weight:bold;
	color:#FFF;
	padding:3px 0px 0px 10px;
}

.FirstSlideContent {
	float:left;
	width:500px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	line-height:18px;
	color:#FFF;
	padding-top:5px;
	padding-left:10px;

}


.SlideTemplate1 {
	float:left;
	width: 530px;
	height: 267px;
	overflow: hidden;
	margin: 0px;
	padding: 5px 5px 5px 5px;
	background-color:#FFF;
}
	
	
.SlideHeader {
	float:left;
 	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#666666;
	padding:0px 0px 8px 0px;
}

.SlideContent {
	float:left;
	width:500px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	line-height:18px;
	color:#333333;
	padding-top:10px;

}

.SolutionTitle{
	float:left;
	width:500px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	line-height:18px;
	color:#FFF;
	padding-top:5px;
	padding-left:10px;

}

.AccompvideoLink {
	float:left;
	width:560px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	text-decoration:underline;
	text-indent:22px;
	vertical-align:top;
	color:#999999;
	
	background-image:url(../images/video_icon.gif);
	background-repeat:no-repeat;
	background-position:center left;
	margin-top:15px;
}


.SlideNavigation {
	float:left;
	position: relative;
	width: 560px;
	height: 20px;
	padding: 0px;
	border:solid 1px #CCCCCC;
	background-color:#FFFFFF;
}


.NavNumbers, .NavNumbers a, a.NavNumbers {
	float:left;
	position:relative;
	height:18px;
	width:20px;
	border-right:solid 1px #CCCCCC;
	background-color:#FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	text-align:center;
	text-decoration:none;
	color:#888888;
	padding-top:2px;
	display:block;
	vertical-align:middle;
}
/*
.NavNumbers a:hover, a.NavNumbers:hover {
	background-color:#EFEFEF; 
	text-decoration: none;  
}

.NavNumbers a:active, a.NavNumbers:active {
	color:#FFFFFF;
	 background-color: Green; 
	text-decoration: none; 
}


.NavNumbers a:visited, a.NavNumbers:visited {
	 background-color:none;
	text-decoration: none; 
}

*/

.NavNumbersOn {
	float:left;
	position:relative;
	height:18px;
	width:20px;
	border-right:solid 1px #CCCCCC;
	background-color:#CCCCCC; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	text-align:center;
	text-decoration:none;
	color:#FFFFFF;
	padding-top:2px;
	display:block;
	vertical-align:middle;
	outline:none;
}

.NavNumbersOff {
	float:left;
	position:relative;
	height:18px;
	width:20px;
	border-right:solid 1px #CCCCCC;
	background-color:#FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	text-align:center;
	text-decoration:none;
	color:#888888;
	padding-top:2px;
	display:block;
	vertical-align:middle;
	outline:none;
}

.NavNumbersHover {
	float:left;
	position:relative;
	height:18px;
	width:20px;
	border-right:solid 1px #CCCCCC;
	background-color:#FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	text-align:center;
	text-decoration:none;
	color:#888888;
	padding-top:2px;
	display:block;
	vertical-align:middle;
	outline:none;
}
	
.NavNumbersHover a:visited, a.NavNumbersHover:visited {
	 background-color:#333; 
}


.NavNumbersHover a:hover, a.NavNumbersHover:hover {
	background-color:#EFEFEF;
}

.NavNumbersHover a:active, a.NavNumbersHover:active {
	background-color:#CCCCCC;
	font-weight:bold;
	color:#FFFFFF;
}

.NavArrowNext, .NavArrowNext a, a.NavArrowNext {
	float:right;
	position:relative;
	height:20px;
	width:20px;
	border-left:solid 1px #CCCCCC;
	/* background-image:url(../images/nav_arrow_next.gif); 
	background-image:url(../images/nav_arrow_next_off2.gif); */
	background-repeat:no-repeat;
	background-position:center; 
	padding-top:0px;
	display:block;
	outline:none;
}
.NavArrowNext a:visited, a.NavArrowNext:visited {
	/* background-color:#EEEEEE; 
	background-image:url(../images/nav_arrow_next_off2.gif);*/
}


.NavArrowNext a:hover, a.NavArrowNext:hover {
	/* background-color:#EEEEEE;
	background-image:url(../images/nav_arrow_next_hover2.gif);  */
}

.NavArrowNext a:active, a.NavArrowNext:active {
	/* background-color: #CCCCCC; 
	background-image:url(../images/nav_arrow_next_on.gif); 
	background-image:url(../images/nav_arrow_next_on2.gif); */
}


.NavArrowPrev, .NavArrowPrev a, a.NavArrowPrev {
	float:right;
	position:relative;
	height:20px;
	width:20px;
	border-left:solid 1px #CCCCCC;
	/* background-image:url(../images/nav_arrow_previous.gif); */
	background-repeat:no-repeat;
	background-position:center;
	padding-top:0px;
	display:block;
	outline:none;
}

.NavArrowPrev a:hover, a.NavArrowPrev:hover {
	/* background-color:#EEEEEE; */
}

.NavArrowPrev a:active, a.NavArrowPrev:active {
	/* background-color: #CCCCCC; 
	background-image:url(../images/nav_arrow_previous_on.gif); */
}
