/* Wegen eventueller Floats */
.textblock_Main, 
.textblock_MainBox {
    clear: both;
}

/* Der Paragraph wird gefloatet, um eine Reihe bilden zu können (hier jedoch nicht relevant, da 100% Breite) */
.textblock_Paragraph, 
.textblock_ParagraphBox {
	float: left;
}

/* Gefloatet, damit die Box bei Dev-Tool-Markierung eine Ausdehnung hat */
.textblock_Content,
.textblock_ContentBox {
    float: left;
}

/* TODO: Warum? */
.textblock_ContentSide, 
.textblock_ContentSideBox {
    vertical-align: top;
}

/* Gefloatet, damit die Box bei Dev-Tool-Markierung nicht zu viel Ausdehnung hat */
.textblock_InnerContent,
.textblock_InnerContentBox {
	float: left;
}

/* Der innere Text bekommt none, damit er um das Bild fließt */
.textblock_Main .textblock_TextWrapperInner,
.textblock_MainBox .textblock_TextWrapperInnerBox {
	float: none;
}

/* Standardabstand zwischen einzelnen Bestandteilen */
.textblock_Teaser,
.textblock_TeaserBox {
	margin-bottom: 16px;
}
.textblock_ImageWrapperTop,
.textblock_ImageWrapperTopBox {
	margin-bottom: 16px;
}
.textblock_Text,
.textblock_TextBox {
	margin-bottom: 16px;
}

/* Float zur Positionierung und damit der Text um das Bild fließt; z-index für Auswahl im Dev-Tool */
.textblock_Main .textblock_ImageWrapper {
    display: block;
	z-index: 1;
}
.textblock_Main .textblock_ImageWrapperLeft, 
.textblock_MainBox .textblock_ImageWrapperLeftBox {
    float: left;
}
.textblock_Main .textblock_ImageWrapperRight, 
.textblock_MainBox .textblock_ImageWrapperRightBox {
    float: right;
}

/* 100% innerhalb des Containers, der die tatsächliche Breite vorgibt */
.textblock_Image,
/* Selektoren ab hier depricated */
.textblockImageTop img, 
.textblockImageLeft img, 
.textblockImageRight img,
.textblockImageTopBox img, 
.textblockImageLeftBox img, 
.textblockImageRightBox img {
    margin: 0px;
    width: 100%;
}

/* Für den Fall, dass allgemeine Tag-Styles etwas anderes sagen */
.textblock_Kicker, 
.textblock_Headline, 
.textblock_Teaser p, 
.textblock_Text p,
.textblock_KickerBox, 
.textblock_HeadlineBox, 
.textblock_TeaserBox p, 
.textblock_TextBox p {
	clear: none;
	display: block;
}

/* Kleines margin für zusätzlichen Abstand um Fließtext */
.textblock_ImageDescription, 
.textblock_ImageDescriptionBox {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-style: italic;
}

/* Der Teaser ist standardmäßig fett */
.textblock_Teaser, 
.textblock_TeaserBox {
    font-weight: bold;
}

/* Für die Seitengasse eine Titelbox */
.textblock_MainTitleBox {
	font-size: 18px;
	line-height: 22px;
    color: #000;
    background-color: #eee; 
    text-align: center;
    margin: 0px 0px 10px 0px;
    padding: 5px 0px 0px 0px;
    font-weight: bold;    
}

/* Der Download-Icon ist standardmäßig ausgeblendet */
.textblock_LinkDownload .icon, 
.textblock_LinkDownloadBox .icon {
	display: none;
}

/* Ein clear zum Schluss */
.textblock_Clear {
    clear: both;
}

/* Depricated */
.textblockTextSpace {
	margin: 0px;
	padding: 0px;
}

/* Spezielle Styles für Zitate */
.textblock_Main cite, 
.textblock_MainBox cite { 
    quotes: '„' '“' '‚' '‘'; 
	font-style: normal;
}
.textblock_Main cite:before, 
.textblock_MainBox cite:before { 
    content: open-quote; 
}
.textblock_Main cite:after, 
.textblock_MainBox cite:after { 
    content: close-quote; 
}
.textblock_QuoteboxLeft {
	padding: 5px;
	text-align: center;
	font-size: 18px;
	float: left;
}
.textblock_QuoteboxRight {
	padding: 5px;
	text-align: center;
	font-size: 18px;
	float: right;
}
