/** * * * * * * * * * * * * * * * * * * * *
* Project:  McLane Advanced Technologies
* Version:  1.0
* Released: 2010-02-06
* * * * * * * * * * * * * * * * * * * * * *
*/

.row { position:relative; }

/* container for slides */
#slideshow {
	position:relative;	
	display: block;
	width:942px;
	height:263px;
}

/* single slide */
.slide {
	position: absolute;
	left: 0;
	top: 0;
	display:none;	
	margin:0;
	padding:0;
	width:942px;
	height:263px;
	background: url(../images/bg_slide.png) no-repeat 0 0;
}
.slide .desc {
	position:absolute;
	left: 15px;
	bottom: 48px;
	font-family: "Century Gothic", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size:26px;
	line-height:1.2em;
	letter-spacing: -.01em;
	color:#49555D;
	width:460px;
}
.slide .White {
	color: #fff;
}
.slide img {
	display: block;
	}

/* read more */
#slideshow a.readmore {
	float:none;
	display: block;
	position:absolute;
	left: 15px;
	bottom: 15px;
}

/* tabs (numbered buttons) */
.tabs {
	display: block;
	padding: 9px 0 0 15px;;
	height:20px;
}
.tabs ul { 
	position: relative;
	list-style-type: none; 
	margin: 0;
	padding: 0;
	height:20px;
}
.tabs li { 
	display: block; 
	float:left;
	position:relative;
	height:20px;
}
.tabs li a {
	display: block;
	height:20px;
	line-height:20px;
	float: left;
	padding:0;
	margin: 0 8px 0 0;
}
.tabs li a span { position: absolute; left:-999999px; }

/* single tab */
.tabs li a {
	position: relative;
	display: block;
	width: 44px;
	height: 20px;
	background: url(../images/sprite_carousel_tabs.png) 0 0 no-repeat;
	outline: none;
}
.tabs li a.slide_1	{ background-position: -21px 0; }
.tabs li a.slide_2	{ background-position: -73px 0; }
.tabs li a.slide_3	{ background-position: -124px 0; }

/* mouseover state */
.tabs li a.slide_1:hover	{ background-position: -21px -25px; }
.tabs li a.slide_2:hover	{ background-position: -73px -25px; }
.tabs li a.slide_3:hover	{ background-position: -124px -25px; }

/* active state (current page state) */
.tabs li a.slide_1.current	{ background-position: -21px -50px; }
.tabs li a.slide_2.current	{ background-position: -73px -50px; }
.tabs li a.slide_3.current	{ background-position: -124px -50px; }


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	background:#fff url(/tools/img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 			{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  	{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}
