/* this technique for using text within a lined heading that is fully responsive */
/* can be found at: http://jsfiddle.net/Puigcerber/vLwDf/1/ */

h3 {
    overflow: hidden;
    text-align: center;
}

h3:before,
h3:after {
    background-color: #000;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

h3:before {
    right: 0.5em;
    margin-left: -50%;
}

h3:after {
    left: 0.5em;
    margin-right: -50%;
}

.left-image {
    float: left;
    margin: 10px 10px 10px 0px;
}

.right-image {
    float: right;
    margin:10px 0px 10px 10px;
}

.left-list {
    float: right;
    margin: 10px 20px 10px 10px;
}

.right-list {
    float: right;
    margin: 10px 0px 10px 10px;
}

.newsletter-section {
    text-align: left;
}