@charset "utf-8";



/* 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;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	background-color: #141414;
}
	.nav li { padding-right: 5px;	padding-bottom: 0px; } 
	/* add a little bottom or right padding to make sure the sub menus don't disappear before selecting them */

	.nav li, .nav li em {
	width: 195px;
	height: 30px;
	bottom: auto;
}
	.link1 em, { cursor: pointer;	/* IE5 requires cursor: hand; however this is not valid CSS2 */	}
	
	.link1 
	{
	top: 0;
	font-family: "Courier New", Courier, monospace;
	font-size: 11pt;
	font-style: normal;
	font-weight: bold;
	font-variant: small-caps;
	color: #E9E9E9;          /*schriftfarbe layer 1 */
	text-decoration: none;
	text-transform: none;
	}
	
			
	
	.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 */
		left: 100px; /* position the dropdowns a set distance from the top of the image */
		top: -9999em;
		list-style: none;
		border: 0px;
		padding: 0px;
	}
	
	.nav li:hover ul { top: auto; }
	
	.nav li li {
		height: auto; /* reset the height and padding set on the IR list items */
		padding-bottom: 0;
		font-size: 100%;
		border-bottom: 0px;
	}
	
	.nav li ul a {
		padding: 0.25em;
		color: #ffffff; /*schriftfarbe layer 2 */
		background: #3B3B3B;
	}
	.nav li ul a:hover {
		color: #ffffff;
		background: #141414;
	}
	/*]]>*/
