/*=========================================================================================================================
 JCAROUSEL HOME STYLES
===========================================================================================================================*/

/* ------------------------------ jcarousel container styles ------------------------------ */
#jcarousel {
	top: 9px;
	height: 405px;
	width: 963px;
	position: relative;
	float: left;
	padding: 0 0 0 0;
}
/*-----------------Internet Explorer 6 STYLES-----------------*/
/*IE6 does not recognize hyperlinks when a .PNG file is used as a background for a DIV.
Essentially, none of the content was clickable in IE6 when trying to make .PNG files 
be backgrounds of a DIV, so I had to create a separate DIV for the .PNG background image
and then create another DIV to ABSOLUTE position the navigation/hyperlinks over that background DIV.
NOTE: You cannot nest the second DIV inside the .PNG background one. It has to live outside of it
and simply be absolutely positioned on top of the .PNG background DIV*/
#jcarousel .menuPNG {
	height: 28px;
	width: 72px;
	z-index: 80; /* IE8 might have trouble. It vacillates */
	position: absolute;
	left: 872px;
	right: 0;
	bottom: 0;
	background-image: url(/g/layout/bg-slide.jpg);
	background-repeat: no-repeat;
}
#jcarousel .menu {
	height: 201px;
	width: 246px;
	z-index: 81; /* IE8 might have trouble. It vacillates */
	position: relative;
	top: 50px;
	float: left;
	left: -265px;
	padding: 0;
}
#jcarousel .menu h1 {
	font-size: 18px;
}
#jcarousel .menu p {
	font-size: 12px;
}
/* ------------------------------jcarousel STAGE SLIDER styles ------------------------------ */
#jcarousel .stgslide {
	height:396px;
	position:absolute;
	overflow:hidden;
	width: 963px;
	left: 0;
	top: 0;
	z-index: 1;
}
#jcarousel .h1Graphic {
	z-index: 82;
	height: 81px;
	width: 299px;
	position: absolute;
	left: 0;
	top: 0;
}
#jcarousel .stgslide .stgslideheading {
	display:none;
	z-index: 1;
}
#jcarousel .stgslide .stgslidecontent {
	display:none;
	z-index: 1;
}
#jcarousel .stghrimg {
	width:963px;
	height:53px;
	top:252px;
	left:9px;
	position:absolute;	
	z-index: 80;
	margin: 0;
	right: 0;
	bottom: 0;
}
#jcarousel .stghrimg h1 {
	margin:0;
	font-size: 18px;
	z-index: 80;
	position: absolute;
	top: 0;
	left: 25px;
	line-height: 21px;
}
#jcarousel .stghrtxt {
	width:460px;
	left:18px;
	position:absolute;
	color:#fff;
	z-index: 80;
	right: 0;
	bottom: 16px;
	font-size: 18px;
	font-style: normal;
	text-transform: none;
	height: 20px;
}
#jcarousel .stghrtxt a {
	font-size: 13px;
	color: #fff;
	text-decoration: none;
}
#jcarousel .stghrtxt a:hover {
	color: #0F3D70;
	text-decoration: none;
}
#jcarousel .stgbtnwrpr {
	width:85px;
	position:absolute;
	text-align:right !important;
	z-index: 80;
	right: 25px;
	bottom: 6px;
}
/*#jcarousel .stgbtnwrpr .mrftrs {
	width:100%;
	float:left;
	font-size:10px;
	color:#8ea4bc;
	text-align:center;
	z-index: 80;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 8px;
	padding-left: 0px;
}*/
/* ------------------ numeric pagination buttons ------------------ */
#jcarousel .stgbtnoff, #jcarousel .stgbtnon {
	width:10px;
	/* float:right; */ /* Modified to remove the number runoff */
	font-size:11px;
	color:#fff;
	display:block;
	cursor:pointer;
	display:inline;
	z-index: 82;
	margin-top: 0;
	margin-right: 4px;
	margin-bottom: 0;
	margin-left: 4px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left: 0;
	font-family: Tahoma, Geneva, sans-serif;
	height: 15px;
	font-weight: bold;
}
#jcarousel .stgbtnoff {
	z-index: 82;
	color: #fff;
}
#jcarousel .stgbtnon {
	z-index: 82;
	color: #0F3D70;
}
/* ------------------------------ jcarousel positioning ------------------------------ */
/* This <div> element is wrapped by jCarousel around the list
* and has the classname "jcarousel-container".
*/
.jcarousel-container {
	position: relative;
}
#jcarousel {
	z-index: 2;
	padding: 0;
	margin: 0;
	overflow: hidden;
	position: relative;
}
.jcarousel-list {
	z-index: 1;
	overflow: hidden;
	position: relative;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}
.jcarousel-list li, .jcarousel-item {
	float: left;
	list-style: none;
	/* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 963px;
	height: 396px;
}
/**
* The buttons are added dynamically by jCarousel before
* the <ul> list (inside the <div> described above) and
* have the classnames "jcarousel-next" and "jcarousel-prev".
*/
.jcarousel-next {
	z-index: 3;
	display: none;
}
.jcarousel-prev {
	z-index: 3;
	display: none;
}
/* ------------------------------ jcarousel skin ------------------------------ */
.jcarousel-skin-tango .jcarousel-container-horizontal {
	width: 963px;
}
.jcarousel-skin-tango .jcarousel-clip-horizontal {
	width:  963px; /* CONTROLS slider container width */
	height: 396px; /* CONTROLS slider container height */
}
.jcarousel-skin-tango .jcarousel-item {
	width: 963px;
	height: 396px;
}
.jcarousel-skin-tango .jcarousel-item-horizontal {
}