@charset "utf-8";
/***** BEGIN RESET *****/

* {

    border: 0;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

.compare-listings-container .compare-container .cs-btns a {
    background: #ec1e28;
}

.compare-listings-container .compare-container .comp-header-img .comp-title-close-cont .compare-title,
.compare-listings-container .compare-container .compare-price,
#no-compare-listings {
    color: #202020 !important;
}

body {
    -webkit-text-size-adjust: none;
    background: #fff;
    overflow-x: hidden;
    color: #000;
    line-height: 1 !important;
    font-family: 'Teko', sans-serif;
}

/*============================
ALL PAGES
============================*/
ol,
ul {
    list-style: none;
}

.clear {
    clear: both;
    height: 0px;
    margin: 0;
}

.wrap {
    width: 95%;
    margin: 0 auto;
    max-width: 1400px;
}

.smwrap {
    width: 95%;
    margin: 0 auto;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.smwrap {}

.smwrap.centerstuff {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.redlink{
	color: #ec1e28;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
}

p {
    font-family: 'Teko', sans-serif;
}

h3.dealer-black-text {
    font-size: 28px
}

/***** END RESET *****/

/*====================hover easing style

-webkit-transition: all .5s ease; 
-moz-transition: all .5s ease; 
-ms-transition: all .5s ease; 
-o-transition: all .5s ease; 
transition: all .5s ease;

======================================*/



/*============================
HEADER
============================*/

header {
    width: 100%;
    float: left;
    background: #fff;
    box-shadow: 0 0 10px #000;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.mainlogo {
    width: 205px;
    float: left;
}

.mainlogo img {
    width: 100%;
    float: left;
    padding: 10px 0;
}

.headright {
    width: calc(100% - 300px);
    float: right;
    box-sizing: content-box;
}

.hideOnDesktop {
    display: none;
}

.tophead {
    width: 100%;
    float: left;
}

.redangle {
    width: 0;
    height: 0;
    float: left;
    border-right: 50px solid #B21018;
    border-bottom: 50px solid transparent;
}

.fullreds {
    width: calc(100% - 50px);
    float: right;
    background: #B21018;
    height: 50px;
    padding-right: 40%;
    margin-right: -40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fullreds form {
    display: flex;
    height: 30px;
    border: none;
    outline: none;
    border-radius: 0 !important;
    padding-left: 10px;
    padding-bottom: 7px;
}

.fullreds button {
    background: white;
    padding-right: 10px;
}

button.search-form-submit svg {
    width: 13px;
}

form.header-search.header-equipment.slide-search input {
    border: none;
    outline: none;
    border-radius: 0 !important;
    background: white !important;
    padding-left: 7px;
}

.fullreds h2 {
    /* width: 100%; */
    float: right;
    text-align: right;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding: 17px 0;
    letter-spacing: 2px;
    display: flex;
    padding-right: 20px;
}

.fullreds h2 a {
    color: #fff;
    text-decoration: none;
}

.breadcrumbs {
    width: 100%;
    float: left;
    background: #B21018;
    border-top: 5px solid #fff;
}

.container .breadcrumbs {
    width: auto !important;
    float: none !important;
    background: none !important;
    border-top: none !important;
}

.breadcrumbs h3 {
    width: 100%;
    float: right;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0 13px 0;
    letter-spacing: 2px;
}

.breadcrumbs h3 a {
    color: #fff;
    text-decoration: none;
}

span.location-hours {font-size: 36px;text-transform: uppercase;color:#ec1e28}

/*============================
POP-UP
============================*/

*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.box {
    width: 50%;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    padding: 35px;
    border-radius: 20px/50px;
    background-clip: padding-box;
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 20px;
    transition: all 0.2s;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    padding: 0 5px 5px 5px;
}

.popup .close:hover {
    color: #ec1e28;
}

.popup .content {
    max-height: 60%;
    overflow: auto;
}

.popup-text {
    display: none;
}

/*Let's make it appear when the page loads*/
.overlay:target:before {
    display: none;
}

.overlay:before {
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 99999;
}

.overlay .popup {
    background: #000;
    /*				border: 2px #ec1e28 solid;*/
    border-radius: 5px;
    width: 100%;
    max-width: 1300px;
    position: absolute;
    top: 8vw;
    left: 0;
    right: 0;
    float: none;
    padding: 40px 0;
    margin: 0 auto;
    text-align: left;
    z-index: 99999999;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.overlay:target .popup {
    top: -1800%;
    left: -1000%;
    display: none;
}

.popup img {
    display: flex;
    margin: 0 auto;
    width: 90% !important;
}

/*============================
SLIDESHOW
============================*/
.slide-contain {
    width: 100%;
    float: left;
    position: relative;
    z-index: 1;
}


.cycle-slideshow {
    width: 100%;
    overflow: hidden;
    float: left;
    display: block;
}

.cycle-slideshow img {
    display: block;
    width: 100%;
    float: left
}
.august-banner {
    position: absolute;
    background: rgba(0, 0, 0, .65);
    color: #fff;
    font-size: 30px;
    padding: 2% 5%;
    z-index: 999;
}

.august-banner {
    top: 5%;
    left: 5%;
}

.august-banner.secondbanner {
    top: 5%;
    right: 15%;
    left: auto;
}

.august-banner.thirdbanner {
    top: 20%;  
    left: 5%;
}

.august-banner a {
    text-decoration: none;
    color: #fff !important;
}

.august-banner a:hover {
    color: #ec1e28 !important;
}

/* pager */
.pager {
    text-align: center;
    width: 100%;
    margin: -50px 0 -2px;
    position: relative;
    z-index: 999;
    float: left;
}

.pager span {
    font-family: arial;
    font-size: 50px;
    width: 16px;
    height: 16px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.pager span.cycle-pager-active {
    color: #000;
}

.pager>* {
    cursor: pointer;
}

.august-banner.thirdbanner {
    top: 20% !important;
    padding: 2% 4.4%;
}


/*============================
CTA
============================*/
.ctas {
    width: 100%;
    float: left;
    background: #fff;
    padding: 20px 0;
}

.cta {
    width: 50%;
    float: left;
    padding: 20px 15px;
    box-sizing: border-box;
}

.cta .used {
    background: url("../siteart/UsedEquipmentBotton.JPG");
    background-size: cover;
    background-position: center center;
}

.cta .new {
    background: url("../siteart/NewEquipmentButton.JPG");
    background-size: cover;
    background-position: center center;
}

.cta a {
    width: 100%;
    float: left;
}

.cta h2 {
    width: 100%;
    float: left;
    background: rgba(0, 0, 0, .70);
    padding: 20px 20px;
    box-sizing: border-box;
    margin-top: 300px;
    text-align: right;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.cta a:hover h2 {
    background: rgba(236, 30, 40, .70);
    margin-top: 100px;
    padding-top: 220px;
}

/*============================
WELCOME
============================*/
.welcome {
    width: 100%;
    float: left;
    background: #f5f5f5;
    padding: 50px 0 65px 0;
    box-shadow: 5px 5px 5px #000;
    position: relative;
    z-index: 2;
}

.welcome h3 {
    width: 100%;
    float: left;
    text-align: center;
    color: #000;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 3px;
}

.welcome h1 {
    width: 100%;
    float: left;
    text-align: center;
    color: #ec1e28;
    font-size: 65px;
    font-weight: 600;
    letter-spacing: 5px;
}

.greywrap {
    width: 100%;
    float: left;
    margin: 0 0 25px 0;
}

.greybar {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    height: 5px;
    background: #d5d5d5;
}

.welcome p {
    width: 100%;
    float: left;
    text-align: center;
    color: #000;
    font-size: 22px;
    line-height: 34px;
}

/*============================
Promotions
============================*/

#mail {
    color: #ec1e28;
    text-decoration: none;
}

#mail:hover {
    color: #575757;
    text-decoration: underline;
}

/*============================
bottom
============================*/

.bottomimg {
    width: 100%;
    float: left;
    z-index: 1;
    position: relative;
    background: url("/siteart/hero.JPG");
    background-size: cover;
    background-position: center center;
    height: 300px;
    background-attachment: fixed;
}

.manuslider {
    width: 100%;
    float: left;
    background: #202020;
    padding: 0px 2.5%;
    box-sizing: border-box;
}

/*============================
footer
============================*/

footer {
    width: 100%;
    float: left;
    background: #ec1e28;
    padding: 40px 0;
}

footer p {
    color: #fff;
    font-size: 25px;
    width: 100%;
    float: left;
}

/*============================
SUB PAGES
============================*/

.subtitle {
    width: 100%;
    float: left;
    background: url("../siteart/wheat.jpg");
    background-size: cover;
    background-attachment: fixed;
}

.subtitle h1 {
    width: 100%;
    float: left;
    background: rgba(0, 0, 0, .60);
    padding: 60px 2.5% 50px 2.5%;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    font-size: 65px;
    font-weight: 500;
    line-height: 65px;
}

.submain {
    width: 100%;
    float: left;
    padding: 40px 0;
}

.red {
    color: #ec1e28 !important;
}

.red span {
    font-size: 28px !important;
}

.grey {
    color: #5d5d61 !important;
}


/*==================================
FORMS
==================================*/

#quotes {
    width: 100%;
    display: block;
    margin: 20px auto;
    font-size: 16px;
    color: #000;
}

#quotes tbody {
    width: 100%;
    float: left;
}

#quotes tr {
    width: 50%;
    float: left;
    padding: 7px;
    box-sizing: border-box;
}


#quotes td {
    width: 100%;
    float: left;
    font-size: 14px;
}

#quotes td p {
    font-size: 14px;
}


