
.sponsorListHolder{
    margin-bottom:30px;
    /*width: 1200px;*/
}
.sponsor{
    width: 288px;
    height: 200px;
    float:left;
    margin:4px;
    /* Giving the sponsor div a relative positioning: */
    position:relative;
    cursor:pointer;
}
.sponsorFlip{
    /*  The sponsor div will be positioned absolutely with respect
        to its parent .sponsor div and fill it in entirely */
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    border:1px solid #ddd;
    background:url("../images/honor/background.jpg") no-repeat center center #f9f9f9;
}
.sponsorFlip:hover{
    border:1px solid #999;
    /* CSS3 inset shadow: */
    -moz-box-shadow:0 0 30px #999 inset;
    -webkit-box-shadow:0 0 30px #999 inset;
    box-shadow:0 0 30px #999 inset;
}

.sponsorFlip img{
    /* Centering the logo image in the middle of the sponsorFlip div */
    position: absolute;
    top: 9px;
    left: 8px;
}
.sponsorData{
    /* Hiding the .sponsorData div */
    display:none;
}
.sponsorDescription{
    font-size: 16px;
    text-align: center;
    padding-top: 85px;
    color: #0e6eb8;
}
.sponsorURL{
    font-size: 14px;
    text-align: right;
    padding-right: 20px;
    margin-top: 20px;
    color: gray;
}
.clear{
    /* This class clears the floats */
    clear:both;
}
@media screen and (max-width:1200px) {
    .sponsorListHolder{
        width: 100%;
        margin-left: 10%;
    }
}