.nav
{
	margin-top: 15px;
	margin-bottom: 15px;
}

.toolbar
{
	margin-top: 15px;
	margin-bottom: 15px;
}

ul.navbar-nav li.active>a, ul.navbar-nav li.open>a
{
	border-radius: 10px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
}
/*
	Comment if you want menu to drop down onclick instead of onhover.
	You need to uncomment document.ready handler which unbind hover handler too.
*/
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-menu .active a
{
	background-color: #e7e7e7;
	color:#555;
    -webkit-border-radius: 0 0px 0px 0px !important;
    -moz-border-radius: 0 0px 0px !important;
    border-radius: 0 0px 0px 0px !important;
}

.dropdown-menu .active a:hover
{
	background-color: #e7e7e7;
	color:#555;
    -webkit-border-radius: 0 0px 0px 0px;
    -moz-border-radius: 0 0px 0px;
    border-radius: 0 0px 0px 0px;
}

/*
	Adds arrow to the right
*/
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
}

.dropup .dropdown-submenu > .dropdown-menu{
	bottom: auto;
	margin-bottom: 2px;
}