/*
  This is the "aTrueShadows" - a free XBL-powered library providing drop-shadow 
  effect for HTML elements.
  
  This work created by Ivan Sagalaev (maniac@softwaremaniacs.org).
  
  You may freely use, modify and redistribute this library as long as you 
  retain an attribution to the author of the library and to authors of
  any modifications.
  
  Version: 1.3, created December 2, 2005
  Home page: http://softwaremaniacs.org/soft/atrueshadows/
  
  XBL is a nice and powerful technology created by Mozilla.org: 
  http://www.mozilla.org/projects/xbl/xbl.html
*/
.shadow {
  -moz-binding:url('trueshadows.xml#shadow');
}
shadow-ur {
  display:block;
  position:absolute; top:0; left:100%; width:8px; height:8px;
  background:url(shadow-ur.png);
}
shadow-r {
  display:block;
  position:absolute; top:8px; left:100%; width:8px; bottom:0;
  background:url(shadow-r.png);
}
shadow-br {
  display:block;
  position:absolute; top:100%; left:100%; width:8px; height:8px;
  background:url(shadow-br.png);
}
shadow-b {
  display:block;
  position:absolute; top:100%; right:0; left:8px; height:8px;
  background:url(shadow-b.png);
}
shadow-bl {
  display:block;
  position:absolute; top:100%; left:0; width:8px; height:8px;
  background:url(shadow-bl.png);
}

.hiddenshadow shadow-ur,
.hiddenshadow shadow-r,
.hiddenshadow shadow-br,
.hiddenshadow shadow-b,
.hiddenshadow shadow-bl {
  display:none;
}