/************************
 ******* MAGAZIN ********
 ************************/

/*ALLGEMEINE FORMATIERUNG*************/

.article_cats, .article_cats a {
    /*Kategorie-Infos über jedem Artikel*/
    position:relative;
    clear: both;
    font-size: 9px;
    color:#9F9F9F;
    text-decoration: none;
}
.article_cats a:hover {
    /*Kategorie-Infos über jedem Artikel*/
    color:#EF5F00;
}
.article_author, 
.article_author a {
    /*Informationen über den Autor eines Artikels*/
    position:relative;
    clear: both;
    font-size: 9px;
    color:#9F9F9F;
    text-decoration: none;
}
.article_author a {
    /*Informationen über den Autor eines Artikels*/
    color:#F65700;
}
.article_author a:hover {
    /*Informationen über den Autor eines Artikels*/
    color:#F65700;
    text-decoration: underline;
}

/*ARTIKEL-VORSCHAU********************/

.article_pw {
    position:relative;
    /*Box mit den Artikel-Vorschauen*/
    margin: 15px 0 0 0;
    width: 444px;
    padding: 0 0 15px 0;
    border-bottom: 1px dashed #c3c3c3;
}
.article_pw .branding {
    float: right;
    margin: 10px 5px 10px 10px;
}
.article_pw .branding img {
    width: 40px;
}
.article_pw .image {
    /*Bild-BOX-Formatierung Artikel-Vorschau*/
    position:relative;
    float: left;
    width:170px;
    text-align: center;
    margin: 5px 0 5px 0;
    padding: 5px 0 0 0;
    border:none;
}
.article_pw .image img {
    /*Bild-Formatierung Artikel-Vorschau*/
    width:150px;
}
.article_pw .text {
    /*Text einer Artikel-Vorschau*/
    position:relative;
    float: right;
    margin: 5px 0 5px 0;
    padding: 0;
    width: 274px;
    line-height: 1.5;
    font-size: 13px;
}
.article_pw .text strong {
    font-weight: bold;
    line-height: 1.5;
    font-size: 13px;
}
.article_pw .text a {
    line-height: 1.5;
    font-size: 13px;
}
h6, h6 a {
    /*Überschrift einer Artikel-Vorschau*/
    /*font-family: Times New Roman, Times, serif;*/
    font-size: 20px;
    font-weight:normal;
    color:#EF5F00;
    text-decoration: none;
    margin:0px;
    padding:0px;
    clear: both;
}
h6 a:hover {
    text-decoration: underline;
    color:#EF5F00;
}

/*ARTIKEL-VOLLANSICHT********************/

.article {
    /*Box mit einem Artikel*/
    margin: 10px 0;
}

.article h5,
.article h5 a {
    /*Überschrift eines Artikels*/
    /*font-family: Times New Roman, Times, serif;*/
    font-size: 20px;
    font-weight:bold;
    color:#EF5F00;
    text-decoration: none;
    margin:0px;
    padding:0px;
}

.article h5 a:hover {
    text-decoration: underline;
    color:#EF5F00;
}
.article .branding {
    float: right;
    margin: 10px 0 10px 10px;
}
.article .title_pic_box {
    width: 150px;
    float: left;
    margin: 5px 10px 5px 0;
    padding: 0;
    background-color: #efefef;
}
.article .pic_legend {
    padding: 2px 5px 5px 5px;
    line-height: 1.2;
    font-size: 11px;
}
.article .text {
    /*Text eines Artikels*/
    margin: 10px;
    line-height: 1.5;
    font-size: 13px;
}
.article .text strong {
    font-weight: bold;
    line-height: 1.5;
    font-size: 13px;
}
.article .text a {
    line-height: 1.5;
    font-size: 13px;
}
.article .text h4 {
    /*Zwischenüberschriften im Artikel*/
    font-size: 13px;
    font-weight: bold;
    /*display: inline;*/
    margin: 0 0 3px 0;
    padding: 0 0 2px 0;
    border-bottom: 1px dotted #c3c3c3;
    clear:both;
}
.article .text .pic_box {
    /*Bild-Formatierung Artikel allgemein*/
    margin: 5px 10px 5px 10px;
    padding: 0;
    width: 150px;
    background-color: #efefef;
}
.article .text .article_pic_left,
.article .text .article_pic_right {
    /*Bild-Formatierung Artikel allgemein*/
    /*VERALTET*/
    margin: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #6F6F6F;
}
.article .text .article_pic_left {
    /*links ausgerichtetes Bild*/
    /*VERALTET, bitte class=float-left verwenden*/
    float: left;
}
.article .text .article_pic_right {
    /*rechts ausgerichtetes Bild*/
    /*VERALTET, bitte class=float-right verwenden*/
    float: right;
}
.article .source,
.article .more {
    /*Quellenangabe und Link zu mehr Infos*/
    text-align: right;
    background-color: #efefef;
    margin: 0 0 10px 0;
    padding: 2px;
}

/*Neuen Artikel schreiben*********************************/
#article_write p {
    margin: 5px;
    line-height: 1.3;
}
/* Ende: Neuen Artikel schreiben*/
/* Ende Magazine */