.rotator {
	position: relative;
	padding: 10px;
  }
 
	.rotatorContainer {
		position: relative;
		width: 536px;
		height: 266px;
		margin: 0 auto;
		padding: 0;
	}
 
		.rotatorWindow {
			position: absolute;
			height: 266px;
			width: 500px;
			top: 16px;
			left: 18px;
			overflow: hidden;
		}
 
			.rotatorWindow div { /* do not style the individual divs in the imageWindow */ }
				.rotatorWindow div img { /* do not style the individual images in the imageWindow */ }
 	
 
		.rotatorNavigation {
			display: none;
		}
 
			/* style below however you want */
			.rotatorNavigation li {
				width: 16px;
				height: 16px;
				line-height: 16px;		/* used for vertical centering; set as the same as the 'height' */
				text-align: center;
				margin-right: 2px;
				padding: 0px;
				border: 1px solid black;
				font-size: 11px;
				font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
				background-color:  #454545;
				color:  #000000;
				float: left;
			}
 	
			/* style below however you want */
			.rotatorNavigation li.on {
				background-color: #f2e1be;
			}
 	
 	
		.rotatorDescriptions {
			display: none;
		}
 	
			/* style below however you want */
			.rotatorDescriptions div {
				position: relative;
				height: 100%;		/* keep this as it ensures there is not a flicker on the text */
				padding: 0; 
				margin: 0 auto; 
			}
 	
		.rotatorAnchor {
			position: absolute;
			width: 536px;
			height: 295px;
			top: 0;
			left: 0;
			z-index: 25;
		}
 	
		.rotatorOverlay {
			position: absolute;
			width: 536px;
			height: 295px;
			top: 0;
			left: 0;
			background: url('/images/layouts/rotator_overlay.png') no-repeat center top;
			z-index: 22;
		}