.FPSContainer
{
    border-radius: 4px;
    background-color: #ffffff;
    width: 100%;
    height: 450px;
    overflow: auto;
}

.ContentHolder
{
    border-radius: 4px;
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow: auto;
    box-shadow: inset 0 0 20px rgba(0,0,0, 0.25);;
    background-color: #ededed;
}

.ContentHolder .Content
{
    width: 100%;
}

.FPSListElement
{
    background-color: blue;
    width: 120px;
    height: 85px;
    float: left;
    margin: 13px 13px 13px 13px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(thumbs/unknown.jpg);
    border: 1px solid white;
    box-shadow: 0 0 0 1px black,
                0px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 1;
    transition: all 0.1s ease;
    -webkit-transition: all 0.1s ease; /* Safari and Chrome */
    -moz-transition: all 0.1s ease; /* Firefox */
    -ms-transition: all 0.1s ease; /* IE 9 */
    -o-transition: all 0.1s ease; /* Opera */
}

.FPSListElement:hover
{
    opacity: 1;
    transform:scale(1.25);
    -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(1.25); /* Firefox */
    -ms-transform:scale(1.25); /* IE 9 */
    -o-transform:scale(1.25); /* Opera */
    box-shadow: 0 0 0 1px black,
                0px 5px 10px rgba(0, 0, 0, 0.8);
}

.FPSIssueCover
{
    margin-left: auto;
    margin-right: auto;
    background-color: blue;
    width: 240px;
    height: 170px;
    margin-top: 16px;
    margin-bottom: 16px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(thumbs/unknown.jpg);
    border: 1px solid white;
    box-shadow: 0 0 0 1px black,
                0px 2px 4px rgba(0, 0, 0, 0.8);
}

.FPSIssueTitle
{
    text-align: center;
    font-size: 18pt;
    text-decoration: none;
    color: #50aced;
}

.FPSIssueDescription
{
    text-decoration: none;
    margin-top: 16px;
    color: #162F3F;
}

.Link
{
    color: #50aced;
    text-decoration: none;
}

.Link:hover
{
    color: #50aced;
    text-decoration: underline;
}

.InfoBar
{
    width: 440px;
    height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #50aced;
    text-decoration: none;
    font-weight: bold;
}

.InfoBarTextLeft
{
}

.InfoBarTextRight
{
    /*text-align: right;*/
}

.InfoBarTextCenter
{
    /*text-align: center;*/
}
