/* LOGO SLIDER */

#logo_slider {
	width: 100%;
	overflow: hidden;
	height: 45px;
	position: relative;
}

#logo_slider::before {
	content: "";
	display: block;
	position: absolute;
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	height: 45px;
	width: 60px;
	top: 0;
	left: 0;
	z-index: 1;
}

#logo_slider::after {
	content: "";
	display: block;
	position: absolute;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	height: 45px;
	width: 60px;
	top: 0;
	right: 0;
}

#logo_slider ul {
	margin: 0;
	padding: 0;
	position: relative;
}


#logo_slider li {
	list-style: none;
	width: 120px;
	height: 45px;
	margin: 0 5px;
	position: relative;
	float: left;
	left: 0;
}