#container {
    margin: 0 auto;
}

nav {
	margin: 10px 0 30px 0;
    padding-left:5px;
	background-color: #ffffff;
	border:1px solid rgba(13,35,108,1.0);
	border-radius: 5px;
}

nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    }
    
nav ul li {
    display:inline-block;
    background-color: #ffffff;
	width:180px;
    }

nav a {
    display:block;
    padding:0 10px; 
    color:#000000;
    line-height: 40px;
	text-decoration:none;
}

nav ul li a {
     font-size:16px;
}
nav ul ul li a {
     font-size:14px;
}

nav ul ul a:hover { background-color:#eeeeee; }


nav a:hover { 
    background-color: #ffffff; 
	border-radius: 5px;
}

/* Hide Dropdowns by Default */
nav ul ul {
    display: none;
    position: absolute; 
    top: 36px; /* the height of the main nav */
	border:1px solid rgba(13,35,108,1.0);
	border-radius: 5px;

}
    
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display:inherit;
}
    
/* Fisrt Tier Dropdown */
nav ul ul li {
	color:#000000;
    width:220px;
    float:none;
    display:list-item;
    position: relative;
	border-radius: 5px;
}



/* Second, Third and more Tiers */
nav ul ul ul li {
    position: relative;
    top:-60px; 
    left:170px;
}

    
/* Change this in order to change the Dropdown symbol */
li > a:after { content:  ' '; }
li > a:only-child:after { content: ''; }