/* Left menu*/
ul.right-menu-standard
{
	list-style:none;
	margin:0; padding:0;
	margin-bottom:8px;
	position: relative; /*IE bug*/
    font-family: "Roboto Condensed", sans-serif !important;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    margin-top: 28px;
}

ul.right-menu-standard li ul
{
	list-style:none;

}

ul.right-menu-standard li
{
	padding: 8px 14px;
	/*background:#F5F5F5 url(images/left_menu_bg.gif) top repeat-x;*/
    background: #f7f7f7;
    border-top: 1px solid #e9e9e9;
}

ul.right-menu-standard li.li-selected{background: #FDFDFD;}

ul.right-menu-standard li:not(.menu-parent):hover
{
    background: #fff;
    -moz-transition: all 0.1s ease-in;
    -webkit-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
 }



ul.right-menu-standard a
{
	font-size:0.84rem;
	color:#232323;
	font-weight:normal;
	text-decoration:none;
}

ul.right-menu-standard a:visited
{
	color:#454545;
}

ul.right-menu-standard a:hover
{
	color:#5A749B;
}
ul.right-menu-standard a{color:#3E3E3E;}

ul.right-menu-standard a.selected:link,
ul.right-menu-standard a.selected:visited,
ul.right-menu-standard a.selected:active,
ul.right-menu-standard a.selected:hover
{
	color:#558DA2;;
}

ul.right-menu-standard > li:last-child{
    border-bottom:none !important;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
ul.right-menu-standard > li:first-child{
    border-top:none !important;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.selected{background:#fff !important;}

.right-menu-standard {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    position: relative;
}

.submenu {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.submenu.open {
    max-height: 500px; /* Достаточно для большинства случаев */
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mp-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 8px;
}

.menu-parent.expanded .mp-arrow {
    transform: rotate(180deg);
}



.parent-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.mp-arrow {
    float: right;
    font-size: 0.7em;
    transition: transform 0.3s;
	margin-top:5px;
	    color: #3a657e;
}

/* Поворот стрелки при раскрытом меню */
.menu-parent.expanded .mp-arrow {
    transform: rotate(180deg);
}