﻿#overlaymodal
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    filter: alpha(opacity=60);
    z-index:99998;
}

#modal
{
    position: absolute;
    background: url(../img/tint20.png) 0 0 repeat;
    background: rgba(0,0,0,0.2);
    border-radius: 14px;
    padding: 8px;
    z-index:99999;
    max-width:90%;
}

#contentmodal
{
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    text-align:center;
}
#contentmodal a
{
    height:100%;
    overflow:hidden;
}

#closemodal
{
    position: absolute;
    background: url(../img/close.png) 0 0 no-repeat;
    width: 24px;
    height: 27px;
    display: block;
    text-indent: -9999px;
    top: -7px;
    right: -7px;
}

#contentmodal img {
  max-width:100%;
  position:relative;
}

@media screen and (orientation: portrait) {
  #modal img {
      max-width: 80%;
  }
}

@media screen and (orientation: landscape)
{
    #modal img
    {
        max-height: 70%;
    }
}