.fulltd2 {
    width: 100% !important;
    float: none !important;
    max-width: 500px !important;
    display: block !important;
    margin: 0 auto !important;
}



#quotes input {
    padding: 12px 10px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #B4B4B4;
    font-weight: 300;
    color: #000;
    font-size: 12px;
}

#quotes textarea {
    padding: 12px 10px;
    border: 1px solid #b4b4b4;
    font-weight: 300;
    color: #000;
    font-size: 12px;
    background: #fff;
    box-sizing: border-box;
}

#quotes .CaptchaMessagePanel {
    color: #000;
}

#quotes .CaptchaWhatsThisPanel a {
    color: #000;
}


/* selects have similar styles to input & textarea fields, but with no padding. Text in a dropdown select is positioned differently */
#quotes select {
    padding: 12px 10px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #B4B4B4;
    font-weight: 300;
    color: #000;
    font-size: 12px;
    width: 100%;
}

#quotes input {
    width: 100%;
}

#quotes input.larger {
    width: 100%;
}

#quotes textarea {
    width: 100%;
    height: 85px;
}


#quotes input.checkbox {
    padding: 0;
    border: 0;
    margin: 5px 10px 5px 0;
    width: 13px;
    height: 13px;
    display: inline;
    background-color: #fff;
}

#quotes p {
    text-align: left;

    width: auto;
}

