/**
 * CSS for images in jquery waterwheel-carousel plugin
 */

/* any roundabout container */
.roundabout {

}
	/* images inside roundabout container */
	.roundabout img {
		width: auto;
		height: 200px;
	}
	
	.roundabout-in-focus > .photo {
		
	}
	
	/* nav buttons for roundabout */
	.roundabout > span.nav {
		position: absolute;
		width: 0px;
		height: 0px;
		opacity: .65;
		transition: all .5s ease 0s;
	}
		
		/* hover on nav button */
		.roundabout > span.nav:hover {
			opacity: 1;
			transition: opacity .5s ease 0s;
			cursor: pointer;
		}

			/* prev dimensions and positioning */
			.roundabout > span.nav.prev {
				border-top: 50px solid transparent;
				border-right: 35px solid #CDC2AB;
				border-bottom: 50px solid transparent;
				transition: all 0.2s ease 0s;
			}
			
			/* next dimensions and positioning */
			.roundabout > span.nav.next {
				border-top: 50px solid transparent;
				border-left: 35px solid #CDC2AB;
				border-bottom: 50px solid transparent;
				transition: all 0.2s ease 0s;
			}
	
	/* caption container */
	.roundabout > .caption {
		display: inline-block;
		
		text-align: center;
		font-size: 16px;
		
		opacity: 1;
		transition: opacity .25s ease 0s;
	}
		.roundabout > .caption.transition {
			opacity: 0;
			transition: opacity .25s ease 0s;
		}