﻿#carousel {
	margin: 0 auto;
	width: 250px;
	height: 20px;
	text-align: left;
	position: relative;
}

#carousel_prev,
#carousel_next {
	top: 0;
	width: 10px;
	height: 20px;
	background: #fff;
	cursor: pointer;
	position: absolute;
}
#carousel_prev {
	left: -21px;
	height:0px;
	width:0px;
	border-right:#000066 7px solid;
	border-left:7px solid transparent;
	border-top:7px solid transparent;
	border-bottom:7px solid transparent;
}
#carousel_next {
	right: -21px;
	height:0px;
	width:0px;
	border-left:#000066 7px solid;
	border-right:7px solid transparent;
	border-top:7px solid transparent;
	border-bottom:7px solid transparent;
}

#carousel ul li {
	width: 250px;
	float: left;
	display: inline;
}


/* =======================================
	ClearFixElements
======================================= */
#carousel ul:after {
	content: ".";
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

#carousel ul {
	display: inline-block;
	overflow: hidden;
}