@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.
 */
.SlidingPanels {
	position: relative;
	width: 250px;
	height: 170px;
	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;
	width: 250px;
	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 {
	width: 230px;
	height: 190px;
	overflow: hidden;
	margin: 0px;
	border: none;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}

/* 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 {
}



div#techSector{
	height: 200px;
	position: relative;
	z-index: 50;
	top: 0px;
	
}
div#techSector h1{
	font-family: "BebasNeueRegular", sans-serif;
	font-size: 23px;
	line-height: 24px;
	letter-spacing: 1px;
	color: #008b99;
	font-weight: normal;
	padding: 0;
	margin: 0;
	float: left;
}

div#techSector h1 span {
	color:#ff4800;
}

div#techSector h2{
	font: bold 16px/18px "Trebuchet MS", sans-serif;
	color: #695e49;
	margin: 10px 0 0 0;
	padding: 0px;
}
div#techSector p{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 18px;
	color: #666666;
	font-weight: normal;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 12px;
	margin-left: 0px;
	text-decoration:none;
}
div#techSector #controlPanel{
	float: right;
	overflow: hidden;
	height: 25px;
}

div#techSector #controlPanel a {
	display: block;
	float: left;
	background: url(../images/ico-sliding-panel-nav.png) no-repeat right 2px;
	width: 16px;
	height: 25px;
	margin-left: 10px;
	overflow-x: hidden;
	text-indent: -9999px;
	text-transform: capitalize;
}

div#techSector #controlPanel a:first-child {
	background-position: left 2px;
	margin: 0;
}

div#techSector #controlPanel h5{
	display: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	line-height: 10px;
	font-weight: normal;
	color: #999999;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
}
div#techHeader{
	overflow: hidden;
	padding-bottom: 5px;
	border-bottom: 1px solid #c9c5be;
}
div#techSector img{border:none;}

.clear{
	clear: both;
}
div.techImage{
	float: left;
	height: 200px;
	width: 170px;
}
/*--Magazine Scroller--*/
div#magScroller{
	background: url(../images/caresel_bg.jpg) no-repeat 0 0;
	width: 298px;
	height: 241px;
	padding:0;
	margin:0;
	position: relative;
	z-index: 5;
	top: 0px;
}
div#magScroller.socialmedia{
	background: url(../images/social_media_bkg.jpg) no-repeat 0 0;
}
div#magScroller.partners{
	background: url(../images/partners.jpg) no-repeat 0 0;
}
div#magScroller.global{
	background: url(../images/global_bkg.jpg) no-repeat 0 0;
}

div#magScroller .SlidingPanels {
	float: left;
	width: 296px;
	height: 241px;
	padding:0;
	margin:0;
	text-align:center;
}
	div#magScroller .SlidingPanels img{
	padding:0;
	margin:15px 0 0 0;
}
	div#magScroller.global .SlidingPanels img{
	padding:0;
	margin:55px 0 0 0;
}

