@charset "utf-8";
/* CSS Document */

/* the overlayed element */ 
.nineone_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#333; 
     
    width:480px;
    min-height:294px;  
     
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
} 
 
/* close button positioned on upper right corner */ 
.nineone_overlay .close { 
    background-image: url(../images/close.gif); 
    position:absolute; 
    right:-8px; 
	top: -8px;
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

.nineone_overlay .close:hover {
	background-position: 0 -36px;
}

/* the overlayed element */ 
.simple_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background-color:#333; 
     
    width:425px;
    min-height:200px; 
    border:1px solid #666; 
	margin-left: 30px;
     
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
} 
 
/* close button positioned on upper right corner */ 
.simple_overlay .close { 
    background-image: url(../images/close.gif); 
    position:absolute; 
    right:-8px; 
    top:-8px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}

/* the overlayed element */ 
.intro_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background: url(../images/intro_background.gif) 0 0;    
    width:416px;
    height:195px;
	padding: 79px 30px 0 54px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 14px;
     
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
} 
 
/* close button positioned on upper right corner */ 
.intro_overlay .close { 
    background-image: url(../images/intro_arrow.gif); 
    position:absolute; 
    right:10px; 
    bottom:10px; 
    cursor:pointer; 
    height:73px; 
    width:115px; 
}

.intro_overlay .close:hover {
	background-position: 0 -73px;
}

/* the overlayed element */ 
.share_overlay { 
     
    /* must be initially hidden */ 
    display:none; 
     
    /* place overlay on top of other elements */ 
    z-index:10000; 
     
    /* styling */ 
    background: url(../images/share_background.gif) 0 0;    
    width:302px;
    height:91px;
	text-align: center;
	padding-top: 75px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 14px;
     
    /* CSS3 styling for latest browsers */ 
    -moz-box-shadow:0 0 90px 5px #000; 
    -webkit-box-shadow: 0 0 90px #000;     
}
.share_overlay a:link, .share_overlay a:visited {
	color: #000;
	text-decoration: none;
}
 
/* close button positioned on upper right corner */
.share_overlay .close {
    background-image: url(../images/close.gif); 
    position:absolute; 
    right:-8px; 
    top:-8px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
}


