﻿/* new styles */
.RadRotator
{
	visibility: hidden;
	width: 422px;
	padding-left: 0 !important;
}

.rrRelativeWrapper
{
	position: relative;
	margin: 0 !important; /*MUST BE 0 for proper rendering*/
}

.rrClipRegion
{
	width: 100%;
	height: 100%; /* We change the width and height from the code, and then this setting becomes active! */
	overflow: hidden;
	position: absolute;
}

/*================== The list ========================*/

.rrClipRegion .rrItemsList
{
	float: left;
	padding: 0;
	margin: 0;
	list-style: none !important;
}

.RadRotator ul.rrItemsList
{
	padding: 0;
	margin: 0;
}

.RadRotator ul.rrItemsList li.rrItem
{
	float: left;
	overflow: hidden;
	display: inline-block;
	list-style: none;
	padding: 0;
	padding-left: 0 !important;
	margin: 0 0 0 10px;
	border: solid 0px red;
	height: 80px;
}
.RadRotator ul.rrItemsList li.rrItem img.tickerThumbnail
{
	/* WORKING
	margin-bottom: 11px;
	margin-top: 7px;
	border: solid 1px #7E7D82 !Important;
	*/
	float: left;
	margin-bottom: 11px;
	margin-top: 7px;
	border: solid 1px #7E7D82 !Important;
}
.RadRotator ul.rrItemsList li.rrItem .tickerItem
{
	height: 72px;
}
.RadRotator ul.rrItemsList li.rrItem .tickerItem .tickerItemText
{
	
	/* WORKING
	display: inline-block;
	margin-top: 9px !important;
	margin-bottom: 11px;
	padding-right: 2px;
	padding-left: 25px;
	width: 110px;
	*/
	
	/* WORKS IN IE7
	position: relative;
	top:-70px;
	left:40px;
	*/
	
	float:left;
	margin-bottom: 11px;
	margin-top: 7px;
	margin-left: 10px;
	display: inline-block;
	width: 110px;
}

.RadRotator ul.rrItemsList li.rrItem a.tickerTitle
{
	display:block;
	line-height:13px;
	padding-top:5px;
	color:#7E7D82;
	text-decoration:none;
	font-weight:bold;
	height:41px;
	overflow:hidden;
}
.RadRotator ul.rrItemsList li.rrItem a.tickerTitle:hover
{
	text-decoration:underline;
}
.rrButton
{
	font-size: 1px;
	text-indent: -9999px;
	display: block;
	position: absolute; /*Button size is defined here, we use margins to position them too */
	height: 15px;
	width: 15px;
	line-height: 15px; /* Very important for the layout!*/
	display: none;
	outline: none;
}

.rrButton:hover
{
	filter: alpha(opacity=100);
	opacity: 1;
	-moz-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.rrButton.rrButtonUp
{
	background-position: 0 0;
	top: -15px;
	left: 50%;
	margin-left: -8px;
}

.rrButton.rrButtonRight
{
	background-image:url(Images/TickerNext.gif);
	background-repeat:no-repeat;
	height:36px;
	right:-19px;
	top:0;
}

a.rrButton.rrButtonRight:hover
{
	background-image:url(Images/TickerNextOver.gif);
	
}

.rrButton.rrButtonDown
{
	background-position: 0 -30px;
	top: 100%;
	left: 50%;
	margin-left: -8px;
	margin-top: 1px;
}

.rrButton.rrButtonLeft
{
	background-image:url(Images/TickerBack.gif);
	background-repeat:no-repeat;
	height:36px;
	right:-19px;
	top:36px;
}

a.rrButton.rrButtonLeft:hover
{
	background-image:url(Images/TickerBackOver.gif);
	
}

.rrButton.rrButtonDisabled
{
	filter: alpha(opacity=20);
	opacity: .2;
	-moz-opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

.rrNoBorder .rrClipRegion
{
	border-width: 0px !important;
}

/* Needed because IE cannot position vertical LI items properly. In addition to this css, the UL's width needs to be EXPLICITLY set from code if IE or Safari */
html* .rrVerticalList li
{
	float: left !important;
}