/*--Styles, for magazine numbers--*/
	div#magScroller .SlidingPanels small{
	position:relative;
	background:url(../imgs/numbers.gif) 0 0 no-repeat;
	display:block;
	height:10px;
	width:15px;
	font:normal 9px/9px "trebuchet ms", verdana, arial, helvetica, sans-serif;
	padding:0;
	margin-top:-193px;
	margin-right:0;
	margin-bottom:0;
	margin-left:68px;
}
	div#magScroller.global .SlidingPanels small{
	display:none;
}
	div#magScroller .SlidingPanels small.two{background:url(../imgs/numbers.gif) 0 -16px no-repeat;}
	div#magScroller .SlidingPanels small.three{background:url(../imgs/numbers.gif) 0 -32px no-repeat;}
	div#magScroller .SlidingPanels small.four{background:url(../imgs/numbers.gif) 0 -48px no-repeat;}
	div#magScroller .SlidingPanels small.five{background:url(../imgs/numbers.gif) 0 -64px no-repeat;}
	div#magScroller .SlidingPanels small.six{background:url(../imgs/numbers.gif) 0 -80px no-repeat;}
	div#magScroller .SlidingPanels small.seven{background:url(../imgs/numbers.gif) 0 -96px no-repeat;}
	div#magScroller .SlidingPanels small.eight{background:url(../imgs/numbers.gif) 0 -112px no-repeat;}
	div#magScroller .SlidingPanels small.nine{background:url(../imgs/numbers.gif) 0 -128px no-repeat;}
	div#magScroller .SlidingPanels small.ten{background:url(../imgs/numbers.gif) 0 -144px no-repeat;}
	div#magScroller .SlidingPanels small.eleven{background:url(../imgs/numbers.gif) 0 -160px no-repeat;}
	div#magScroller .SlidingPanels small.twelve{background:url(../imgs/numbers.gif) 0 -176px no-repeat;}
	div#magScroller .SlidingPanels small.thirteen{background:url(../imgs/numbers.gif) 0 -192px no-repeat;}
	div#magScroller .SlidingPanels small.fourteen{background:url(../imgs/numbers.gif) 0 -208px no-repeat;}
	div#magScroller .SlidingPanels small.fifteen{background:url(../imgs/numbers.gif) 0 -224px no-repeat;}
	div#magScroller .SlidingPanels small.sixteen{background:url(../imgs/numbers.gif) 0 -240px no-repeat;}
	div#magScroller .SlidingPanels small.seventeen{background:url(../imgs/numbers.gif) 0 -256px no-repeat;}
	div#magScroller .SlidingPanels small.eighteen{background:url(../imgs/numbers.gif) 0 -272px no-repeat;}
	div#magScroller .SlidingPanels small.nineteen{background:url(../imgs/numbers.gif) 0 -288px no-repeat;}
	div#magScroller .SlidingPanels small.twenty{background:url(../imgs/numbers.gif) 0 -304px no-repeat;}

/*--END Styles, for magazine numbers--*/


div#magScroller .SlidingPanelsContentGroup {
	float: left;
	width: 10000px;
	height:241px;
	padding:0;
	margin:0;
}
div#magScroller .SlidingPanelsContent {
	float: left;
	width: 298px;
	height:241px;
	padding:0;
	margin:0;
	overflow: hidden;
	margin: 0px;
	border: none;
	padding: 0;
	
	
}

div#magScroller .magazine {
	float:left;
	display:block;
	width:298px;
	height:220px;
	padding:0;
	margin:0;
	}

div#magScroller #controlPanel{
	background:url(../imgs/browse.gif) 0 0 no-repeat;
	position: relative;
	z-index:100;
	left: 98px;
	top: 214px;
	width: 100px;
	height:20px;
	text-align: center;
}
	div#magScroller #controlPanel img {
	display:block;
	position: relative;
	top:0;
	padding:0;
	margin:0;
}
	div#magScroller .SlidingPanelsContentGroup a{
	text-decoration:none;
}

div#magScroller #controlPanel a.leftnav, div#magScroller #controlPanel a.leftnav:link, div#magScroller #controlPanel a.leftnav:visited, div#magScroller #controlPanel a.leftnav:hover, div#magScroller #controlPanel a.leftnav:active {
	display:block;
	position: relative;
	z-index:100;
	top:-240px;
	float:left;
	padding:0;
	margin:2px 0 0 4px;
	background:none;
	border:none;
	text-decoration:none;
}

div#magScroller #controlPanel a.rghtnav, div#magScroller #controlPanel a.rghtnav:link, div#magScroller #controlPanel a.rghtnav:visited, div#magScroller #controlPanel a.rghtnav:hover, div#magScroller #controlPanel a.rghtnav:active {
	display:block;
	position: relative;
	z-index:100;
	top:-240px;
	float:right;
	padding:0;
	margin:2px 4px 0 0;
	background:none;
	border:none;
	text-decoration:none;
}

