


/* --------------------------------------
  the next 4 classes borrowed from:
  http://www.positioniseverything.net/articles/dropshadows.html
-------------------------------------- */

.outerpair1 {
  background: url(/artists/images/upperrightfade.png) right top no-repeat;

  float: left;
  display: inline;
/*  margin-top: 15px;
  margin-right: 7px; */
} 
/* .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(/artists/images/lowerleftfade.png) left bottom no-repeat;
padding-top: 8px;
padding-left: 8px;
}
/* .outerpair2 has padding equal to the shadow 
thickness, and also has one of the corner .png's */ 

.shadowbox {
background: url(/artists/images/shadow.png) bottom right;
/* these 3 fix ie6 and were not originally in script!! */
position: relative;
top: 0px;
right: 0px;
}
/* .shadowbox holds the main shadow .png */ 

.innerbox {
position: relative;
left: -8px;
top: -8px;
}
/* .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: 10px solid #fff; */
  vertical-align: bottom;
  border: 1px solid #3A362E;

}
/* Shadowed images should not be made "block" for eliminating the baseline 
space under the images, because this may trigger IE background bugs. 
Instead, use "vertical-align: bottom;" for this purpose. */



