﻿/* new styles */
.RadRotator
{
	visibility:hidden; 	
}

.radr_relativeWrapper
{
	position: relative;
	margin:0 !important;/*MUST BE 0 for proper rendering*/
}

.radr_clipRegion
{
	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 ========================*/

.radr_clipRegion  .radr_itemsList 
{
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;          
}

.radr_clipRegion  .radr_itemsList li 
{ 
	float: left;
}

/* For vertical carousel, not set, width defaults to auto */
/* Note if you explicitly set width to auto, this might cause */
/* problems with Safari */

.RadRotator ul.radr_verticalList 
{
	padding: 0;
	margin: 0;
	list-style: none;
}

.RadRotator .radr_verticalList li
{ 
	float: none;
	margin-bottom: 0px;
	/* Force the LI to respect the HEIGHT specified */
	overflow: hidden;
	display: block;
}

.radr_button
{
	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;
}

.radr_button:hover
{
	filter: alpha(opacity=100);
	opacity: 1;
	-moz-opacity: 1;
}

.radr_button.radr_buttonUp
{
	background-position: 0 0;
	top: -15px;
	left: 50%;
	margin-left: -8px;
}

.radr_button.radr_buttonRight
{
	background-position: 0 -15px;
	margin-top: -8px;
	right: -16px;
	top: 50%;   
}

.radr_button.radr_buttonDown
{
	background-position: 0 -30px;
	top:100%;
	left: 50%;
	margin-left: -8px;
	margin-top: 1px;
}

.radr_button.radr_buttonLeft
{
	background-position: 0 -45px;
	margin-top: -7px;
	left: -15px;
	top: 50%;
}

.radr_button.radr_buttonDisabled
{
	filter: alpha(opacity=20);
	opacity: .2;
	-moz-opacity: .2;
}

.radr_noBorder .radr_clipRegion
{
	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* .radr_verticalList li
{
	float: left !important;
}	