 ul{
        padding: 0;
        list-style: none;
      
    }
    ul li{
        display: inline-block;
        position: relative;
        line-height: 21px;
        text-align: left;
	
    }
    ul li a{
        display: block;
        padding: 8px 15px;
        color: #333;
        text-decoration: none;
		font-family:courier;	
		font-weight:bold;
    }
    ul li a:hover{
        color: #fff;
        background: #939393;
		text-decoration:none;
		font-family:courier;
    }
    ul li ul.dropdown{
        min-width: 175px; /* Set width of the dropdown */
        background: #f2f2f2;
        display: none;
        position: absolute;
        z-index: 999;
        left: 0;
		border:1px solid;
    }
    ul li:hover ul.dropdown{
        display: block;	/* Display the dropdown */
    }
    ul li ul.dropdown li{
        display: block;
    }
	
	/*second level drop down */
	    
    ul li ul.dropdown1{
        min-width: 120px; /* Set width of the dropdown */
        background: #f2f2f2;
        display: none;
        position: absolute;
        z-index: 998;
		top:-1%;
        left: 100%;
		border:1px solid;
    }
    ul li ul li:hover ul.dropdown1{
        display: block;	/* Display the dropdown */
    }
    ul li ul.dropdown1 li{
        display: block;
    }