* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

html, body, form {
    height: 100%;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    font-size: 17px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 300;
}
h1, h2{
    font-size: 38px;
    line-height: 42px;
    margin: 40px 0px 20px 0px;
    padding: 0px 0px 0px 0px;
}
h3{
    font-size: 28px;
    line-height: 34px;
    margin: 30px 0px 10px 0px;
    padding: 0px 0px 0px 0px;
}

h2 + h3{
    font-size: 19px;
    line-height: 26px;
    margin-top: -10px;
    font-weight: 600;
}
p + h1, p + h2, p + h3, p + h4, p + h5, p + h6,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4, blockquote + h5, blockquote + h6
{
    margin-top: 40px;
}
a:link, a:visited, a:active {
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}
p a{
    text-decoration: underline;
}
hr {
    width: 100%;
    height: 1px;
    border: 0px;
    margin: 30px 0px 30px 0px;
    padding: 0px 0px 0px 0px;
}
input[type="text"], textarea, select {
    padding: 20px 16px 20px 16px;
    font-size: 16px;
    width: 100%;
    border: 0px;
    transition: all 0.3s ease-out;
}
input[type="button"], input[type="submit"], .button
{
    display: inline-block;
    margin: 0px auto 0px auto;
    padding: 15px 15px 15px 15px;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.3s ease-out;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer;
}
blockquote {
    display: block;
    background: #fff;
    padding: 30px 30px 30px 55px;
    margin: 40px 0px 40px 0px;
    position: relative;
    font-size: 20px;
    font-style: italic;
    line-height: 1.3;
    text-align: justify;
}

    blockquote::before {
        content: "\201C"; /*Unicode for Left Double Quote*/
        font-family: Georgia, serif;
        font-size: 70px;
        font-weight: bold;
        position: absolute;
        left: 10px;
        top: 5px;
    }

    blockquote::after {
        /*Reset to make sure*/
        content: "";
    }
    
.clear{
    clear: both;
}

#fixed-bar{
    position: fixed;
    width: 100%;
    bottom: 0px;
    background-color: #fff;
    text-align: center;
    padding: 0px 0px 0px 0px;
    -webkit-box-shadow: 0px -3px 15px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px -3px 15px 0px rgba(0,0,0,0.2);
    box-shadow: 0px -3px 15px 0px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 10;
}
#fixed-bar.expanded #fixed-bar-table-outer{
    -webkit-box-shadow: 0px 3px 15px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 15px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 15px 0px rgba(0,0,0,0.2);
}
#fixed-bar #fixed-bar-table-outer{
    padding: 0px 15px 0px 15px;
    transition: all 0.3s ease-in;
}
#fixed-bar #fixed-bar-table{
    display: table;
    width: 100%;
    height: 70px;
}
#fixed-bar .fixed-bar-cell{
    display: table-cell;
    vertical-align: middle;
}
#fixed-bar img{
    border: 0px;
}
#fixed-bar-logo img{
    max-height: 60px;
    max-width: 170px;
}
#fixed-bar-call, #fixed-bar-menu{
    width: 32px;
}
#fixed-bar #navigation{
    display: none;
    height: 100%;
    text-align: center;
    overflow: auto;
    padding-bottom: 60px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
#fixed-bar #navigation::-webkit-scrollbar { 
    display: none; 
}
#fixed-bar #navigation-inner{
    display: inline-block;
    min-width: 80%;
    margin-bottom: 30px;
}
#fixed-bar #navigation-headline{
    font-weight: 300;
    font-size: 32px;
    line-height: 34px;
    margin: 35px 0px 20px 0px;
    padding: 0px 0px 25px 0px;
    border-bottom: solid 1px #252525;
}
#fixed-bar #navigation-footer{
    font-size: 13px;
    line-height: 18px;
    margin: 20px 0px 0px 0px;
    padding: 25px 0px 0px 0px;
    border-top: solid 1px #252525;
}
#content-outer{
    padding-bottom: 70px;
}
.content-block-outer{
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}
.content-block-outer img.background{
    width: 100%;
}
.content-block-outer.fixed{
    background-attachment: fixed;
}
.content-block-inner {
    padding: 30px 20px 30px 20px;
}
.content-block-inner > h1:first-child,
.content-block-inner > h2:first-child,
.content-block-inner > h3:first-child,
.content-block-inner > h4:first-child,
.content-block-inner > h5:first-child,
.content-block-inner > h6:first-child{
    margin-top: 0px;
    padding-top: 0px;
}
.content-block-inner img {
    padding: 5px 5px 5px 5px;
    border: solid 1px #EFEFEF;
    transition: all 0.3s ease-in;
    border: solid 1px #CCC;
    -moz-box-shadow: 1px 1px 5px #999;
    -webkit-box-shadow: 1px 1px 5px #999;
    box-shadow: 1px 1px 5px #999;
    max-width: 100% !important;
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
}
.content-block-inner img.plain{
    padding: 0px 0px 0px 0px;
    border: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.content-block-inner img.background{
    display: none;
}
.content-block-overlay {
    background-image: url(/files/template/images/transparent-bg.png);
    padding: 17px 17px 17px 17px;
    display: inline-block;
}
.content-block-overlay h1,
.content-block-overlay h2,
.content-block-overlay h3,
.content-block-overlay h4{
    font-size: 26px;
    font-weight: 400;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
}
.content-block-overlay h1 span,
.content-block-overlay h2 span,
.content-block-overlay h3 span,
.content-block-overlay h4 span {
    font-size: 36px;
    line-height: 36px;
}
.content-block-overlay > h1:first-child,
.content-block-overlay > h2:first-child,
.content-block-overlay > h3:first-child,
.content-block-overlay > h4:first-child,
.content-block-overlay > h5:first-child,
.content-block-overlay > h6:first-child{
    margin-top: 0px;
    padding-top: 0px;
}
.content-block-padded{
    padding: 30px 0px 30px 0px;    
}


#top-block.content-block-outer {
    display: table;
    width: 100%;
    padding: 0px 0px 0px 0px;
}
#top-block.content-block-outer .content-block-inner{
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
    line-height: 26px;
}
#top-block.content-block-outer h1 {
    font-weight: 400;
    font-size: 34px;
    line-height: 36px;
    /*text-transform: uppercase;*/
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    display: inline-block;
}
#top-block.content-block-outer h1 span {
    display: block;
    font-size: 48px;
    line-height: 50px;
}
#top-block.content-block-outer h1 + p,
.content-block-overlay h1 + p,
.content-block-overlay h2 + p,
.content-block-overlay h3 + p,
.content-block-overlay h4 + p {
    margin-top: 10px;
}
#top-block.content-block-outer p:last-of-type{
    margin-bottom: 0px;
}

#top-block.content-block-outer .content-block-inner{
    padding-top: 40px;
    padding-bottom: 40px;
}

.content-split{
    display: table;
    width: 100%;
}
.content-left{
    display: block;
}
.content-right{
    display: block;
    margin-top: 40px;
}

.floated-content-form{
    float: right; 
    margin: 20px 25px 0px 25px; 
    width: 100%; 
    max-width: 320px;
}
#footer {
    text-align: center;
    font-size: .75rem;
    line-height: 1.2rem;
    padding: .8rem;
}