/*
 * hyCMS
 * Copyright(C)2008 by Friedrich Gräter
 * Published under the terms of the Lesser GNU General Public License v2
 *
 * HTMLView feed layouting
 *
 */
 
div.model_news_feed  {
	position:		relative;
	width:			874px;
	text-align:		center;

	user-select:		none;
	-moz-user-select:		none;
	-khtml-user-select:		none;
	-webkit-user-select:	none;
}

div.model_news_feed div.feedPagesView {
	position:		relative;

	width:			840px;
	height:			400px;
}

div.model_news_feed div.feedMenu {
	position:		relative;
	
	margin-top:		10px;
	margin-bottom:	15px;
}

div.model_news_feed div.feedContainer {
	position:		absolute;
	top:			0px;
	left:			16px;

	text-align:		center;
	vertical-align:	middle;
	width:			840px;

	margin:			auto;

	user-select:		none;
	-moz-user-select:	none;	
}

div.model_news_feed a.feedElement {
	position:			relative;

	min-height:			100px;

	display:			block;
	width:				740px;
	text-align:			center;
	vertical-align:		middle;
	
	border:				1px solid #b5bd9b;
	
	background:			#e3e3ac;
	color:				black;
	
	height:				auto;
	
    -moz-box-shadow: 	0px 0px 5px #a5ad8b;
    -webkit-box-shadow: 0px 0px 5px #a5ad8b;
     box-shadow: 		0px 0px 5px #a5ad8b;	
	
	margin-left:		auto;
	margin-right:		auto;
	
	margin-bottom:		20px;
	padding-top:		5px;	
	padding-bottom:		5px;
	
	clear:				both;	
	
	outline:			0px;
}

div.model_news_feed a.feedElement:hover {
	text-decoration:	none;
}

div.model_news_feed a.feedElement:link {
	color:				black;
}

div.model_news_feed div.feedElementThumbnail {
	width:				181px;
	min-height:			60px;
	
	text-align:			center;
	
	margin-top:			0px;
	margin-bottom:		0px;
	margin-left:		20px;
	margin-right:		20px;
	
	float:				left;
}

div.model_news_feed div.feedElementThumbnail img {
	border:				0px;

	text-align:			center;
	
	max-height:			60px;
	max-width:			180px;
	vertical-align:		middle;
				
	margin:				0px auto;
	
    -moz-box-shadow: 	0px 0px 0px #a5ad8b;
    -webkit-box-shadow: 0px 0px 0px #a5ad8b;
     box-shadow: 		0px 0px 0px #a5ad8b;		
}

div.model_news_feed div.feedElementHeadline {
	font-weight:		bold;
	text-align:			left;
	
	padding-top:		10px;
	padding-bottom:		2px;
	
	margin:				0px;
	
	width:				500px;
}

div.model_news_feed div.feedElementSubtitle {
	font-weight:		normal;
	text-align:			left;

	font-size:			0.9em;

	padding-bottom:		10px;

	width:				500px;
}

div.model_news_feed div.feedElementCatchline {
	font-weight:		normal;
	text-align:			left;

	font-size:			0.9em;

	padding-bottom:		12px;
	
	width:				500px;
}

div.model_news_feed div.feedMoreButton {
	color: 				#3e510b;
	display:			block;
	text-align:			left;
	margin-bottom:		5px;
	
	font-weight:		bold;
}

div.model_news_feed div.feedMoreButton span {
	cursor:				pointer;
	text-decoration:	none;
}

div.model_news_feed div.feedMoreButton span:hover {
	text-decoration:	underline;
}

div.model_news_feed div.feedElementTextContent {
	color:				black;
	display:			table;
	width:				500px;
}


