@charset "utf-8";

.outerpair1 {
background: url(upperrightfade.png) right top no-repeat;
}
/* .outerpair1 must be given a width contraint, via either a width,
or by floating or absolute positioning. In this demo these are
applied from the second class name on the .outerpair1 DIV's.
This box also has one of the corner .png's. */


 .outerpair2 {
background: url(lowerleftfade.png) left bottom no-repeat;
padding-top: 12px;
padding-left: 12px;
}
/* .outerpair2 has padding equal to the shadow
thickness, and also has one of the corner .png's */


.shadowbox {
background: url(shadow.png) bottom right;
}
/* .shadowbox holds the main shadow .png */


 .innerbox {
position: relative;
left: -12px;
top: -12px;
}
/* .innerbox is made "relative" and is "pulled" up and to
the left, by a distance equal to the thickness of the shadow.
Because this is a relative-based shift, the box retains its
exact dimensions without change. */


.shadowbox img {
border: 0px solid #fff;
vertical-align: bottom;
}


.floatimage {
float: left; /* Floating causes this box to shrinkwrap around sized content elements. */
margin: 0px 0 0 0px;
display: inline; /* IE doubled margin bug is defeated via this fixer rule. */
}
