/*
 * 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_feed {
	position:		relative;
	width:			874px;
	text-align:		center;

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

div.feedPagesView {
	position:		relative;

	width:			840px;
	height:			400px;
}

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

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

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

	margin:			auto;

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

a.feedElement {
	display:			inline-block;
	height:				210px;
	width:				200px;
	text-align:			center;
	vertical-align:		middle;
	
	color:				black;
	
	margin:				auto;
}

a.feedElement:visited {
	color:				black;
}

div.feedElementThumbnail {
	height:				100px;
	max-width:			180px;
	text-align:			center;
	line-height:		100px;
	vertical-align:		middle;

	margin:				20px auto;
}

div.feedElementThumbnail img {
	border:				0px;

	text-align:			center;
	
	max-height:			100px;
	max-width:			180px;
	vertical-align:		middle;
				
	margin:				0px auto;

    -moz-box-shadow: 	0px 0px 5px #444444;
    -webkit-box-shadow: 0px 0px 5px #444444;
     box-shadow: 		0px 0px 5px #444444;
}

div.feedElementHeadline {
	font-weight:		bold;
	margin:				0px 10px;
}

div.feedElementSubtitle {
	font-weight:		normal;
}

div.feedMoreButton {
	display:			none;
}

div.feedInstall {
	font-weight:		bold;
	cursor:				pointer;
}

div.feedInstall:hover {
	text-decoration:	underline;
}

/******************************************************* Left */
span.feedButton {
	display: 		inline-block;
	
	cursor:			pointer;
	
	font-size:		12pt;
	font-family:	sans-serif;
	color:			black;
	
	margin:			5px;
}

span.feedButton:hover {
	color:			white;
}

span.feedButtonDisabled {
	display: inline-block;

	cursor:			pointer;

	font-size:		12pt;
	font-family:	sans-serif;

	margin:			5px;
}

span.feedPageNumber {
	display: inline-block;

	font-size:		12pt;
	font-family:	sans-serif;

	margin:			5px;
}


