#cssmenu { display: table; /*width:650px;Change width if extra menus added*/ margin: 0 auto; text-align: center!important; }

#cssmenu a { 
 	margin: 0;
    padding: 4px 0; /*Space between top level menu link items*/}

#cssmenu ul{
        /* positioning */
        	position:relative;
            z-index:100;
			
        /* remove the dots next to list items: */
            list-style:none; 
			
        /* get rid of any default or inherited margins and padding: */
            margin:0; 
            padding:5px 0 0 0;  
            
        /* styling: */
            font-weight: 400;
            font-size: 16px;
        }
        
        /* we're using the direct descendant selectors > to ONLY affect the main menu items */
        #cssmenu > ul > li { 
        /* positioning */ 
            position: relative;
            float: left;
        /* styling: */
            margin: 0 40px 10px 0px;/*Space between top level menu link items*/
			background: none; padding: 0; text-align: left; }
			
#cssmenu ul li:not(:last-child)  { /*border-right:1px #ccc solid;  divider*/}
#cssmenu ul li ul li:not(:last-child)  {  /*border-right: none;remove divider from drop down menu*/}			
		
		
        #cssmenu > ul > li > a {
        /* positioning */ 
            display:block;
        /* styling: */
            text-decoration:none; }
			
        #cssmenu > ul > li > a:hover{
        /* styling: */
            background-color:none; 
            color:#f7991e; 
			
        }
		
/* secondary menu */

#cssmenu ul ul{padding: 0; margin: 10px 0 0 0;

            width:350px; /* you need a width to accommodate tertiary menus */
            
            position:absolute;
            z-index:100;
            
            height: 0;
            overflow: hidden;
			-webkit-transition: height 0.3s ease-in;
            -moz-transition: height 0.3s ease-in;
            -o-transition: height 0.3s ease-in;
            -ms-transition: height 0.3s ease-in;
            transition: height 0.3s ease-in;
        }
     

        /* don't display tertiary box yet */

#cssmenu > ul > li:hover ul ul, #cssmenu > ul > li > a:hover ul ul{
            height:0; 
            
        }
/* tertiary drop-down box */
#cssmenu ul ul ul{ margin: 0;
            left:120px;
            width:120px;
        }
        
        #cssmenu > ul > li:hover ul, #cssmenu > ul > li > a:hover ul,
        #cssmenu ul ul li:hover > ul, #cssmenu ul ul li a:hover > ul{
            height:300px; /* need a height to accommodate any tertiary menus */
        }
        
        /* drop-down item styles */
        /* if you want different styling for tertiary menus, just copy the 4 rules below and insert an additional ul: for example: "#cssmenu ul ul li", becomes: "#cssmenu ul ul ul li" */
        
        #cssmenu ul ul li{margin:0;padding: 0;
            background-color:#f7991e; background-image: none; 
            width:120px;
			-webkit-transition: background-color 0.3s ease;
            -moz-transition: background-color 0.3s ease;
            -o-transition: background-color 0.3s ease;
            -ms-transition: background-color 0.3s ease;
            transition: background-color 0.3s ease;
			
        }
        

        
        #cssmenu ul ul li a {
            display:block;
            text-decoration:none;
            margin:0;
            padding:8px 5px;
            color:#fff!important; 
			font-size: 13px;
			border-bottom: none!important;
			
        }
        #cssmenu ul ul li a:hover, #cssmenu ul ul li:hover > a {
            color:#fff!important; background-color:#004257;  border-bottom: none!important;
        }
		

		