@charset "utf-8";
/* CSS Document */

div.img_tag {
}
div.img_tag img {
	position: absolute;
}

/* USED FOR A HREF TAGS */
div.img_tag a {
	position: absolute;
	text-decoration: none;
   }
div.img_tag a {
	border: 3px solid #ffffff;
	background-color: #ffffff;
	filter:alpha(opacity=0);
	-moz-opacity:0;	
}

div.img_tag a:hover {
	border: 3px solid #000000;
	background-color: #CCCCCC;
	filter:alpha(opacity=50);
	-moz-opacity:0.50;	
}


/* USED FOR SPAN TAGS */
div.img_tag span {
	position: absolute;
	text-decoration: none;
   }
div.img_tag span {
	border: 3px solid #ffffff;
	background-color: #ffffff;
	filter:alpha(opacity=0);
	-moz-opacity:0;	
}

div.img_tag span:hover {
	border: 3px solid #000000;
	background-color: #CCCCCC;
	filter:alpha(opacity=50);
	-moz-opacity:0.50;	
}

/* Used for RADIO BUTTONS*/

a.img_tag_show {
	text-decoration: none;
	background-image: url(radio_but_off.gif);
	background-repeat: no-repeat;
	padding-left: 18px;
}
a:hover.img_tag_show {
	background-image: url(radio_but_on.gif);
	background-repeat: no-repeat;
}

a.img_tag_hide {
	text-decoration: none;
	background-image: url(radio_but_on.gif);
	background-repeat: no-repeat;
	padding-left: 18px;
}