/* CSS Document */
	#marquee{
		/* general marquee layout*/
		padding:3px 0px 0px 0px;
		height:25px;
		background-color: #5C748F;
		
		
		/* End general marquee layout */
		position:absolute;
		top:0px;
		
		z-index:0;
		bottom:0px;		
		display:none;		
		width:100%;
		overflow:hidden;
		margin:0px 0px 0px -1px;
	}
	body > div#marquee{	/* Firefox rule */
		position:fixed;
	}	
	#marquee .textObj{	/* Layout for the marquee text */
		position:absolute;	
		color: #FFF;
		font-weight:bold;
		font-size:11px;
		white-space:nowrap;
		width:100%;
	}
		#marquee .textObj a{	/* Layout for the marquee text */
		color: #FFF;
		font-size:11px;
		font-weight:bold;
		background-color: #5C748F;
		text-decoration:none;
		}
		#marquee .textObj a:hover{	/* Layout for the marquee text */
		color: #FFF;
		font-size:11px;
		font-weight:bold;
		background-color: #5C748F;
		text-decoration:underline;
		}
	/* Just some layout classes used in this example script */
	.highlighted{
		color:#F00;	// Red color
	}
	.greenText{
		color:#0F0;	// Green color
	}
	
