/*
	General teasers
*/

div.teaser {
    position: relative;
}

div.teaser div.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: top left no-repeat white;
}

div.teaser div.background div.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #5EB079;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all .25s ease;
}

div.hoverable.teaser:hover div.background div.overlay {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

div.teaser div.content {
    position: relative;
    padding: 0;
}

div.teaser div.content div.image {
    text-align: center;
}

div.teaser div.content div.image img {
    display: inline-block;
    margin: 0;
}

div.teaser.main div.content h1,
div.teaser.main div.content h2,
div.teaser.main div.content h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    text-align: left;
    margin-left: 17px;
}

div.teaser p {
    margin: 10px 17px !important;
    padding: 0 !important;
    line-height: 20px !important;
    font-size: 15px !important;
}