/*body {
    background-color: linen;
}*/

/*Remove dot in front of elements*/
#MainMenu ul {
    /*list-style-type: none;
    margin: 0px;
    padding: 0px;*/
}

#MainMenu nav {
    height: auto;
    /*position: relative;*/
    /*overflow-y: visible;*/
    /*z-index: 1000;*/
}

/*Display link objects inline (horitontally)*/
#MainMenu ul li a {
    /* display: inline-block;
    color: black;
    text-align: justify;
    text-decoration: none;*/
}

    /*All ul elements type inside ul with class "FirstUl" which is inside "Mainmenu" id object should displayed with 100px left margin and 0px top */
    /*#MainMenu ul.FirstUl ul ul:only-of-type {
        margin-left: 100px;
        top: 0px;*/
        /*text-align: center;*/
        /*position: absolute;
    }

* {*/
    /*margin: 0px;*/
    /*padding: initial;*/ /*Align parent and child left border*/
/*}*/

    /*Do not display any of the ul element inside the first or main ul element (those are displayed)*/
    /*#MainMenu ul ul {
        display: none;
    }*/

    /*When mouse hover and li element the ul element inside this one going to be displayed in drop down block */
#MainMenu ul li:hover > ul {
    display: block;
}


/*When mouse hover and li element thhat inside and ul element displayed it like this */
#MainMenu ul li:hover {
    /*background-color: aqua;*/
    border: 1px solid #73AD21;
}

