/* CSS Document */

* { margin: 0; padding: 0; }

body { 	
	font: 8px Verdana, Arial, Helvetica, sans-serif;
	behavior: url(/hover.htc);
}

a { text-decoration: none; /*font-weight: bold;*/ color:#999999; }
a:hover { text-decoration: underline; }
.nav a:hover { text-decoration: none; }
	
.clear:after {
	 content: "."; 
	 display: block; 
	 height: 0; 
	 clear: both; 
	 visibility: hidden;
	}
.clear { display: inline-block; }
		
/* image replacement general properties */

ul.IR li { 
	position: relative;
	/* The original method recommends setting this so that the text 
	doesn't peak out if you resize the text. But overflow also includes 
	our dropdown list, so we need the overflow to be visible. */
	/*overflow: hidden; */
	font-size: 0.9em;
}
			
.IR em {
	display: block;
	position: absolute;
	top: 0; left: 0;
	z-index: 1;
	}

.IR span {
	display: block;
	position: absolute;
	top: 0; left: 0;
	z-index: 1;
	}
	

	
/* image replacement specific properties */
.nav { list-style: none; }
.nav li { float: left; padding-bottom: 5px; } 
/* add a little bottom padding to make sure the sub menus don't disappear before selecting them */

.nav li, .nav li em, .nav li span { width: 128px; height: 37px; }
	

	
.link1 em, .link2 em, .link3 em, .link4 em, .link5 em {
	cursor: pointer;
	background-image: url(images2/Inside_nav.gif);
	background-repeat: no-repeat;/* IE5 requires cursor: hand; however this is not valid CSS2 */
}



.link1 {left: 289px; /*background-color:pink;*/ }
.link1 em {background-position: -289px 0; }
.link1:hover em { background-position: -289px -37px; }
.link1 span {background: url(images2/Inside_nav.gif) no-repeat -289px -37px; cursor: pointer;}
	
.link2 {left: 289px; /*background-color:green;*/  }
.link2 em {background-position: -417px 0;}
.link2:hover em { background-position: -417px -37px; }
.link2 span { background: url(images2/Inside_nav.gif) no-repeat -417px -37px; cursor: pointer;}
	
.link3 { left: 289px;/*background-color:pink;*/  }
.link3 em { background-position: -545px 0; }
.link3:hover em { background-position: -545px -37px; }
.link3 span { background: url(images2/Inside_nav.gif) no-repeat -545px -37px; cursor: pointer;}
	
.link4 { left: 289px; /* background-color:green;*/ }
.link4 em { background-position: -673px 0; }
.link4:hover em { background-position: -673px -37px; }
.link4 span { background: url(images2/Inside_nav.gif) no-repeat -673px -37px; cursor: pointer;}
	
	
/* suckerfish styles */
.nav a { display: block; font-weight: normal; }
* html .nav a { height: 1%; }
	
.nav li ul {
	position: absolute;
	z-index: 10; /* show the dropdowns above the images */
	top: 39px; /* position the dropdowns a set distance from the top of the image */
	left: -999em;
	list-style: none;
	border: 0px solid #FFCC00;
}
	
.nav li:hover ul { left: auto; }
	
.nav li li {
	height: auto; /* reset the height and padding set on the IR list items */
	padding-bottom: 0;
	font-size: 11px;
	border-bottom: 1px solid #FFF;
}
	
.nav li ul a {
	padding:8px 10px;
	color: #000;
	background: #fff3b5;
}

.nav li ul a:hover {
	color: #fff;
	background:#b10103;
}

