.clear {clear:both}
/* remove the list style */
#menuline {
    margin: 0 30px;
    padding:0;
    list-style:none;
    height: 39px;
    position: absolute;
    top: 55px;
    left: 350px;
}

    /* make the LI display inline */
    /* it's position relative so that position absolute */
    /* can be used in submenu */
    #menuline li {
        float:left;
        display:block;
        position:relative;
        z-index:500;
        margin:0;
        background: url(/img/menuitembg.png) no-repeat right 0px;
    }
    #menuline li.hover {

    }
    #menuline li.active {

    }

    /* this is the parent menu */
    #menuline li a {
        display:block;
        font-weight:700;
        padding: 0 10px;
        height: 39px;
        font-size: 13px;
        font-family: futura-pt, sans-serif;
        font-weight: bold ;
        line-height: 39px;
        text-decoration:none;
        text-transform: uppercase;
    }

	#menuline li a.active {
		color: #6bb613;
	}

    #menuline li a:hover {

    }

    /* you can make a different style for default selected value */
    #menuline a.selected {
    }

        /* submenu, it's hidden by default */
        #menuline ul {
        	background: #fff;
            position:absolute;
            left:0;
            display:none;
            margin: 0 0 0 -1px;
            padding:0;
            list-style:none;
            border: 1px solid #d9d9d9;
        	border-top: none;
        	-moz-box-shadow: 0px 0px 5px #888;
        	-webkit-box-shadow: 0px 0px 5px #888;
        	box-shadow: 0px 0px 5px #bbb;
        }

        #menuline ul li {
        	background: none;
            width: 200px;
            float:left;
            border-top:1px solid #d9d9d9;
        }
        #menuline ul li:first-child {
        	border-top: none;
        }
        #menuline ul li.hover {
			background: #f0f0f0;
        }
        #menuline ul li.active {
			background: #ddd;
	    }

        /* display block will make the link fill the whole area of LI */
        #menuline ul a {
            display:block;
            height:auto;
            padding: 8px 15px;
            line-height: 13px;

        }

        #menuline ul a:hover {

        }

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