/* 
Document   : opacity
Created on : Jan 25, 2009
Author     : Erick Schmitt
Description:
These properties will work, but cause validations to fail, so I moved them here....
*/

/* 
TODO customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

#subHeader a:hover img  {
      /* for IE */
      filter:alpha(opacity=100);
      /* CSS3 standard */
      opacity:1;
} /* this is css 3, but works in some browsers... */

#header a:hover img {
      filter:alpha(opacity=95);
      opacity:0.95;
}

#header img {
      filter:alpha(opacity=100);
      opacity:1;
}

.navBox img {
      /* for IE */
      filter:alpha(opacity=50);
      /* CSS3 standard */
      opacity:0.5; /* this is css 3, but works in some browsers... */
}
