﻿.shadow
{
	border: 0px solid silver;
	position: relative;
	background: white;
	z-index: 80;
}

.shadow_inner
{
	overflow: hidden;
	position: absolute;
	top: -1000px;
	/*modify to change the shade solidity/opacity, same as below*/
	filter: alpha(Opacity=10);
	/*firefox 1.5 opacity*/
	opacity: 0.10;
	/*mozilla opacity*/
	-moz-opacity: 0.10;
	/*opacity*/
	-khtml-opacity: 0.10;
	z-index: 10;
}

