@charset "utf-8";
/* CSS Document */

/*XXXXXXXXXXXXXXXXXX Dropshadow elements XXXXXXXXXXXXXXX*/

.outerpair1 {
background: url('../images/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('../images/lowerleftfade.png') left bottom no-repeat;
padding-top: 5px;
padding-left: 5px;
}
/* .outerpair2 has padding equal to the shadow
thickness, and also has one of the corner .png's */


.shadowbox {
background: url('../images/shadow.png') bottom right;
}
/* .shadowbox holds the main shadow .png */


.innerbox {
position: relative;
left: -5px;
top: -5px;
}
/* .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. */