#quotes input.radio {
    padding: 0;
    border: 0;
    margin: 0 3px 0 15px;
    width: 15px;
    height: 15px;
    display: inline;
}

#quotes input.radio:focus,
#quotes input.checkbox:focus {
    background: none;
    border: 0;
    outline-style: none;
}


#quotes input.button,
#quotes input.button:focus {
    width: 300px;
    margin: 0;
    padding: 20px 5px;
    background: #000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0px;
    border-bottom: none !important;
    line-height: 14px;
    letter-spacing: 2px;
    text-align: center;
    border: 0 !important;
    color: #fff;
    margin-top: 10px;
}

#quotes input.button:hover {
    background: #aaa;
}

#quotes label.basic {
    color: #212121;
    font-size: 13px;
    text-align: left;
}

#quotes label.checkbox {
    /*  color:#212121;*/
    font-size: 13px;
    text-align: left;
    display: inline;
    padding: 0;
}

#quotes .fulltd {
    width: 100% !important;
    margin-right: 0;
}

.app-form {
    background-color: #ec1e28;
    padding: 30px;
    color: white;
    text-decoration: none;
    transition: .3s ease;
    display: inline-block;
    font-size: 28px;
    margin-top: 30px;
}

.app-form:hover {
    padding: 33px;
    font-size: 25px;
}

