@charset "utf-8";
/* CSS Document */


/*Left Pop-Up Image*/
		.Left{
		position: relative;
		z-index: 0;
		}
		
		.Left:hover{
		background-color: transparent;
		z-index: 50;
		}
		
		.Left span{ /*CSS for enlarged image*/
		position: absolute;
		background-color: #000033;
		padding: 3px;
		left: 0px;
		border: 1px dashed gray;
		visibility: hidden;
		color: black;
		text-decoration: none;
		}
		
		.Left span img{ /*CSS for enlarged image*/
		border-width: 0;
		padding: 2px;
		}
		
		.Left:hover span{ /*CSS for enlarged image on hover*/
		visibility: visible;
		top: -450px;
		left: 20px; /*position where enlarged image should offset horizontally */
		}
/*Left Pop-Up Image*/

/*Right Pop-Up Image*/
		.Right{
		position: relative;
		z-index: 0;
		}
		
		.Right:hover{
		background-color: transparent;
		z-index: 50;
		}
		
		.Right span{ /*CSS for enlarged image*/
		position: absolute;
		background-color: #000033;
		padding: 3px;
		left: 0px;
		border: 1px dashed gray;
		visibility: hidden;
		color: black;
		text-decoration: none;
		}
		
		.Right span img{ /*CSS for enlarged image*/
		border-width: 0;
		padding: 2px;
		}
		
		.Right:hover span{ /*CSS for enlarged image on hover*/
		visibility: visible;
		top: -350px;
		left: -250px; /*position where enlarged image should offset horizontally */
		}
/*Right Pop-Up Image*/
