﻿
/*XXXXXXXXXXXXXXXXXX Dropshadow elements XXXXXXXXXXXXXXX*/ 

.outerpair1 {
background: url(/App_Themes/RodeoTheme/Images/Shadow/upperrightfade.jpg) 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(/App_Themes/RodeoTheme/Images/Shadow/lowerleftfade.jpg) 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(/App_Themes/RodeoTheme/Images/Shadow/shadow.jpg) bottom right;
}
/* .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;
}