@charset "utf-8";
/* CSS Document */

#navbar {
	background-image: url(navbar_bg.png);
	background-position: bottom;
	background-repeat: no-repeat;
	float: left;	
	margin: 0px;
	padding: 0px 21px;
	width: 1000px;
}
#navbar ul {
	margin: 0px 15px;
	padding: 0px;
}
#navbar li {
	float: left;
	list-style-type: none;
	height: 70px;
	width: 193px;
}
#navbar li a {
	background-image: url(tab_off.png);
	color: white;
	display: block;
	text-align:center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	height: 45px; /* 70 total */
	padding: 25px 0px 0px 0px;
	text-decoration: none;
	width: 193px;
}
	#navbar li.current_page_ancestor a, #navbar li.current_page_item a {
		background-image: url(tab_on.png);
	}
	#navbar li:hover a {
		background-image: url(tab_hi.png);
	}
	
#navbar li ul {
	display: none;	
}
		
	#navbar li:hover ul {
		background-image: url(navbar_dropdown_bottom.png);
		background-position: bottom;
		background-repeat: no-repeat;
		display: block;
		margin: 0px;
		padding: 0px 0px 10px 0px;		
		position: absolute;
		width: 193px;
		z-index: 99;
	}	
		
	#navbar li:hover ul li {
		background-image: url(navbar_dropdown_bg.png);
		display: block;
		float: none;
		margin: 0px;
		padding: 0px 7px;
		width: 179px;
	}
		
	#navbar li:hover ul li a {
		background-image: none;
		border-bottom: 1px dotted white;
		margin: 0px;
		padding: 5px;
	}	
	#navbar li:hover ul li a:hover {
		background-color: white;
		color: #9D0D0D;
	}
#navbar li li {
	/* Reset from first level specifications */
	height: auto;
	padding: 0px;
	width: auto;
}
#navbar li li a {
	/* Reset from first level specifications */
	background-image: none;
	font-size: 14px;
	height: auto;
	width: auto;
	text-align:left;
}
	#navbar li li a:hover {
		/* Reset from first level specifications */
		background-image: none;
		height: auto;
		width: auto;
	}

