/* png shadow from CSS mastery 

#1c3a85 is dark blue
#3c5696 is lighter blue
#dde1ed is pale blue
#6b91cb is the colour for h1
#1b264d is shadow dark*/

/* also need to use the file ie55 which includes code to put in HTML head (BUG FIXING FOR IE5) */
.img_wrapper {
	background: url(images/shadow_800px.gif) no-repeat right bottom;
	float: left;
}

.img_wrapper div {
	 /*  background: url(images/shadow_800mask.png) no-repeat left top !important;     not working solid edge*/
	background: url(images/shadow_800mask.gif) no-repeat left top;
	padding: 0px 5px 0px 0px;
	float: left; /* :KLUDGE: Fixes problem in IE5.2.Mac */
}

/* if you want a border: */

.img_wrapper img {
	background-color: #3c5696;
	border: 4px solid #fff;
	padding: 0px;
}/* CSS Document */


