#applist{
	margin: 10px 0;
	padding: 0;
}

.app{
	border: 1px solid #708090;
	border-radius: 3px;
	padding: 10px;
	display: inline-block;
	width: 100%;
	color: #000;
	margin: 0 0 10px;
}

.app:hover{
	text-decoration: none;
	cursor: pointer;
	border-color: #BED600;
}

.app .app_icon{
	width: 150px;
	display: inline-block;
	float: left;
}

.app .app_icon img{
	width: 150px;
	height: 150px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.app .app_info{
	overflow: hidden;
	height: 150px;
	padding-left: 10px;
	position: relative;
}

.app h3.app_title{
	margin: 0 0 2px;
	font-size: 15px;
	font-weight: 600;
	width: 100%;
	display: block;
	line-height: 20px;
	max-height: 40px;
	overflow: hidden;
}

.app .app_description{
	display: block;
	line-height: 20px;
	max-height: 60px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.app .app_attributes{
	position: absolute;
	bottom: 0;
	color: #B2B2B2;
	font-size: 12px;
	line-height: 17.15px;
	max-height: 17.15px;
	text-overflow: ellipsis;
}

.app .app_attribute{
	border-left: 1px solid #B2B2B2;
	padding: 0 10px;
}

.app .app_attribute:first-of-type{
	border: 0;
	padding-left: 0;
}