/*
Spotlight
*/
#spotlight {
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0px;
    left: 0px;
    z-index:199;
	max-height:100%;
	max-width: 100%;
	
}

#spotlight .background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    cursor: default;
	max-height:100%;
	max-width: 100%;
}

#spotlight .close-button {
    z-index: 999;
    position: absolute; 
    width: 30px; 
    height: 30px;
    left: 50%;
    top: 50%;    
    background: url(images/closeButton.png);
    cursor: pointer;
    display: none;
}

#spotlight .base {
    position: absolute;
	
    /*width: 400px;*/
    /*height: 400px;*/    
    
	left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    /*margin-left: -200px;*/ /* 0.5 * width */
    /*margin-top: -200px;*/  /* 0.5 * height */

    background-color: transparent;

    overflow: hidden;
    
    border: hidden;
    
    cursor: auto;
}

#spotlight .content {
    width: 100%;
    height: 100%;
    display: none;
	max-height:100%;
	max-width: 100%;
}
#spotlight .fader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
	max-height:100%;
	max-width: 100%;
	
}