div#slideShow {
	margin: 0px;
	padding: 0px;
	background: #222;
	width: 385px;
	height: 350px;
	overflow: hidden;
	position: relative;
}

/*Specify a width for each news story */
div#slideShowItems div {
	margin: 0px;
	padding: 0px;
	width: 385px;
}

/* Make the news story image appear to the left
div#slideShowItems img {
	margin-right: 13px;
	float: left;
}
*/
/* Container for the tabs, the width is set so
       when we float the tabs right they align with the
       edge of the slideshow */
ul#slideShowCount {
	margin: 0px;
	padding: 0px;
	width: 385px;
}

/* Float the tabs to the right, and give them a background
       image that looks like a tab. */
ul#slideShowCount li.slide {
	line-height: 14px;
	float: right;
	cursor: pointer;
	width: 26px;
	height: 18px;
	display: block;
	background: transparent url(../images/tabs2.png) no-repeat scroll left top;
}

/* Style the numbers inside of each tab */
ul#slideShowCount li.slide span {
	padding-left: 10px;
	color: white;
	font-weight: bold;
	font-size: 12px;
}

/* Roll over / selected state for the tab */
	/*Shifts background image up, there is a selected state
         below the regular state in the image */
ul#slideShowCount li.slide:hover,ul#slideShowCount li.slide.selectedTab
	{
	background-position: left -18px;
}