/*-----------------------------------------------------------------------------
lightbox code source from
//http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/
-----------------------------------------------------------------------------*/
		/* hide from ie mac \*/ 
		* html {overflow: hidden; } 
		* html body {overflow: auto; } 
		/* end hack */ 
		html, body {height: 100%; margin: 0; padding: 0; } 
		body>.white_content {position: fixed; } 
		body>.black_overlay {position: fixed; } 
		
		/*---------lightbox---------*/
		 .black_overlay{
            display: none;
            position: absolute;
            top: 0%;
            left: 0%;
            width: 100%;
            height: 100%;
            background-color: black;
            z-index:1001;
            -moz-opacity: 0.8;
            opacity:.80;
            filter: alpha(opacity=70);
        }
        
       .white_content {
            display: none;
            position: absolute;
            top: 25%;
            left: 30%;
            width: 40%;
            height: 50%;
            padding: 16px;
            border: 16px solid #DCDCDC;
            background-color: #FFFFFF;
            z-index:1002;
            overflow: auto;
			text-align: center;
        }
        
        .white_content h1{margin: 3em 0 1em 0; color: #1F1F1F;}
		
		.innerWhite_close {
			margin: 3em 0 1em 0; 
            padding: 0;
        }
        
		.innerWhite_close a{
			display: block;
			width: 10em;
			margin: 0 auto;
			padding: .5em 1.3em; 
			font-size: 1.1em;
			text-decoration: none;
			color: #110022; 
			border: 1px solid #888888;
			background: #FFFFFF url(img/t-on.png) repeat-x top left;
			
        }
        
        .innerWhite_close a:hover { color: #002266; background: #FFFFFF url(img/t-onReverse.png) repeat-x bottom left; }
		
		
		
/*-----------------------------------------------------------------------------
End lightbox
-----------------------------------------------------------------------------*/		
		
