﻿/* remove the list style */
	#topcatz ul {
		margin:0; 
		padding:0; 
		list-style:none;
		font-family:Arial, Helvetica, sans-serif;
		
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#topcatz ul li {
			/*float:left;*/ 
			display:block; 
			/*width:150px;*/ 
			/*background:#ccc; */
			position:relative;
			z-index:500; 
			/*margin:0 1px;*/
			/*margin:0 10px;*/ float:left;
		}
		
		/* this is the parent menu */
		#topcatz ul li a {
			display:block; 
			/*padding:8px 5px 0 5px; 
			font-weight:700;  
			height:23px; */
			text-decoration:none; 
			color:#fff; 
			text-align:left;
			font-weight:bold; padding:0 20px; text-transform:uppercase; font-size:13px; height:40px; line-height:40px;
			
		}

		#topcatz ul li a:hover {
			color:#ccc;
		}
	
		/* you can make a different style for default selected value */
		#topcatz ul li.sel{ /*background:url(../images/arrow-drop-white.gif) center bottom no-repeat;*/}
		#topcatz ul li.sel a {
			font-weight:bold; color:#000;
		}
	
		/* submenu, it's hidden by default */
		#topcatz ul ul {
			position:absolute; 
			left:0; 
			display:none; 
			/*margin:0 0 0 -1px;*/
			margin:0 0 0 0;
			padding:0; 
			list-style:none;
			border:0px solid #4c4c4c;
		
			
		}
		
		#topcatz ul ul li {
			width:200px; 
			float:left; 
			/*border-top:1px solid #fff;*/
			background-color:#3A9BFC;
			margin:0; padding:0;
			border-top:0px solid #222;
			border-bottom:1px solid #71B6FF;
			background-image:none;
		}
		
		/* display block will make the link fill the whole area of LI */
		#topcatz ul ul a {
			display:block;  
			/*height:15px;*/
			padding: 6px 20px; 
			color:#fff!important;
			width:auto;
			font-size:10px; text-transform:uppercase; font-weight:lighter;
			height:auto; line-height:normal;
		}
		
		#topcatz ul ul a:hover {
			text-decoration:none; color:#ccc!important;	
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #topcatz ul ul {
			/*margin:0 0 0 -2px;*/ margin:0;
		}