﻿/*
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
Updated to allow for multiple shadow styles throughout the site
*/

div.shadow1, div.shadow1 div.shadowPart, div.shadow1 div.shadowPart div.shadowPart
{
    display: inline-table; /* \*/
    display: block; /**/
}
div.shadow1
{
    /*float: left;*/
    background: #7A915F;
}
div.shadow1 div.shadowPart
{
    /*float: left;*/
    background: url(images/shadows/corner_bl.gif) 0 100% no-repeat;
}
div.shadow1 div.shadowPart div.shadowPart
{
    padding: 0 6px 6px 0;
    background: url(images/shadows/corner_tr.gif) 100% 0 no-repeat;
}