	
	/* remove the list style */
	#nav {
	margin:0;
	padding:0;
	list-style:none;
	position: absolute;
	top: 57px;
	right: 29px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color:#eb3379;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
	float:left;
	display:block;
	width:auto;
	background:#000;
	position:relative;
	z-index:500;
	margin-top: 0;
	margin-right: 1px;
	margin-bottom: 0;
	margin-left: 1px;
		}
		
		/* this is the parent menu */
		#nav li a {
	display:block;
	font-weight:normal;
	height:23px;
	text-decoration:none;
	color:#fff;
	text-align:left;
	color:#668ee6;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 50px;
		}

		#nav li a:hover {
			color:#fff;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
	color:#ffffff;
	pointer-events: none;
    cursor: default;
		}
		
		#nav a.selectedwork {
	color:#ffffff;
	}
	
		/* submenu, it's hidden by default */
		#nav ul {
	position:absolute;
	left:0;
	display:none;
	padding:0;
	list-style:none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
		}
		
		#nav ul li {
			width:170px; 
			float:left; 
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	height:15px;
	color:#bfcd8e;
	font-size: 12px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
		}
		
		#nav ul a:hover {
			text-decoration:none;	
		}

		/* 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;
		}

