﻿/************************************************
 News Publisher
*************************************************/

/* News list */

div.newspublisher-maincontainer {
}

ul.newspublisher {
    margin: 0;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}

li.newspublisher {
    list-style: none;
}

div.newspublisher-container {
    overflow: hidden;
    clear: both;
    margin-bottom: 10px;
    padding: 0px 20px 10px 20px;
    background-color: #fff;
    border-radius: 8px 8px 8px 8px;
    -moz-border-radius: 8px 8px 8px 8px;
    -webkit-border-radius: 8px 8px 8px 8px;
    border: 1px solid #ccc;    
    -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out; 
}

div.newspublisher-container:hover {
     -webkit-transition: background-color 0.3s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    background-color: #f0f0f0;
}

.newspublisher-date {
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	color: #6f9dd3;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.post-cont {
	margin-bottom:30px;
}

.post-cont h5 {
	font-size: 24px;
}

.post-img {
	position: relative;
    overflow: hidden;
	margin-bottom: 20px;
}

/* Damit Bild zoom wieder funktioniert! */
.post-img a,
.post-img a:hover {
	display: inline;
}

.newspublisher-title {
}

.newspublisher-content {
}

.newspublisher-picture {
}

/* Single News message */

.newspublisher-news-title {
}

.newspublisher-news-text {
	padding-bottom:30px;
}

.newspublisher-button {
}