/*
** So basically, this CSS is because IE is stupid and not standard compliant.  
** My minimal effort to support IE6 mainly consists of fixing transparent PNGs.
** 
** Background images are used here because CSS3 techniques do not currently work.
**
** - Seth Humphrey (OIT - webmaster@auburn.edu) 6/18/2010
*/

.homeSB {background:url(images/homeSBBottom.png) #4e75a6 bottom center repeat-x;}

/**************  Slideshow Section ***********************/
.featureExplore {background:3px 8px no-repeat url(../images/features/bg-featureExplore.png); _background:none; 
       _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/features/bg-featureExplore.png',sizingMethod='crop');}
#featureThumbList li {background:transparent url(../images/features/bg-thumblist-li.png) 0 0 no-repeat; _background:none; 
       _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/features/bg-thumblist-li.png',sizingMethod='crop');}
.featureNav {background:url(../images/features/btn-listNav.png) no-repeat 0 0; _background:none; 
       _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/features/btn-listNav.png',sizingMethod='crop');}

/**************  Special Features Section **************************/
.pagination a { background:url(images/specialFeaturesInactive.png) center center no-repeat; _background:none; 
       _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bg-specialFeaturesInactive.png',sizingMethod='crop');}
.pagination a:hover { background:url(images/specialFeaturesHover.png) center center no-repeat; _background:none; 
       _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/bg-specialFeaturesHover.png',sizingMethod='crop');}
.pagination a.selected { background:url(images/specialFeaturesActive.png) center center no-repeat; _background:none; 
       _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/specialFeaturesActive.png',sizingMethod='crop');}

/**************  Footer Section **************************/
#footerWrap {background:url(images/footer.png) top center no-repeat; _background:none; 
       _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/footer.png',sizingMethod='crop');}
.socialDetails{background:url(../images/social/socialBG.png) 0 -127px no-repeat; _background:none; 
       _filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/social/socialBG.png',sizingMethod='crop');}

/**************  Fix PNGs for IE6 ************************/
img, .png {
       position: relative;
       behavior: expression((this.runtimeStyle.behavior="none")&&(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none",
       this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
       this.src = "../images/transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
       this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
       this.runtimeStyle.backgroundImage = "none")),this.pngSet=true));
}