



nav {
	text-align: center;
}


.backcolorlink{
         background-color:#DCDCDC;
         color:#444;
}

.backcolorlink_submenu{
     background-color:#DCDCDC;
}


nav ul ul {
	display: none;
    color: #444;
}

nav ul li:hover > ul {
	display: block;
}


nav ul {
    background:#DCDCDC ;
	//box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
	list-style: none;
	position: relative;
	display: inline-table;
    width:100%;
    /*border-radius: 5px; */

}
nav ul:after {
	content: "";
	clear: both;
	display: block;

}

nav ul li {
	float: right;
	position: relative;
}

nav ul li:hover a:not(.active) {
     background-color:#e8ebee;
	color: #444;
}




nav ul li a {
	display: block;
	padding: 10px 20px;
	color: #444;
	text-decoration: none;

}

nav ul ul {
	background: #f4f6f9;
	border-radius: 0px;
	padding: 0;
	position: absolute;
	top: 100%;
	right: 0;
	width: 170px;
}
nav ul ul li {
	float: none;
	border-bottom: 1px solid #ddd;
	position: relative;


}
nav ul ul li a {
	padding: 7px 10px;
	color: #444!important;
    background-color: #f4f6f9!important;

}
nav ul ul li a:hover {
	background-color: #e8ebee!important;

}


nav ul ul ul {
	position: absolute;
	right: 100%;
	top:0;
}

