.secQuote {
    max-width: 70em;
    margin: 0% auto;
}
.secQuote > div.divText,
.secQuote > div.divText0 {
    text-align: left;
}
    .secQuote > div.divImage > div > img {
        min-width: 242px;
        max-width: 428px;
        margin: 0% auto;
    }
.secQuote > div.divImage > div {
}
.secQuote > div.divImage {
    margin: 1em 2% 0em 2%;
}
.secQuote > div.divText {
    margin: .5em 2% 0em 2%;
}
.secQuote > div.divText0 {
    margin: 0em 2% 1em 2%;
}
.secQuote > div p {
    margin-top: 0%;
}
.secQuote > div h3 {
    margin: 0%;
}

.hidden {
    display: none;
}

.starsky {
    position: relative; /* Establish the sky as the containing element for absolute positioned stars */
    display: inline-block; /* flow in line w/ other elements, but have solid dimensions */
}

.darkstars {
    color: rgba(230,230,230,1); /* fully opaque light grey */
    display: inline-flex; /* this is an inline flexible container displayed as defined within markup */
}

.brightstars {
    display: flex; /* this is a block level flexible container - to be positioned over darkstars */
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden; /* do not overflow the container - cut off excess, do not scroll */
    color: rgba(255,204,51,1); /* fully opaque gold */
}

.allstar {
    width: 1em;
    height: 1em;
}

.flex-shrink-0 {
    flex-shrink: 0; /* Prevent shrinkage */
}

@media only screen and (min-width: 732px) {
    .flexGrid {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .secQuote > div.divImage {
        margin: 1em 0% 0em 2.5%;
        width: 46%;
    }
    .secQuote > div.divText {
        margin: 1em 2.5% 0em 3%;
        width: 46%;
    }
    .secQuote > div.divText0 {
        margin: 1em 2.5% 0em 2.5%;
        width: 95%;
    }
}
@media only screen and (min-width: 960px) {
    .secQuote > div.divText {
        width: 61%;
        -webkit-box-flex: 2;
            -ms-flex: 2 2 auto;
                flex: 2 2 auto;
    }
    .secQuote > div.divImage {
        width: 31%;
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
    }
}