#pane {
    position: absolute;
    width: 55%;
    height: 65%;
    top: 20%;
    left: 20%;

    margin: 0;
    padding: 0;
    z-index: 99;
    border: 2px solid #263238;
    background: #fefefe;
}

#title {
    font-family: monospace;
    background: #c40000;
    color: white;
    font-size: 24px;
    height: 30px;
    text-align: center;    
}

#ghostpane {
    background: #999;
    opacity: 0.2;

    width: 55%;
    height: 65%;
    top: 20%;
    left: 20%;

    position: absolute;
    margin: 0;
    padding: 0;
    z-index: 98;

    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}


#minimize{
        font-family: monospace;
         /* border-color: white; */
        /* border-style: solid; */
        color: white;
        font-size: 12px;
        height: 30px;
        text-align: center;
        float: right;
        cursor: pointer;
}
#minimize span {
    padding-bottom: 10px;
}