/* Detailvorschau */
.Nachricht_detail  {
    width: 66%;
    height: 450px;
    float: left;
    position: relative;
    overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
    color: #fff;
}

.Nachricht_detail img {
	width: auto;
	display: block;
	margin: 0px auto;
}

.info small { /*--We'll be using this same style on our thumbnail list--*/
    font-size: 1em;
}
.Nachricht_detail .desc{
    position: absolute;
    bottom: 0;
    left: 0; /*--Stick the desc class to the bottom of our main image container--*/
    width: 100%;
    display: none; /*--Hide description by default, if js is enabled, we will show this--*/
}
.Nachricht_detail .info {
    width: 96%;
    background: #111;
	padding: 2%;
}
.Nachricht_detail .collapse { /*--This is our hide/show tab--*/
	background: url(../../../se_gfx/gui/btn_collapse.png) no-repeat right top;
    height: 27px;
    width: 30px;
    text-indent: -99999px;
    position: absolute;
    top: -15px;
    right: 0px;
	cursor: pointer;
	z-index: 1;
}
.Nachricht_detail .collapse.show {
	background-position: left bottom;
	top: -25px;
}

/* Vorschaubilder */
.Template.artikelSlideshow .Nachrichten  {
    float: left;
    width: 30%;
	position: relative;
	height: 450px;
	overflow-y: auto;
}
.Template.artikelSlideshow .Nachrichten .bild {
	width: 33%;
	float: left;
}	

.Template.artikelSlideshow .Nachrichten img {
    border: 1px solid #ccc;
    padding: 5%;
    background: #fff;
	width: 85%;
	height: auto;
}
.Template.artikelSlideshow .Nachrichten ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.Template.artikelSlideshow .Nachricht {
    margin: 0;
    padding: 10px 5%;
    width: 90%;
    float: left;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #fff;
    border-right: 1px solid #ccc;
}
.Template.artikelSlideshow .Nachricht.hover { /*--Hover State--*/
    background: #ddd;
    cursor: pointer;
}
.Template.artikelSlideshow .Nachricht.active { /*--Active State--*/
    background: #fff;
    cursor: default;
}
.Template.artikelSlideshow .Nachricht .info {
    float: left;
    margin-left: 5%;
    padding: 0;
    width: 60%;
	position: relative;
}			
.Template.artikelSlideshow .Nachricht p {display: none;} /*--Hide the description on the list items--*/

.Template.artikelSlideshow .Nachricht .text {
	display: none;
}

.Template.artikelSlideshow .Nachricht .button {
	display: none;
}
