.project {
    width:175px;
    height: 195px;
    margin: 15px 45px;
    margin-left: 0px;
     display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline; 
    font-size: 10px;
}

.project:hover {
    cursor: pointer;
}

.projectThumbnail {
    background-color: #e9e9e9;
    width: 175px;
    height: 175px;
    overflow: hidden;
    position: relative;
}
 
.projectThumbnail #projectImage {
    position: absolute;
    z-index: 1;
    width: 175px;
    height: 175px;
}

.projectThumbnail #projectDescription {
    padding: 15px;
    position: absolute;
    z-index: 2;
    color: #fff;
    background: url('../imgs/blackBk.png');
    font-size: 10px;
    line-height: 13px;
    width: 145px;
    height: 145px;
    margin-top: 176px;
    -webkit-transition: margin-top 0.7s;
    -moz-transition: margin-top 0.7s;
    -o-transition: margin-top 0.7s;
    transition: margin-top 0.7s;
}
.projectThumbnail:hover #projectDescription {
    margin-top: 0;
}

.projects-page a {text-decoration: none !important;}