@charset "utf-8";
/* CSS Document */
	#nav {
		margin:0; 
		padding:0; 
		list-style:none;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
	float:left;
	display:block;
	position:relative;
	z-index:500;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 39px;
	font-weight: bold;
		}
		#nav li:hover {
	background-color: #E2E2E2;
	color: #333;
		}
		
		/* this is the parent menu */
		#nav li a {
	display:block;
	text-decoration:none;
	color:#fff;
	text-align:center;
	color:#FFFFCC;
	padding-top: 0px;
	padding-right: 38px;
	padding-bottom: 0;
	padding-left: 38px;
	height: 40px;
	background-image: url(../../images/MenuBg.png);
	font-style: normal;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #870F12;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #AF1419;
		}

		#nav li a:hover {
	color: #FFFFCC;
	background-color: #870F12;
	background-image: none;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
	position:absolute;
	left:0px;
	display:none;
	list-style:none;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #A01215;
	margin: 0;
	top: 40px;
	padding: 0;
		}
		
		#nav ul li {
	margin: 0px;
	padding: 0px;
	height: 30px;
	font-size: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #A01215;
		}
		#nav ul li a {
	text-align: left;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	height: 30px;
	width: 180px;
	line-height: 30px;
	color: #FFFFCC;
	background-color: #971114;
	background-image: none;
	font-size: 12px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-weight: normal;
		}
		#nav ul li a:hover {
	background-color: #8F1013;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #FFC;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	height:15px;
	padding: 8px 5px;
		}
		
		#nav ul a:hover {
	text-decoration:none;
	color: #333;
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px;
		}
