@charset "utf-8";
/* CSS Document */

/* remove the list style */
#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;
	width:auto;
	position:relative;
	z-index:500;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
    }
         
    /* this is the parent menu */
    #nav li a {
	display:block;
	font-weight:normal;
	text-decoration:none;
	color:#fff;
	text-align:center;
	color:#000000;
	font-size: 15px;
	text-transform: none;
	padding-top: 18px;
	padding-right: 35px;
	padding-bottom: 18px;
	padding-left: 35px;
    }
 
    #nav li a:hover, #nav a.selected {
	color: #F4F5F0;
	background-color: #2D2D2D;
    }
     
    /* 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:0;
	display:none;
	margin:0 0 0 -1px;
	padding:0;
	list-style:none;
	width: auto;
        }
         
        #nav ul li {
	float:left;
	width: 100%;
        }
         
        /* display block will make the link fill the whole area of LI */
        #nav ul a {
	display:block;
	height:auto;
	padding: 10px 10px;
	color:#000;
	text-align: center;
	background-color: #BEB692;
	background-image: none;
	font-size: 14px;
        }
         
        #nav ul a:hover {
	color: #FFF;
	background-color: #291B10;
        }
 
/* 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;
}
