#newsticker {
	height: 80px;
	width: 725px;
}

#newsticker .shade {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: .8;
	z-index: -1;
}

/*
 * navigation buttons
 */
#newsticker .nav {
	float: left;
	width: 81px;
}

#newsticker .nav .prev,#newsticker .nav .next {
	width: 40px;
	height: 40px;
	float: left;
	background-color: white;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#newsticker .nav .prev:hover,#newsticker .nav .next:hover {
	background-color: black;
}

#newsticker .nav .prev {
	background-image: url('../images/slideshow_btn_prev.png');
}

#newsticker .nav .next {
	background-image: url('../images/slideshow_btn_next.png');
	margin-left: 1px;
}

#newsticker .nav .prev:hover {
	background-image: url('../images/slideshow_btn_prev_hover.png');
}

#newsticker .nav .next:hover {
	background-image: url('../images/slideshow_btn_next_hover.png');
}

#newsticker .nav .quickselect {
	margin-left: 9px;
}

#newsticker .nav .item {
	width: 12px;
	height: 4px;
	float: left;
	background-color: white;
	cursor: pointer;
	margin-left: 1px;
	margin-top: 18px;
}

#newsticker .nav .item.active,#newsticker .nav .item:hover {
	background-color: rgb(4, 222, 184);
}

/*
 * ticker content
 */
#newsticker>.body {
	position: relative;
	overflow: hidden;
	height: 100%;
	margin-right: 24px;
}

#newsticker>.body>.item {
	font-size: 16pt;
	font-family: 'Prata', serif;
	padding: 10px 18px 0px 18px;
	float: left;
	position: absolute;
	top: -1000px;
	line-height: 1.4em;
	height: 100%;
	width: 100%;
	cursor: pointer;

}

#newsticker>.body>.item>.details {
	width: 80%;
	cursor: default;
}

#newsticker>.body>.item>.details>.body {
	float: left;
	padding: 0px 10px 10px 10px;
	width: 70%;
	font-family: 'Tahoma', serif;
}

#newsticker>.body>.item>.details,#newsticker>.body>.item>.title {
	position: absolute;
	margin-right: 50px;
}

#newsticker>.body>.item>.details>.body>.smalltitle {
	color: white;
	line-height: 1.3em;
	font-family: 'Tahoma', serif;
	font-weight: bold;
	font-size: 10pt;
}

#newsticker>.body>.item>.details>.thumb {
	float: right;
}

#newsticker>.body>.item>.details>.body>.content {
	float: left;
	margin-top: 1em;
	line-height: 1.2em;
	opacity: .6;
	font-size: 9pt;
}

#newsticker>.body>.item>.details>.button {
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 1em;
	width: 40px;
}

#newsticker .item>.details>.button.back {
	padding-left: 25px;
	background-image: url('../images/arrow_back.png');
	background-repeat: no-repeat;
	background-position: 12px 50%;
}