/* CSS Document */
#dhtmlgoodies_marquee{
		/* general marquee layout*/
		padding-top:3px;
		height:25px;
		background-color: #7C98CD;
		font-family:Arial, Helvetica, sans-serif; 
		font-weight:bold;font-size:110%; 
		color:#000000;
		letter-spacing:2px;
		text-align:center;
		filter:alpha(opacity=60);
		-moz-opacity: 0.6;
		opacity: 0.6;
		padding: 1px;
		
		/* End general marquee layout */
		
		width:1000px;
		position:absolute;
		left:50%;
		margin-left:-500px;
		z-index:1000;
		top:5%;		
		display:none;		
		overflow:hidden;
	}
	body > div#dhtmlgoodies_marquee{	/* Firefox rule */
		position:fixed;
	}	
	#dhtmlgoodies_marquee .textObj{	/* Layout for the marquee text */
		position:absolute;	
		color: #FFF;
		font-weight:bold;
		white-space:nowrap;
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
	}
	/* Just some layout classes used in this example script */
	.highlighted{
		color:#F00;	// Red color
	}
	.greenText{
		color:#0F0;	// Green color
	}
	
