/*
 * Copyright by Intland Software
 *
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Intland Software ("Confidential Information"). You
 * shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement
 * you entered into with Intland.
 *
 * $Revision: 18019 $ $Date: 2007-03-23 14:16:11 +0100 (P, 23 márc. 2007) $
 */

/*
	This is the CSS for printing!
 */
@media print {

/* style for parts will not appear in printing */
.noPrint {
	display:none;
}

/* style for parts only appear in printing */
.onlyInPrint {
	display: inherit;
}

/*  Do not underline links in printing */
a {
	text-decoration: none;
}

/* make some border for table rows in printing*/
TR {
	border-bottom: solid 1px silver;
}

/* Hide buttons in printing */
INPUT.button {
	display:none;
}

INPUT.smallButton {
	display:none;
}

/**
	ActionBar won't print,but ActionMenuBar will, because it contains information like doc name or orther meta data
 */
.actionBar {
	display:none;
}
/*
	Hide gray background image of ActionBar/actionMenuBar
 */
.actionBar, .actionMenuBar {
	background-image: none;
	color: black;
	border: solid 1px silver;
}

/** do not print YUI menus like Action Menu */
.yuimenubar {
	display:none !important;
}


/**
 * The ditch... selectors below will expand the ditchnet-tab's contents in printing, so all tab's contents will be shown
 * below each other
 */
.ditch-tab-wrap {
	display: none !important;
	position:static !important; /* fixes that IE6/7 does not print 2nd pages otherwise */
}

.ditch-tab-pane-wrap {
	display: block !important;
	position:static !important; /* fixes that IE6/7 does not print 2nd pages otherwise */
}

/**
 * Define some border around each tab's content
 */
.ditch-tab-pane {
	display: block !important;
	border-top: solid 1px silver;
	padding: 0px 2px 2px 2px;
	margin-bottom: 15px;
}

/**
 * The title for each tab's content
 */
.ditch-tab-pane .ditch-tab-title {
	display: block !important;
	background-color: #B0B0B0;
	color: black;
	font-weight: bold;
	font-size: 110%;

	margin-bottom: 3px;
	padding: 2px 2px 2px 2px;
}

#pagecontent span.editsection {
	display: none;
}


td.tableItem {
	white-space: normal !important;
}

.forumMessage {
	border: solid 1px #CCCCCC;
	margin-bottom: 2px;
}

.forumMessage .messageHeader {
	border-bottom: solid 1px #F2F2F2;
}

div.exportlinks {
	display: none;
}

} /* @media */