* {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;
    font-size: 12px;
    background: white;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

h1 {
    font-size: 24px;
    color: black;
    margin-top: 0;
    font-weight: 700;
}

.big-headline {
    font-size: 52.5px;
    color: black;
    margin-top: 0;
}

.subline {
    font-size: 23px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    color: #21659e;
}

h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

a {
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

p {
    line-height: 20px;
    margin: 7px 0;
    text-align: justify;
    font-size: 18px;
}

ul {
}

li {
    font-size: 13px;
}

label {
    font-size: 13px;
    display: block;
}

input[type=submit], input[type=button], .button {
    text-decoration: none;
    margin: 0 3px;
    border: none;
    font-size: 14px;
    padding: 7px 18px;
    color: white;
    cursor: pointer;
    background: #0199fe; /* Old browsers */
}

input[type=submit]:hover, input[type=button]:hover, .button:hover {
    text-decoration: underline;
    background: #0199fe; /* Old browsers */
}

input[type=password], input[type=text], input[type=number], textarea {
    padding: 5px;
    width: 100%;
}

select {
    padding: 5px;
    width: 100%;
}


@media (max-width: 1024px) {
    body {
        overflow-x: visible;
    }
    
}


#content {
    min-height: 100px;
    margin-top: 20px;
    padding-bottom: 20px;
}

#center-column {
    float: right;
    width: 75%;
    padding-left: 20px;
}

.container {
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.clear_fix:before, .clear_fix:after {
    content: "";
    display: table;
}

.clear_fix:after {
    clear: both;
}

.display-none {
    display: none;
}

.position-relative {
    position: relative;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.line-through {
    text-decoration: line-through;
}

.required {
    color: #cf111a;
}

.description {
    color: #888;
    font-size: 12px;
    font-weight: 100;
}

.header-container {
    border-bottom: 2px solid black;
}

.header-container-left {
    padding: 20px 10px;
    float: left;
    width: 45%;
}

.message:hover span {
    display: block;
}

.footer-container {
    padding: 20px 10px;
    border-top: 2px solid black;
    text-align: center;
    font-size: 16px;
}

.post-item {
    /*border-bottom: 1px solid black;*/
    padding: 20px 0;
    font-size: 18px;
}

@media (min-width: 768px) {
    .container {
        max-width: 750px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 970px;
    }
}

@media (max-width: 1024px) {
    #right-banner {
        display: none;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    #center-column {
        width: 100%;
        padding: 0;
    }
    
}

.product-left {
    float: left;
    width: 73%;
}

.product-image {
    width: 100%;
    border: 1px solid #000;
    padding: 7px;
    margin-bottom: 15px;
    font-size: 0;
}

.product-image img {
    max-width: 100%;
}

.product-right {
    float: right;
    width: 22%;
}

.header-container-right {
    float: right;
    width: 45%;
    text-align: right;
    padding: 20px 10px;
}

.contact-icon {
    position: relative;
    top: 25px;
}

@media (max-width: 768px) {
    .product-left, .product-right {
        float: none;
        width: 100%;
    }

}