/* CSS Document */

/* this page declarations */	
#wrapp {
width: 620px;
text-align: left;
font: normal 1em Verdana, Arial, Helvetica;
margin: 0 auto;
padding-left: 32px;
margin-top: -2px;
color: #ffffff;
}

.tickercontainer { /* the outer div with the black border */
border-top: 0px solid #292929;
border-left: 1px solid #292929;
border-right: 1px solid #292929;
border-bottom: 1px solid #292929;
background: #1a1a1a; 
width: 610px; 
height: 20px; 
margin: 0; 
padding: 0;
overflow: hidden; 
}
.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
left: 20px;
top: 4px;
width: 565px;
overflow: hidden;
}
ul.newsticker { /* that's your list */
position: relative;
left: 612px;
font: normal 10px Verdana, Arial, Helvetica;
list-style-type: none;
margin: 0;
padding: 0;

}
ul.newsticker li {
float: left; /* important: display inline gives incorrect results when you check for elem's width */
margin: 0;
padding: 0;
background: #1a1a1a;
}
ul.newsticker a {
white-space: nowrap;
padding: 0;
color: #ffcc66;
font: normal 10px Verdana, Arial, Helvetica;
margin: 0 1px 0 6px;
} 
ul.newsticker span {
margin: 0 10px 0 0;
} 

ul.newsticker .intro {
margin: 0 20px 0 80px;
}

