﻿body
{
}
.ProfileImage
{
    background-image: url('./ProfileDefault.png');
    width: 100px;
    height: 100px;
    display: block;
    border: 1px solid #000;
    border-radius: 10px;
    text-align: center;
    cursor: default;
}
.ProfileMale
{
    background-image: url('./ProfileMale.jpg');
}
.ProfileFemale
{
    background-image: url('./ProfileFemale.jpg');
}

.ProfileImage:hover h2
{
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -o-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    -ms-transition-delay: 0.4s;
    transition-delay: 0.4s;
    position: fixed;
    z-index: 100;
}
.ProfileImage h2
{
    -webkit-transform: translateY(-5000px);
    -moz-transform: translateY(-5000px);
    -o-transform: translateY(-5000px);
    -ms-transform: translateY(-5000px);
    transform: translateY(-5000px);
    -webkit-transition: all 0.2s ease-in-out 0.1s;
    -moz-transition: all 0.2s ease-in-out 0.1s;
    -o-transition: all 0.2s ease-in-out 0.1s;
    -ms-transition: all 0.2s ease-in-out 0.1s;
    transition: all 0.2s ease-in-out 0.1s;
    text-shadow: 2px 2px 3px #000000;
    color: #ffffff;
    position: fixed;
    z-index: 100;
    font-size: 15px;
}
.ProfileImage a
{
    color: #ffffff;
}
.ProfileImage img
{
    border: 0px solid transparent; /*  z-index:-100;*/
    position: absolute;
    margin-left: -50px;
}
.PostTitle
{
    font-family: Arial;
    font-size: 25px;
}
