/* styling for the twitter feed scroll */
.tweetContainer {
    width: 275px;
    height: 28.0em; /* total visible tweets, in this case set to 5 */ 
    overflow: hidden; /*keep tweets outside of the container from being seen */
    position: relative;
}
#twee {
    width: 275px;
    position: relative;
    list-style-type: none;
    top: -6em; /* allows a tweet to be moved into hidden space before scrolling into view */
    margin: 0px;
    padding: 0px;
}

.tweetImage {
    float: left;
    padding-right: 1em;
}
.tweet {
    height: auto;
    padding: 0.6em 0.3em;
	margin:0.6em 0.3em;
    font-size:11.5px;
    border-bottom: 1px dotted #6D6E6E;
}
a.tweet-cj{color:#FF6600; text-decoration:none;}
a.tweet-cmmnt{color:#006699; text-decoration:none;}