/****************************************************/
/*Main page slideshow*/


.cycle-slideshow {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	-moz-box-shadow: 0 0 1px #000000;
	-webkit-box-shadow: 0 0 1px #000000;
	box-shadow: 0 0 1px #000000;
	overflow: auto;	
}

.cycle-prev, .cycle-next {
	position: absolute;
	top: 0;
	width: 5%;
	z-index: 800;
	height: 70%;
	cursor: pointer;
}

.cycle-prev {
	left: 0px;
	background:url(../images/previous_icon.png)
	 70% 70% no-repeat;
}

.cycle-next { 
	right: 0; 
	background:url(../images/next_icon.png) 70% 70% no-repeat;
}
.cycle-prev:hover, .cycle-next:hover { 		
	opacity: .7; 
	filter: alpha(opacity=70) 
}