.email-link {
    color: #ec1e28;
    text-decoration: none
}

.email-link:hover {
    text-decoration: underline;
}



/*==============================================
================================================
RESPONSIVE
================================================
==============================================*/


@media screen and (max-width: 1150px) {

    .fullreds h2 {
        font-size: 16px;
    }

}

@media screen and (max-width: 1500px) {

    .august-banner.thirdbanner {
        left: 5%;
        right: auto;
        top: max(70px, 21%) !important;
    }

    .august-banner.secondbanner {
        left: 5%;
        right: auto;
        top: max(90px, 37%) !important;
    }
}

@media screen and (max-width: 1262px) {
    .fullreds h2 {
        display: none;
        ;
    }

    .mainlogo {
        width: 140px;
    }

    .redangle {
        border-bottom: 95px solid transparent
    }

    .fullreds {
        height: 95px;
        /* flex-wrap: wrap; */
    }

    .headright {
        width: calc(100% - 150px);
    }

    .hideOnDesktop {
        display: block;
        background: #ec1e28;
        color: white;
    }

    .hideOnDesktop a {
        color: white !important;
    }

    .hideOnDesktop {
        text-align: center;
        padding: 12px;
    }

    .august-banner {
        font-size: 24px;
    }

}

@media screen and (max-width: 866px) {
    .august-banner {
        font-size: 19px;
    }
	
	.august-banner.secondbanner {
        top: max(100px, 37%) !important;
    }
}

@media screen and (max-width: 500px) {
    .fullreds {
        height: 95px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 755px) {
    .august-banner.thirdbanner {
        left: 5%;
        right: auto;
        top: max(57px, 21%) !important;
    }

    .august-banner.secondbanner {
        left: 5%;
        right: auto;
        top: max(100px, 37%) !important;
    }
}

@media screen and (max-width: 700px) {
    .cta {
        width: 100%;
    }

    .cta h2 {
        margin-top: 200px;
    }

    .cta a:hover h2 {
        margin-top: 0;
    }

}

@media screen and (max-width: 540px) {

    .popup img {
        margin-bottom: 18px;
        margin-top: 20px;
        width: 100% !important;
    }

    .popup-text {
        display: contents;
        color: #fff;
        font-size: 19px;
        letter-spacing: 1px;
        font-weigt: 300;
        text-align: center;
    }

    .popup a {
        text-decoration: none;
    }

    .overlay .popup {
        top: 35vw !important;
    }
}

@media screen and (max-width: 500px) {
    .welcome h1 {
        font-size: 50px;
    }

    .subtitle h1 {
        font-size: 50px;
        line-height: 50px
    }

    .bottomimg {
        background-attachment: scroll;
        background-position: center center;
    }

    .subtitle {
        background-size: cover;
        background-attachment: scroll;
    }

}

.borrowedFromPyramid {
    /*! CSS Used from: https://pyramidequipmentsales.com.hdev/css/styles.css?v=3.1 */
}

.borrowedFromPyramid article {
    display: block;
}

.borrowedFromPyramid .wrap {
    /* width: 88%; */
    /* max-width: 1520px; */
    /* margin: 0 auto; */
}

.borrowedFromPyramid h2 {
    color: #000000;
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 12px;
}

.borrowedFromPyramid h4 {
    color: #000000;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

.borrowedFromPyramid p {
    font-size: 18px;
    margin-bottom: 16px;
    font-size: clamp(14px, 0.9375VW, 18px);
    text-align: left;
}

.borrowedFromPyramid a {
    color: #D5000A;
    font-weight: bold;
    text-decoration: none;
}

.borrowedFromPyramid a:hover {
    color: #000000;
}

.borrowedFromPyramid article {
    /* background: #fff; */
    width: 100%;
    /* padding: 140px 0 100px 0; */
    z-index: 1;
}

.borrowedFromPyramid .map {
    width: 60%;
    float: left;
}

.borrowedFromPyramid .map iframe {
    width: 100%;
    height: 350px;
    display: block;
}

.borrowedFromPyramid .contact-info {
    width: 30%;
    float: left;
    margin-left: 2%;
}

.borrowedFromPyramid #formpage label {
    display: block;
    margin-bottom: 2px;
}

.borrowedFromPyramid #formpage input {
    padding: 6px 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #8e8d8d;
    color: #8e8d8d;
    font-size: 12px;
    width: 100%;
    width: calc(100% - 2px);
    -webkit-appearance: none;
}

