.shadow
{
	display:inline;/*The table display will conform perfectly to the child object without having to use float*/
	padding-right:10px;/*This is how much shadow shows on the right*/
	padding-bottom:10px;/*This is how much shadow shows on the bottom*/
	margin:auto;/*Centers the image (optional)*/
	
	/*background: url('images/shadow-grid.gif') right bottom no-repeat;This is the actual drop shadow for IE browsers*/
}
/* IE ignores this selector */
html>body .shadow
{
	display:table;
	background: url('images/shadow.png') right bottom no-repeat;/*This is the actual drop shadow for non-IE browsers*/	
}

