div.mwc {
	background-color: #FFFFFF;
}

/* Positioniert das Icon oben rechts im MWC. */
/* position: absolute bezieht sich auf das position:relative von div.mwc */
div.mwc div.icon {
	position: absolute;
	top: 0; right: 0;
	width: 17px; height: 17px;
}

/* Normaler Abstand zischen Elementen (Text, Bild) eines MWCs. */
div.mwc div.vabstand {
	height: 10px;
}
/* Abstand zischen Elementen (Text, Bild) eines MWCs inklusive Linie. */
/* overflow: hidden damit die Zeile wirklich nur 1 Pixel gross ist (IE Bug). */
div.mwc div.linie {
	margin: 7px 0px 7px 0px;
	height: 1px;
	overflow: hidden;
	background-image: url(pics/linie.gif);
	background-repeat: repeat-x;
}
/* Der Bereich in dem der Inhalt (Überschrift und Text) dargestellt wird. */
/* Das Padding hier um die Überschrift auf die Grundlinie zum Icon zu drücken. */
div.mwinhalt {
	border-left-style: solid;
	border-left-width: 1px;
	border-right-style: solid;
	border-right-width: 1px;
	padding: 4px 0px 0px 0px;
}

/* Die Überschrift. */
div.mwinhalt h2, div.mwinhalt h2 a {
	font-weight: bold;
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
}
/* overflow: hidden, vertical-align: top wegen "nur" 12px height. Die Überschrift
   ist (nicht sichtbar) größer und würde den MWC künstlich vergrössern. */
/* 6px Abstand damit die 7px des Style-Guides dargestellt werden. */
div.mwinhalt h2 {
	height: 12px;
	margin: 0px 20px 0px 6px;
}

/* Normaler Text. */
/* 10px Abstand damit die 14px des Style-Guides dargestellt werden. */
/* 6px Abstand damit die 7px des Style-Guides dargestellt werden. */
div.mwinhalt p {
	margin: 0px 6px 0px 6px;
	width: 146px;
	font-weight: normal;
}

/* Das Bild des MWCs. */
div.mwinhalt img.bild {
	height: 54px;
	width: 160px;
}

/* MWC Formular */
/* Grösse der <td>s geschätzt, width: auto funktioniert weder in IE noch FF. */
table.mwc_formular {
	width: 160px;
}
table.mwc_formular td.text,
table.mwc_formular td.input,
table.mwc_formular td.ganzeBreite {
	width: 70px;
	padding: 0px 6px 0px 6px;
}
table.mwc_formular td.input {
	width: 90px;
}
table.mwc_formular td input.text {
	width: 87px;
}
table.mwc_formular td.ganzeBreite {
	width: 160px;
}
/* Der "Submit"-Pfeil */
img.pfeil {
	margin: 0px 0px 2px 2px;
}

/* Runde Ecken */
div.mwoben {
	background-image: url(pics/mwc_oben.gif);
	background-repeat: no-repeat;
	background-position: top left;
	height: 2px;
	font-size: 1px;
}
div.mwunten {
	background-image: url(pics/mwc_unten.gif);
	background-repeat: no-repeat;
	background-position: top left;
	width: auto; height: 5px;
	font-size: 1px;
}