.borrowedFromPyramid #formpage textarea {
    padding: 6px 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #8e8d8d;
    color: #8e8d8d;
    font-size: 12px;
    height: 100px;
    width: 100%;
    width: calc(100% - 2px);
}

.borrowedFromPyramid #formpage input:focus,
.borrowedFromPyramid #formpage textarea:focus {
    background: #8e8d8d;
    color: #FFF;
    border: 1px solid #16598d;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    outline-style: none;
}

.borrowedFromPyramid .CaptchaPanel {
    margin: 0 0 0 0 !important;
    padding: 0 0 0 0 !important;
    text-align: center;
    line-height: normal !important;
}

.borrowedFromPyramid .CaptchaImagePanel {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.borrowedFromPyramid .CaptchaMessagePanel {
    padding: 0 0 0 0 !important;
    margin: 0 0 0 0 !important;
    font-weight: normal !important;
    font-size: 12px;
    line-height: 14px;
}

.borrowedFromPyramid .CaptchaAnswerPanel {
    margin: 0 0 0 0;
    padding: 2px 0px 2px 0px !important;
}

.borrowedFromPyramid .CaptchaWhatsThisPanel {
    line-height: 0;
    margin: 0 0 0 0;
    padding: 8px 0 8px 0 !important;
}

.borrowedFromPyramid .CaptchaWhatsThisPanel a {
    color: #000;
}

.borrowedFromPyramid .CaptchaWhatsThisPanel a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 1024px) {
    .borrowedFromPyramid p {
        font-size: 14px;
    }

    .borrowedFromPyramid p {
        margin-bottom: 14px;
    }

    .borrowedFromPyramid h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .borrowedFromPyramid .map {
        width: 68%;
        float: left;
    }

    .borrowedFromPyramid .contact-info {
        width: 30%;
        float: left;
        margin-left: 2%;
    }
}

@media only screen and (max-width: 768px) {
    .borrowedFromPyramid .map {
        width: 100%;
        float: left;
    }

    .myTable td,
    .myTable th {

        padding: 2px !important;

        font-size: 13px;
    }

    .borrowedFromPyramid .map iframe {
        height: 250px;
    }

    .borrowedFromPyramid .contact-info {
        width: 100%;
        float: left;
        margin: 15px 0 0 0%;
    }
}

@media only screen and (max-width: 640px) {
    .borrowedFromPyramid h2 {
        font-size: 18px;
        margin-bottom: 6px;
    }
}

@media only screen and (max-width: 1024px) {

    /*! CSS Used from: https://pyramidequipmentsales.com.hdev/css/form.css?v=1.0 */
    .borrowedFromPyramid article {
        padding: 40px 0 !important;
    }
}

.borrowedFromPyramid .flex-form {
    width: 100%;
    text-align: left;
    margin: 0 auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 15px;
}

.borrowedFromPyramid .flex-form label {
    font-weight: normal;
}

.borrowedFromPyramid .flex-form #formpage input {
    margin-top: 5px;
    box-sizing: border-box;
}

.borrowedFromPyramid .flex-form .flex-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.borrowedFromPyramid .flex-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 5px 5px 5px;
    text-align: left;
}

.borrowedFromPyramid #formpage {
    width: 100%;
    vertical-align: top;
    display: inline-block;
    text-align: left;
}

