﻿
div.card {
    float: left;
    width: 322px;
    height: 322px;
    padding: 10px;
    margin: 10px;
    /*border: 1px solid blue;*/
}

div.card-container {
    width: 300px;
    height: 320px;
    /*border: 10px solid #000;*/
    /*border-bottom: 0;*/
    padding: 10px;
}

div.card-container:hover {
    border: 0px solid #000;
    padding: 0px;
}

div.card-container:hover div.card-image {
    height: 260px;
}

div.card-container:hover div.card-text {
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
}

div.card-container:hover div.card-text span {
    font-weight: 900 !important;
    font-size: 20px;
}

div.card a {
    text-decoration: none;
}

div.card-image {
    width: 100%;
    height: 250px;
}

div.card-image img {
    width: 100%;
    height: 100%;
}

/*div.card:hover {
opacity: 0.6;
filter: alpha(opacity=50);
}*/

XXXdiv.card-image img:hover {
    opacity: 0.6;
    filter: alpha(opacity=50); /* For IE8 and earlier */
}

div.card-text {
    width: 100%;
    height: 50px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #000;
    color: #fff;
}

div.card-text span {
    font-family: Verdana,sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
}