/*
	THE MAIN CONTAINER
	- FOR SLIDING TRANSITIONS, OVERFLOW HIDDEN IS RECOMMENDED
	- POSITION RELATIVE IS REQUIRED SO THE ARROW POSITIONS CORRECTLY
*/
.botrotate{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
}
.sub_botrotate{
	width: 200px;
	height: 400px;
	overflow: hidden;
	position: absolute;
}
/*
	THIS IS CREATED OUTSIDE OF THE BOTROTATE ELEMENT
*/
.botrotate_button_area{
	position: absolute;
	z-index:1000;
	width: 100%;
}
/*
	THESE ARE NEXT AND PREV BUTTONS FOR THE PREVNEXT SETTING
*/
.botrotate_button_prev{
	width: 50px;
	height: 50px;
	cursor: pointer;
	background-color:#0000CC;
	position: absolute;
	left: -25px;
	top: 100px;
}
	.botrotate_button_prev:hover{
		background-color: #999999;
	}
.botrotate_button_next{
	width: 50px;
	height: 50px;
	cursor: pointer;
	background-color:#00CC00;
	position: absolute;
	right: -25px;
	top: 100px;
}
	.botrotate_button_next:hover{
		background-color: #999999;
	}
/*
	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-color: #cccccc;
	margin: 1px;
	padding: 2px;
}
.botrotate_button:hover{
	background-color: #999999;
}
.selected{
	background-color: #999999;
}
/*
	GENERAL LINKS
*/
.botrotate_links{
}
/*
	EACH LINK HAS AN ID GENERATED #BOTROTATE-botrotate id-LINKS-link id
*/
#botrotate-0-links-0{
	position:absolute;
	left: 100px;
	top: 60px;
}
#botrotate-0-links-4{
	position:absolute;
	left: 100px;
	top: 60px;
}
#botrotate-1-links-0{
	position:absolute;
	left: 100px;
	top: 60px;
}
#botrotate-1-links-2{
	position:absolute;
	left: 200px;
	top: 60px;
}
#botrotate-2-links-1{
	position:absolute;
	left: 100px;
	top: 60px;
}