.borrowedFromPyramid #formpage input {
    padding: 6px 5px 10px;
    border: 1px solid #f1f1f1;
    font-family: "Source Sans Pro", sans-serif;
    color: #000;
    font-size: 16px;
    margin-top: 5px;
    border-radius: 2px;
    background: #ffffff;
}

.borrowedFromPyramid #formpage input:focus {
    border: 1px solid #eaeaea;
    border-radius: 2px;
}

.borrowedFromPyramid #formpage ::-webkit-input-placeholder {
    color: #767676;
}

.borrowedFromPyramid #formpage ::-moz-placeholder {
    color: #767676;
}

.borrowedFromPyramid #formpage :-ms-input-placeholder {
    color: #767676;
}

.borrowedFromPyramid #formpage :-moz-placeholder {
    color: #767676;
}

.borrowedFromPyramid #formpage input.submit-button,
.borrowedFromPyramid #formpage input.submit-button:focus {
    background: #ec1e28;
    color: #000;
    padding: 10px;
    text-decoration: none;
    border-radius: 2px;
    transition: ease-in 0.3s;
    width: 150px;
    border: none;
    height: auto;
}

.borrowedFromPyramid #formpage input.submit-button:hover {
    background: #000000;
    box-shadow: 1px 1px 2px #848484;
    transition: ease-out 0.3s;
}

.borrowedFromPyramid input[type="submit"] {
    -webkit-appearance: none;
}

.borrowedFromPyramid #formpage textarea {
    padding: 6px 5px;
    border: 1px solid #f1f1f1;
    color: #000;
    font-size: 16px;
    background: #ffffff;
    width: 100%;
    height: 85px;
    border-radius: 2px;
    margin-top: 10px;
    resize: vertical;
    box-sizing: border-box;
}

.borrowedFromPyramid #formpage textarea:focus {
    border: 1px solid #eaeaea;
    border-radius: 2px;
}

.borrowedFromPyramid .CaptchaPanel {
    width: 100%;
    box-sizing: border-box;
}

.borrowedFromPyramid .CaptchaImagePanel img {
    width: 200px;
}

.borrowedFromPyramid .CaptchaAnswerPanel {
    width: 250px;
    margin: 0 auto;
}

.borrowedFromPyramid .CaptchaWhatsThisPanel a {
    color: #333;
}

.borrowedFromPyramid .submit-button {
    padding: 10px 0px 10px 0px;
    position: relative;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 900px) {

    /*! CSS Used from: Embedded */
    .borrowedFromPyramid .flex-form .flex-row {
        flex-wrap: wrap;
    }
}

.borrowedFromPyramid .CaptchaPanel {
    margin: 10px 0px 10px 0px;
    text-align: center;
    padding: 10px;
}

.borrowedFromPyramid .CaptchaImagePanel {
    padding: 5px 5px 10px 5px;
}

.borrowedFromPyramid .CaptchaImage {
    border: 1px solid #333;
}

.borrowedFromPyramid .CaptchaMessagePanel {
    padding: 5px 5px 10px 5px;
    font-weight: bold;
}

.borrowedFromPyramid .CaptchaAnswerPanel {
    padding: 5px 5px 10px 5px;
}

.borrowedFromPyramid .CaptchaWhatsThisPanel {
    padding: 5px 5px 10px 5px;
}


/* TABLES  */
.myTable {
    background-color: #eee;
    border-collapse: collapse;
    font-size: 22px;
}

.myTable th {
    background-color: #000;
    color: white;
    width: 50%;
}

.myTable td,
.myTable th {
    padding: 17px;
    border: 1px solid #000;
    width: auto;
}
@media screen and (max-width: 500px) {
	.cycle-slideshow img {
    display: block;
    width: 100%;
	max-width: 100%;
	max-height:100%;
	height:250px;
    float: left;
}
	.august-banner {
		right:5%;
	}
	.august-banner.secondbanner {
        left: 5%;
        right: 5%;
        top: max(140px, 42%) !important;
    }
	.august-banner.thirdbanner {
        left: 5%;
        right: 5%;
        top: max(60px, 34%) !important;
    }
}