/* CSS Document */

/*original image thumbnail*/
a.infoLeft, a.infoRight{
	position:relative;
	z-index: 24;
	height: 74px;
	width: 100px;
}

a.infoLeft:hover, a.infoRight{z-index:25;}


/*larger image*/
a.infoLeft span, a.infoRight span{display: none}

a.infoLeft:hover span{ /*the span will display just on :hover state*/
	display:block;
	position:absolute;
	padding-left: 10px;
	z-index: 26;
    }
a.infoRight:hover span{ /*the span will display just on :hover state*/
	display:block;
	position:absolute;
	padding-right: 10px;
	right: 100px;
	z-index: 26;
    }
