/*
	THE MAIN CONTAINER
	- FOR SLIDING TRANSITIONS, OVERFLOW HIDDEN IS RECOMMENDED
	- POSITION RELATIVE IS REQUIRED SO THE ARROW POSITIONS CORRECTLY
*/
.botrotate{
	width: 942px;
	height: 390px;
	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: 76px;
	height: 47px;
	cursor: pointer;
	position: absolute;
	left: -25px;
	top: 135px;
	background: url(../_images/br_prev.gif);
}
	.botrotate_button_prev:hover{
	}
.botrotate_button_next{
	width: 76px;
	height: 47px;
	cursor: pointer;
	position: absolute;
	right: -25px;
	top: 135px;
	background: url(../_images/br_next.gif);
}
	.botrotate_button_next:hover{
	}
