.RssListItem
	{
	width : 330px;
	min-height : 150px;
	margin : 20px;
	padding : 30px;

	border : solid 1px #d9d9d9; 
	border-radius : 2px;
	
	flex-wrap : nowrap;
	}
	
.RssListItem:hover
	{
	border-color : #70cef2;
	}

.RssTitle,
.RssFilTitle
	{
	text-decoration : none;
	
	font : normal 16px Calibri,sans-serif;
	color : #0b5394;
	line-height : 1.5em;
	
	margin-bottom : 15px;
	}
	
.RssText,
.RssFilText
	{
	font : normal 14px Calibri,sans-serif;
	color : #434343;
	line-height : 1.5em;
	}

.RssFilDate
	{
	font : normal 14px Calibri,sans-serif;
	color : #999999;
	line-height : 1.5em;
	
	margin-bottom : 30px;
	}
	
.RssImg
	{
	width : 100px;
	
	margin : 5px 30px 0px 0px;
	}

	
/* Smartphone */
@media only screen and (max-width:480px)
	{
	.RssListItem
		{
		flex-wrap : wrap;
		}

	.RssTitle
		{
		margin-top : 20px;
		}
	}

	
/* Tablet	*/	
@media only screen and (min-width:481px) and (max-width:800px)
	{
	}