	/* The box container div with id 145025 */
	div#rssincl-box-145025 {
		width: 400px; /* sets the width of your RSSbox */
		overflow-x: auto; /* sets a scrollbar if the content is larger than 350px */
	}
 
	/* All elements inside the box container */
	div#rssincl-box-145025 *{
		font-family: Arial, Helvetica, sans-serif; /* sets the font family for all elements within the RSSbox */
		text-align:left; /* sets text-align to left for all elements*/
		margin:0; /* sets margin to zero for all elements*/
		padding:0; /* sets padding to zero for all elements*/
		line-height:110%; /* sets the line-height a bit greater than normal*/
		
	}
 
	/* The div around the content elements / news items */
	div#rssincl-box-145025 div.rssincl-content {}
 
	/* The div around each news item */
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry {
		padding:10px; /* padding to 10px again */		
		background-color: #FFF; /* background-color when image is not shown */
	}
 
	/* The <p> tag containing the news item title */
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry p.rssincl-itemtitle {
		padding:5px; /* padding of title to 5px*/
		padding-left:25px; /* left padding to 25px because of background image (arrow) */
                /* set the url to a background image  */
		background-image:url('../images/rssinclude_arrow.gif');
		background-repeat:no-repeat; /* don't repeat it */
		background-position:0px 3px; /* positioning of background image*/
		margin-bottom:6px; /* margin below the item title*/
	}
 
	/* The <a> tag wrapped around the news item title */
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry p.rssincl-itemtitle a {
		font-size: 16px; /* font size to 14px */
		font-weight:bold; /* bold */
		text-decoration:underline; /* lets it look like a link */
		color: #003366;	 /* blue */
	}
 
	/* Set a color for rolling over the item title*/
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry p.rssincl-itemtitle a:hover{
		color:#CC0101; /* change font color to red on rollover */
	}
 
	/* The <p> tag containing the item description, and all elements inside this tag */
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry p.rssincl-itemdesc,
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry p.rssincl-itemdesc *{
		font-size: 12px; /* general font size 12px */
		color: #333333; /* dark grey */
	}
 
	/* The <p> tag containing the item date, and all elements inside this tag */
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry p.rssincl-itemdate,
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry p.rssincl-itemdate *{
		font-size: 10px; /* set date smaller than normal text */
		color: #CCCCCC; /* dark grey again */
		padding-top:10px;
	}
 
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry p.rssincl-itemdate {
		margin-bottom:6px; /* a bit of space below the date*/
	}
 
	/* If there are images inside the description, you can style them as well */
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry div.rssincl-itemdesc img {
		border:10px solid #FFF; /* no border for images inside description tag */	
	}
    
    div#rssincl-box-145025 img {
    border-right:10px solid #FFF; /* no border for images inside description tag */
		float:left;	
    }
    
	/* There is a clearer div which you can set to "clear:both"... */
	div#rssincl-box-145025 div.rssincl-content div.rssincl-entry div.rssincl-clear {
		clear:both; /* important when using "float" for item elements */
	}