/* liScroll styles */

.tickercontainer { /* the outer div with the black border */
	width: 720px; 
	margin: 0; 
	padding: 0;
	overflow: hidden; 
	text-align: center;
	height: 47px;
	background: #ddd;
	padding-left: 60px;
	padding-right: 0px;
	line-height: 30px;
	margin-bottom: 20px;
}

#twitter-feed-icon {
    position: absolute;
    left: 0;
    top: 0;
    background: #7BAE38;
    width: 30px;
    height: 30px;
    padding: 7px 7px 10px 10px;
}

#twitter-feed-icon a {
    color: #fff;
    font-size: 30px !important;
}

.tickercontainer a {
    color: #7BAE38;
}

.tickercontainer li {
    color: #666;
    font-weight: bold;
    font-family: sans-serif;
}

#ticker-wrapper {
    position: relative;
    float: left;
    height: 50px;
}

/* that serves as a mask. so you get a sort of padding both left and right */
.tickercontainer .mask { 
	position: relative;
	width: 100%;
	overflow: hidden;
}
ul.newsticker { /* that's your list */
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 0;

}
/* important: display inline gives incorrect results when you check for elem's width */
ul.newsticker li {
	float: left; 
	margin: 10px;
	padding: 0;
}

ul.er-controls{
	list-style: none;
	display: inline-block;
	padding: 0;
}
ul.er-controls > li{
	display: inline-block;
	padding: 0 10px;
	background: #f0f0f0;
	margin: 5px;
	border-radius: 5px;
	height: 40px;
	line-height: 40px;
}
ul.er-controls > li:hover{
	background: #f5f5f5;
	cursor: pointer;
}