/* remove the list style */
#nav {           margin:-1px;
                 padding:0px;
                 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;
                position:relative;
                display:block;
                width:80px;
                height:20px;
                z-index:300;
                background:#ececec;
                padding:10px;
                margin: 0px;
        }

        /* this is the parent menu */
#nav li a {
                display:block;
                padding:1px;
                height:30px;
                text-decoration:none;
                text-align:center;
                color:#c91912;
                font-size:12px;
                letter-spacing:-1px;
                text-transform:lowercase;
                font-family:Georgia;
                font-style:italic;
				text-shadow:#fff 0px 1px;}

#nav li a:hover {
                color:#d5ac89;
        }
                /* 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 {
                        float:left;
                        width:80px;
                        border-top:1px solid #d6d0ae;
                        background:#ececec;
                }

                /* display block will make the link fill the whole area of LI */
#nav ul a {
                        display:block;
                        margin:0;
                        padding:1px;
                        color:#9b9053;
                }

#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;
}