
#fantomCSSTest {
    display: none;
}

.fantomAppHidden {
    visibility: hidden;
    display: none;
}

#fantomContentWrapper {
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    width: 100%;

    -webkit-transform-origin: 50% 50%;  
    -moz-transform-origin: 50% 50%; 
    -ms-transform-origin: 50% 50%; 
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;

    font-size: 10px;
    font-family: Verdana, Arial, Geneva, sans-serif;
    color: #333;
    padding: 0;
    margin: 0;
    visibility: hidden;

    overflow: hidden;
    z-index: 80000;
}

#fantomContentWrapper a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

#fantomContentWrapper.fantomFullscreen {
    position: fixed;
}

#fantomContentWrapper.fantomInline {
    /*position: absolute;*/
    background-color: transparent;
}

#fantomFullscreenMask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#fantomContentWrapper.fantomFullscreen #fantomFullscreenMask {
    background-color: rgba(0, 0, 0, 0.5);
}

#fantomContentWrapper a {
    text-decoration: none;
}

#fantomContentWrapper.desktop {
    overflow: hidden;
}

#fantomContentWrapper.mobile {
    /*position: fixed;*/
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 80000;
}

#fantomContentWrapper #fantomContentContainer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
}

#fantomContentWrapper #fantomOverlayContainer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
}

#fantomContentWrapper #fantomLoading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#fantomContentWrapper #fantomLoadingMask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) url("loadingBackgroundNew.gif") 50% 50% no-repeat;
}

#fantomContentWrapper #fantomLoadingMessage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 25px;
    margin: 65px 0 0 -100px;
    text-align: center;
    font-size: 13px;
    color: white;
}

#fantomContentWrapper #fantomLoadingPercentage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 25px;
    margin: -10px 0 0 -100px;
    text-align: center;
    font-size: 16px;
    color: white;
}

#fantomWidget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 124px;
    height: 124px;
    background: url(toggleButton.png) 0 0 no-repeat;
    cursor: pointer;
}

#fantomWidget.fantomDesktop {
    z-index: 999999;
}

#fantomWidget:hover {
    background: url(toggleButton.png) 0 -124px no-repeat;
}

@media only screen and (device-width:768px)and (orientation:landscape){
    #fantomContentWrapper {
        max-height: 768px;
    }
}

@media only screen and (device-width:768px)and (orientation:portrait){
    #fantomContentWrapper {
        max-height: 768px;
    }
}