#nav {
	padding:0;
	list-style:none;
	margin: 0;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
#nav li {
	float:left;
	display:inline;
	background:#111;
	position:relative;
	z-index:500;
	margin:0 1px;
	font-size: 18px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #444;
		}
		
		/* this is the parent menu */
#nav li a {
	display:block;
	font-weight: 400;
	height:30px;
	text-decoration:none;
	color:#fff;
	text-align:center;
	color:#999;
	padding-top: 6px;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 15px;
	font-size: 18px;
	letter-spacing: 0em;
		}

		#nav li a:hover {
			color:#fff;
		}
	
		/* you can make a different style for default selected value */
		#nav a.link_sub {
	color:#999;
	background-image: url(../images/dwn-arrow.png);
	background-position: center 27px;
	background-repeat: no-repeat;
		}
		#nav a.selected {
	color:#39F;
		}
		#nav a.selected_sub {
	color:#39F;
	background-image: url(../images/dwn-arrow.png);
	background-position: center 27px;
	background-repeat: no-repeat;
		}
			
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav ul li {
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	height:18px;
	color:#999;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 5px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	font-size: 15px;
	letter-spacing: 0.1em;
		}
/* HOME */

#nav li a.home {
}
#nav ul a.home_sub {
	width: 75px;
}

/* DRAMA */

#nav li a.drama {
}
#nav ul a.drama_sub {
	width: 83px;
	float:left;
	border-left:1px solid #666;
	border-right:1px solid #666;
	background-color: #111;
}		
/* CORPORATE */

#nav li a.corporate {
}
#nav ul a.corporate_sub {
	width: 75px;
}
/* COMMERCIALS */

#nav li a.commercials {
}
#nav ul a.commercials_sub {
	width: 75px;
}
/* IN DEVELOPMENT */

#nav li a.indevelopment {
}
#nav ul a.indevelopment_sub {
	width: 182px;
	float:left;
	border-left:1px solid #666;
	border-right:1px solid #666;
	background-color: #111;
}

/* DIRECTORS REELS */

#nav li a.directors {
}	
#nav ul a.directors_sub {
	width: 192px;
	float:left;
	border-left:1px solid #666;
	border-right:1px solid #666;
	background-color: #111;
}
		
		#nav ul a:hover {
			text-decoration:underline;	
		}

		/* 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;
		}
