.billboard { 
	position: relative;
	overflow: hidden;
	background: #FFF;
}
.billboard img {
	border: none;
}

.billboard > ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.billboard > ul > li {
	position: absolute;
	width: 100%; 
	height: 100%; 
	text-align: left;
	display: none;
	float: left;
}

.billboard.activated > ul > li {
	display: block;
}

.billboard .caption {
	position: absolute;
	float: left;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
	margin: 0 0.5em;
}

.billboard .footer {
	position: absolute;
	width: 100%;
	min-height: 1em;
	left: 0;
	bottom: 0;
	background: rgba(0,0,0, 0.5);
	padding: 0.5em 0;
}

.billboard .nav_wrapper.styled {
	position: absolute;
	bottom: 0.5em;
	right: 0.5em;
}

.billboard .nav_wrapper.styled div.dot,
.billboard .nav_wrapper.styled div.control {
	float: right;
	text-indent: 9999px;
	background: #fff;
	opacity: 0.25;
	filter: alpha(opacity=25);
	cursor: pointer;
}

.billboard .nav_wrapper.styled div.dot {
	width: 0.5em;
	height: 0.5em;
	margin: 0.25em;
	border-radius: 0.25em;	
	-moz-border-radius: 0.25em;	
	-webkit-border-radius: 0.25em;	
}

.billboard .nav_wrapper.styled div.control {
	width: 1.35em;
	height: 1.35em;
	border-radius: 0.7em;	
	-moz-border-radius: 0.7em;	
	-webkit-border-radius: 0.7em;
	margin: -0.175em 0 -0.175em 0.25em;
	background-repeat: no-repeat;
	background-position: center center;
}

.billboard .nav_wrapper.styled div.control.prev {
	background-image: url("images/previous.png");
}
.billboard .nav_wrapper.styled div.control.next {
	background-image: url("images/next.png");
}
.billboard .nav_wrapper.styled div.control.play.pause {
	background-image: url("images/pause.png");
}
.billboard .nav_wrapper.styled div.control.play {
	background-image: url("images/play.png");
}

.billboard .nav_wrapper.styled div.dot.selected,
.billboard .nav_wrapper.styled div.control:hover {
	opacity: 1;
	filter: alpha(opacity=100);	
}

