/*
CSS from:
http://www.alistapart.com/articles/onionskin/
modified to use descendant selectors instead of class names,
as suggested by Sergio: http://www.alistapart.com/discuss/onionskin/3/#c8219
*/


div.osDropShadow, div.osDropShadow div, div.osDropShadow div div {
	display:inline-table;
	/* \*/display:block;/**/
	}

div.osDropShadow {
	float:left;
	background:url(../images/shadow.gif) right bottom no-repeat;

	}
div.osDropShadow div {
	background:url(../images/corner_bl.gif) -16px 100% no-repeat;
	}

div.osDropShadow div div {
	padding:0 8px 8px 0;
	background:url(../images/corner_tr.gif) 100% -16px no-repeat;
	}

div.osDropShadow div div img {
	display:block;	
	}


