/* Slide Show */
.slide-item-banner
{
	background-color: #333;
	opacity: 1;
	height: 300px;
	max-width:400px;
	width:60%;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	border-radius: 8px;
	box-shadow:0 0 4px #aaaa;
	
}

.slideItemL
{
	padding:8px 0;
	
}

.slide-item-icon
{
	margin-top:110px;
	width:64px;
	height:64px;
}

.slide_show
{
	overflow-x:hidden;
	overflow-y:visible;
	transition:1s;
	-webkit-transition:1s;
	position:relative;
}

.slide-item-container
{
	overflow:visible;
	white-space:nowrap;
	width:100%;
	transition:1s;
	-webkit-transition:1s;
}


.slide-item
{
	/*position:absolute;*/
	display:inline-block;
	white-space: normal;
}

.slide-item-title
{
	white-space:nowrap;
	text-overflow: ellipsis;
	overflow:hidden;
}

.slide-item-desc
{
	height:120px;
	text-overflow: ellipsis;
	overflow:hidden;
}

 @media(max-width: 800px)
 {
	.slide-item-banner
	{
		height: 160px;
		width: 160px;
	}
	
	.slide-item-icon
	{
		margin-top:48px;
	}
	
	
 }