/* --- HOTSPOT ----------------------------------------------------------- */


.rotator .hotspot_indicator
{
	animation: simple_spin 3s linear infinite;
 	-webkit-animation: simple_spin 3s linear infinite;
}

.rotator .hotspot_indicator:hover
{
	opacity: 0.7;
	animation: none;
}

.rotator .indicator_active,
.rotator .indicator_active:hover
{
    z-index: 15006;
	animation: none;
	opacity: 1;
}

.rotator .customHtmlSpot 
{
	overflow: hidden;
	padding: 15px 15px 18px 15px; 
	margin: 0; 
	line-height: 18px; 
	background-color: rgba(255, 255, 255, 0.95);
	color: #34495e; 
	width: 150px; 
	border: 1px #eeeeee solid; 
	font-family: "Roboto", sans-serif;
	font-size: 12px; 
	border-radius: 5px;
	position: relative;
	box-shadow: 2px 3px 3px -2px rgba(180, 180, 180, 0.96);
}


.rotator .customHtmlSpot h5
{
	font-size: 12px; 
	font-weight: normal; 
	color: #000000; 
	padding: 0 5px 9px 5px; 
	margin: 0; 
	border-bottom: 1px dotted #000000;
}

.rotator .customHtmlSpot h5 span
{
	color: #34495e;
	display: inline-block;
	padding: 0 0 0 5px;
}

.rotator .customHtmlSpot p#spot1Info
{
	padding: 12px 5px 0px 5px;
	margin: 0;
    font-size: 11px;
	line-height: 18px;
	color: #000000;
}

.rotator .customHtmlSpot a
{
	display: inline-block;
	float: right;
	font-size: 11px;
	text-align: right;
	padding: 12px 5px 0 0;
	text-decoration: none;
	color: #000000;
}

.rotator .customHtmlSpot a:hover
{
	text-decoration: underline;
}


/* --- Shared animations --------------------------------------------------- */


@-webkit-keyframes simple_spin 
{
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
								
@keyframes simple_spin 
{
    from { transform:rotate(0deg); }
    to { transform:rotate(360deg); }
}								
		
					
