/* main elements */
#introOverlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.introContainerColor{
    background-color: #fff;
}

#introContainer{
    overflow: hidden;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0; 
}


#introContent{
    position:fixed;
    display:  block;
    margin:  0px auto;
    text-align: center;
    width: 100%;
    color: #000;
    background-color: #fff;
    -webkit-border-radius: 0;
}

/* close button */
#intro{
    display: none;
}

#introClose{
    z-index: 5;
    top: -22px;
    left: -22px;
    display: none;
    position: absolute;
    width: 45px;
    height: 45px;
    cursor: pointer;
    background-image: url('images/close.png');
}

#introSwitch{
    z-index: 5;
    top: -22px;
    left: 25px;
    display: none;
    position: absolute;
    width: 45px;
    height: 45px;
    cursor: pointer;
    background-image: url('images/lightsOn.png');
}

    
.introBorder{
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    right: -10px;
    background-color: #000;
    opacity: 0.7;
    filter:alpha(opacity=70);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    z-index: -1;
}

.zeroBorder{
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
}

.introStuff{
    position: relative;
    background-color: #fff;
    text-align: center;
    padding: 10px;
    height: 100px;
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-border-radius: 5px;
    -moz-box-shadow: 0 0 10px #000;
    z-index: 4;
    border: 1px solid #666;
    overflow: hidden;
}

.introStuff p{
    text-align: justify;
    padding: 10px;
}

.introDefaultPosition{
    top: 0;
    left: 0;
}

.introDefaultDimensions{
    width: 100%;
    height: 100%;
}

.slideCenterStart{
    top: 50%;
    left: 50%;
    height: 0%;
    width: 0%;
}

.fadeCenterStart{
    top: 50%;
    left: 50%;
    height: 0%;
    width: 0%;
    opacity: 0;
}

.slideLeftStart{
    left: 200%;
}

.slideUpStart{
    top: 200%;
}



