#feed {
    position: relative;
    background: #f5f3f0;
    padding-bottom: 10px;
    /*border-radius: 5px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);*/
    margin-top: 0px;
	border: 1px dotted #888;
	
	-webkit-box-shadow: 0px 6px 6px 0px #ccc;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  	-moz-box-shadow:    0px 6px 6px 0px #ccc;  /* Firefox 3.5 - 3.6 */
 	box-shadow:         0px 6px 6px 0px #ccc; 
}

#feed img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    -ms-interpolation-mode: bicubic;
}

.feed-item {
    padding: 5px;
	padding-top: 2px; padding-bottom: 2px;
    border-bottom: 1px solid #ddd;
    transition: all .5s;
}

.feed-item:hover {
    background: #fdfdfd;
}

.feed-item:last-child {
    border: none;
}

#feed .feed-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#feed .feed-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}