/*
	THE MAIN CONTAINER
	- FOR SLIDING TRANSITIONS, OVERFLOW HIDDEN IS RECOMMENDED
	- POSITION RELATIVE IS REQUIRED SO THE ARROW POSITIONS CORRECTLY
*/
.botrotate{
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
}
/*
	THIS IS CREATED OUTSIDE OF THE BOTROTATE ELEMENT
*/
.botrotate_button_area{
	position: absolute;
	z-index:1000;
	width: 100%;
	bottom: 10px;
	left: 10px;
}
/*
	THIS A GENERAL BUTTON CLASS APPLIED TO ALL THE BUTTONS UNDER THE LIST SETTING
*/
.botrotate_button{
	width: 20px;
	height: 20px;
	cursor: pointer;
	float: left;
	background: url("../_images1/splash_button.png");
}
.botrotate_button:hover{
	background: url("../_images1/splash_button_over.png");
}
.botrotate_button_area .selected{
	background: url("../_images1/splash_button_over.png");
}

.botrotate_links{
	left: 781px;
	top: 0px;
	background-color:#11467C;
	padding: 5px;
}
	.botrotate_links a{
		font-size: 12px;
		text-decoration: none;
		color: #ffffff;
	}