/* Define the body style */
body {
    font-family:Arial;
    font-size:12px;
}

/* We remove the margin, padding, and list style of UL and LI components */
#menuwrapper ul, #menuwrapper ul li{
    margin:0px /*between*/ 0px 5px 10px /*left*/;
    padding:0;
    list-style:none;
}

/* We apply background color and border bottom white and width to 150px */
#menuwrapper ul li{
    background-color:#4D4F55;
    width:200px;
    cursor:pointer;
}

/* We apply the background hover color when user hover the mouse over of the li component */
#menuwrapper ul li:hover{
    background-color:#f64e29;
    position:relative;
}

/* We apply the link style */
#menuwrapper ul li a{
    padding:7px 15px;
    color:#ffffff;
    display:inline-block;
    text-decoration:none;
}

