#headerSlider {

	width: 1000px;
	height: 400px;
	margin: 0 auto;
	background-color: #FFFFFF;
	position: relative;

}

#headerSlider > #next,
#headerSlider > #previous {

	width: 0;
	height: 0;
	position: absolute;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.5s;

}

#headerSlider > #next:hover,
#headerSlider > #previous:hover {

	opacity: 0.8;

}

#headerSlider > #next {

	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 25px solid #6a96fc;

}

#headerSlider > #previous {

	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-right: 25px solid #6a96fc;

}

