/* ------------------------------------------------------------------------------------
 * news.css :: NEWS - Set news table to 100% width and optimize the size of each column,
 * set a border on bottom of each news column and make the headline bold. Define images
 * for some mimetypes.
 *
 * Set image and hide span for delete button only used in adminmode.
 *
 * Skin: default
 * Author: Bastian Schröder <bs@chemanet.de>
 * Version: 2007-11-25
 * ------------------------------------------------------------------------------------ */

body div#contentframe div.abstract {
	margin: 5px 0 25px 0;
}

/* ---------------------------------------- news -------------------------------------- */
body div#contentframe table#news {
	width: 100%;
	margin-bottom: 10px;
	border-collapse: collapse;
}
body div#contentframe div#news {
	margin-bottom: 10px;
}
body div#contentframe table#news tr td,
body div#contentframe div#news div.news_item div {
	margin: 0 0 10px;
	padding: 5px;
}
body div#contentframe table#news tr td {
	border-bottom: 1px solid #b2b2b2;
	vertical-align: top;
}
body div#contentframe table#news tr td.tdate {
	width: 6em;
}
body div#contentframe table#news tr td.ttitel,
body div#contentframe div#news div.news_item div.ttitel {
	font-weight: bold;
}
body div#contentframe table#news tr td.ttitel {
	width: 25%;
}
body div#contentframe table#news tr td.tfile,
body div#contentframe div#news div.news_item div.tfile {
	width: 36px;
}

/* delete button */
body div#contentframe table#news tr td.tdelete,
body div#contentframe div#news div.news_item div.tdelete {
	width: 16px;
}
body div#contentframe table#news tr td.tdelete a,
body div#contentframe div#news div.news_item a.tdelete {
	display: block;
	width: 16px;
	height: 16px;
	background-image: url(../img/delete.png);
	background-repeat: no-repeat;
	border: 0;
}
body div#contentframe table#news tr td.tdelete a span,
body div#contentframe div#news div.news_item a.tdelete span {
	display: none;
}

/* ----------------------------------- file-mimetypes --------------------------------- */
body div#contentframe table#news tr td.tfile div,
body div#contentframe div#news div.news_item div.tfile {
	width: 50px;
	height: 50px;
	background-image: url(../img/mime/empty.png);
	background-repeat: no-repeat;
	background-position: 2px 2px;
	cursor: pointer;
}
body div#contentframe table#news tr td.tfile div.application_x-shockwave-flash,
body div#contentframe div#news div.news_item div.tfile.application_x-shockwave-flash {
	background-image: url(../img/mime/image-x-generic.png);
}
body div#contentframe table#news tr td.tfile div.image_png,
body div#contentframe div#news div.news_item div.tfile.image_png,
body div#contentframe table#news tr td.tfile div.image_gif,
body div#contentframe div#news div.news_item div.tfile..image_gif,
body div#contentframe table#news tr td.tfile div.image_jpg,
body div#contentframe div#news div.news_item div.tfile.image_jpg,
body div#contentframe table#news tr td.tfile div.image_jpeg,
body div#contentframe div#news div.news_item div.tfile.image_jpeg {
	background-image: url(../img/mime/image-x-generic.png);
}
body div#contentframe table#news tr td.tfile div.application_pdf,
body div#contentframe div#news div.news_item div.tfile.application_pdf {
	background-image: url(../img/mime/x-office-document.png);
}
body div#contentframe table#news tr td.tfile div.text_html,
body div#contentframe div#news div.news_item div.tfile.text_htm,
body div#contentframe table#news tr td.tfile div.text_html,
body div#contentframe div#news div.news_item div.tfile.text_htm {
	background-image: url(../img/mime/text-html.png);
}
body div#contentframe table#news tr td.tfile div.text_plain,
body div#contentframe div#news div.news_item div.tfile.text_plain {
	background-image: url(../img/mime/text-x-generic.png);
}