@CHARSET "UTF-8";

/**
 * Main news details container.
 * This div reset margin and padding into panel
 */
#news-details-container
{
/* Reset */
	margin: 0px;
	padding: 0px; 
}

/**
 * Class .news-date rappresent div that contain the date
 */	
	#news-details-container
		div.news-date
	{
		float: none;
		font-weight: bold;
		font-size: 14px;
		font-style: italic;
		text-align: right;
	}
	
/**
 * Class news-header-wrap make a wrapper for image, title and subtitle
 */
	#news-details-container
		div.news-header-wrap
	{
		float: left;
	}
	
	/**
	 * Class .news-date rappresent div that contain the image
	 */	
		#news-details-container
			div.news-header-wrap
				div.news-image
		{
			float: left;
			width: 200px;
			text-align: center;
		}
		
	/**
	 * Class news-infos-wrap make a wrapper for title and subtitle
	 */	
		#news-details-container
			div.news-header-wrap
				div.news-infos-wrap
		{
			float: left;
			width: 540px;
			padding-left: 10px;
		}
		
		/**
		 * Class .news-title rappresent div that contain the title
		 */	
			#news-details-container
				div.news-header-wrap
					div.news-infos-wrap
						div.news-title
			{
				float: none;
				color: #ff0000;
				font-weight: bold;
				font-size: 18px;
			}
			
			#news-details-container
				div.news-header-wrap
					div.news-infos-wrap
						div.news-group
			{
				float: none;
				background-color: #ffffff;
				
				color: #000000;
				font-size: 8px;
				font-style: italic;
				margin-left: 5px;
			}
			
		/**
		 * Class .news-subtitle rappresent div that contain the subtitle
		 */	
			#news-details-container
				div.news-header-wrap
					div.news-infos-wrap
						div.news-subtitle
			{
				float: none;
			}
			
	
/**
 * Reset float to place text under header
 */
	#news-details-container
		div.reset
	{
		clear: both;
	}
	
		/**
		 * class .news-description rappresent div that contain the news description
		 */
			#news-details-container
				div.news-header-wrap
					div.news-infos-wrap
						div.news-description
			{
				float: none;
				margin-top: 5px;
			}
	
/**
 * class .news-back2list rappresent div that contain back to list link
 */
	#news-details-container
		div.news-back2list
	{
		text-align: center;		
	}
	
/**
 * All a in div.news-back2list
 */	
	#news-details-container
		div.news-back2list
			a
	{
		color: #000000;
		text-decoration:none;
	}
	
	
