#naviwrpr ul {
list-style: none; 	
margin:0;
padding:0;
z-index: 10000;
}

#nav {z-index: 10000; }


/* remove the list style */
	#nav, #nav li{
		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:5000; 
			width: 142px;
	
		}
		
		/* this is the parent menu */
		#nav li a {
	display:block;
	color: #333333;
	display: block;
	width: 130px;
	text-align: center;
	font-family:Century Gothic, sans-serif;
	font-weight: bold;
	height: 28px;	
	padding-top:8px;
	padding-bottom:8px;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
		}

		#nav li a:hover {
	color:#FFF;
	background-image: none;
	background-color: #c91882;
		}

	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0;
			z-index: 12000; 
			display:none; 
			list-style:none;			
			background-image: url(blue-slice-menu.jpg);
	box-shadow:0px 0px 15px rgba(0,0,0,0.6);
	-webkit-box-shadow:0px 0px 15px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 0px 15px rgba(0,0,0,0.6);
	background-color: #59058e;
	
		}
		
		#nav ul li {
			width:130px; 
			float:left;
			
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	height:15px;
	padding: 6px 15px;
        color:#FFF;
	background-image: none;
	font-family:Century Gothic, sans-serif;
	font-size: 12px;
		}
		
	
		
		#nav ul a:hover {
	background-color: #c71d7e;
	background-image: 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;
		}
		
#nav ul .tallboy a {
height: 40px;
}