/* CSS Document */

ul { margin: 0px; padding: 0px;}


	.nav a:hover { text-decoration: none; }
	h4.tested { margin-top: 2em; }
	small { line-height: 120%; }
	
	.clear:after {
	    content: "."; 
	    display: block; 
	    height: 0px; 
	    clear: both; 
	    visibility: hidden;
	}

	.clear { display: inline-block; }
	
	/* Hides from IE-mac \*/
	* html .clear { height: 1%; }
	.clear { display: block; }
	/* End hide from IE-mac */
	
	/* 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;
	}
	
	/* For IE5.x mac only */
	* html>body	.IR { 
		position: static;
		overflow: visible;
		font-size: 10px;
  }
	* html>body .IR em  { position: static; }
	
	/* image replacement specific properties */
	.nav { list-style: none; }
	.nav li { float: left; padding-bottom: 0px;} /* add a little bottom padding to make sure the 
																			  sub menus don't disappear before selecting them */
	.nav li, .nav li em { width: 0px; height: 40px;}					
	#About, #About em { width: 80px; height: 40px;}
	#Services, #Services em { width: 116px; height: 40px;}
	#Specials, #Specials em { width: 84px; height: 40px;}
	#Links, #Links em { width: 72px; height: 40px;}
	#Contact, #Contact em { width: 110px; height: 40px;}
	
	* html>body ul.nav li em { margin-bottom: -40px; } /* for ie5.x/mac only */
	
.link1 em, .link2 em, .link3 em, .link4 em, .link5 em { 
		background: url(Images/Menu.jpg) no-repeat; 
		cursor: pointer;
		/* IE5 requires cursor: hand; however this is not valid CSS2 */
	}
	.link1 { left: 0; z-index:16;}
	.link1 em { background-position: 0 0; }
	.link1:hover em { background-position: 0 -40px; }
	.link2 { left: 0px; z-index:15;}
	.link2 em { background-position: -80px 0; }
	.link2:hover em { background-position: -80px -40px; }
	.link3 { left: 0px; z-index:14;}
	.link3 em { background-position: -196px 0; }
	.link3:hover em { background-position: -196px -40px; }
	.link4 { left: 0px; z-index:13;}
	.link4 em { background-position: -280px 0; }
	.link4:hover em { background-position: -280px -40px; }
	.link5 { left: 0px; z-index:12;}
	.link5 em { background-position: -352px 0; }
	.link5:hover em { background-position: -352px -40px; }

	
	/* 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: 30px; /* position the dropdowns a set distance from the top of the image */
		left: -999em;
		list-style: none;
		border: 1px solid #838383;
	}
	
	.nav li:hover ul { left: auto; }
	
	.nav li li {
		height: auto; /* reset the height and padding set on the IR list items */
		z-index: 50;
		width:130px;
		padding-bottom: 0;
		font-size: 110%;
		border-bottom: 1px solid #838383;
	}
	
	.nav li ul a {
		padding: 0.25em;
		color: #333333;
		background: #d9d9d9;
	}
	.nav li ul a:hover {
		color: #FFFFFF;
		background: #838383;
	}
