/* To show enlarged picture - Small pics at bottom, large picture above */
a.img1 .small {
	border: 1px solid #000000;
	display: inline;
	text-decoration: none;
        margin: 5px;
}

a.img1:hover .small {
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

a.img1 .large {
	border: 0px;
	display: block;
 	height: 1px;   
	left: -900px;
	position: absolute;
	top: -900px;
	width: 1px;   
}

a.img1:hover .large {
	border: 1px solid #000000;
	display: block;
	height: auto; 
	left: 205px;                 /* was 215 */
	position: absolute;
	top:  160px;                /* was 142 */
	width: auto;   
	color: #000000;
    background-color: #ffffff;
}


/* To show enlarged picture - Used on Curriculum Year 1 page (2007)*/
a.img0 .small {
	border: 1px solid #000000;
	display: inline;
	text-decoration: none;
        margin: 5px;
}

a.img0:hover .small {
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

a.img0 .large {
	border: 0px;
	display: block;
/*	height: 1px;   */
	left: -900px;
	position: absolute;
	top: -900px;
/*	width: 1px;   */
}

a.img0:hover .large {
	border: 1px solid #DAA520;
	display: block;
/*	height: 320px;   */
	left: 170px;
	position: absolute;
	top: 300px;
/*	width: 240px;   */
    color: #000000;
    background-color: #ffffff;
}

