			.rotator {
				position: relative;
				margin: 0 auto;
				padding: 0;
				width: 513px;
				height: 174px;
				float: right;
			}
		
				.rotator .rotatorWindow {
					position: absolute;		/* keeping this ensures positioning doesn't get jacked up */
					z-index: 10;			/* keep this: it sets the position */
					overflow: hidden;		/* highly recommend that the overflow is hidden to prevent image bleeding on the website */
					width: 513px; 			/* must set the width of the image window here */
					height: 174px;			/* must set the height of the image window here */
		
		
					/* style below however you want */
					right: 0px;
					top: 0px;
				}
				
				.rotator .rotatorWindow div { /* do not style the individual divs in the imageWindow */ }
				.rotator .rotatorWindow div img { /* do not style the individual images in the imageWindow */ }
				
				.rotatorNavigation {
					display: none;
				}
				
				.rotatorDescriptions {
					display: none;
				}
			
			.rotatorAnchor {
	        }
	    
	        .rotatorOverlay {
	            position: absolute;
	            width: 513px;
	            height: 174px;
	            top: 0;
	            right: 0px;
	            background: url('/images/layouts/overlay.png') no-repeat center top;
	            z-index: 22;
	      	}
