So try adding this instead:
#header .dropdown-menu li a {
color: #fff;
line-height: 30px;
}
.dropdown-menu li a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 20px;
color: #333333;
white-space: nowrap;
}
#header .dropdown-menu li a:hover,
#header .dropdown-menu li a:focus,
#header .dropdown-submenu:hover a,
#header .dropdown-submenu:focus a {
background: none repeat scroll 0 0 #E7E7E7;
color: #5E7349;
filter: none;
}
.nav ul ul {
display: none;
/* The "20px" here controls how far left you want it */
margin-left: 20px;
}
.nav ul li:hover ul {
display: block;
}
Take note to the line of code below this comment:
/* The “20px” here controls how far left you want it */