/*
	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%;
	top: 25px;
	left: 160px
}
/*
	THESE ARE NEXT AND PREV BUTTONS FOR THE PREVNEXT SETTING
*/
.botrotate_button_prev{
	background: url(../_images1/left.gif) no-repeat top left;
	cursor:pointer;
	height:30px;
	left:330px;
	position:absolute;
	top:300px;
	width:37px;
}
	.botrotate_button_prev:hover{
		background: url(../_images1/left.gif) no-repeat bottom left;
	}
.botrotate_button_next{
	background: url(../_images1/right.gif) no-repeat top left;
	cursor:pointer;
	height:30px;
	left:370px;
	position:absolute;
	top:300px;
	width:37px;
}
	.botrotate_button_next:hover{
		background: url(../_images1/right.gif) no-repeat bottom left;
	}
.botrotate_links{
	left: 275px;
	top: 0px;
	padding: 5px;
}
