/* 
    Document   : ticker.css
    Created on : 17-Oct-2011, 15:59:16
    Author     : TNT Web Media
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

.ticker {
	position: relative;
	overflow: hidden;
}
.ticker li {
	position: absolute; left: -9999px;
	height: 1.5em;
	overflow: hidden;
	font-size: 1em;
}
.ticker .current { position: static; }

.ticker li .property,
.ticker li .offer-wrap {
	display: block;
	position: absolute;
	height: 2em;
	padding: 0.35em 0.5em 0.15em 0.5em;
	overflow: hidden;
}
.ticker li .offer-wrap span { display: block; }

.ticker li .property {
	bottom: 0;
	background: #0c0c0c; color: #fff;
}

.ticker li .offer-wrap {
	padding-left: 1.5em;
	bottom: 0;
	overflow: hidden;
}


.ticker .reveal {
	position: absolute;
	right: 0; top: 0; bottom: 0;
	width: 100%;
	background: #fff;
}



