/* The main box for the rss scroller */

#rssBox
  {
    float:left;
    width:180px;
    margin:0 0 5px 0;
    height:190px;	
    border:1px solid #317082;
    padding:3px;
    font-size:0.8em;
    background-color:#e2ebed;
    /* Never change these two values */
    overflow:hidden;
    position:relative;	
  }		

/* A specific slide */	
#rssBox .slide
  {	
    background-color:#e2ebed;	/* Light blue background color */
  }

	#rssBox .slide{	/* A specific slide */
		background-color:#E2EBED;	/* Light blue background color */
		
	}
	
	.rssBoxDate{
		display:none;	/* I don't want to show the date */
	}
	.rssBoxHeading{	/* Heading of RSS item */
		font-weight:bold;
		color:#317082;
		margin:0px;
	}
	.rssBoxDescription{	/* Description of RSS item */
	
	}	
	.rssBoxLink{	/* Read more link */
		color:#F00;
		text-decoration:none;
	}
	.rssBoxLink:hover{	/* Read more link - mouse over */
		text-decoration:underline;
	}
	
