/*===========================================
=            Twitter Feed Styles            =
===========================================*/
.timeline-Widget {
	height: 400px!important;
	overflow: hidden!important;
}
#twitter__feed ul {
    margin: 0;
    list-style: none;
}

#twitter__feed li {
    position: relative;
    margin: 0 0 2rem 0;
    min-height: 8rem;
    background: rgba(255,255,255,1);
    padding: 1.5rem 1.5rem 1.5rem 7.5rem;
    border: solid 1px #ececec;
    border-radius: 3px;
}

#twitter__feed .user img {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    max-width: 75px;
    margin-right: 1rem;
    border: solid 1px #eeeeee;
    border-radius: 2px;
    padding: .5rem;
}

#twitter__feed .user span[data-scribe="element:name"] {
    font-weight: 700;
    color: #222222;
    -moz-transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

#twitter__feed .user span[data-scribe="element:name"]:hover {
    color: #00588e;
}

#twitter__feed .user span[data-scribe="element:screen_name"] {
    font-weight: 400;
    color: #999999;
    font-size: .8rem;
}

#twitter__feed .tweet {
    margin: .5rem 0;
    line-height: 1.4;
    word-wrap: break-word;
}

#twitter__feed .timePosted {
    margin: 0;
    font-size: .8rem;
}

#twitter__feed .timePosted a {
    color: #999999;
}

/*----------  Media Queries for Small Screens  ----------*/
@media screen and (max-width: 500px) {

    #twitter__feed li {
        padding-left: 5.5rem;
    }

    #twitter__feed .user img {
        max-width: 45px;
    }

}