/* Add here all your css styles (customizations) */
#busapps { list-style: none; text-align: center; }
#busapps li { 
	display: inline-block;
	padding: 0;
    width: 105px;
	height: 105px;
	border: 1px solid #eee;
    border-radius: 2px;
    margin: 3px 3px 6px;
	line-height: 105px;
}
#busapps li img { width: 80%; opacity: 1; transition: opacity .5s ease; vertical-align: middle; }
#busapps li div { 
	width: 105px; overflow: hidden; height: 105px; line-height: 105px;
	opacity: 0; transition: opacity .5s ease;
	background-color: rgba(0,0,0,0.1); position: absolute; top: 0;
}
#busapps li:hover img { opacity: 0; transition: opacity .5s ease; }
#busapps li:hover div { opacity: 1; transition: opacity .5s ease; }
#busapps li h4 { display: inline-block; vertical-align: middle; font-weight: bold; color: #555 !important; }