@media print
{
    body *
    {
        display:none;
    }
    .printable
    {
        display:block !important;
    }


    #mainContainer
    {
        width: 100%;
        height: 100%;
        float:left;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }


    #portraitContainer
    {
        margin: 0 auto;
        width: 500px;
        height: 500px;
    }
    #printImage
    {
        position: absolute;
        top: 100px;
        left: 295px;
        z-index: 0;
    }
    #printBackGround
    {
        position: absolute;
        z-index: -1;
    }
    #printTitle
    {
        position: absolute;
        top: 60px;
        left: 425px;
        z-index: 1;
    }
}