/* global elements */
/*******************/
		a 
		{
			color: #7f7f7f;
			text-decoration: none;
		}
		
		a:hover 
		{
			text-decoration: underline;
		}
	
/* section based styles */
/************************/
		
		/* public news item list*/
		/************************/
	
			table.news_items_table
			{
				width: 600px;
			}
	
			.news_item_title
			{
				text-align:left;
				font-weight:bold;
				color: #666666;
				font-size: 14px;
			}
			
			.news_item_author
			{
				font-size: 10px;
			}
			
			span.news_item_title a
			{
				font-size: 14px;
				text-align:left;
				font-weight:bold;
				color: #666666;
				text-decoration:none;
			}
			
			span.news_item_title a:hover
			{
				text-decoration:underline;
			}
			
			p.news_item_desc
			{
				margin-top: 7px;
				text-align:left;
				
			}
			
			div.news_item_album_indication
			{				
				text-align:left;
				background-image:url(../images/icon_pictures.png);
				background-repeat:no-repeat;
				font-weight: bold;
				padding-left: 20px;
				width: 300px;
				border-color: #e0871e;
				color: #459ADF;			
			}
			
			p.news_item_readmore
			{
				text-align:right;				
			}
			
			p.news_item_readmore a
			{				
				color: #652c90;				
			}
	
			
			.news_item_readmore a:hover
			{
				text-decoration:underline;
			}
			
			td.news_item_image
			{
				text-align:center;
				vertical-align:top;
			}
			
			td.news_item_text
			{
				text-align:left;
				vertical-align:top;		
			}
			
	/* news item detail view*/
	/************************/
		table.news_item_detail_table
		{

		}
	
		div.news_detail
		{
			width: 550px;
			background-color: #f7f7f7;
			text-align:left;
			color: #666666;
			border-top: 1px solid #aaaaaa;
			border-bottom: 1px solid #aaaaaa;
			
		}
		
		a.news_detail_link
		{
			color: #652c90;
		}
		
		td.news_detail_back_button
		{
			text-align: right;
			
		}
		td.news_detail_label
		{
			font-weight:bold;
			vertical-align:top;
		}
	
