/** IE 5.5 - 6 Transparent PNG Correction Style Sheet
  * This style sheet corrects the problem that IE 5.5 and 6 have with transparent pngs.
  * It uses IE's filter style to change alpha values for png images to 0 and uses the
  * AlphaImageLoader to load the png in the parent node of the img element. Each parent
  * node of the img element must have the dimentions of the image.
  */

/* TITLES */
#individual .title {
	width: 157px;
	height: 44px;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/individualsTitle.png');
}
#individual .title img {
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

#individual .subtitle {
	width: 249px;
	height: 16px;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/individualsSubtitle.png');
}

#individual .subtitle img {
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

#corporate .title {
	width: 254px;
	height: 44px;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/corporateTitle.png');
}
#corporate .title img {
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

#corporate .subtitle {
	width: 377px;
	height: 16px;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/corporateSubtitle.png');
}

#corporate .subtitle img {
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

/* BUTTONS */
#individual .buttons #join {
	width:116px;
	height:22px;
	display:inline-block;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/join.png');
	cursor: pointer;
}
#individual .buttons #learnMore {
	width:116px;
	height:22px;
	display:inline-block;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/learnMore.png');
	cursor: pointer;
}
#individual .buttons #memberLogin {
	width:116px;
	height:22px;
	display:inline-block;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/memberLogin.png');
	cursor: pointer;
}
#corporate .buttons #getInfo {
	width:179px;
	height:22px;
	display:inline-block;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/getInfo.png');
	cursor: pointer;
}

.buttons img {
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

/* LOGO */
#logo {
    top: 155px;
    width:94px;
	height:66px;
	display:inline-block;
	/* the height and width should match those of the image */
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/splash/logo.png');
}

#logo img {
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}